{"version":3,"names":[],"mappings":"","sources":["app.js"],"sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){\n'use strict';\r\n\r\nvar progress = require('./progress'),\r\n\tutil = require('./util');\r\n\r\nvar currentRequests = [];\r\n\r\n/**\r\n * @function\r\n * @description Ajax request to get json response\r\n * @param {Boolean} async Asynchronous or not\r\n * @param {String} url URI for the request\r\n * @param {Object} data Name/Value pair data request\r\n * @param {Function} callback Callback function to be called\r\n */\r\nvar getJson = function (options) {\r\n\toptions.url = util.toAbsoluteUrl(options.url);\r\n\t// return if no url exists or url matches a current request\r\n\tif (!options.url || currentRequests[options.url]) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tcurrentRequests[options.url] = true;\r\n\r\n\t// make the server call\r\n\t$.ajax({\r\n\t\tdataType: 'json',\r\n\t\turl: options.url,\r\n\t\tasync: (typeof options.async === 'undefined' || options.async === null) ? true : options.async,\r\n\t\tdata: options.data || {}\r\n\t}).done(function (response) {\r\n\t\t// success\r\n\t\tif (options.callback) {\r\n\t\t\toptions.callback(response);\r\n\t\t}\r\n\t}).fail(function (xhr, textStatus) {\r\n\t\t// failed\r\n\t\tif (textStatus === 'parsererror') {\r\n\t\t\twindow.alert(Resources.BAD_RESPONSE);\r\n\t\t}\r\n\t\tif (options.callback) {\r\n\t\t\toptions.callback(null);\r\n\t\t}\r\n\t}).always(function () {\r\n\t\t// executed on success or fail\r\n\t\t// remove current request from hash\r\n\t\tif (currentRequests[options.url]) {\r\n\t\t\tdelete currentRequests[options.url];\r\n\t\t}\r\n\t});\r\n};\r\n/**\r\n * @function\r\n * @description ajax request to load html response in a given container\r\n * @param {String} url URI for the request\r\n * @param {Object} data Name/Value pair data request\r\n * @param {Function} callback Callback function to be called\r\n * @param {Object} target Selector or element that will receive content\r\n */\r\nvar load = function (options) {\r\n\toptions.url = util.toAbsoluteUrl(options.url);\r\n\t// return if no url exists or url matches a current request\r\n\tif (!options.url || currentRequests[options.url]) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tcurrentRequests[options.url] = true;\r\n\r\n\t// make the server call\r\n\t$.ajax({\r\n\t\tdataType: 'html',\r\n\t\turl: util.appendParamToURL(options.url, 'format', 'ajax'),\r\n\t\tdata: options.data,\r\n\t\txhrFields: {\r\n\t\t\twithCredentials: true\r\n\t\t}\r\n\t}).done(function (response) {\r\n\t\t// success\r\n\t\tif (options.target) {\r\n\t\t\t$(options.target).empty().html(response);\r\n\t\t}\r\n\t\tif (options.callback) {\r\n\t\t\toptions.callback(response);\r\n\t\t}\r\n\t}).fail(function (xhr, textStatus) {\r\n\t\t// failed\r\n\t\tif (textStatus === 'parsererror') {\r\n\t\t\twindow.alert(Resources.BAD_RESPONSE);\r\n\t\t}\r\n\t\toptions.callback(null, textStatus);\r\n\t}).always(function () {\r\n\t\tprogress.hide();\r\n\t\t// remove current request from hash\r\n\t\tif (currentRequests[options.url]) {\r\n\t\t\tdelete currentRequests[options.url];\r\n\t\t}\r\n\t});\r\n};\r\n\r\nexports.getJson = getJson;\r\nexports.load = load;\n},{\"./progress\":78,\"./util\":93}],2:[function(require,module,exports){\nvar util = require(\"./util\");\r\nvar unbind = 0;\r\nvar unbindcarousel = 0;\r\nvar unbindreccarousel = 0;\r\nvar promotionViewed=0;\r\nvar userid = window.User.isCustomerAuthenticated == true ? window.User.customerNo : '';\r\n\r\n\r\nfunction getPageCategory() {\r\n\t//return window.pageContext.title || \"Content\"; ###### this throws product name\r\n\tswitch (window.Resources.PAGE_CATEGORY) {\r\n\tcase 'product-showincategory':\r\n\t\treturn \"Product Page\";\r\n\t\tbreak;\r\n\tcase 'product-show':\r\n\t\treturn \"Product Page\";\r\n\t\tbreak;\r\n\tcase 'search-show':\r\n\t\treturn \"Category Page\";\r\n\t\tbreak;\r\n\tcase 'home-show':\r\n\t\treturn \"Home Page\"\r\n\t\tbreak;\r\n\tcase 'cart-show':\r\n\t\treturn \"Cart Page\"\r\n\t\tbreak;\r\n\tcase 'cart-addtowishlist':\r\n\t\treturn \"Cart Page\"\r\n\t\tbreak;\r\n\tcase 'customerservice-contactus':\r\n\t\treturn \"Contact Customer Care\"\r\n\t\tbreak;\r\n\tcase 'customerservice-concierge':\r\n\t\treturn \"Ask An Expert\"\r\n\t\tbreak;\r\n\tcase 'account-startregister':\r\n\t\treturn \"Account Creation\"\r\n\t\tbreak;\r\n\tcase 'account-editprofile':\r\n\t\treturn \"My Account\"\r\n\t\tbreak;\r\n\tcase 'address-list':\r\n\t\treturn \"My Account\"\r\n\t\tbreak;\r\n\tcase 'paymentinstruments-list':\r\n\t\treturn \"My Account\"\r\n\t\tbreak;\r\n\tcase 'wishlist-show':\r\n\t\treturn \"My Account\"\r\n\t\tbreak;\r\n\tcase 'order-history':\r\n\t\treturn \"My Account\"\r\n\t\tbreak;\r\n\tcase 'orderreplenishment-show':\r\n\t\treturn \"My Account\"\r\n\t\tbreak;\r\n\tcase 'login-show':\r\n\t\treturn \"Account Registration\"\r\n\t\tbreak;\r\n\tcase 'coshipping-start':\r\n\t\treturn \"Checkout\"\r\n\t\tbreak;\r\n\tcase 'coshipping-singleshipping':\r\n\t\treturn \"Checkout\"\r\n\t\tbreak;\r\n\tcase 'cobilling-start':\r\n\t\treturn \"Checkout\"\r\n\t\tbreak;\r\n\tcase 'cobilling-billing':\r\n\t\treturn \"Checkout\"\r\n\t\tbreak;\r\n\tcase 'search-showcontent':\r\n\t\treturn \"Site Search\"\r\n\t\tbreak;\r\n\tcase 'giftcert-purchase':\r\n\t\treturn \"Gift Card Page\"\r\n\t\tbreak;\r\n\tcase 'cocustomer-loginform':\r\n\t\treturn \"Customer Login\";\r\n\t\tbreak;\r\n\tcase 'default-start':\r\n\t\treturn \"Home Page\";\r\n\t\tbreak;\r\n\tcase 'search-brandify':\r\n\t\treturn \"Store Locator Page\";\r\n\t\tbreak;\r\n\tcase 'foundation-start':\r\n\t\treturn \"Consultation Tool\"\r\n\t\tbreak;\r\n\tcase 'foundation-result':\r\n\t\treturn \"Consultation Tool Result\"\r\n\t\tbreak;\r\n\tcase 'cosinglepagecheckout-start':\r\n\t\treturn \"Checkout Page\"\r\n\t\tbreak;\r\n\tcase 'onlinequiz-getresult':\r\n\tcase 'onlinequiz-show':\r\n\t\treturn \"Tool\";\r\n\t\tbreak;\r\n\tcase 'actimirror-getresult':\r\n\t\treturn \"My Account\";\r\n\t\tbreak;\r\n\tcase 'cosummary-submit':\r\n\t\treturn \"Order Confirmation\";\r\n\t\tbreak;\r\n\tcase 'visualizer-getAnalysisResult':\r\n\t\treturn \"My New Visualizer\";\r\n\t\tbreak;\r\n\tdefault:\r\n\t\treturn \"Content\";\r\n\t\tbreak;\r\n\t}\r\n}\r\n// Specific for checkout and cart page only\r\nfunction couponsubcategory() {\r\n\tswitch (window.Resources.PAGE_CATEGORY) {\r\n\tcase 'cart-show':\r\n\t\treturn \"Cart\"\r\n\t\tbreak;\r\n\tcase 'coshipping-start':\r\n\t\treturn \"Shipping\"\r\n\t\tbreak;\r\n\tcase 'coshipping-singleshipping':\r\n\t\treturn \"Payment\"\r\n\t\tbreak;\r\n\tcase 'cobilling-start':\r\n\t\treturn \"Payment\"\r\n\t\tbreak;\r\n\tcase 'cobilling-removegiftcertificate':\r\n\t\treturn \"Payment\"\r\n\t\tbreak;\r\n\tcase 'cobilling-billing':\r\n\t\treturn \"Review\"\r\n\t\tbreak;\r\n\tcase 'account-editprofile':\r\n\t\treturn \"Profile\"\r\n\t\tbreak;\r\n\tcase 'address-list':\r\n\t\treturn \"Addresses\"\r\n\t\tbreak;\r\n\tcase 'paymentinstruments-list':\r\n\t\treturn \"Payment Methods\"\r\n\t\tbreak;\r\n\tcase 'wishlist-show':\r\n\t\treturn \"Saved For Later\"\r\n\t\tbreak;\r\n\tcase 'order-history':\r\n\t\treturn \"Order History\"\r\n\t\tbreak;\r\n\tcase 'orderreplenishment-show':\r\n\t\treturn \"Replenishment\"\r\n\t\tbreak;\r\n\tcase 'onlinequiz-getresult':\r\n\tcase 'onlinequiz-show':\r\n\t\treturn \"Online Quiz\";\r\n\t\tbreak;\r\n\tcase 'actimirror-getresult':\r\n\t\treturn \"Visualizer\";\r\n\t\tbreak;\r\n\tdefault:\r\n\t\tbreak;\r\n\t}\r\n}\r\n\r\nfunction isMobile() {\r\n\treturn $(window).width() <= 640;\r\n}\r\n//Specific for PDP\r\nfunction getProductName() {\r\n\treturn $(\".product-detail .product-name\").text();\r\n}\r\n//Specific for PDP\r\nfunction getProductBrand() {\r\n\treturn SitePreferences.PRODUCT_BRAND; //$(\".product-detail .product-brand\").text();\r\n}\r\n//Specific for PDP\r\nfunction getProductID() {\r\n\treturn $(\"#pid\").val();\r\n}\r\n//Specific for PDP\r\nfunction getProductCategory() {\r\n\treturn $(\".breadcrumb\").find(\".breadcrumb-element:eq(2)\").text().trim();\r\n}\r\n//Specific for PDP\r\nfunction getProductsubCategory() {\r\n\treturn $(\".breadcrumb\").find(\".breadcrumb-element:eq(3)\").text().trim();\r\n}\r\n// Specific for PDP\r\nfunction getProductsubsubCategory() {\r\n\treturn $(\".breadcrumb\").find(\".breadcrumb-element:eq(4)\").text().trim();\r\n}\r\n// Specific for PDP\r\nfunction getProductOrederType() {\r\n\tvar replen = $(\".replenishmentCycle\").val();\r\n\tif (replen > 0) {\r\n\t\treturn \"Replenishment\"\r\n\t} else {\r\n\t\treturn \"Regular\"\r\n\t}\r\n\r\n}\r\n// Specific for Actimirror\r\nfunction getProductOrderType(replen) {\r\n\tif (replen > 0) {\r\n\t\treturn \"Replenishment\"\r\n\t} else {\r\n\t\treturn \"Regular\"\r\n\t}\r\n\r\n}\r\nfunction getProdListData(productJson){\r\n\tvar product={};\r\n\tproduct.id = productJson.masterID;\r\n\tproduct.category = productJson.catid ? productJson.catid : 'N/A';\r\n\tproduct.price = productJson.pricing ? (productJson.pricing.sale ? productJson.pricing.sale : productJson.pricing.minprice) : null;\r\n\tproduct.name = productJson.name;\r\n\tproduct.brand = productJson.brand;\r\n\tproduct.quantity = productJson.quantity;\r\n\tproduct.size = productJson.size;\r\n\tproduct.subCategory = productJson.subcategory ? productJson.subcategory : 'N/A';\r\n\tproduct.subSubCategory = productJson.subsubcategory ? productJson.subsubcategory : 'N/A';\r\n\tproduct.productAutoReplen = productJson.productautoreplenish;\r\n\tproduct.productOutOfStock = productJson.productOutOfStock;\r\n\tproduct.productColor = productJson.productColor;\r\n\tproduct.productType = \"Product\";\r\n\tproduct.productVariantID = productJson.ID;\r\n\tproduct.collectionName = productJson.customBrand;\r\n\tproduct.productNumReviews = productJson.productNumReviews,\r\n\tproduct.productStarRating = productJson.productStarRating,\r\n\tproduct.productOrderType = getProductOrederType();\r\n\treturn product;\r\n}\r\n\r\nfunction getGiaranQuadViewValues(){\r\n\tvar productIdArr = [];\r\n\tvar productColorArr = [];\r\n\tvar products=[];\r\n\t\r\n\tvar multiSplit = $('.multiView-screen.color-applied');\r\n\tmultiSplit.each(function () {\r\n\t\tvar multiViewData = JSON.parse($(this).find('.giaran-data').val());\r\n\t\tvar product = getProdListData(multiViewData);\r\n\t\tproducts.push(product);\r\n\t\tproductIdArr.push(product.productVariantID);\r\n\t\tproductColorArr.push(product.productColor);\r\n\t});\r\n\treturn {\r\n\t\t'productIdArr':productIdArr,\r\n\t\t'productColorArr':productColorArr,\r\n\t\t'products': products\r\n\t}\r\n}\r\n\r\nfunction getPageSubcategory() {\r\n\tswitch (window.Resources.PAGE_CATEGORY) {\r\n\tcase 'foundation-start':\r\n\t\treturn \"Makeup Consultation\"\r\n\t\tbreak;\r\n\tdefault :\r\n\t\treturn window.pageContext.title || \"Content\";\r\n\t\tbreak;\r\n\t}\t\t\r\n}\r\n\r\nfunction getNavLocation(navLocation) {\r\n\tvar navClass;\r\n\tif (($(navLocation).hasClass('sub-menu')) || ($(navLocation).hasClass('column')) || ($(navLocation).hasClass('alternate-categories')) || ($(navLocation).hasClass('level-1'))) {\r\n\t\tnavClass = 'top-navigation';\r\n\t} else if ($(navLocation).hasClass('mobile-courtesy-nav')) {\r\n\t\tnavClass = 'courtesy-nav';\r\n\t}\r\n\telse {\r\n\t\tnavClass = $(navLocation).attr('class');\r\n\t}\r\n\t\t\t\r\n\tswitch (navClass) {\r\n\tcase 'top-navigation':\r\n\t\treturn 'Top Menu'\r\n\t\tbreak;\r\n\tcase 'courtesy-nav':\r\n\t\treturn 'Courtesy Menu'\r\n\t\tbreak;\r\n\tcase 'tertiary-nav':\r\n\t\treturn 'Tertiary Menu'\r\n\t\tbreak;\r\n\tdefault:\r\n\t\tbreak;\t\r\n\t}\r\n}\r\n\r\nfunction getLanguage() {\r\n\tif (window.User.locale.indexOf(\"en\") >= 0) {\r\n\t\treturn \"English\";\r\n\t} else if (window.User.locale.indexOf(\"cn\") >= 0) {\r\n\t\treturn \"Chinese\";\r\n\t} else if (window.User.locale.indexOf(\"es\") >= 0) {\r\n\t\treturn \"Spanish\";\r\n\t} else {\r\n\t\treturn window.User.locale;\r\n\t}\r\n}\r\nfunction dtgetLanguage() {\r\n if (window.location.href.indexOf(\"zh.shiseido\") >= 0) {\r\n return \"Chinese\";\r\n } else if (window.location.href.indexOf(\"es.shiseido\") >= 0) {\r\n return \"Spanish\";\r\n } else {\r\n return \"English\";\r\n }\r\n}\r\nfunction getCountry() {\r\n\treturn \"US\";\r\n}\r\n\r\n// page-specific: Cart, Checkout\r\nfunction getPageError() {\r\n\tvar $errorMsg = $(\".error-form\");\r\n\tif ($errorMsg.length === 0) {\r\n\t\treturn \"\";\r\n\t}\r\n\r\n\treturn $errorMsg.html().trim();\r\n}\r\n\r\nfunction getActiveSortingRule() {\r\n\tvar httpParams = util.getQueryStringParams(window.location.href);\r\n\tvar sortParam = httpParams[\"srule\"];\r\n\r\n\tif (!sortParam) {\r\n\t\treturn null;\r\n\t}\r\n\r\n\treturn sortParam.split(\"-\").map(function (w) {\r\n\t\treturn w[0].toUpperCase() + w.substr(1);\r\n\t}).join(\" \");\r\n}\r\n\r\nfunction pushToDataLayer(o) {\r\n\twindow.dataLayer = window.dataLayer || [];\r\n\twindow.dataLayer.push(util.filterObj(o));\r\n\t//alert(JSON.stringify(util.filterObj(o)));\r\n}\r\n\r\nfunction isScrolledIntoView(elem) {\r\n\tvar docViewTop = $(window).scrollTop();\r\n\tvar docViewBottom = docViewTop + $(window).height() - 150;\r\n\tvar elemTop = $(elem).offset().top;\r\n\tvar result = [];\r\n\tresult.push(((elemTop <= docViewBottom) && (elemTop >= docViewTop)));\r\n\tif ((elemTop <= docViewBottom) && (elemTop >= docViewTop)) {\r\n\t\tresult.push($(elem).parent().attr('class'));\r\n\t}\r\n\treturn result;\r\n}\r\n\r\nfunction getCountry() {\r\n\treturn \"US\";\r\n}\r\n\r\nfunction getpage() {\r\n\tvar url = window.location.href;\r\n\tvar splittedurl = url.split(\"?\");\r\n\tvar page = splittedurl[0].split(\"/\");\r\n\treturn page[page.length - 1]\r\n}\r\n\r\nfunction getNextPage(href) {\r\n\tif(href === \"\"){\r\n\t\treturn \"\";\r\n\t}else{\r\n\t\tvar newUrl = new URL(href);\r\n\t\tvar pageURI = newUrl && newUrl.pathname ? newUrl.pathname : newUrl;\r\n\t\treturn pageURI;\r\n\t}\r\n}\r\n\r\n//page-specific: PLP\r\nfunction getRefinementsFromURL() {\r\n\tvar str = \"\";\r\n\tif (window.location.href.split(\"?\").length > 1) {\r\n\t\tvar urlparam;\r\n\t\tif (window.location.href.split(\"?\")[1].indexOf(\"&\") > -1) {\r\n\t\t\turlparam = window.location.href.split(\"?\")[1].split(\"&\");\r\n\t\t\tvar length = urlparam.length;\r\n\t\t\tvar prefnval, prefnkey, prefvval, prefvkey;\r\n\t\t\tfor (var i = 0; i < length; i++) {\r\n\t\t\t\tvar prefn = urlparam[i].indexOf(\"prefn\");\r\n\t\t\t\tif (prefn > -1) {\r\n\t\t\t\t\tprefnkey = urlparam[i].split(\"=\")[0];\r\n\t\t\t\t\tprefnval = urlparam[i].split(\"=\")[1];\r\n\t\t\t\t\tvar num = prefnkey.charAt(5);\r\n\t\t\t\t\tfor (var a = 0; a < length; a++) {\r\n\t\t\t\t\t\tvar prefv = urlparam[a].indexOf(\"prefv\");\r\n\t\t\t\t\t\tprefvkey = urlparam[a].split(\"=\")[0];\r\n\t\t\t\t\t\tif (prefvkey == \"prefv\" + num) {\r\n\t\t\t\t\t\t\tprefvval = urlparam[a].split(\"=\")[1];\r\n\t\t\t\t\t\t\tstr += \"[\" + prefnval + \":\" + prefvval + \"]\";\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\treturn str;\r\n}\r\n\r\nfunction getPromotionsArr() {\r\n\tvar promotionsArr = [];\r\n\tvar promoDisplayarr = $('.sticky-component .custom-message');\r\n\tpromoDisplayarr.each(function() {\r\n\t\tvar promotions = {};\r\n\t\tpromotions.position=$(this).attr('data-position') || '';\r\n\t\tpromotions.id=$(this).attr('data-id') || '';\r\n\t\tpromotions.creative= $(this).attr('data-creative') || '';\r\n\t\tpromotions.name=$(this).attr('data-name') || '';\r\n\t\tpromotionsArr.push(promotions);\r\n\t})\r\n\treturn promotionsArr;\r\n}\r\n\r\nfunction promotionView() {\r\n\tvar promoElement = $('.top-notification').length ? $('.top-notification') : $('.bottom-notification-message')\r\n\tvar result = promoElement.length ? isScrolledIntoView(promoElement) : '';\r\n\tif (result[0] && promotionViewed < 1) {\r\n\t\tpushToDataLayer({\t\r\n\t\t\t\"eeAction\": \"eePromoView\",\r\n\t\t\t\"event\" : \"eePromoView\",\r\n\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t'promotions': getPromotionsArr()\r\n\t\t})\r\n\t\tpromotionViewed=1;\r\n\t}\t\t\r\n}\r\n\r\nfunction trackConsultationEvent(data) {\r\n\tvar TOOL_TYPES = {\r\n\t\t\"skincareConsultation\": \"Skincare Consultation\"\r\n\t};\r\n\r\n\tpushToDataLayer({\r\n\t\t\"event\": data.event,\r\n\t\t\"pageCategory\": \"Consultation Tool\",\r\n\t\t\"consultationToolType\": TOOL_TYPES[data.toolname] || data.toolname,\r\n\t\t\"consultationQuestion\": data.question,\r\n\t\t\"consultationResponse\": data.answers\r\n\t});\r\n}\r\n\r\nfunction trackConsultationPageview(data) {\r\n\tpushToDataLayer({\r\n\t\t\"event\": \"consultationSteps\",\r\n\t\t\"pageCategory\": \"Consultation Tool\",\r\n\t\t\"consultationToolType\": data.toolname,\r\n\t\t\"consultationStep\": data.pagename\r\n\t});\r\n}\r\nfunction trackOnlineQuizPageview() {\r\n\tpushToDataLayer({\r\n\t\t\"userId\": userid,\r\n\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\"language\": getLanguage(),\r\n\t\t\"websiteCountry\": getCountry()\r\n\t});\r\n}\r\n\r\nfunction trackOnlineQuizResultPageview() {\r\n\tpushToDataLayer({\r\n\t\t\"eeAction\": \"eeListView\",\r\n\t\t\"event\" : \"eeListView\",\r\n\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\"language\": getLanguage(),\r\n\t\t\"websiteCountry\": getCountry(),\r\n\t\t'products': window.onlineQuizResultProdData // Defined in quizresultpage.isml\r\n\t});\r\n}\r\n\r\n\r\nfunction trackOnlineQuizEvent(data) {\r\n\tpushToDataLayer({\r\n\t\t\"event\": data.event,\r\n\t\t\"nextQuestionNumber\": data.nextQuestionNumber,\r\n\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\"language\": getLanguage(),\r\n\t\t\"websiteCountry\": getCountry()\r\n\t});\r\n}\r\n\r\nfunction trackInternalPromotionEvent(data) {\r\n\r\n\tvar promotionURL = data.pageName;\r\n\r\n\tpushToDataLayer({\r\n\t\t\"event\": \"eePromoClick\",\r\n\t\t\"pageSubCategory\": data.pageSubCategory,\r\n\t\t\"pageCategory\": data.pageCategory,\r\n\t\t'promotions': [{\r\n\t\t\t\"position\": data.position,\r\n\t\t\t\"id\": data.id,\r\n\t\t\t\"creative\": data.creative,\r\n\t\t\t\"name\": data.name\r\n\t\t}]\r\n\t}), (function () {\r\n\t\tsetTimeout(function () {\r\n\t\t\tif (promotionURL != undefined) {\r\n\t\t\t\tdocument.location = promotionURL;\r\n\t\t\t}\r\n\t\t}, 1000);\r\n\t})();\r\n}\r\n\r\nfunction trackInternalPromotionPageView(data) {\r\n\tpushToDataLayer({\r\n\t\t\"eeAction\": \"eePromoView\",\r\n\t\t\"event\": \"eePromoView\",\r\n\t\t\"pageSubCategory\": data.pageSubCategory,\r\n\t\t\"pageCategory\": data.pageCategory,\r\n\t\t'promotions': [{\r\n\t\t\t\"position\": data.position,\r\n\t\t\t\"id\": data.id,\r\n\t\t\t\"creative\": data.creative,\r\n\t\t\t\"name\": data.name\r\n\t\t}]\r\n\t});\r\n}\r\n\r\nfunction gtmCouponApplied(data) {\r\n\t// fire when coupon is added after page load.\r\n if($(\".gtpromochecker\").length > 0 && $(\".order-promotion-container\").length > 0){\r\n if(!localStorage.getItem('couponvalidation')){\r\n \tlocalStorage['couponvalidation'] = true;\r\n }\r\n }else if ($(\".gtpromochecker\").length > 0 && $(\".rowcoupons\").length == 0){\r\n localStorage['couponvalidation'] = true;\r\n \r\n }else{\r\n localStorage.removeItem('couponvalidation');\r\n }\r\n}\r\n\r\nfunction spcBillingEvent() {\r\n\tpushToDataLayer({\r\n\t\t\"event\" : \"virtualPageview\",\r\n\t\t\"eeAction\": \"eeCheckout\",\r\n\t\t\"checkoutStep\": \"4\",\r\n\t\t\"funnelType\": basketConfirmation.funnelType,\r\n\t\t\"giftWrapping\": basketConfirmation.giftWrapping,\r\n\t\t\"checkoutErrorMessage\": basketConfirmation.checkoutErrorMessage,\r\n\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\"products\": basketConfirmation.productLineItems\r\n\t})\r\n\tpushToDataLayer({\r\n\t\t\"event\": \"eeCheckoutOption\",\r\n\t\t\"checkoutStep\": \"3\",\r\n\t\t\"checkoutOption\": $('.selection-list li.selected').attr('label')\r\n\t})\r\n}\r\n\r\nfunction sampleNoticeEvent(data) {\r\n\tpushToDataLayer({\r\n\t\t\"event\": \"noSampleNoticeClick\",\r\n\t\t\"interactionType\": data==='modal-btn-select-sample' ? 'Choose Samples' : 'Continue to Checkout',\r\n\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t})\t\r\n}\r\n\r\nfunction couponAppliedEvent() {\r\n\tpushToDataLayer({\r\n\t\t\"event\": \"couponSubmission\",\r\n\t\t\"productCoupon\": $('.promo-codes').last().find('span.value').html(),\r\n\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\"pageCategory\": getPageCategory()\r\n\t})\r\n}\r\n\r\nfunction initializeGlobalEvents() {\r\n\tvar navctr = true;\r\n\tvar gtmNavData = \"\";\r\n\r\n\t$(document)\r\n\t\t.ready(function() {\r\n\t\t\tpromotionView();\r\n\t\t\tswitch (window.Resources.PAGE_CATEGORY) {\r\n\t\t\tcase 'cart-show':\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"eeCheckoutOption\",\r\n\t\t\t\t\t\"checkoutStep\": \"1\",\r\n\t\t\t\t\t\"checkoutOption\": basketConfirmation !=null ? basketConfirmation.paymentMethod : ''\r\n\t\t\t\t})\r\n\t\t\t\tbreak;\r\n\t\t\tcase 'cosinglepagecheckout-start':\r\n\t\t\t\tvar error = basketConfirmation.checkoutErrorMessage ? basketConfirmation.checkoutErrorMessage : $(\".error-form\").text().trim();\r\n\t var errormsgtype = \"\";\r\n\t if(error.indexOf(\"Payment\") > -1){\r\n\t errormsgtype = \"Payment\";\r\n\t }else if(error.indexOf(\"email\") > -1){\r\n\t errormsgtype = \"Email\";\r\n\t }else if(error.indexOf(\"Server\") > -1){\r\n\t errormsgtype = \"Server\";\r\n\t }\r\n\t if(error){\r\n\t pushDtLayer({\r\n\t \"checkoutErrorMessage\": basketConfirmation.checkoutErrorMessage ? basketConfirmation.checkoutErrorMessage : $(\".error-form\").text().trim(),\r\n\t \"event\": \"transactionError\",\r\n\t \"pageSubCategory\": getPageSubcategory(),\r\n\t \"pageCategory\": getPageCategory(),\r\n\t \"checkoutErrorType\" : errormsgtype\r\n\t }); \r\n\t }\r\n\t break;\r\n\t \r\n\t\t\tdefault:\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t})\r\n\t\t// Wish ListAdd-Remove event of Online Quiz Result Page .wishlist-icon.wishlist\r\n\t\t.on(\"click\", \".defend-regenerate .product-tile .wishlist-icon.wishlist\", function (e) {\r\n\t\t\te.stopImmediatePropagation();\r\n\t\t\tvar wishlistadded = $(this).hasClass(\"wishlist-added\");\r\n\t\t\tvar $gtmProductTile = $(this).parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\tvar _event=\"clickSaveForLaterOnlineQuiz\";\r\n\t\t\t//@TODO : Event not provided yet for removing from wishlist.\r\n\t\t\t// if(wishlistadded){\r\n\t\t\t// \t_event=\"removeFromWhishlistOnlineQuiz\";\r\n\t\t\t// }\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\":_event,\r\n\t\t\t\t\"productCategory\": tileVariantData.catid,\r\n\t\t\t\t\"productSubCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\"productName\": tileVariantData.name,\r\n\t\t\t\t\"productId\": tileVariantData.ID,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t});\t\r\n\t\t})\r\n\t\t// Wish ListAdd-Remove event of Visualizer page/ Actimirror Page .wishlist-icon.wishlist\r\n\t\t.on(\"click\", \".actimirror-content .product-tile .wishlist-icon.wishlist\", function (e) {\r\n\t\t\te.stopImmediatePropagation();\r\n\t\t\tvar wishlistadded = $(this).hasClass(\"wishlist-added\");\r\n\t\t\tvar $gtmProductTile = $(this).parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\tvar _event=\"clickSaveForLaterVisualizer\";\r\n\t\t\tif(wishlistadded){\r\n\t\t\t\t_event=\"removeFromWhishlistVisualizer\";\r\n\t\t\t}\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\":_event,\r\n\t\t\t\t\t\"productCategory\": tileVariantData.catid,\r\n\t\t\t\t\t\"productSubCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\t\"productName\": tileVariantData.name,\r\n\t\t\t\t\t\"productId\": tileVariantData.ID,\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\t\"language\": dtgetLanguage(),\r\n\t\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t\t});\t\r\n\t\t})\r\n\t\t// add to wishlist in pdp and quickview\r\n\t\t.on('click', \".wishlist-icon.wishlist\", function (e) {\r\n\t\t\tvar _this = $(this);\r\n\t\t\tvar _event = \"clickSaveForLater\";\r\n\t\t\tif (_this.hasClass(\"wishlist-added\")) {\r\n\t\t\t\t_event = \"removeFromWishlist\";\r\n\t\t\t}\r\n\t\t\tif (_this.parents(\".cart-row\").length > 0) {\r\n\t\t\t\tvar productLineItem = []\r\n\t\t\t\t$.each(basketConfirmation.productLineItems, function(index) {\r\n\t\t\t\t\tif(basketConfirmation.productLineItems[index].productType=='Product') {\r\n\t\t\t\t\t\tproductLineItem.push(basketConfirmation.productLineItems[index])\r\n\t\t\t\t\t}\r\n\t\t\t\t})\r\n\t\t\t\tvar index = _this.parents(\".cart-row\").index()-1;\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\"event\": _event,\r\n\t\t\t\t\t\t\"productCategory\": productLineItem[index].category,\r\n\t\t\t\t\t\t\"productSubCategory\": productLineItem[index].subCategory,\r\n\t\t\t\t\t\t\"productName\": productLineItem[index].name,\r\n\t\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\t\"productId\": productLineItem[index].id\r\n\t\t\t\t\t});\r\n\t\t\t} else {\r\n\t\t\t\tvar prodName = _this.parents('.product-tile').length > 0 ? _this.parents('.product-tile').find('.product-name').html().trim() : _this.attr('data-element-name');\r\n\t\t\t\tvar productCategory = getProductCategory();\r\n\t\t\t\tvar productSubCategory = getProductsubCategory()\r\n\t\t\t\tif ($('.wishlist-container').length > 0) {\r\n\t\t\t\t\tvar $gtmProductTile = _this.parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\t\t\tproductCategory = tileVariantData.catid;\r\n\t\t\t\t\tproductSubCategory= tileVariantData.subcategory;\r\n\t\t\t\t}\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\"event\": _event,\r\n\t\t\t\t\t\t\"productCategory\": productCategory,\r\n\t\t\t\t\t\t\"productSubCategory\": productSubCategory,\r\n\t\t\t\t\t\t\"productName\": prodName,\r\n\t\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\t\"productId\": _this.attr('data-element-pid')\r\n\t\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// newsletter in navigation;\r\n\t\t.on(\"clicknewsletter\", function (e, data) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"newsletterSubscription\",\r\n\t\t\t\t\"siteLocation\": data.siteloc,\r\n\t\t\t\t\"pageSubCategory\": getPageCategory() == \"My Account\" ? getProductsubCategory() : \"\",\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\r\n\t\t// click ask question in pdp\r\n\t\t.on(\"click\", \".bv-ask-question\", function (e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\tpage: getpage(),\r\n\t\t\t\t\"event\": \"askQuestion\",\r\n\t\t\t\tproductCategory: getProductCategory(),\r\n\t\t\t\tpageSubCategory: \"Ask a Question\",\r\n\t\t\t\tproductName: getProductName(),\r\n\t\t\t\tpageCategory: \"Product Page\"\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// Scroll on reviews in pdp\r\n\t\t.on('scroll', function () {\r\n\t\t\tif ($(\".bv-section-summary\").length) {\r\n\t\t\t\tif (isScrolledIntoView(\".bv-section-summary\") && unbind < 1) {\r\n\t\t\t\t\tunbind = 1;\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\tpage: getpage(),\r\n\t\t\t\t\t\tevent: \"productReviewsView\",\r\n\t\t\t\t\t\tproductCategory: getProductCategory(),\r\n\t\t\t\t\t\tpageSubCategory: \"Reviews\",\r\n\t\t\t\t\t\tproductName: getProductName(),\r\n\t\t\t\t\t\tpageCategory: \"Product Page\"\r\n\t\t\t\t\t});\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t// for recommendation in pdp and cart, Best Seller and Recently Viewed in Homepage\r\n\t\t\tif ($(\".pi .carousel-recommendations\").length > 0 || $(\".cross-sell .carousel-recommendations\").length > 0) {\r\n\t\t\t\t$('.carousel-recommendations').each(function () {\r\n\t\t\t\t\tvar result = isScrolledIntoView($(this));\r\n\t\t\t\t\tif (result[0]) {\r\n\t\t\t\t\t\tif (result[1] === 'recently-viewed cross-sell rv-section') {\r\n\t\t\t\t\t\t\tif (unbindreccarousel < 1) {\r\n\t\t\t\t\t\t\t\tunbindreccarousel = 1;\r\n\t\t\t\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\t\t\t\t\"eeAction\": \"eeListView\",\r\n\t\t\t\t\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\t\t\t\t\"products\": window.recentforpageload.product\r\n\t\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t} else if (result[1].indexOf('pdp-social-media-section') == -1) {\r\n\t\t\t\t\t\t\tif (unbindcarousel < 1) {\r\n\t\t\t\t\t\t\t\tunbindcarousel = 1;\r\n\t\t\t\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\t\t\t\t\"eeAction\": \"eeListView\",\r\n\t\t\t\t\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\t\t\t\t\"products\": window.forpageload.product\r\n\t\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t}\r\n\r\n\t\t})\r\n\r\n\t\t// Click on Reviews in PDP\r\n\t\t.on(\"click\", \".bv-inline-histogram-ratings-star-container\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\tpage: getpage(),\r\n\t\t\t\tevent: \"productReviewsView\",\r\n\t\t\t\tproductCategory: getProductCategory(),\r\n\t\t\t\tpageSubCategory: \"Reviews\",\r\n\t\t\t\tproductName: getProductName(),\r\n\t\t\t\tpageCategory: \"Product Page\"\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// Check balance giftcard in gift card page\r\n\t\t.on('click', \"#CheckBalanceButton\", function () {\r\n\t\t\tif ($(\"#dwfrm_giftcert_balance_giftCertID\").val() != \"\" && $(\"#dwfrm_giftcert_balance_giftCertPIN\").val() != \"\") {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"giftCard\",\r\n\t\t\t\t\t\"pageSubCategory\": \"Gift Card\",\r\n\t\t\t\t\t\"pageCategory\": \"My Account\"\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// Check balance giftcard in checkout page\r\n\t\t.on('click', \".modal-body .gift-cert-balance-submit #check-giftcert-modal\", function (e) {\r\n\t\t\tif ($(\".modal-body .gift-card-number #dwfrm_billing_giftCertCode\").val() != \"\" && $(\".modal-body .gift-card-pin #dwfrm_giftcert_balance_giftCertPIN\").val() != \"\") {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"giftCard\",\r\n\t\t\t\t\t\"pageSubCategory\": \"Payment\",\r\n\t\t\t\t\t\"pageCategory\": \"Checkout\"\r\n\t\t\t\t});\r\n\r\n\t\t\t}\r\n\t\t})\r\n\t\t// Product click event of Visualizer page/ Actimirror Page\r\n\t\t.on(\"click\", \".actimirror-content .tile-top-section .thumb-link,.actimirror-content .tile-top-section .name-link\", function () {\r\n\t\t\tvar $gtmProductTile = $(this).parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\tvar index = $(this).parents(\".product-tile-wrapper\").find(\"#productPosition\").val()-1;\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"eeAction\": \"eeListClick\",\r\n\t\t\t\t\"event\" : \"eeListClick\",\r\n\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"language\": dtgetLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry(),\r\n\t\t\t\t'products': [{\r\n\t\t\t\t\t\"listType\": prodholder[0][index].listType,\r\n\t\t\t\t\t\"listName\": prodholder[0][index].listName,\r\n\t\t\t\t\t\"position\": prodholder[0][index].position,\r\n\t\t\t\t\t\"id\": tileVariantData.ID,\r\n\t\t\t\t\t\"category\": tileVariantData.catid,\r\n\t\t\t\t\t\"price\": tileVariantData.pricing.sale ? tileVariantData.pricing.sale : tileVariantData.pricing.minprice,\r\n\t\t\t\t\t\"name\": tileVariantData.name,\r\n\t\t\t\t\t\"brand\": tileVariantData.brand,\r\n\t\t\t\t\t\"quantity\": tileVariantData.quantity,\r\n\t\t\t\t\t\"size\": tileVariantData.size,\r\n\t\t\t\t\t\"subCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\t\"subSubCategory\": tileVariantData.subsubcategory,\r\n\t\t\t\t\t\"productAutoReplen\": tileVariantData.productautoreplenish,\r\n\t\t\t\t\t\"productOutOfStock\": tileVariantData.productOutOfStock,\r\n\t\t\t\t\t\"productColor\": tileVariantData.productColor,\r\n\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\"productVariantID\": tileVariantData.master ? tileVariantData.defalutvariant : tileVariantData.ID,\r\n\t\t\t\t\t\"collectionName\": tileVariantData.customBrand,\r\n\t\t\t\t\t\"productNumReviews\": tileVariantData.productNumReviews,\r\n\t\t\t\t\t\"productStarRating\": tileVariantData.productStarRating\r\n\t\t\t\t}]\r\n\t\t\t});\r\n\t\t\t\r\n\t\t\tvar targetLocation = $(this).attr(\"href\");\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tdocument.location = targetLocation;\r\n\t\t\t}, 1000);\r\n\t\t\t\r\n\t\t})\r\n\r\n\t\t// Add to Cart event of Visualizer page/ Actimirror Page\r\n\t\t.on(\"click\", \".actimirror-content .tile-bottom-section .add-to-cart\", function (e) {\r\n\t\t\te.stopImmediatePropagation();\r\n\t\t\tvar $gtmProductTile = $(this).parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"addToCart\", \r\n\t\t\t\t\"addToCartType\": \"Visualizer\",\r\n\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\"pageCategory\":getPageCategory(),\r\n\t\t\t\t\"language\": dtgetLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry(),\r\n\t\t\t\t'products': [{\r\n\t\t\t\t\t\"id\": tileVariantData.ID,\r\n\t\t\t\t\t\"category\": tileVariantData.catid,\r\n\t\t\t\t\t\"price\": tileVariantData.pricing.sale ? tileVariantData.pricing.sale : tileVariantData.pricing.minprice,\r\n\t\t\t\t\t\"name\": tileVariantData.name,\r\n\t\t\t\t\t\"brand\": tileVariantData.brand,\r\n\t\t\t\t\t\"quantity\": tileVariantData.quantity,\r\n\t\t\t\t\t\"size\": tileVariantData.size,\r\n\t\t\t\t\t\"subCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\t\"subSubCategory\": tileVariantData.subsubcategory,\r\n\t\t\t\t\t\"productAutoReplen\": tileVariantData.productautoreplenish,\r\n\t\t\t\t\t\"productOutOfStock\": tileVariantData.productOutOfStock,\r\n\t\t\t\t\t\"productColor\": tileVariantData.productColor,\r\n\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\"productVariantID\": tileVariantData.master ? tileVariantData.defalutvariant : tileVariantData.ID,\r\n\t\t\t\t\t\"productOrderType\":getProductOrderType($(this).parents(\".product-tile-wrapper\").find(\"#replenishmentCycle\").val()),\r\n\t\t\t\t\t\"collectionName\": tileVariantData.customBrand,\r\n\t\t\t\t\t\"productNumReviews\": tileVariantData.productNumReviews,\r\n\t\t\t\t\t\"productStarRating\": tileVariantData.productStarRating\r\n\t\t\t\t}]\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t\r\n\t\t// Tab click event of Visualizer page/ Actimirror Page\r\n\t\t.on(\"click\", \".actmirror-header .session-scores li\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"visualizerTabInteraction\",\r\n\t\t\t\t\"pageCategory\": \"My Account\",\r\n\t\t\t\t\"pageSubCategory\": \"Visualizer\",\r\n\t\t\t\t\"language\":dtgetLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t});\r\n\t\t\t\r\n\t\t})\r\n\r\n\t\t// Tab click event of Visualizer page/ Actimirror Page for Tabs\r\n\t\t.on(\"click\", \".skin-analysis-wrapper-tab-head a\", function () {\r\n\t\t\tvar index = $(this).text();\r\n\t\t\tvar courseName = $(this).attr('data-courseui').toString();\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"visualizerTabInteraction\",\r\n\t\t\t\t\"sectiontab\": index.replace(/(\\r\\n|\\n|\\r)/gm, \"\"),\r\n\t\t\t\t\"course\": courseName,\r\n\t\t\t\t\"pageCategory\": \"My Account\", \r\n\t\t\t\t\"pageSubCategory\": \"Visualizer\", \r\n\t\t\t\t\"language\": dtgetLanguage(), \r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t})\t\r\n\t\t})\r\n\r\n\t\t// Tab click event of Visualizer page/ Actimirror Page for Heading Tabs\r\n\t\t.on(\"click\", \".recommended-section-tab-head-in .tab-head-link\", function () {\r\n\t\t\tvar index = $(this).text();\r\n\t\t\tvar courseName = $(this).attr('data-courseui').toString();\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"visualizerTabInteraction\",\r\n\t\t\t\t\"sectiontab\": index.replace(/(\\r\\n|\\n|\\r)/gm, \"\"),\r\n\t\t\t\t\"course\": courseName,\r\n\t\t\t\t\"pageCategory\": \"My Account\", \r\n\t\t\t\t\"pageSubCategory\": \"Visualizer\", \r\n\t\t\t\t\"language\": dtgetLanguage(), \r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t})\t\t\t\r\n\t\t})\r\n\r\n\t\t// Data layer of learn more link for future actimirror product\r\n\t\t.on('click', '.future-solution-text a', function () {\r\n\t\t\tvar courseName = $(this).parents(\".future-solution-text\").attr('data-courseui').toString();\r\n\t\t\tvar nextUrl = $(this).attr(\"href\");\r\n\t\t\tvar sectTab = $('.tab-head-premiumsolutions').text();\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"visualizerTabInteractionPageClick\",\r\n\t\t\t\t\"sectiontab\": sectTab.replace(/(\\r\\n|\\n|\\r)/gm, \"\"),\r\n\t\t\t\t\"course\": courseName,\r\n\t\t\t\t\"page\": getNextPage(nextUrl),\r\n\t\t\t\t\"pageCategory\": \"My Account\", \r\n\t\t\t\t\"pageSubCategory\": \"Visualizer\", \r\n\t\t\t\t\"language\": dtgetLanguage(), \r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t});\r\n\t\t\treturn true;\r\n\t\t})\r\n\r\n\t\t// Tab click event of Visualizer Page for Carousel Selection Date \r\n\t\t.on(\"click\", \".visualizerResultDateslider .slide a\", function () { \r\n\t\t\tvar resultDateClick = $(this).data('resultdate'); \r\n\t\t\tvar nowDateClick = new Date(resultDateClick);\r\n\t\t\tvar dateClick = nowDateClick.getFullYear()+'.'+(nowDateClick.getMonth()+1)+'.'+nowDateClick.getDate();\r\n\t\t\tpushToDataLayer({ \r\n\t\t\t\t\"event\": \"checkPastConsultationResult\", \r\n\t\t\t\t\"consultationToolType\": \"Skin Visualizer\",\r\n\t\t\t\t\"resultDate\": dateClick \r\n\t\t\t}); \r\n\t\t\t\r\n\t\t})\r\n\r\n\t\t// Tab click event of Visualizer Page for skin condition tabs \r\n\t\t.on(\"click\", \".skin-condition-tabs .skin-condition-btn\", function () { \r\n\t\t\tvar beautyModule = $(this).text();\r\n\t\t\tvar radioData = $(this).attr('data-tab');\r\n\t\t\tvar beautyfilter = $(\".\"+radioData+\" input.skin-condition-radio:checked\").attr('value');\r\n\t\t\tpushToDataLayer({ \r\n\t\t\t\t\"event\": \"beautyCirculationInteraction\", \r\n\t\t\t\t\"consultationToolType\": \"Skin Visualizer\", \r\n\t\t\t\t\"beautyModule\": beautyModule, \r\n\t\t\t\t\"beautyfilter\": beautyfilter ? beautyfilter: \"\"\r\n\t\t\t}); \r\n\t\t\t\r\n\t\t})\r\n\r\n\t\t// Tab click event of Visualizer Page for skin condition tabs radio buttons\r\n\t\t.on(\"click\", \".skin-condition-radio\", function () {\r\n\t\t\tvar beautyfilterRadio = $(this).attr('value'); \r\n\t\t\tvar beautyModuleRadio = $('.skin-condition-tabs .skin-condition-btn.active').text();\r\n\t\t\t\tpushToDataLayer({ \r\n\t\t\t\t\t\"event\": \"beautyCirculationInteraction\", \r\n\t\t\t\t\t\"consultationToolType\": \"Skin Visualizer\",\r\n\t\t\t\t\t\"beautyModule\": beautyModuleRadio,\r\n\t\t\t\t\t\"beautyfilter\": beautyfilterRadio\r\n\t\t\t\t});\r\n\t\t})\r\n\r\n\t\t// Tab click event of Visualizer Page for Beauty tips section\r\n\t\t.on(\"click\", \".beautyTipsSection .beautyTips a\", function () { \r\n\t\t\tvar beautyTips = $(this).find('p').text();\r\n\t\t\tvar clickedURL = $(this).attr(\"href\");\r\n\t\t\tpushToDataLayer({ \r\n\t\t\t\t\"event\": \"selectBeautyTips\", \r\n\t\t\t\t\"consultationToolType\": \"Skin Visualizer\",\r\n\t\t\t\t\"beautyTips\": beautyTips,\r\n\t\t\t\t\"clickedURL\": clickedURL\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// Tab click event of Visualizer Page for checkYourPurchase Button \r\n\t\t.on(\"click\", \".orderHistory a\", function () { \r\n\t\t\tpushToDataLayer({ \r\n\t\t\t\t\"event\": \"checkYourPurchase\", \r\n\t\t\t\t\"consultationToolType\": \"Skin Visualizer\"\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".viewDetails a\", function () { \r\n\t\t\tvar viewProductDetail = $(this).data('viewproductdetail');\r\n\t\t\t\tpushDtLayer({\r\n\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\"pageCategory\": \"Consultation Tool\", \r\n\t\t\t\t\t\"pageSubCategory\": \"Skin Visualizer\", \r\n\t\t\t\t\t\"siteLocation\": \"Skin Visualizer Page\",\r\n\t\t\t\t\t\"products\": viewProductDetail\r\n\t\t\t\t});\r\n\t\t})\r\n\r\n\t\t// Product click event of Online Quiz Page\r\n\t\t.on(\"click\", \".defend-regenerate .tile-top-section .thumb-link,.defend-regenerate .tile-top-section .name-link\", function () {\r\n\t\t\tvar $gtmProductTile = $(this).parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"eeAction\": \"eeListClick\",\r\n\t\t\t\t\"event\" : \"eeListClick\",\r\n\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry(),\r\n\t\t\t\t'products': [{\r\n\t\t\t\t\t\"listType\": \"onlineQuiz\",\r\n\t\t\t\t\t\"listName\": \"Defend & Generate\",\r\n\t\t\t\t\t\"position\": $(this).parents(\".product-tile-wrapper\").find(\"#productPosition\").val(),\r\n\t\t\t\t\t\"id\": tileVariantData.ID,\r\n\t\t\t\t\t\"category\": tileVariantData.catid,\r\n\t\t\t\t\t\"price\": tileVariantData.pricing.sale ? tileVariantData.pricing.sale : tileVariantData.pricing.minprice,\r\n\t\t\t\t\t\"name\": tileVariantData.name,\r\n\t\t\t\t\t\"brand\": tileVariantData.brand,\r\n\t\t\t\t\t\"quantity\": tileVariantData.quantity,\r\n\t\t\t\t\t\"size\": tileVariantData.size,\r\n\t\t\t\t\t\"subCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\t\"subSubCategory\": tileVariantData.subsubcategory,\r\n\t\t\t\t\t\"productAutoReplen\": tileVariantData.productautoreplenish,\r\n\t\t\t\t\t\"productOutOfStock\": tileVariantData.productOutOfStock,\r\n\t\t\t\t\t\"productColor\": tileVariantData.productColor,\r\n\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\"productVariantID\": tileVariantData.master ? tileVariantData.defalutvariant : tileVariantData.ID,\r\n\t\t\t\t\t\"collectionName\": tileVariantData.customBrand,\r\n\t\t\t\t\t\"productNumReviews\": tileVariantData.productNumReviews,\r\n\t\t\t\t\t\"productStarRating\": tileVariantData.productStarRating\r\n\t\t\t\t}]\r\n\t\t\t});\r\n\t\t\tvar targetLocation = $(this).attr(\"href\");\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tdocument.location = targetLocation;\r\n\t\t\t}, 1000);\r\n\t\t\t\r\n\t\t})\r\n\r\n\t\t// Add to Cart event of Online Quiz Page\r\n\t\t.on(\"click\", \".defend-regenerate .tile-bottom-section .add-to-cart\", function (e) {\r\n\t\t\te.stopImmediatePropagation();\r\n\t\t\tvar $gtmProductTile = $(this).parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"addToCart\", \r\n\t\t\t\t\"addToCartType\": \"onlineQuiz\",\r\n\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\"pageCategory\":getPageCategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry(),\r\n\t\t\t\t'products': [{\r\n\t\t\t\t\t\"id\": tileVariantData.ID,\r\n\t\t\t\t\t\"category\": tileVariantData.catid,\r\n\t\t\t\t\t\"price\": tileVariantData.pricing.sale ? tileVariantData.pricing.sale : tileVariantData.pricing.minprice,\r\n\t\t\t\t\t\"name\": tileVariantData.name,\r\n\t\t\t\t\t\"brand\": tileVariantData.brand,\r\n\t\t\t\t\t\"quantity\": tileVariantData.quantity,\r\n\t\t\t\t\t\"size\": tileVariantData.size,\r\n\t\t\t\t\t\"subCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\t\"subSubCategory\": tileVariantData.subsubcategory,\r\n\t\t\t\t\t\"productAutoReplen\": tileVariantData.productautoreplenish,\r\n\t\t\t\t\t\"productOutOfStock\": tileVariantData.productOutOfStock,\r\n\t\t\t\t\t\"productColor\": tileVariantData.productColor,\r\n\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\"productVariantID\": tileVariantData.master ? tileVariantData.defalutvariant : tileVariantData.ID,\r\n\t\t\t\t\t//\"productOrderType\":getProductOrderType($(this).parents(\".product-tile-wrapper\").find(\"#replenishmentCycle\").val()),\r\n\t\t\t\t\t\"productOrderType\": getProductOrederType(),\r\n\t\t\t\t\t\"collectionName\": tileVariantData.customBrand,\r\n\t\t\t\t\t\"productNumReviews\": tileVariantData.productNumReviews,\r\n\t\t\t\t\t\"productStarRating\": tileVariantData.productStarRating\r\n\t\t\t\t}]\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// add to cart from PDP\r\n\t\t.on('click', '#pdpMain .add-to-cart', function (e) {\r\n\t\t\tif (getPageCategory() == \"Cart Page\") {\r\n\t\t\t\tif (sessionStorage.getItem(\"cartupdate\")) {\r\n\t\t\t\t\tsessionStorage.setItem(\"productUpdate\", \"1\");\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\twindow.productCache = window.productCache || {};\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"currencyCode\": window.Resources.CURRENCY,\r\n\t\t\t\t\t\"event\": \"addToCart\",\r\n\t\t\t\t\t\"productOrderType\": getProductOrederType(),\r\n\t\t\t\t\t\"addToCartType\": \"Product Page\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\t'products': [{\r\n\t\t\t\t\t\t\"id\": getProductID(),\r\n\t\t\t\t\t\t\"productVariantID\": pdpdata.master ? pdpdata.defalutvariant : pdpdata.ID,\r\n\t\t\t\t\t\t\"category\": window.productCache.catid,\r\n\t\t\t\t\t\t\"price\": $(\".add-to-cart\").data(\"price\"),\r\n\t\t\t\t\t\t\"name\": getProductName(),\r\n\t\t\t\t\t\t\"brand\": getProductBrand(),\r\n\t\t\t\t\t\t\"quantity\": Number($(\".quantity select\").val()),\r\n\t\t\t\t\t\t\"size\": $(\"#pdp-swatches li.selected\").first().text().trim(),\r\n\t\t\t\t\t\t\"subCategory\": window.productCache.subcategory,\r\n\t\t\t\t\t\t\"subSubCategory\": window.productCache.subsubcategory,\r\n\t\t\t\t\t\t\"productAutoReplen\": $(\".add-to-cart\").data(\"replenishable\"),\r\n\t\t\t\t\t\t\"productOutOfStock\": $(\".add-to-cart\").data(\"instock\"),\r\n\t\t\t\t\t\t\"productColor\": $(\"#va-color option:selected\").text().split(\"/\")[0].trim(),\r\n\t\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\t\"collectionName\": pdpdata.customBrand,\r\n\t\t\t\t\t\t\"productNumReviews\": pdpdata.productNumReviews,\r\n\t\t\t\t\t\t\"productStarRating\": pdpdata.productStarRating\r\n\t\t\t\t\t}]\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// Submit ask a question\r\n\t\t.on('click', \".bv-submission-section button:contains('Post Question')\", function (e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"page\": getpage(),\r\n\t\t\t\t\"event\": \"submitQuestion\",\r\n\t\t\t\t\"productCategory\": getProductCategory(),\r\n\t\t\t\t\"question\": $(\"#bv-textarea-field-questionsummary\").val(),\r\n\t\t\t\t\"productName\": getProductName(),\r\n\t\t\t\t\"pageSubCategory\": \"Ask a Question\",\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// remove from cart\r\n\t\t.on('click', \".user-action-remove .button-text[value='Remove']\", function (e) {\r\n\t\t\tvar lineItems = [];\r\n\t\t\tvar productLineItem = [];\r\n\t\t\tvar sampleLineItem = [];\r\n\t\t\tvar bonusLineItem = [];\r\n\t\t\t$.each(basketConfirmation.productLineItems, function(index) {\r\n\t\t\t\tif (basketConfirmation.productLineItems[index].productType=='Product') {\r\n\t\t\t\t\tproductLineItem.push(basketConfirmation.productLineItems[index])\r\n\t\t\t\t} else if (basketConfirmation.productLineItems[index].productType=='Sample') {\r\n\t\t\t\t\tsampleLineItem.push(basketConfirmation.productLineItems[index])\r\n\t\t\t\t} else if (basketConfirmation.productLineItems[index].productType=='Bonus Product') {\r\n\t\t\t\t\tbonusLineItem.push(basketConfirmation.productLineItems[index])\r\n\t\t\t\t}\r\n\t\t\t})\r\n\t\t\tif ($(this).closest('.bonus-products-information').length) {\r\n\t\t\t\tlineItems = bonusLineItem;\r\n\t\t\t\tvar index = $(this).parents(\".bonus-products-information .cart-row\").index();\r\n\t\t\t}\r\n\t\t\telse if ($(this).closest('.sample-products-information').length) {\r\n\t\t\t\tlineItems = sampleLineItem;\r\n\t\t\t\tvar index = $(this).parents(\".sample-products-information .cart-row\").index()-1;\r\n\t\t\t}\r\n\t\t\telse if ($(this).closest('.products-information').length) {\r\n\t\t\t\tlineItems = productLineItem;\r\n\t\t\t\tvar index = $(this).parents(\".products-information .cart-row\").index()-1;\r\n\t\t\t}\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"removeFromCart\",\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t'products': [{\r\n\t\t\t\t\t\"id\": lineItems[index].id,\r\n\t\t\t\t\t\"category\": lineItems[index].category,\r\n\t\t\t\t\t\"price\": lineItems[index].price,\r\n\t\t\t\t\t\"name\": lineItems[index].name,\r\n\t\t\t\t\t\"brand\": getProductBrand(),\r\n\t\t\t\t\t\"quantity\": lineItems[index].quantity,\r\n\t\t\t\t\t\"size\": lineItems[index].size,\r\n\t\t\t\t\t\"subCategory\": lineItems[index].subCategory,\r\n\t\t\t\t\t\"subSubCategory\": lineItems[index].subSubCategory,\r\n\t\t\t\t\t\"productAutoReplen\": lineItems[index].productAutoReplen,\r\n\t\t\t\t\t\"productOutOfStock\": lineItems[index].productOutOfStock,\r\n\t\t\t\t\t\"productColor\": lineItems[index].productColor,\r\n\t\t\t\t\t\"productType\": lineItems[index].productType,\r\n\t\t\t\t\t\"productOrderType\": ($(this).parents(\".cart-row\").find(\".replenishment .replenishmentDays\").length > 0) ? \"Replenishment\" : \"Regular\",\r\n\t\t\t\t\t\"productVariantID\": lineItems[index].productVariantID,\r\n\t\t\t\t\t\"collectionName\": lineItems[index].collectionName\r\n\t\t\t\t}] \r\n\t\t\t})\r\n\r\n\t\t})\r\n\r\n\t\t// remove from minicart\r\n\t\t.on('click', \".mini-cart-image .remove-link\", function (e) {\r\n\t\t\tvar index = $(this).parents(\".mini-cart-product\").index();\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"currencyCode\": window.Resources.CURRENCY,\r\n\t\t\t\t\"event\": \"removeFromCart\",\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t'products': [{\r\n\t\t\t\t\t\"id\": miniBasketConfirmation.productLineItems[index].id,\r\n\t\t\t\t\t\"category\": miniBasketConfirmation.productLineItems[index].category,\r\n\t\t\t\t\t\"price\": miniBasketConfirmation.productLineItems[index].price,\r\n\t\t\t\t\t\"name\": miniBasketConfirmation.productLineItems[index].name,\r\n\t\t\t\t\t\"brand\": getProductBrand(),\r\n\t\t\t\t\t\"quantity\": miniBasketConfirmation.productLineItems[index].quantity,\r\n\t\t\t\t\t\"size\": miniBasketConfirmation.productLineItems[index].size,\r\n\t\t\t\t\t\"subCategory\": miniBasketConfirmation.productLineItems[index].subCategory,\r\n\t\t\t\t\t\"subSubCategory\": miniBasketConfirmation.productLineItems[index].subSubCategory,\r\n\t\t\t\t\t\"productAutoReplen\": miniBasketConfirmation.productLineItems[index].productAutoReplen,\r\n\t\t\t\t\t\"productOutOfStock\": miniBasketConfirmation.productLineItems[index].productOutOfStock,\r\n\t\t\t\t\t\"productColor\": miniBasketConfirmation.productLineItems[index].productColor,\r\n\t\t\t\t\t\"productType\": miniBasketConfirmation.productLineItems[index].productType,\r\n\t\t\t\t\t\"productOrderType\": ($(this).parents(\".cart-row\").find(\".replenishment .replenishmentDays\").length > 0) ? \"Replenishment\" : \"Regular\",\r\n\t\t\t\t\t\"productVariantID\": miniBasketConfirmation.productLineItems[index].productVariantID,\r\n\t\t\t\t\t\"collectionName\": miniBasketConfirmation.productLineItems[index].collectionName\r\n\t\t\t\t}]\r\n\t\t\t})\r\n\r\n\t\t})\r\n\t\t// click zoom in pdp\r\n\t\t.on('click', \".productthumbnail.selected\", function (e) {\r\n\t\t\tif ($('.quickview-modal').length === 0) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"productInteraction\",\r\n\t\t\t\t\t\"productCategory\": getProductCategory(),\r\n\t\t\t\t\t\"productSubCategory\": getProductsubCategory(),\r\n\t\t\t\t\t\"productName\": getProductName(),\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\t\"productId\": getProductID(),\r\n\t\t\t\t\t\"interactionType\": \"Zoom\"\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// click full ingredients in pdp\r\n\t\t.on('click', \"#keyingredients .view-all.button.tertiary\", function (e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"productInteraction\",\r\n\t\t\t\t\"productCategory\": getProductCategory(),\r\n\t\t\t\t\"productSubCategory\": getProductsubCategory(),\r\n\t\t\t\t\"productName\": getProductName(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"productId\": getProductID(),\r\n\t\t\t\t\"interactionType\": \"View Full Product Ingredients\"\r\n\t\t\t})\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".cart-promo-approaching\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"eePromoClick\",\r\n\t\t\t\t\"pageSubCategory\": \"Internal marketing\",\r\n\t\t\t\t\"pageCategory\": \"Cart Page\",\r\n\t\t\t\t'promotions': [{\r\n\t\t\t\t\t\"position\": \"Cart\",\r\n\t\t\t\t\t\"id\": $(\".cart-promo-approaching\").data(\"promoid\"),\r\n\t\t\t\t\t\"creative\": \"Cart-Banner\",\r\n\t\t\t\t\t\"name\": $(\".cart-promo-approaching\").data(\"promoname\")\r\n\t\t\t\t}]\r\n\t\t\t})\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".cart-coupon-code #add-coupon\", function () {\r\n\t\t\tlocalStorage.removeItem('couponvalidation');\r\n\t\t})\r\n\r\n\t\t// track share button on PDP\r\n\t\t.on(\"click\", \".socialsharing .share-icon\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"socialAction\": \"Share\",\r\n\t\t\t\t\"event\": \"socialShare\",\r\n\t\t\t\t\"siteLocation\": \"product page\",\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"socialNetwork\": $(this).data(\"share\")\r\n\t\t\t})\r\n\t\t})\r\n\r\n\t\t// Track Follow button on Footer\r\n\t\t.on(\"click\", \".social-links a\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"socialAction\": \"Follow\",\r\n\t\t\t\t\"event\": \"socialFollow\",\r\n\t\t\t\t\"siteLocation\": \"footer\",\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"socialNetwork\": $(this).data(\"follow\")\r\n\t\t\t})\r\n\t\t})\r\n\r\n\t\t// Add to all to Cart\r\n\t\t.on(\"click\", \"#add-all-to-cart\", function () {\r\n\t\t\tvar $regimenbg = $(this).parents(\".search-result-items\");\r\n\t\t\tvar products = [];\r\n\t\t\t$regimenbg.find('.gtm-product-tile').each(function () {\r\n\t\t\t\tvar product = {};\r\n\t\t\t\tvar tileVariantData = $(this).data('value');\r\n\t\t\t\tproduct.ID = tileVariantData.masterID || tileVariantData.ID;\r\n\t\t\t\tproduct.productVariantID = tileVariantData.ID;\r\n\t\t\t\tproduct.category = tileVariantData.catid;\r\n\t\t\t\tproduct.price = tileVariantData.pricing.sale ? tileVariantData.pricing.sale : tileVariantData.pricing.minprice;\r\n\t\t\t\tproduct.name = tileVariantData.name;\r\n\t\t\t\tproduct.brand = tileVariantData.brand;\r\n\t\t\t\tproduct.quantity = tileVariantData.quantity;\r\n\t\t\t\tproduct.size = tileVariantData.size;\r\n\t\t\t\tproduct.subCategory = tileVariantData.subcategory;\r\n\t\t\t\tproduct.subSubCategory = tileVariantData.subsubcategory;\r\n\t\t\t\tproduct.productAutoReplen = tileVariantData.productautoreplenish;\r\n\t\t\t\tproduct.productOutOfStock = tileVariantData.productOutOfStock;\r\n\t\t\t\tproduct.productColor = tileVariantData.productColor;\r\n\t\t\t\tproduct.productType = \"Product\";\r\n\t\t\t\tproduct.collectionName = tileVariantData.customBrand;\r\n\t\t\t\tproduct.productNumReviews = tileVariantData.productNumReviews;\r\n\t\t\t\tproduct.productStarRating = tileVariantData.productStarRating;\r\n\t\t\t\tproducts.push(product);\r\n\t\t\t});\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"currencyCode\": window.Resources.CURRENCY,\r\n\t\t\t\t\"event\": \"addToCart\",\r\n\t\t\t\t\"productOrderType\": getProductOrederType(),\r\n\t\t\t\t\"addToCartType\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getProductsubCategory(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t'products': products\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// click email hyper link in navigation\r\n\t\t.on('click', '.emailcsr-nav', function () {\r\n\t\t\tif (window.Resources.PAGE_CATEGORY == \"page-show\") {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\t\t\"contactType\": \"Email\",\r\n\t\t\t\t\t\"siteLocation\": \"Header\",\r\n\t\t\t\t\t//\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\t\"pageCategory\": getProductCategory()\r\n\t\t\t\t});\r\n\r\n\t\t\t} else {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\t\t\"contactType\": \"Email\",\r\n\t\t\t\t\t\"siteLocation\": \"Header\",\r\n\t\t\t\t\t\"pageSubCategory\": window.Resources.PAGE_CATEGORY == \"cart-show\" ? \"\" : couponsubcategory(),\r\n\t\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t\t});\r\n\t\t\t}\r\n\r\n\t\t})\r\n\t\t// Click email link in the customer care\r\n\t\t.on(\"click\", \".content-asset a:contains('customerservice@shiseidousa.com')\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\t\"contactType\": \"Email\",\r\n\t\t\t\t\"siteLocation\": window.Resources.PAGE_CATEGORY == \"cart-show\" ? \"Right Nav\" : \"Body\",\r\n\t\t\t\t//\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\"pageCategory\": window.Resources.PAGE_CATEGORY == \"cart-show\" ? getPageCategory() : getProductCategory()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t.on(\"gtmcontactus\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\t\"contactType\": \"Contact Customer Care Submission\",\r\n\t\t\t\t\"siteLocation\": \"Body\",\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t});\r\n\t\t})\r\n\t\t.on(\"askanexpert\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\t\"contactType\": \"Ask An Expert Submission\",\r\n\t\t\t\t\"siteLocation\": \"Body\",\r\n\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\"pageCategory\": \"Ask An Expert\"\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".LPMcontainer\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\t\"contactType\": \"Live Chat\",\r\n\t\t\t\t\"siteLocation\": getPageCategory() == \"Checkout\" ? \"Header\" : \"Body\",\r\n\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".LPMimage\", function () {\r\n\t\t\tvar id = $(this).attr(\"id\");\r\n\t\t\tvar chk = id.charAt(id.length - 1)\r\n\t\t\tif (chk == 1) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\t\t\"contactType\": \"Live Chat\",\r\n\t\t\t\t\t\"siteLocation\": \"Pop-up\",\r\n\t\t\t\t\t\"pageSubCategory\": couponsubcategory(),\r\n\t\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".footer-container .products ul li:nth-child(4)\", function () {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\t\"contactType\": \"Phone\",\r\n\t\t\t\t\"siteLocation\": \"Footer\",\r\n\t\t\t\t\"pageSubCategory\": window.Resources.PAGE_CATEGORY == \"cart-show\" ? \"\" : couponsubcategory(),\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// click on recommendation\r\n\t\t.on(\"click\", \".recommendation-item\", function () {\r\n\t\t\tif (getPageCategory() == \"Product Page\") {\r\n\t\t\t\tsessionStorage.setItem('listType', \"Recommended Product List\");\r\n\t\t\t\tsessionStorage.setItem('listName', \"Product Page\");\r\n\t\t\t} else if (getPageCategory() == \"Home Page\") {\r\n\t\t\t\tsessionStorage.setItem('listType', \"Recently Viewed List\");\r\n\t\t\t\tsessionStorage.setItem('listName', \"Home Page\");\r\n\t\t\t}\r\n\r\n\t\t})\r\n\r\n\r\n\t\t.on(\"click\", \".catalog-link\", function (e) {\r\n\t\t\tif (navctr == true) {\r\n\t\t\t\tgtmNavData = $(this).text().trim();\r\n\t\t\t\tsessionStorage.setItem(\"navlink\", gtmNavData);\r\n\t\t\t\tsessionStorage.setItem(\"menuloc\", \"topmenu\");\r\n\t\t\t\tutil.setCookie('navdata', encodeURIComponent(gtmNavData), .20, 'none');\r\n\t\t\t\tnavctr = false;\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".main-nav .has-sub-menu a\", function (e) {\r\n\t\t\tif (navctr == true) {\r\n\t\t\t\tgtmNavData = $(this).text().trim();\r\n\t\t\t\tsessionStorage.setItem(\"navlink\", gtmNavData);\r\n\t\t\t\tsessionStorage.setItem(\"menuloc\", \"topmenu\");\r\n\t\t\t\tutil.setCookie('navdata', encodeURIComponent(gtmNavData), .20, 'none');\r\n\t\t\t\tnavctr = false;\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".refinement-header\", function (e) {\r\n\t\t\tgtmNavData = $(this).text().trim();\r\n\t\t\tsessionStorage.setItem(\"navlink\", gtmNavData);\r\n\t\t\tsessionStorage.setItem(\"menuloc\", \"leftmenu\");\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".refinement-link\", function (e) {\r\n\t\t\tgtmNavData = $(this).text().trim();\r\n\t\t\tsessionStorage.setItem(\"navlink\", gtmNavData);\r\n\t\t\tsessionStorage.setItem(\"menuloc\", \"leftmenu\");\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".breadcrumb-element\", function (e) {\r\n\t\t\tgtmNavData = $(this).text().trim();\r\n\t\t\tsessionStorage.setItem(\"breadcrumbs\", gtmNavData);\r\n\t\t\tsessionStorage.setItem(\"menuloc\", \"leftmenu\");\r\n\t\t})\r\n\r\n\t\t.on(\"change\", \".cart-qty-select\", function (e) {\r\n\t\t\tif (getPageCategory() == \"Cart Page\") {\r\n\t\t\t\tif ($(\".edit-modal\").length > 0) {\r\n\t\t\t\t\tsessionStorage.setItem(\"cartupdate\", \"1\");\r\n\t\t\t\t} else {\r\n\t\t\t\t\tsessionStorage.setItem(\"productUpdate\", \"1\");\r\n\t\t\t\t}\r\n\r\n\t\t\t}\r\n\r\n\t\t})\r\n\r\n\t\t.on(\"change\", \".quantity-select\", function (e) {\r\n\t\t\tif (window.Resources.PAGE_CATEGORY == \"wishlist-show\") {\r\n\t\t\t\tsessionStorage.setItem(\"productUpdate\", \"1\");\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".account-left-nav li\", function (e) {\r\n\t\t\tgtmNavData = $(this).text().trim();\r\n\t\t\tsessionStorage.setItem(\"navlink\", gtmNavData);\r\n\t\t\tsessionStorage.setItem(\"menuloc\", \"leftmenu\");\r\n\t\t})\r\n\r\n\t\t// Remove uservalidation attribute for userlogin validation\r\n\t\t.on('click', \".user-links .log-out-link\", function (e) {\r\n\t\t\tlocalStorage.removeItem('uservalidation');\r\n\t\t})\r\n\r\n\t\t.on(\"change\", \"#va-color\", function () {\r\n\t\t\tif (getPageCategory() == \"Cart Page\") {\r\n\t\t\t\tsessionStorage.setItem(\"cartupdate\", \"1\");\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".close-button\", function () {\r\n\t\t\tif (getPageCategory() == \"Cart Page\") {\r\n\t\t\t\tsessionStorage.setItem(\"cartupdate\", \"\");\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \"#save-for-later\", function () {\r\n\t\t\tif (getPageCategory() == \"Cart Page\") {\r\n\t\t\t\tsessionStorage.setItem(\"cartupdate\", \"\");\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \"#pdp-swatches .selectable\", function () {\r\n\t\t\tif (getPageCategory() == \"Cart Page\") {\r\n\t\t\t\tif (!$(this).hasClass(\"selected\")) {\r\n\t\t\t\t\tsessionStorage.setItem(\"cartupdate\", \"1\");\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".search-suggestion-wrapper .hit\", function () {\r\n\t\t\tgtmNavData = $(this).text().trim();\r\n\t\t\tsessionStorage.setItem(\"navlink\", gtmNavData.replace(/\\s\\s+/g, ' '));\r\n\t\t\tsessionStorage.setItem(\"menuloc\", \"site search pop-in\");\r\n\t\t})\r\n\r\n\t\t.on(\"click\", \".search-suggestion-wrapper .product-suggestion\", function () {\r\n\t\t\tgtmNavData = $(this).text().trim();\r\n\t\t\tvar rep = gtmNavData.replace(/\\n/g, \" \");\r\n\t\t\tsessionStorage.setItem(\"navlink\", rep.replace(/ +/g, \" \"));\r\n\t\t\tsessionStorage.setItem(\"menuloc\", \"site search pop-in\");\r\n\t\t})\r\n\r\n\t\t// PLP click in list image\r\n\t\t.on(\"click\", \"#search-result-items .gtmindex .thumb-link\", function () {\r\n\t\t\tvar index = $(this).parents(\".gtmindex\").index(\".gtmindex\");\r\n\t\t\tif (index >= 0) {\r\n\t\t\t\tif (productData.page >= 1) {\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\t\"pageSubCategory\": \"\",\r\n\t\t\t\t\t\t\"pageCategory\": searchItems.search ? \"Site Search\" : \"Product List Page\",\r\n\t\t\t\t\t\t\"filterChoice\": getActiveSortingRule(),\r\n\t\t\t\t\t\t\"dropDown\": getRefinementsFromURL(),\r\n\t\t\t\t\t\t'products': [prodholder[index]]\r\n\t\t\t\t\t})\r\n\t\t\t\t\tsessionStorage.setItem('listType', prodholder[index].listType);\r\n\t\t\t\t\tsessionStorage.setItem('listName', prodholder[index].listName);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\t\"pageSubCategory\": \"\",\r\n\t\t\t\t\t\t\"pageCategory\": searchItems.search ? \"Site Search\" : \"Product List Page\",\r\n\t\t\t\t\t\t\"filterChoice\": getActiveSortingRule(),\r\n\t\t\t\t\t\t\"dropDown\": getRefinementsFromURL(),\r\n\t\t\t\t\t\t'products': [prodholder[0][index]]\r\n\t\t\t\t\t})\r\n\t\t\t\t\tsessionStorage.setItem('listType', prodholder[0][index].listType);\r\n\t\t\t\t\tsessionStorage.setItem('listName', prodholder[0][index].listName);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// PLP click in list name\r\n\t\t.on(\"click\", \"#search-result-items .gtmindex .name-link\", function () {\r\n\t\t\tvar index = $(this).parents(\".gtmindex\").index(\".gtmindex\");\r\n\t\t\tif (index >= 0) {\r\n\r\n\t\t\t\tif (productData.page > 0) {\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\t\"pageSubCategory\": \"\",\r\n\t\t\t\t\t\t\"pageCategory\": searchItems.search ? \"Site Search\" : \"Product List Page\",\r\n\t\t\t\t\t\t\"filterChoice\": getActiveSortingRule(),\r\n\t\t\t\t\t\t\"dropDown\": getRefinementsFromURL(),\r\n\t\t\t\t\t\t'products': [prodholder[index]]\r\n\t\t\t\t\t})\r\n\t\t\t\t\tsessionStorage.setItem('listType', prodholder[index].listType);\r\n\t\t\t\t\tsessionStorage.setItem('listName', prodholder[index].listName);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\t\"pageSubCategory\": \"\",\r\n\t\t\t\t\t\t\"pageCategory\": searchItems.search ? \"Site Search\" : \"Product List Page\",\r\n\t\t\t\t\t\t\"filterChoice\": getActiveSortingRule(),\r\n\t\t\t\t\t\t\"dropDown\": getRefinementsFromURL(),\r\n\t\t\t\t\t\t'products': [prodholder[0][index]]\r\n\t\t\t\t\t})\r\n\t\t\t\t\tsessionStorage.setItem('listType', prodholder[0][index].listType);\r\n\t\t\t\t\tsessionStorage.setItem('listName', prodholder[0][index].listName);\r\n\t\t\t\t}\r\n\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// PLP click in list view details\r\n\t\t.on(\"click\", \"#search-result-items .gtmindex .buy-button\", function () {\r\n\t\t\tvar index = $(this).parents(\".gtmindex\").index(\".gtmindex\");\r\n\t\t\tif (index >= 0) {\r\n\r\n\t\t\t\tif (productData.page > 0) {\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\t\"pageSubCategory\": \"\",\r\n\t\t\t\t\t\t\"pageCategory\": searchItems.search ? \"Site Search\" : \"Product List Page\",\r\n\t\t\t\t\t\t\"filterChoice\": getActiveSortingRule(),\r\n\t\t\t\t\t\t\"dropDown\": getRefinementsFromURL(),\r\n\t\t\t\t\t\t'products': [prodholder[index]]\r\n\t\t\t\t\t})\r\n\t\t\t\t\tsessionStorage.setItem('listType', prodholder[index].listType);\r\n\t\t\t\t\tsessionStorage.setItem('listName', prodholder[index].listName);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\t\"pageSubCategory\": \"\",\r\n\t\t\t\t\t\t\"pageCategory\": searchItems.search ? \"Site Search\" : \"Product List Page\",\r\n\t\t\t\t\t\t\"filterChoice\": getActiveSortingRule(),\r\n\t\t\t\t\t\t\"dropDown\": getRefinementsFromURL(),\r\n\t\t\t\t\t\t'products': [prodholder[0][index]]\r\n\t\t\t\t\t})\r\n\t\t\t\t\tsessionStorage.setItem('listType', prodholder[0][index].listType);\r\n\t\t\t\t\tsessionStorage.setItem('listName', prodholder[0][index].listName);\r\n\t\t\t\t}\r\n\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// Recommendation, bestseller eelistclick in homepage,pdp,cart\r\n\t\t.on(\"click\", \".cross-sell .carousel-recommendations .product-tile-inner\", function (e) {\r\n\t\t\tvar index = $(this).parents(\"[class^='item-']\").index();\r\n\t\t\tif (window.forpageload != undefined && typeof forpageload.product[index] != undefined && forpageload.product[index] != null) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\"pageSubCategory\": \"\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"filterChoice\": \"\",\r\n\t\t\t\t\t\"dropDown\": \"\",\r\n\t\t\t\t\t'products': [{\r\n\t\t\t\t\t\t\"listType\": forpageload.product[index].listType,\r\n\t\t\t\t\t\t\"listName\": forpageload.product[index].listName,\r\n\t\t\t\t\t\t\"position\": forpageload.product[index].position,\r\n\t\t\t\t\t\t\"id\": forpageload.product[index].id,\r\n\t\t\t\t\t\t\"category\": getProductCategory(),\r\n\t\t\t\t\t\t\"price\": forpageload.product[index].price,\r\n\t\t\t\t\t\t\"name\": forpageload.product[index].name,\r\n\t\t\t\t\t\t\"brand\": getProductBrand(),\r\n\t\t\t\t\t\t\"quantity\": forpageload.product[index].quantity,\r\n\t\t\t\t\t\t\"size\": forpageload.product[index].size,\r\n\t\t\t\t\t\t\"subCategory\": forpageload.product[index].subCategory,\r\n\t\t\t\t\t\t\"subSubCategory\": forpageload.product[index].subSubCategory,\r\n\t\t\t\t\t\t\"productAutoReplen\": forpageload.product[index].productAutoReplen,\r\n\t\t\t\t\t\t\"productOutOfStock\": forpageload.product[index].productOutOfStock,\r\n\t\t\t\t\t\t\"productColor\": forpageload.product[index].productColor,\r\n\t\t\t\t\t\t\"productType\": forpageload.product[index].productType,\r\n\t\t\t\t\t\t\"productNumReviews\": \"\",\r\n\t\t\t\t\t\t\"productStarRating\": \"\"\r\n\t\t\t\t\t}]\r\n\t\t\t\t})\r\n\t\t\t\tsessionStorage.setItem('listType', forpageload.product[index].listType);\r\n\t\t\t\tsessionStorage.setItem('listName', forpageload.product[index].listName);\r\n\t\t\t}\r\n\r\n\t\t})\r\n\r\n\t\t// Recently viewed eelistclick in homepage\r\n\t\t.on(\"click\", \".cross-sell .carousel-recommendations .recommendation-item\", function (e) {\r\n\t\t\tvar productID = $(this).parents(\".pdp-main\").data('pid');\r\n\t\t\tvar index = $(this).index();\r\n\t\t\tif (window.recentforpageload != undefined && typeof recentforpageload.product[index] != undefined && recentforpageload.product[index] != null) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\t\"pageSubCategory\": \"\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"filterChoice\": \"\",\r\n\t\t\t\t\t\"dropDown\": \"\",\r\n\t\t\t\t\t'products': [{\r\n\t\t\t\t\t\t\"listType\": recentforpageload.product[index].listType,\r\n\t\t\t\t\t\t\"listName\": recentforpageload.product[index].listName,\r\n\t\t\t\t\t\t\"position\": recentforpageload.product[index].position,\r\n\t\t\t\t\t\t\"id\": productID ? productID : recentforpageload.product[index].id,\r\n\t\t\t\t\t\t\"category\": getProductCategory(),\r\n\t\t\t\t\t\t\"price\": recentforpageload.product[index].price,\r\n\t\t\t\t\t\t\"name\": recentforpageload.product[index].name,\r\n\t\t\t\t\t\t\"brand\": getProductBrand(),\r\n\t\t\t\t\t\t\"quantity\": recentforpageload.product[index].quantity,\r\n\t\t\t\t\t\t\"size\": recentforpageload.product[index].size,\r\n\t\t\t\t\t\t\"subCategory\": recentforpageload.product[index].subCategory,\r\n\t\t\t\t\t\t\"subSubCategory\": recentforpageload.product[index].subSubCategory,\r\n\t\t\t\t\t\t\"productAutoReplen\": recentforpageload.product[index].productAutoReplen,\r\n\t\t\t\t\t\t\"productOutOfStock\": recentforpageload.product[index].productOutOfStock,\r\n\t\t\t\t\t\t\"productColor\": recentforpageload.product[index].productColor,\r\n\t\t\t\t\t\t\"productType\": recentforpageload.product[index].productType,\r\n\t\t\t\t\t\t\"productNumReviews\": \"\",\r\n\t\t\t\t\t\t\"productStarRating\": \"\"\r\n\t\t\t\t\t}]\r\n\t\t\t\t})\r\n\t\t\t\tsessionStorage.setItem('listType', recentforpageload.product[index].listType);\r\n\t\t\t\tsessionStorage.setItem('listName', recentforpageload.product[index].listName);\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// click on viewmore button\r\n\t\t.on(\"plpviewmore\", function (e) {\r\n\t\t\tif (getPageCategory() == \"Category Page\") {\r\n\t\t\t\tif (prodholder && typeof productData.product != undefined) {\r\n\t\t\t\t\tif (productData.page > 1) {\r\n\t\t\t\t\t\tprodholder = prodholder.concat(productData.product);\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tprodholder = prodholder[0].concat(productData.product);\r\n\t\t\t\t\t}\r\n\r\n\r\n\t\t\t\t\tfor (var i = 0; i < prodholder.length; i++) {\r\n\t\t\t\t\t\tprodholder[i].position = i + 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tfor (var a = 0; a < productData.product.length; a++) {\r\n\t\t\t\t\t\tvar diff = productData.product.length - a;\r\n\t\t\t\t\t\tproductData.product[a].position = (prodholder.length - diff) + 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tpushDtLayer({\r\n\t\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\t\"eeAction\": \"eeListView\",\r\n\t\t\t\t\t\t\"pageCategory\": searchItems.search ? \"Site Search\" : \"Product List Page\",\r\n\t\t\t\t\t\t\"dropDown\": \"\",\r\n\t\t\t\t\t\t\"filterChoice\": \"\",\r\n\t\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\t\"products\": productData.product || new Array()\r\n\t\t\t\t\t});\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t})\r\n\t\t\r\n\t\t// tracking change on image in \r\n\t\t.on(\"afterChange\", \".product-thumbnails .slick-dotted\", function (e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"productInteraction\",\r\n\t\t\t\t\"productCategory\": getProductCategory(),\r\n\t\t\t\t\"productSubCategory\": getProductsubCategory(),\r\n\t\t\t\t\"productName\": getProductName(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"productId\": getProductID(),\r\n\t\t\t\t\"interactionType\": \"Image Change\"\r\n\r\n\t\t\t})\r\n\t\t})\r\n\t\t//tracking tab change event\r\n\t\t.on(\"click\", \".pdp-jump-links-wrapper .link-wrapper a\", function (e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"productInteraction\",\r\n\t\t\t\t\"productCategory\": getProductCategory(),\r\n\t\t\t\t\"productSubCategory\": getProductsubCategory(),\r\n\t\t\t\t\"productName\": getProductName(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"productId\": getProductID(),\r\n\t\t\t\t\"interactionType\": \"Change Tab\"\r\n\r\n\t\t\t})\r\n\t\t})\r\n\t\t\r\n\t\t//tracking 360 view click\r\n\t\t.on(\"click\", \".product-detail .360-img\", function (e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"productInteraction\",\r\n\t\t\t\t\"productCategory\": getProductCategory(),\r\n\t\t\t\t\"productSubCategory\": getProductsubCategory(),\r\n\t\t\t\t\"productName\": getProductName(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"productId\": getProductID(),\r\n\t\t\t\t\"interactionType\": \"360 view\"\r\n\r\n\t\t\t})\r\n\t\t})\r\n\t\t\r\n\t\t// click on next arrow recommendation carousel and best seller\r\n\t\t.on(\"click\", \".pi .carousel-recommendations .slick-next\", function (e) {\r\n\t\t\tif (typeof prodData != undefined && prodData != null) {\r\n\t\t\t\tvar array = new Array();\r\n\t\t\t\tvar listholder = new Array();\r\n\t\t\t\tvar listchecker = false;\r\n\t\t\t\tvar listctr = 0;\r\n\t\t\t\t$(\".recommendation-item\").each(function (index) {\r\n\t\t\t\t\tif ($(\".recommendation-item\").filter(\".slick-active\").length == 3) {\r\n\t\t\t\t\t\tif (index > 2 && $(this).hasClass(\"slick-active\")) {\r\n\t\t\t\t\t\t\tarray.push(index - 3);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tif (index > 2 && ($(this).hasClass(\"slick-active\") || $(this).hasClass(\"slick-current\"))) {\r\n\t\t\t\t\t\t\tlistctr = 2;\r\n\t\t\t\t\t\t\tif (prodData.product.length > 3) {\r\n\t\t\t\t\t\t\t\tlistchecker = true;\r\n\t\t\t\t\t\t\t\tlistctr = 0;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tarray.push(index - 3);\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tif (listchecker && listctr < 2 && index > 2 && array.length <= 3) {\r\n\t\t\t\t\t\t\t\tif (array[array.length] != index - 3) {\r\n\t\t\t\t\t\t\t\t\tlistctr += 1;\r\n\t\t\t\t\t\t\t\t\tarray.push(index - 3);\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\t\tlistchecker = false;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\r\n\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t});\r\n\t\t\t\tfor (var i = 0; i < prodData.product.length; i++) {\r\n\t\t\t\t\tfor (var a = 0; a < array.length; a++) {\r\n\t\t\t\t\t\tif (i == array[a]) {\r\n\t\t\t\t\t\t\tlistholder.push(prodData.product[i]);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\"eeAction\": \"eeListView\",\r\n\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"products\": listholder\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// click on prev arrow recommendation carousel and best seller\r\n\t\t.on(\"click\", \".pi .carousel-recommendations .slick-prev\", function (e) {\r\n\r\n\t\t\tif (typeof prodData != undefined && prodData != null) {\r\n\t\t\t\tvar array = new Array();\r\n\t\t\t\tvar listholder = new Array();\r\n\t\t\t\tvar listchecker = false;\r\n\t\t\t\tvar listctr = 0;\r\n\t\t\t\t$(\".recommendation-item\").each(function (index) {\r\n\t\t\t\t\tif ($(\".recommendation-item\").filter(\".slick-active\").length == 3) {\r\n\t\t\t\t\t\tif (index > 2 && $(this).hasClass(\"slick-active\")) {\r\n\t\t\t\t\t\t\tarray.push(index - 3);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tif (index > 2 && ($(this).hasClass(\"slick-active\") || $(this).hasClass(\"slick-current\"))) {\r\n\t\t\t\t\t\t\tlistctr = 2;\r\n\t\t\t\t\t\t\tif (prodData.product.length > 3) {\r\n\t\t\t\t\t\t\t\tlistchecker = true;\r\n\t\t\t\t\t\t\t\tlistctr = 0;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tarray.push(index - 3);\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tif (listchecker && listctr < 2 && index > 2 && array.length <= 3) {\r\n\t\t\t\t\t\t\t\tif (array[array.length] != index - 3) {\r\n\t\t\t\t\t\t\t\t\tlistctr += 1;\r\n\t\t\t\t\t\t\t\t\tarray.push(index - 3);\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\t\tlistchecker = false;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\r\n\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t});\r\n\t\t\t\tfor (var i = 0; i < prodData.product.length; i++) {\r\n\t\t\t\t\tfor (var a = 0; a < array.length; a++) {\r\n\t\t\t\t\t\tif (i == array[a]) {\r\n\t\t\t\t\t\t\tlistholder.push(prodData.product[i]);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\"eeAction\": \"eeListView\",\r\n\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"products\": listholder\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// click on next arrow recently viewed\r\n\t\t.on(\"click\", \".cross-sell .carousel-recommendations .slick-next\", function (e) {\r\n\r\n\t\t\tif (typeof prodData != undefined && prodData != null) {\r\n\t\t\t\tvar array = new Array();\r\n\t\t\t\tvar listholder = new Array();\r\n\t\t\t\t$(\".recommendation-item\").each(function (index) {\r\n\t\t\t\t\tif (index > 2 && $(this).hasClass(\"slick-active\")) {\r\n\t\t\t\t\t\tarray.push(index - 3);\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t\tfor (var i = 0; i < prodData.product.length; i++) {\r\n\t\t\t\t\tfor (var a = 0; a < array.length; a++) {\r\n\t\t\t\t\t\tif (i == array[a]) {\r\n\t\t\t\t\t\t\tlistholder.push(prodData.product[i]);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\"eeAction\": \"eeListView\",\r\n\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"products\": listholder\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// click on next arrow recently viewed\r\n\t\t.on(\"click\", \".cross-sell .carousel-recommendations .slick-prev\", function (e) {\r\n\r\n\t\t\tif (typeof prodData != undefined && prodData != null) {\r\n\t\t\t\tvar array = new Array();\r\n\t\t\t\tvar listholder = new Array();\r\n\t\t\t\t$(\".recommendation-item\").each(function (index) {\r\n\t\t\t\t\tif (index > 2 && $(this).hasClass(\"slick-active\")) {\r\n\t\t\t\t\t\tarray.push(index - 3);\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t\tfor (var i = 0; i < prodData.product.length; i++) {\r\n\t\t\t\t\tfor (var a = 0; a < array.length; a++) {\r\n\t\t\t\t\t\tif (i == array[a]) {\r\n\t\t\t\t\t\t\tlistholder.push(prodData.product[i]);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\"eeAction\": \"eeListView\",\r\n\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"products\": listholder\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t// pdp fire when variation was change\r\n\t\t.on(\"gtvariationchange\", function (e) {\r\n\t\t\tif (getPageCategory() == \"Product Page\") {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"eeAction\": \"eeProductDetail\",\r\n\t\t\t\t\t\"event\": \"eeProductDetail\",\r\n\t\t\t\t\t\"pageCategory\": \"Product Page\",\r\n\t\t\t\t\t'products': [{\r\n\t\t\t\t\t\t\"listType\": sessionStorage.getItem('listType'),\r\n\t\t\t\t\t\t\"listName\": sessionStorage.getItem('listName'),\r\n\t\t\t\t\t\t\"id\": pdpdata.ID,\r\n\t\t\t\t\t\t\"productVariantID\": pdpdata.master ? pdpdata.defalutvariant : pdpdata.ID,\r\n\t\t\t\t\t\t\"category\": pdpdata.catid,\r\n\t\t\t\t\t\t\"price\": pdpdata.pricing.sale ? pdpdata.pricing.sale : pdpdata.pricing.minprice,\r\n\t\t\t\t\t\t\"name\": pdpdata.name,\r\n\t\t\t\t\t\t\"brand\": pdpdata.brand,\r\n\t\t\t\t\t\t\"quantity\": pdpdata.quantity,\r\n\t\t\t\t\t\t\"size\": pdpdata.size,\r\n\t\t\t\t\t\t\"subCategory\": pdpdata.subcategory,\r\n\t\t\t\t\t\t\"subSubCategory\": pdpdata.subsubcategory,\r\n\t\t\t\t\t\t\"productAutoReplen\": pdpdata.productautoreplenish,\r\n\t\t\t\t\t\t\"productOutOfStock\": pdpdata.productOutOfStock,\r\n\t\t\t\t\t\t\"productColor\": pdpdata.productColor,\r\n\t\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\t\"collectionName\": pdpdata.customBrand,\r\n\t\t\t\t\t\t\"productNumReviews\": pdpdata.productNumReviews,\r\n\t\t\t\t\t\t\"productStarRating\": pdpdata.productStarRating\r\n\t\t\t\t\t}]\r\n\t\t\t\t})\r\n\t\t\t}\r\n\r\n\t\t})\r\n\r\n\t\t// Variation change on product tile\r\n\t\t.on(\"gttilevariationchange\", function (e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t'products': [{\r\n\t\t\t\t\t\"listType\": sessionStorage.getItem('listType'),\r\n\t\t\t\t\t\"listName\": sessionStorage.getItem('listName'),\r\n\t\t\t\t\t\"id\": tileVariantData.ID,\r\n\t\t\t\t\t\"productVariantID\": tileVariantData.master ? tileVariantData.defalutvariant : tileVariantData.ID,\r\n\t\t\t\t\t\"category\": tileVariantData.catid,\r\n\t\t\t\t\t\"price\": tileVariantData.pricing.sale ? tileVariantData.pricing.sale : tileVariantData.pricing.minprice,\r\n\t\t\t\t\t\"name\": tileVariantData.name,\r\n\t\t\t\t\t\"brand\": tileVariantData.brand,\r\n\t\t\t\t\t\"quantity\": tileVariantData.quantity,\r\n\t\t\t\t\t\"size\": tileVariantData.size,\r\n\t\t\t\t\t\"subCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\t\"subSubCategory\": tileVariantData.subsubcategory,\r\n\t\t\t\t\t\"productAutoReplen\": tileVariantData.productautoreplenish,\r\n\t\t\t\t\t\"productOutOfStock\": tileVariantData.productOutOfStock,\r\n\t\t\t\t\t\"productColor\": tileVariantData.productColor,\r\n\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\"collectionName\": tileVariantData.customBrand,\r\n\t\t\t\t\t\"productNumReviews\": tileVariantData.productNumReviews,\r\n\t\t\t\t\t\"productStarRating\": tileVariantData.productStarRating\r\n\t\t\t\t}]\r\n\t\t\t})\r\n\r\n\t\t})\r\n\r\n\t\t//PLP filter change\r\n\t\t.on(\"selectmenuchange\", \".top-filter select\", function (event, ui) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"dropDownChoice\",\r\n\t\t\t\t\"dropDownType\": event.target[0].label.trim(),\r\n\t\t\t\t\"filterChoice\": ui.item.label.trim(),\r\n\t\t\t\t\"listType\": \"Product Category List\",\r\n\t\t\t\t\"listName\": $(\".breadcrumb\").find(\".breadcrumb-element:last\").text().trim() + \">\" + ui.item.label.trim()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// \tSort By in Makeup in PLP \t\t\r\n\t\t.on(\"selectmenuchange\", \".sort-by select\", function (event, ui) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"dropDownChoice\",\r\n\t\t\t\t\"dropDownType\": \"Sort By\",\r\n\t\t\t\t\"filterChoice\": ui.item.label.trim(),\r\n\t\t\t\t\"listType\": \"Product Category List\",\r\n\t\t\t\t\"listName\": $(\".breadcrumb\").find(\".breadcrumb-element:last\").text().trim() + \">\" + ui.item.label.trim()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// \trelated articles\t\r\n\t\t.on('click', '.related-article-sec .related-article-content', function (e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"relatedArticle\",\r\n\t\t\t\t\"page\": $(this).children('a').text().trim(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"pageCategory\": $('.container .article-full-col h1').text().trim()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// \tArticle details product image click\r\n\t\t.on('click', '.article-content-section .product-tile .thumb-link', function (e) {\r\n\t\t\tvar $productTile = $(this).parents(\".product-tile\");\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"shopTheArticle\",\r\n\t\t\t\t\"productName\": $productTile.find('.product-name').text().trim(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"pageCategory\": $('.container .article-full-col h1').text().trim()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// \tArticle details product name click\r\n\t\t.on('click', '.article-content-section .product-tile .name-link', function (e) {\r\n\t\t\tvar $productTile = $(this).parents(\".product-tile\");\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"shopTheArticle\",\r\n\t\t\t\t\"productName\": $productTile.find('.product-name').text().trim(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"pageCategory\": $('.container .article-full-col h1').text().trim()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// \tArticle details product view details click\t\r\n\t\t.on('click', '.article-content-section .product-tile .buy-button', function (e) {\r\n\t\t\tvar $productTile = $(this).parents(\".product-tile\");\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"shopTheArticle\",\r\n\t\t\t\t\"productName\": $productTile.find('.product-name').text().trim(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"pageCategory\": $('.container .article-full-col h1').text().trim()\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t.on('click', '.search-result-content .product-tile-wrapper.product-grid', function (e) {\r\n\t\t\tif ($('.container .article-full-col h1').length < 1) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"shopTheArticle\",\r\n\t\t\t\t\t\"productName\": $(this).find('.product-name').text().trim(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\t//Add to cart from various pages\r\n\t\t.on('click', \".product-tile-inner .add-to-cart\", function (e) {\r\n\t\t\tvar $gtmProductTile = $(this).parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"currencyCode\": window.Resources.CURRENCY,\r\n\t\t\t\t\t\"event\": \"addToCart\",\r\n\t\t\t\t\t\"productOrderType\": getProductOrederType(),\r\n\t\t\t\t\t\"addToCartType\": getPageCategory(),\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\t'products': [{\r\n\t\t\t\t\t\t\"id\": tileVariantData.master ? tileVariantData.masterID : tileVariantData.ID,\r\n\t\t\t\t\t\t\"productVariantID\": tileVariantData.ID,\r\n\t\t\t\t\t\t\"category\": tileVariantData.catid,\r\n\t\t\t\t\t\t\"price\": tileVariantData.pricing.sale ? tileVariantData.pricing.sale : tileVariantData.pricing.minprice,\r\n\t\t\t\t\t\t\"name\": tileVariantData.name,\r\n\t\t\t\t\t\t\"brand\": tileVariantData.brand,\r\n\t\t\t\t\t\t\"quantity\": $(this).parents(\".product-tile\").find('.quantity select').val(),\r\n\t\t\t\t\t\t\"size\": tileVariantData.size,\r\n\t\t\t\t\t\t\"subCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\t\t\"subSubCategory\": tileVariantData.subsubcategory,\r\n\t\t\t\t\t\t\"productAutoReplen\": tileVariantData.productautoreplenish,\r\n\t\t\t\t\t\t\"productOutOfStock\": tileVariantData.productOutOfStock,\r\n\t\t\t\t\t\t\"productColor\": tileVariantData.productColor,\r\n\t\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\t\"collectionName\": tileVariantData.customBrand,\r\n\t\t\t\t\t\t\"productNumReviews\": tileVariantData.productNumReviews,\r\n\t\t\t\t\t\t\"productStarRating\": tileVariantData.productStarRating\r\n\t\t\t\t\t}]\r\n\t\t\t\t});\r\n\t\t})\r\n\t\t//Foundation Finder Page Interaction\r\n\t\t.on('click', '.foundation-finder-buttons button',function(e) {\r\n\t\t\tvar selectedValue = $('input[name=\"selectedanswer\"]').val();\r\n\t\t\t\r\n\t\t\tif ($('#question-0').length) {\r\n\t\t\t\tvar $skinTone = $('input.title').val();\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"foundationFinderStep1\",\r\n\t\t\t\t\t\"skinTone\": $skinTone,\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t});\r\n\t\t\t} else if ($('#question-1').length) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"foundationFinderStep2\",\r\n\t\t\t\t\t\"skinUnderTone\": selectedValue,\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t});\r\n\t\t\t} else if ($('#question-2').length) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"foundationFinderStep3\",\r\n\t\t\t\t\t\"preferredCoverage\": selectedValue,\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t});\r\n\t\t\t} else if ($('#question-3').length) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"foundationFinderStep4\",\r\n\t\t\t\t\t\"preferredFinish\": selectedValue,\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t});\r\n\t\t\t} else if ($('#question-4').length) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"foundationFinderStep5\",\r\n\t\t\t\t\t\"foundationBenefit\": selectedValue,\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t\t\r\n\t\t})\r\n\t\t.on('click','.try-it-on', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\"event\": \"arTryOnNow\",\r\n\t\t\t\"productCategory\": pdpdata.catid,\r\n\t\t\t\"productSubCategory\": pdpdata.subcategory,\r\n\t\t\t\"productName\": pdpdata.name,\r\n\t\t\t\"productId\": pdpdata.ID,\r\n\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click','.choose-a-shade', function(event) {\r\n\t\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\"event\": \"arTryOnNowContinue\",\r\n\t\t\t\"productCategory\": pdpdata.catid,\r\n\t\t\t\"productSubCategory\": pdpdata.subcategory,\r\n\t\t\t\"productName\": pdpdata.name,\r\n\t\t\t\"productId\": pdpdata.ID,\r\n\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click', '.upload-image-link', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"arTryOnNowUploadPhoto\",\r\n\t\t\t\t\"productCategory\": pdpdata.catid,\r\n\t\t\t\t\"productSubCategory\": pdpdata.subcategory,\r\n\t\t\t\t\"productName\": pdpdata.name,\r\n\t\t\t\t\"productId\": pdpdata.ID,\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click', '#cropImageBtn, .choose-a-shade', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"virtualPageView\",\r\n\t\t\t\t\"page\": getpage(),\r\n\t\t\t\t\"pageError\": getPageError(),\r\n\t\t\t\t\"userId\": userid,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click', '.arTryOnBtnWrapper #triggerBtn', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"arTryOnMenu\",\r\n\t\t\t\t\"productCategory\": pdpdata.catid,\r\n\t\t\t\t\"productSubCategory\": pdpdata.subcategory,\r\n\t\t\t\t\"productName\": pdpdata.name,\r\n\t\t\t\t\"productId\": $('#multiSplit').hasClass('active') ? getGiaranQuadViewValues()['productIdArr'] : pdpdata.ID,\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click', '#canvasDownload, #uploadPhoto, #normalView, #beforeAfter, #multiSplit, #liveCamera, #uploadNewPhoto', function(e) {\r\n\t\t\tvar clickEvent = $(e.target).closest('button');\r\n\t\t\tvar $arInteraction=\"\";\r\n\t\t\tvar productID;\r\n\t\t\tswitch(clickEvent.attr('id')){\r\n\t\t\tcase 'canvasDownload' :\r\n\t\t\t\t$arInteraction = 'Download Image';\r\n\t\t\t\tproductID = $('#multiSplit').hasClass('active') ? getGiaranQuadViewValues()['productIdArr'] : pdpdata.ID\r\n\t\t\t\tbreak;\r\n\t\t\tcase 'uploadPhoto' :\r\n\t\t\tcase 'uploadNewPhoto' :\r\n\t\t\tcase 'liveCamera' :\r\n\t\t\t\t$arInteraction = clickEvent.html();\r\n\t\t\t\tproductID = $('#multiSplit').hasClass('active') ? getGiaranQuadViewValues()['productIdArr'] : pdpdata.ID\r\n\t\t\t\tbreak;\r\n\t\t\tcase 'normalView' :\r\n\t\t\t\t$arInteraction = 'Single Mode';\r\n\t\t\t\tbreak;\r\n\t\t\tcase 'beforeAfter' :\r\n\t\t\t\t$arInteraction = 'Dual Mode';\r\n\t\t\t\tbreak;\r\n\t\t\tcase 'multiSplit' :\r\n\t\t\t\t$arInteraction = 'Quad Mode';\r\n\t\t\t\tbreak;\r\n\t\t\tdefault :\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"arTryOnInteraction\",\r\n\t\t\t\t\"interactionType\" : $arInteraction,\r\n\t\t\t\t\"productCategory\": pdpdata.catid,\r\n\t\t\t\t\"productSubCategory\": pdpdata.subcategory,\r\n\t\t\t\t\"productName\": pdpdata.name,\r\n\t\t\t\t\"productId\": productID ? productID : pdpdata.ID,\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click', '#liveCamera', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"virtualPageView\",\r\n\t\t\t\t\"page\": getpage(),\r\n\t\t\t\t\"pageError\": getPageError(),\r\n\t\t\t\t\"userId\": userid,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click', '.product-detail .swatchanchor', function(e) {\r\n\t\t\tif ($('button#multiSplit').hasClass('active')) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"arTryOnQuadViewAddColor\",\r\n\t\t\t\t\t\"productColor\" : $(this).data('color').toString(),\r\n\t\t\t\t\t\"productCategory\": pdpdata.catid,\r\n\t\t\t\t\t\"productSubCategory\": pdpdata.subcategory,\r\n\t\t\t\t\t\"productName\": pdpdata.name,\r\n\t\t\t\t\t\"productId\": $(this).data('pid').toString(),\r\n\t\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t})\r\n\t\t.on('click', '.addToBag-wrapper .addToBag', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\"event\": \"addToCart\",\r\n\t\t\t\t\"addToCartType\": \"AR Try On\",\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t'products': $('#multiSplit').hasClass('active') ? getGiaranQuadViewValues()['products'] : [{\r\n\t\t\t\t\t\"id\": pdpdata.masterID,\r\n\t\t\t\t\t\"category\": pdpdata.catid,\r\n\t\t\t\t\t\"price\": pdpdata.pricing.sale ? pdpdata.pricing.sale : pdpdata.pricing.minprice, \r\n\t\t\t\t\t\"name\": pdpdata.name,\r\n\t\t\t\t\t\"brand\": pdpdata.brand,\r\n\t\t\t\t\t\"quantity\": pdpdata.quantity,\r\n\t\t\t\t\t\"size\": pdpdata.size,\r\n\t\t\t\t\t\"subCategory\" : pdpdata.subcategory,\r\n\t\t\t\t\t\"subSubCategory\" : pdpdata.subsubcategory,\r\n\t\t\t\t\t\"productAutoReplen\": pdpdata.productautoreplenish,\r\n\t\t\t\t\t\"productOutOfStock\": pdpdata.productOutOfStock,\r\n\t\t\t\t\t\"productColor\": pdpdata.productColor,\r\n\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\"productVariantID\": pdpdata.ID, \r\n\t\t\t\t\t\"collectionName\": pdpdata.customBrand,\r\n\t\t\t\t\t\"productNumReviews\": pdpdata.productNumReviews,\r\n\t\t\t\t\t\"productStarRating\": pdpdata.productStarRating,\r\n\t\t\t\t\t\"productOrderType\": getProductOrederType()\r\n\t\t\t\t}]\r\n\t\t\t\t\r\n\t\t\t})\r\n\r\n\t\t})\r\n\t\t.on('click', '.addall-fav, .add-fav', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"clickSaveForLaterArTryOn\",\r\n\t\t\t\t\"productCategory\": pdpdata.catid,\r\n\t\t\t\t\"productSubCategory\": pdpdata.subcategory,\r\n\t\t\t\t\"productName\": pdpdata.name,\r\n\t\t\t\t\"productId\": $('#multiSplit').hasClass('active') ? getGiaranQuadViewValues()['productIdArr'] : pdpdata.ID,\r\n\t\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click', '.try-it-on.exitEnabled, .close-try-it-on', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"exitArTryOn\",\r\n\t\t\t\t\"productCategory\": pdpdata.catid,\r\n\t\t\t\t\"productSubCategory\": pdpdata.subcategory,\r\n\t\t\t\t\"productName\": pdpdata.name,\r\n\t\t\t\t\"productId\": $('#multiSplit').hasClass('active') ? getGiaranQuadViewValues()['productIdArr'] : pdpdata.ID,\r\n\t\t\t\t\"pageCategory\": getPageCategory() \r\n\t\t\t})\r\n\t\t})\t\r\n\t\t//Navigation Interaction\r\n\t\t.on('click','.nav-container a', function(e) {\r\n\t\t\tvar navArr = [];\r\n\t\t\tvar navLocation = $(this).closest('nav ul');\r\n\t\t\tvar $navigationLocationClicked = getNavLocation(navLocation);\r\n\t\t\tif ($navigationLocationClicked === 'Top Menu') {\r\n\t\t\t\tvar catName = $(this).attr('name')\r\n\t\t\t\tnavArr.push(catName);\r\n\t\t\t\tvar parentCat = $(this).closest('ul.sub-menu');\r\n\t\t\t\tif (parentCat.length) {\r\n\t\t\t\t\tvar parentCatName = parentCat.attr('data-parentCat');\r\n\t\t\t\t\tif (catName != parentCatName)\r\n\t\t\t\t\t\tnavArr.push(parentCatName);\r\n\t\t\t\t\tvar grandParent = parentCat.parent();\r\n\t\t\t\t\tvar grandParentCat = grandParent.closest('ul.sub-menu');\r\n\t\t\t\t\tif (grandParentCat.length) {\r\n\t\t\t\t\t\tvar grandParentCatName = grandParentCat.attr('data-parentCat');\r\n\t\t\t\t\t\tif (grandParentCatName != parentCatName) {\r\n\t\t\t\t\t\t\tnavArr.push(grandParentCatName);\r\n\t\t\t\t\t\t} \r\n\t\t\t\t\t}\r\n\t\t\t\t\t\r\n\t\t\t\t}\r\n\t\t\t\tnavArr.reverse();\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tif(!($(this).closest('.mini-cart-content').length > 0 || $(this).closest('.signin-overlay').length > 0)) {\r\n\t\t\t\t//the push must be placed after the gtm.js container call\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"navigationMenuClick\",\r\n\t\t\t\t\t\"navigationLocationClicked\": $navigationLocationClicked,\r\n\t\t\t\t\t\"navigationLinkNameClicked\": navArr.length > 0 ? navArr.join(',') : $(this).attr('name'),\r\n\t\t\t\t\t\"userId\": userid,\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t})\r\n\t\t\r\n\t\t//carousel Interaction\r\n\t\t.on('click', '#homepage-hero a', function(e) {\r\n\t\t\tvar navigationLink = $(this).closest('.slide-wrapper');\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"carouselClick\",\r\n\t\t\t\t\"navigationLinkNameClicked\": navigationLink ? navigationLink.attr('data-name') : '',\r\n\t\t\t\t\"userId\": userid,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t})\r\n\t\t})\r\n\t\t\r\n\t\t//Home Page Hero Carousel\r\n\t\t.on('click', '#homepage-hero button,.slick-dots li', function(e) {\r\n\t\t\tvar $carouselTitle = $('#homepage-hero .slick-slide.slick-active img').attr('alt');\r\n\t\t\t//the push must be placed after the gtm.js container call\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"carouselChangeImage\",\r\n\t\t\t\t\"carouselTitle\": $carouselTitle,\r\n\t\t\t\t\"userId\": userid,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t})\r\n\t\t})\r\n\r\n\t\t//Home Page Hero Carousel Click\r\n\t\t.on('click', '#homepage-hero a', function(e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tvar $promoPosition = $('#homepage-hero').slick('slickCurrentSlide') + 1;\r\n\t\t\tvar $promoId = $('#homepage-hero .slick-slide.slick-active .hero-slide').attr('data-promotion_id');\r\n\t\t\tvar $promoName = $('#homepage-hero .slick-slide.slick-active .hero-slide').attr('data-promotion_name');\r\n\t\t\tvar $nextPage = $('#homepage-hero .slick-slide.slick-active .hero-slide a').attr('href');\r\n\t\t\tif($promoId && $promoName) {\r\n\t\t\t\twindow.dataLayer.push({\r\n\t\t\t\t\t\"event\": \"eePromoClick\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\t'promotions': [{\r\n\t\t\t\t\t\t\"id\": $promoId,\r\n\t\t\t\t\t\t\"name\": $promoName,\r\n\t\t\t\t\t\t\"creative\": \"summer_banner2\",\r\n\t\t\t\t\t\t\"position\": $promoPosition\r\n\t\t\t\t\t}]\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t\tsetTimeout(function() {\r\n\t\t\t\tdocument.location = $nextPage;\r\n\t\t\t}, 5000);\r\n\t\t})\r\n\r\n\t\t//Home Page Skin Care Best Sellers Product Click\r\n\t\t.on(\"click\", \".homepage-container .gaClickEvent .thumb-link, .homepage-container .gaClickEvent .name-link\", function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tvar $gtmProductTile = $(this).parents(\".product-tile\").find('.gtm-product-tile');\r\n\t\t\tvar tileVariantData = $gtmProductTile.data('value');\r\n\t\t\tvar index = $(this).parents(\".recommendation-item\").index()+1;\r\n\t\t\twindow.dataLayer.push({\r\n\t\t\t\"event\": \"eeListClick\",\r\n\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t'products': [{\r\n\t\t\t\t\"listType\": 'product category list',\r\n\t\t\t\t\"listName\": 'Best Sellers',\r\n\t\t\t\t\"position\": index,\r\n\t\t\t\t\"id\": tileVariantData.ID,\r\n\t\t\t\t\"category\": tileVariantData.catid,\r\n\t\t\t\t\"price\": tileVariantData.pricing.sale ? tileVariantData.pricing.sale : tileVariantData.pricing.minprice,\r\n\t\t\t\t\"name\": tileVariantData.name,\r\n\t\t\t\t\"brand\": tileVariantData.brand,\r\n\t\t\t\t\"quantity\": tileVariantData.quantity,\r\n\t\t\t\t\"size\": tileVariantData.size,\r\n\t\t\t\t\"subCategory\": tileVariantData.subcategory,\r\n\t\t\t\t\"subSubCategory\": tileVariantData.subsubcategory,\r\n\t\t\t\t\"productAutoReplen\": tileVariantData.productautoreplenish,\r\n\t\t\t\t\"productOutOfStock\": tileVariantData.productOutOfStock,\r\n\t\t\t\t\"productColor\": tileVariantData.productColor,\r\n\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\"productVariantID\": tileVariantData.master ? tileVariantData.defalutvariant : tileVariantData.ID,\r\n\t\t\t\t\"collectionName\": tileVariantData.customBrand\r\n\t\t\t\t}]\r\n\t\t\t})\r\n\t\t\tvar $nextPage = $(this).attr('href');\r\n\t\t\tsetTimeout(function() {\r\n\t\t\t\tdocument.location = $nextPage;\r\n\t\t\t}, 1000);\r\n\t\t})\r\n\r\n\t\t// Search Clear Text and Cancel\r\n\t\t.on('click', '.header-search .search-inner .cancel-btn', function(e) {\r\n\t\t\tvar event = $('.header-search .close-wrapper').hasClass('clicked') ? \"siteSearchCancel\" : \"siteSearchClear\"\r\n\t\t\t\r\n\t\t\t//the push must be placed after the gtm.js container call\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": event,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t})\r\n\t\t})\r\n\t\t.on('click', '.header-search .close-wrapper', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"siteSearchCancel\",\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"language\": getLanguage(),\r\n\t\t\t\t\"websiteCountry\": getCountry()\r\n\t\t\t})\r\n\t\t})\r\n\r\n\t\t//promotional banner message- top & bottom\r\n\t\t.on('click', '.top-notification .top-banner-message a, .bottom-notification-message .custom-message a', function(e) {\r\n\t\t\t//the push must be placed before the gtm.js container call\r\n\t\t\tpushToDataLayer({\t\t\t\t\t\r\n\t\t\t\t\"event\": \"eePromoClick\",\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t'promotions': [{\r\n\t\t\t\t\"position\": $(this).closest('.custom-message').attr('data-position') || '',\r\n\t\t\t\t\"id\": $(this).closest('.custom-message').attr('data-id') || '',\r\n\t\t\t\t\"creative\": $(this).closest('.custom-message').attr('data-creative') || '',\r\n\t\t\t\t\"name\": $(this).closest('.custom-message').attr('data-name') || ''\r\n\t\t\t\t}]\r\n\t\t\t})\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tdocument.location = $(this).href;\r\n\t\t\t\t}, 1000);\r\n\t\t})\r\n\t\t.on('scroll', function() {\r\n\t\t\tpromotionView();\r\n\t\t})\r\n\t\t\r\n\t\t//add to Cart for sample\r\n\t\t.on('click', '.sample-bonus-add-to-cart', function(e) {\r\n\t\t\tvar $this = $(this);\r\n\t\t\tvar sampleBonusIds = $('input[data-button=sample-bonus-add-to-cart]').val();\r\n\t\t\tvar sampleBonusIdsArr = sampleBonusIds.split(',');\r\n\t\t\tvar products=[];\r\n\t\t\t$.each(sampleBonusIdsArr,function(index,value){\r\n\t\t\t\tvar product= {};\r\n\t\t\t\tvar productJsonEle = $('.sample-bonus-contents .product-tile[data-itemid='+value+']');\r\n\t\t\t\tvar productJson = productJsonEle.find('input').data('value');\r\n\t\t\t\tproduct = getProdListData(productJson)\r\n\t\t\t\tif ($this[0].id === 'samples-add-to-cart')\r\n\t\t\t\t\tproduct.productType = 'Sample';\r\n\t\t\t\telse\r\n\t\t\t\t\tproduct.productType = 'Bonus Product';\r\n\t\t\t\tproducts.push(product);\r\n\t\t\t\t\r\n\t\t\t});\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"currencyCode\": window.Resources.CURRENCY,\r\n\t\t\t\t\"event\": \"addToCart\",\r\n\t\t\t\t\"addToCartType\": \"Sample Bonus Modal\",\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t'products': products\r\n\t\t\t});\r\n\t\t})\r\n\t\t\r\n\t\t//cart page Contact us link\r\n\t\t.on('click', '.contact-us-link', function(e) {\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\"event\": \"contactRequest\",\r\n\t\t\t\"contactType\": \"Customer Care\",\r\n\t\t\t\"siteLocation\": getPageSubcategory(),\r\n\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\"pageCategory\": getPageCategory()\r\n\t\t\t})\r\n\t\t})\r\n\t\t\r\n\t\t.on('click', '.spcBillingContinueBtn', function(e) {\r\n\t\t\t//the pageview push must be placed after the gtm.js container call\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\" : \"virtualPageview\",\r\n\t\t\t\t\"eeAction\": \"eeCheckout\",\r\n\t\t\t\t\"checkoutStep\": \"5\",\r\n\t\t\t\t\"funnelType\": basketConfirmation.funnelType,\r\n\t\t\t\t\"giftWrapping\": basketConfirmation.giftWrapping,\r\n\t\t\t\t\"checkoutErrorMessage\": basketConfirmation.checkoutErrorMessage,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"products\": basketConfirmation.productLineItems\r\n\t\t\t})\r\n\t\t\t//the event push must be placed after the gtm.js container call\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\"event\": \"eeCheckoutOption\",\r\n\t\t\t\"checkoutStep\": \"4\",\r\n\t\t\t\"checkoutOption\": \"CREDIT_CARD\"\r\n\t\t\t})\r\n\r\n\t\t})\r\n\t\t\r\n\t\t.on('click', '.spcReviewSummaryContinueBtn', function(e) {\r\n\t\t\t//the pageview push must be placed before the gtm.js container call\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\" : \"virtualPageview\",\r\n\t\t\t\t\"eeAction\": \"eeCheckout\",\r\n\t\t\t\t\"checkoutStep\": \"6\",\r\n\t\t\t\t\"funnelType\": basketConfirmation.funnelType,\r\n\t\t\t\t\"giftWrapping\": basketConfirmation.giftWrapping,\r\n\t\t\t\t\"checkoutErrorMessage\": basketConfirmation.checkoutErrorMessage,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t\t\"products\": basketConfirmation.productLineItems\r\n\t\t\t})\r\n\t\t})\r\n\t\t\r\n\t\t.on('click','.minicart-close, .remove-link-wrapper, .minicart-sample-action, .mini-cart-totals, .mini-cart-name, mini-cart-image', function(e) {\r\n\t\t\tvar interactionType;\r\n\t\t\tif ($(this).hasClass('minicart-close')){\r\n\t\t\t\tinteractionType = 'Close';\r\n\t\t\t} else if ($(this).hasClass('remove-link-wrapper')) {\r\n\t\t\t\tinteractionType = 'Remove';\r\n\t\t\t} else if ($(this).hasClass('minicart-sample-action')) {\r\n\t\t\t\tinteractionType = 'Choose Samples';\r\n\t\t\t} else if ($(this).hasClass('mini-cart-totals')) {\r\n\t\t\t\tinteractionType = 'View Shopping Bag';\r\n\t\t\t} else if ($(this).hasClass('mini-cart-name') || eventClass.contains('mini-cart-name')) {\r\n\t\t\t\tinteractionType = 'View Product';\r\n\t\t\t}\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"cartHoverInteraction\",\r\n\t\t\t\t\"interactionType\" : interactionType, // View Shopping Cart, Choose Samples, Close\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t})\r\n\r\n\t\t})\r\n\t\t\r\n\t\t.on('click', 'button.cart-checkout-button', function (e) {\r\n\t\t\tif($('a#selectsample').attr('data-id')=='link-cart-sampleSelect') {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"noSampleNoticeImpression\",\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t})\r\n\t\t\r\n\t\t.on('click', ' #missed-samples-modal .modal-close', function(e) {\r\n\t\t\tvar interactionType;\r\n\t\t\tif ($(this).hasClass('modal-btn-select-sample')){\r\n\t\t\t\tinteractionType = 'Choose Samples';\r\n\t\t\t} else if ($(this).hasClass('modal-btn-proceed-checkout')){\r\n\t\t\t\tinteractionType = 'Continue to Checkout';\r\n\t\t\t} else if ($(this).hasClass('icon-close')){\r\n\t\t\t\tinteractionType = 'Close';\r\n\t\t\t}\r\n\t\t\tpushToDataLayer({\r\n\t\t\t\t\"event\": \"noSampleNoticeClick\",\r\n\t\t\t\t\"interactionType\": interactionType,\r\n\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t})\t\r\n\t\t})\r\n\t\t\r\n\t\t.on('click', '.icon-more-info, .icon-sample-close', function(e) {\r\n\t\t\tvar interactionType;\r\n\t\t\tif ($(this).hasClass('icon-more-info')){\r\n\t\t\t\tinteractionType = 'More info';\r\n\t\t\t} else if ($(this).hasClass('icon-sample-close')){\r\n\t\t\t\tinteractionType = 'Close more info';\r\n\t\t\t}\r\n\t\t\tif ($(this).parents().hasClass('sample-body')) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"samplePopupInteraction\",\r\n\t\t\t\t\t\"interactionType\" : interactionType, // More Info, Select sample, Unselect sample\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t})\r\n\t\t\t} else if ($(this).parents().hasClass('bonus-body')) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"bonusPopupInteraction\",\r\n\t\t\t\t\t\"interactionType\" : interactionType, // More Info, Select sample, Unselect sample\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t})\r\n\t\t\t\t\r\n\t\t.on('click', '.sample-bonus-contents .product-tile-wrapper', function(e) {\r\n\t\t\tvar interactionType;\r\n\t\t\tif ($(this).find('button.remove').length > 0) {\r\n\t\t\t\tinteractionType = \"Select sample\"\r\n\t\t\t} else {\r\n\t\t\t\tinteractionType = \"Unselect sample\"\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tif ($(this).parents().hasClass('sample-body')) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"samplePopupInteraction\",\r\n\t\t\t\t\t\"interactionType\" : interactionType, // More Info, Select sample, Unselect sample\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t})\r\n\t\t\t} else if ($(this).parents().hasClass('bonus-body')) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"bonusPopupInteraction\",\r\n\t\t\t\t\t\"interactionType\" : interactionType, // More Info, Select sample, Unselect sample\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t})\r\n\t\t\t}\r\n\r\n\t\t})\r\n\t\t\r\n\t\t.on('click', '.payment-method-header', function(e) {\r\n\t\t\tvar paymentGateway;\r\n\t\t\tif ($(this).hasClass('paypal')){\r\n\t\t\t\tpaymentGateway = \"PayPal\";\r\n\t\t\t} else if ($(this).hasClass('afterpay')){\r\n\t\t\t\tpaymentGateway = \"Afterpay\";\r\n\t\t\t} else if ($(this).hasClass('applepay')){\r\n\t\t\t\tpaymentGateway = \"ApplePay\";\r\n\t\t\t} else if ($(this).hasClass('gift-card-title')) {\r\n\t\t\t\tpaymentGateway = \"GiftCard\";\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tif (paymentGateway) {\r\n\t\t\t\tpushToDataLayer({\r\n\t\t\t\t\t\"event\": \"thirdPartyCheckout\",\r\n\t\t\t\t\t\"paymentGateway\" : paymentGateway, // PayPal, Afterpay\r\n\t\t\t\t\t\"pageCategory\": getPageCategory(),\r\n\t\t\t\t\t\"pageSubCategory\": getPageSubcategory()\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t})\t\t\r\n\t}\r\n\r\n\twindow.addEventListener('load', function () {\r\n\t\tif(gtCurPage == 'visualizer-getanalysisresult'){\r\n\t\t\tvar resultDate = $('.visualizerResultDateslider .slide.active a').data('resultdate'); \r\n\t\t\tvar nowDate = new Date(resultDate);\r\n\t\t\tvar date = nowDate.getFullYear()+'.'+(nowDate.getMonth()+1)+'.'+nowDate.getDate(); \r\n\t\t\tvar overallResult = $('.visualizerResultDateslider .slide.active a').data('overallscore');\r\n\t\t\tpushDtLayer({\r\n\t\t\t\t\"event\": \"consultationResult\", \r\n\t\t\t\t\"consultationToolType\": \"Skin Visualizer\", \r\n\t\t\t\t\"overallResult\": overallResult, \r\n\t\t\t\t\"resultDate\": date \r\n\t\t\t})\r\n\t\t}\r\n\t})\r\n\r\n\twindow.addEventListener('load', function () {\r\n\t\tif (gtCurPage == 'default-start' || gtCurPage == 'home-show') {\r\n\t\t\tvar $activeSlide = $('#homepage-hero .slick-slide.slick-active');\r\n\t\t\tvar $promoId = $activeSlide.find('.hero-slide').attr('data-promotion_id');\r\n\t\t\tvar $promoName = $activeSlide.find('.hero-slide').attr('data-promotion_name');\r\n\t\t\tif($promoId && $promoName) {\r\n\t\t\t\twindow.dataLayer.push({\r\n\t\t\t\t\t\"event\": \"eePromoView\",\r\n\t\t\t\t\t\"pageCategory\": \"Home Page\",\r\n\t\t\t\t\t\"pageSubCategory\": \"Storefront\",\r\n\t\t\t\t\t'promotions': [{\r\n\t\t\t\t\t\t\"id\": $promoId,\r\n\t\t\t\t\t\t\"name\": $promoName,\r\n\t\t\t\t\t\t\"creative\": \"summer_banner2\",\r\n\t\t\t\t\t\t\"position\": \"1\"\r\n\t\t\t\t\t}]\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n\r\n\twindow.addEventListener('load', function () {\r\n\t\tif (gtCurPage == 'search-show') {\r\n\t\t\tconst inputElements = document.querySelectorAll('.product-tiles-holder input.gtm-product-tile');\r\n\t\t\tconst pId = [];\r\n\t\t \r\n\t\t\tinputElements.forEach((element, index) => {\r\n\t\t\t\tconst dataValue = element.getAttribute('data-value');\r\n\t\t\t\tconst dataObject = JSON.parse(dataValue);\r\n\t\t\t\tconst productData = {\r\n\t\t\t\t\t\"listType\": 'product category list',\r\n\t\t\t\t\t\"listName\": dataObject.catid,\r\n\t\t\t\t\t\"position\": index + 1,\r\n\t\t\t\t\t\"id\": dataObject.ID,\r\n\t\t\t\t\t\"category\": dataObject.catid,\r\n\t\t\t\t\t\"price\": dataObject.pricing.sale,\r\n\t\t\t\t\t\"name\": dataObject.name,\r\n\t\t\t\t\t\"brand\": dataObject.brand,\r\n\t\t\t\t\t\"size\": dataObject.size,\r\n\t\t\t\t\t\"subCategory\": dataObject.subcategory,\r\n\t\t\t\t\t\"subSubCategory\": dataObject.subSubCategory,\r\n\t\t\t\t\t\"productautoreplenish\": dataObject.productautoreplenish,\r\n\t\t\t\t\t\"productOutOfStock\": dataObject.productOutOfStock,\r\n\t\t\t\t\t\"productColor\": dataObject.productColor,\r\n\t\t\t\t\t\"productType\": \"Product\",\r\n\t\t\t\t\t\"productVariantID\": dataObject.master ? dataObject.defalutvariant : dataObject.ID,\r\n\t\t\t\t\t\"collectionName\": dataObject.customBrand,\r\n\t\t\t\t\t\"productNumReviews\": dataObject.productNumReviews,\r\n\t\t\t\t\t\"productStarRating\": dataObject.productStarRating\t\t\t\t\r\n\t\t\t\t};\r\n\t\t\t\tpId.push(productData);\r\n\t\t\t});\r\n\t\t \r\n\t\t\twindow.dataLayer.push({\r\n\t\t\t \"currencyCode\": window.User.currencyCode,\r\n\t\t\t \"eeAction\": \"eeListView\",\r\n\t\t\t \"event\": \"eeListView\",\r\n\t\t\t \"pageSubCategory\": getPageSubcategory(),\r\n\t\t\t \"pageCategory\": getPageCategory(),\r\n\t\t\t \"products\": JSON.stringify(pId)\r\n\t\t\t});\r\n\t\t }\r\n\t});\r\n\t\r\n\twindow.addEventListener('load', function () {\r\n\t\tif(gtCurPage == 'visualizer-getanalysisresult'){\r\n\t\t\tvar beautyModule = $('.skin-condition-tabs .skin-condition-btn.active').text();\r\n\t\t\tvar radioData = $('.skin-condition-tabs .skin-condition-btn.active').attr('data-tab');\r\n\t\t\tvar beautyfilter = $(\".\"+radioData+\" input.skin-condition-radio:checked\").attr('value');\r\n\t\t\tpushDtLayer({\r\n\t\t\t\t\"event\": \"beautyCirculationInteraction\", \r\n\t\t\t\t\"consultationToolType\": \"Skin Visualizer\", \r\n\t\t\t\t\"beautyModule\": beautyModule, \r\n\t\t\t\t\"beautyfilter\": beautyfilter ? beautyfilter: \"\"\r\n\t\t\t})\t\r\n\t\t}\r\n\t})\r\n\r\n\twindow.addEventListener('load', function () {\r\n\t\tif (gtCurPage == 'visualizer-getanalysisresult') {\r\n\t\t\tvar recommendedProduct = $('.targetSolutions').attr('data-targetedsolutions');\r\n\t\t\tvar premiumSolutions = $('.premiumSolutions').attr('data-premiumsolutions');\r\n\t\t\tvar mensCare = $('.mensCare').attr('data-menscare');\r\n\t\t\tif(recommendedProduct){\r\n\t\t\t\tpushDtLayer({\r\n\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\"pageCategory\": \"Consultation Tool\", \r\n\t\t\t\t\t\"pageSubCategory\": \"Skin Visualizer\", \r\n\t\t\t\t\t\"siteLocation\": \"footer, product page\",\r\n\t\t\t\t\t\"products\": JSON.parse(recommendedProduct)\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t\tif(premiumSolutions){\r\n\t\t\t\tpushDtLayer({\r\n\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\"pageCategory\": \"Consultation Tool\", \r\n\t\t\t\t\t\"pageSubCategory\": \"Skin Visualizer\", \r\n\t\t\t\t\t\"siteLocation\": \"footer, product page\",\r\n\t\t\t\t\t\"products\": JSON.parse(premiumSolutions)\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t\tif(mensCare){\r\n\t\t\t\tpushDtLayer({\r\n\t\t\t\t\t\"currencyCode\": window.User.currencyCode,\r\n\t\t\t\t\t\"event\": \"eeListView\",\r\n\t\t\t\t\t\"pageCategory\": \"Consultation Tool\", \r\n\t\t\t\t\t\"pageSubCategory\": \"Skin Visualizer\", \r\n\t\t\t\t\t\"siteLocation\": \"footer, product page\",\r\n\t\t\t\t\t\"products\": JSON.parse(mensCare)\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t\t\t\r\n\t\t}\r\n\r\n\t})\r\nmodule.exports = {\r\n\tinit: function () {\r\n\t\tif (SitePreferences.GTM_ENABLED)\r\n\t\t\tinitializeGlobalEvents();\r\n\t},\r\n\ttagmanager: {\r\n\t\tclick: function (data) {\r\n\t\t\treturn trackConsultationEvent(data);\r\n\t\t},\r\n\r\n\t\tpageview: function (data) {\r\n\t\t\treturn trackConsultationPageview(data);\r\n\t\t}\r\n\t},\r\n\tonlinequiz: {\r\n\t\tclick: function (data) {\r\n\t\t\treturn trackOnlineQuizEvent(data);\r\n\t\t},\r\n\r\n\t\tpageview: function (onlineQuizPage) {\r\n\t\t\tif(onlineQuizPage == 'result') {\r\n\t\t\t\treturn trackOnlineQuizResultPageview();\r\n\t\t\t} else {\r\n\t\t\t\treturn trackOnlineQuizPageview();\r\n\t\t\t}\t\t\t\r\n\t\t}\r\n\t},\r\n\tgtmInternalPromotion: {\r\n\t\tclick: function (data) {\r\n\t\t\treturn trackInternalPromotionEvent(data);\r\n\t\t},\r\n\r\n\t\tpageview: function (data) {\r\n\t\t\treturn trackInternalPromotionPageView(data);\r\n\t\t}\r\n\t},\r\n\tgtmCouponApplied: gtmCouponApplied,\r\n\tinitSPCBillingEvent: function() {\r\n\t\tspcBillingEvent();\r\n\t},\r\n\tsampleNoticeEvent: function(data) {\r\n\t\tsampleNoticeEvent(data)\r\n\t},\r\n\tcouponAppliedEvent: function() {\r\n\t\tcouponAppliedEvent()\r\n\t}\r\n}\n},{\"./util\":93}],3:[function(require,module,exports){\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(n){if(o[n])return o[n].exports;var i=o[n]={exports:{},id:n,loaded:!1};return e[n].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var o={};return t.m=e,t.c=o,t.p=\"dist/\",t(0)}([function(e,t,o){\"use strict\";function n(e){return e&&e.__esModule?e:{\"default\":e}}var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var o=arguments[t];for(var n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e},a=o(1),r=(n(a),o(5)),c=n(r),u=o(6),s=n(u),d=o(7),f=n(d),l=o(8),m=n(l),p=o(9),b=n(p),v=o(10),g=n(v),y=o(13),w=n(y),h=[],k=!1,x=document.all&&!window.atob,j={offset:120,delay:0,easing:\"ease\",duration:400,disable:!1,once:!1,startEvent:\"DOMContentLoaded\"},O=function(){var e=arguments.length<=0||void 0===arguments[0]?!1:arguments[0];return e&&(k=!0),k?(h=(0,g[\"default\"])(h,j),(0,b[\"default\"])(h,j.once),h):void 0},_=function(){h=(0,w[\"default\"])(),O()},z=function(){h.forEach(function(e,t){e.node.removeAttribute(\"data-aos\"),e.node.removeAttribute(\"data-aos-easing\"),e.node.removeAttribute(\"data-aos-duration\"),e.node.removeAttribute(\"data-aos-delay\")})},A=function(e){return e===!0||\"mobile\"===e&&m[\"default\"].mobile()||\"phone\"===e&&m[\"default\"].phone()||\"tablet\"===e&&m[\"default\"].tablet()||\"function\"==typeof e&&e()===!0},S=function(e){return j=i(j,e),h=(0,w[\"default\"])(),A(j.disable)||x?z():(document.querySelector(\"body\").setAttribute(\"data-aos-easing\",j.easing),document.querySelector(\"body\").setAttribute(\"data-aos-duration\",j.duration),document.querySelector(\"body\").setAttribute(\"data-aos-delay\",j.delay),\"DOMContentLoaded\"===j.startEvent&&[\"complete\",\"interactive\"].indexOf(document.readyState)>-1?O(!0):document.addEventListener(j.startEvent,function(){O(!0)}),window.addEventListener(\"resize\",(0,s[\"default\"])(O,50,!0)),window.addEventListener(\"orientationchange\",(0,s[\"default\"])(O,50,!0)),window.addEventListener(\"scroll\",(0,c[\"default\"])(function(){(0,b[\"default\"])(h,j.once)},99)),document.addEventListener(\"DOMNodeRemoved\",function(e){var t=e.target;t&&1===t.nodeType&&t.hasAttribute&&t.hasAttribute(\"data-aos\")&&(0,s[\"default\"])(_,50,!0)}),(0,f[\"default\"])(\"[data-aos]\",_),h)};e.exports={init:S,refresh:O,refreshHard:_}},function(e,t){},,,,function(e,t,o){\"use strict\";function n(e,t,o){var n=!0,a=!0;if(\"function\"!=typeof e)throw new TypeError(c);return i(o)&&(n=\"leading\"in o?!!o.leading:n,a=\"trailing\"in o?!!o.trailing:a),r(e,t,{leading:n,maxWait:t,trailing:a})}function i(e){var t=\"undefined\"==typeof e?\"undefined\":a(e);return!!e&&(\"object\"==t||\"function\"==t)}var a=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol?\"symbol\":typeof e},r=o(6),c=\"Expected a function\";e.exports=n},function(e,t){\"use strict\";function o(e,t,o){function n(t){var o=b,n=v;return b=v=void 0,O=t,y=e.apply(n,o)}function a(e){return O=e,w=setTimeout(d,t),_?n(e):y}function r(e){var o=e-h,n=e-O,i=t-o;return z?x(i,g-n):i}function u(e){var o=e-h,n=e-O;return!h||o>=t||0>o||z&&n>=g}function d(){var e=j();return u(e)?f(e):void(w=setTimeout(d,r(e)))}function f(e){return clearTimeout(w),w=void 0,A&&b?n(e):(b=v=void 0,y)}function l(){void 0!==w&&clearTimeout(w),h=O=0,b=v=w=void 0}function m(){return void 0===w?y:f(j())}function p(){var e=j(),o=u(e);if(b=arguments,v=this,h=e,o){if(void 0===w)return a(h);if(z)return clearTimeout(w),w=setTimeout(d,t),n(h)}return void 0===w&&(w=setTimeout(d,t)),y}var b,v,g,y,w,h=0,O=0,_=!1,z=!1,A=!0;if(\"function\"!=typeof e)throw new TypeError(s);return t=c(t)||0,i(o)&&(_=!!o.leading,z=\"maxWait\"in o,g=z?k(c(o.maxWait)||0,t):g,A=\"trailing\"in o?!!o.trailing:A),p.cancel=l,p.flush=m,p}function n(e){var t=i(e)?h.call(e):\"\";return t==f||t==l}function i(e){var t=\"undefined\"==typeof e?\"undefined\":u(e);return!!e&&(\"object\"==t||\"function\"==t)}function a(e){return!!e&&\"object\"==(\"undefined\"==typeof e?\"undefined\":u(e))}function r(e){return\"symbol\"==(\"undefined\"==typeof e?\"undefined\":u(e))||a(e)&&h.call(e)==m}function c(e){if(\"number\"==typeof e)return e;if(r(e))return d;if(i(e)){var t=n(e.valueOf)?e.valueOf():e;e=i(t)?t+\"\":t}if(\"string\"!=typeof e)return 0===e?e:+e;e=e.replace(p,\"\");var o=v.test(e);return o||g.test(e)?y(e.slice(2),o?2:8):b.test(e)?d:+e}var u=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol?\"symbol\":typeof e},s=\"Expected a function\",d=NaN,f=\"[object Function]\",l=\"[object GeneratorFunction]\",m=\"[object Symbol]\",p=/^\\s+|\\s+$/g,b=/^[-+]0x[0-9a-f]+$/i,v=/^0b[01]+$/i,g=/^0o[0-7]+$/i,y=parseInt,w=Object.prototype,h=w.toString,k=Math.max,x=Math.min,j=Date.now;e.exports=o},function(e,t){\"use strict\";function o(e,t){r.push({selector:e,fn:t}),!c&&a&&(c=new a(n),c.observe(i.documentElement,{childList:!0,subtree:!0,removedNodes:!0})),n()}function n(){for(var e,t,o=0,n=r.length;n>o;o++){e=r[o],t=i.querySelectorAll(e.selector);for(var a,c=0,u=t.length;u>c;c++)a=t[c],a.ready||(a.ready=!0,e.fn.call(a,a))}}Object.defineProperty(t,\"__esModule\",{value:!0});var i=window.document,a=window.MutationObserver||window.WebKitMutationObserver,r=[],c=void 0;t[\"default\"]=o},function(e,t){\"use strict\";function o(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(t,\"__esModule\",{value:!0});var n=function(){function e(e,t){for(var o=0;o<t.length;o++){var n=t[o];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,o,n){return o&&e(t.prototype,o),n&&e(t,n),t}}(),i=function(){function e(){o(this,e)}return n(e,[{key:\"phone\",value:function(){var e=!1;return function(t){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(t)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i.test(t.substr(0,4)))&&(e=!0)}(navigator.userAgent||navigator.vendor||window.opera),e}},{key:\"mobile\",value:function(){var e=!1;return function(t){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(t)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i.test(t.substr(0,4)))&&(e=!0)}(navigator.userAgent||navigator.vendor||window.opera),e}},{key:\"tablet\",value:function(){return this.mobile()&&!this.phone()}}]),e}();t[\"default\"]=new i},function(e,t){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var o=function(e,t,o){var n=e.node.getAttribute(\"data-aos-once\");t>e.position?e.node.classList.add(\"aos-animate\"):\"undefined\"!=typeof n&&(\"false\"===n||!o&&\"true\"!==n)&&e.node.classList.remove(\"aos-animate\")},n=function(e,t){var n=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,a){o(e,i+n,t)})};t[\"default\"]=n},function(e,t,o){\"use strict\";function n(e){return e&&e.__esModule?e:{\"default\":e}}Object.defineProperty(t,\"__esModule\",{value:!0});var i=o(11),a=n(i),r=function(e,t){return e.forEach(function(e,o){e.node.classList.add(\"aos-init\"),e.position=(0,a[\"default\"])(e.node,t.offset)}),e};t[\"default\"]=r},function(e,t,o){\"use strict\";function n(e){return e&&e.__esModule?e:{\"default\":e}}Object.defineProperty(t,\"__esModule\",{value:!0});var i=o(12),a=n(i),r=function(e,t){var o=0,n=0,i=window.innerHeight,r={offset:e.getAttribute(\"data-aos-offset\"),anchor:e.getAttribute(\"data-aos-anchor\"),anchorPlacement:e.getAttribute(\"data-aos-anchor-placement\")};switch(r.offset&&!isNaN(r.offset)&&(n=parseInt(r.offset)),r.anchor&&document.querySelectorAll(r.anchor)&&(e=document.querySelectorAll(r.anchor)[0]),o=(0,a[\"default\"])(e).top,r.anchorPlacement){case\"top-bottom\":break;case\"center-bottom\":o+=e.offsetHeight/2;break;case\"bottom-bottom\":o+=e.offsetHeight;break;case\"top-center\":o+=i/2;break;case\"bottom-center\":o+=i/2+e.offsetHeight;break;case\"center-center\":o+=i/2+e.offsetHeight/2;break;case\"top-top\":o+=i;break;case\"bottom-top\":o+=e.offsetHeight+i;break;case\"center-top\":o+=e.offsetHeight/2+i}return r.anchorPlacement||r.offset||isNaN(t)||(n=t),o+n};t[\"default\"]=r},function(e,t){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var o=function(e){for(var t=0,o=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-(\"BODY\"!=e.tagName?e.scrollLeft:0),o+=e.offsetTop-(\"BODY\"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:o,left:t}};t[\"default\"]=o},function(e,t){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var o=function(e){e=e||document.querySelectorAll(\"[data-aos]\");var t=[];return[].forEach.call(e,function(e,o){t.push({node:e})}),t};t[\"default\"]=o}])});\n},{}],4:[function(require,module,exports){\n'use strict';\r\n\r\nwindow.Dragdealer = require('dragdealer').Dragdealer;\r\nwindow.$ = window.jQuery = require('jquery');\r\n\r\nrequire('jquery-validation');\r\nrequire('./jquery-ui')();\r\nrequire('slick-carousel');\r\nrequire(\"resize-sensor\");\r\nrequire(\"lazysizes\");\r\nrequire(\"spritespin\");\r\nrequire(\"./scrollbar\")();\r\nrequire(\"owl.carousel\");\r\nvar html2canvas = require(\"html2canvas\");\r\nwindow.html2canvas = html2canvas;\r\nvar croppie = require(\"croppie\");\r\nwindow.croppie = croppie;\r\nrequire('./jquery-ui-slider');\r\n\r\n// Using Exif-js to read the image rotation.\r\nvar EXIF = require(\"exif-js\");\r\nwindow.EXIF = EXIF;\r\n\r\nvar analytics = require('./analytics'),\r\ncountries = require('./countries'),\r\nquickview = require(\"./quickview\"),\r\nminicart = require('./minicart'),\r\npage = require('./page'),\r\nrating = require('./rating'),\r\nsearchplaceholder = require('./searchplaceholder'),\r\nsearchsuggest = require('./searchsuggest'),\r\ntooltip = require('./tooltip'),\r\nutil = require('./util'),\r\nvalidator = require('./validator'),\r\nslick = require('./slick'),\r\ntls = require('./tls'),\r\nvideo = require(\"./video\"),\r\nheader = require('./header'),\r\nfooterSelector = require('./footer-selector'),\r\nnewsletter = require('./newsletter'),\r\norderreplenishment = require('./order-replenishment'),\r\ninputEntry = require('./input-entry'),\r\npressrelease = require('./pressrelease'),\r\nshadedtool = require('./shaded-tool'),\r\nanimation = require('./aos'),\r\ncurrentLayout = require('./detect-layout'),\r\ncustomModal = require('./modal'),\r\nsearch = require('./pages/search'),\r\nproductTile = require('./product-tile'),\r\nquiz = require('./quiz'),\r\nconsentTracking = require('./consentTracking'),\r\ndelayImage = require('./delay-image');\r\n\r\n//Initilize detect layout\r\nvar checkLayout = currentLayout.init();\r\n\r\n//if jQuery has not been loaded, load from google cdn\r\nif (!window.jQuery) {\r\nvar s = document.createElement('script');\r\n\r\ns.setAttribute('src', 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js');\r\ns.setAttribute('type', 'text/javascript');\r\n\r\ndocument.getElementsByTagName('head')[0].appendChild(s);\r\n}\r\n\r\nrequire('./jquery-ext')();\r\nrequire('./cookieprivacy')();\r\nconsentTracking.init();\r\nrequire('./captcha')();\r\n\r\nfunction initializeEvents() {\r\nvar controlKeys = ['8', '13', '46', '45', '36', '35', '38', '37', '40', '39'];\r\n\r\n$('body')\r\n\t.on('keydown', 'textarea[data-character-limit]', function (e) {\r\n\t\tvar text = $(this).val(),\r\n\t\t\tcharsLimit = $(this).data('character-limit'),\r\n\t\t\tcharsUsed = text.length;\r\n\r\n\t\tif ((charsUsed >= charsLimit) && (controlKeys.indexOf(e.which.toString()) < 0)) {\r\n\t\t\te.preventDefault();\r\n\t\t}\r\n\t})\r\n\t.on('change keyup mouseup', 'textarea[data-character-limit]', function () {\r\n\t\tvar text = $(this).val(),\r\n\r\n\t\t\tcharsLimit = $(this).data('character-limit'),\r\n\t\t\tcharsUsed = text.length,\r\n\t\t\tcharsRemain = charsLimit - charsUsed;\r\n\r\n\t\tif (charsRemain < 0) {\r\n\t\t\t$(this).val(text.slice(0, charsRemain));\r\n\t\t\tcharsRemain = 0;\r\n\t\t}\r\n\t\tif (charsUsed <= charsLimit) {\r\n\t\t\t$(this).closest('.field-wrapper').find('.char-remain-count').html(charsRemain);\r\n\t\t\t$(this).closest('.field-wrapper').find('.char-used-count').html(charsUsed);\r\n\t\t}\r\n\t});\r\n\r\n/**\r\n * initialize search suggestions, pending the value of the site preference(enhancedSearchSuggestions)\r\n * this will either init the legacy(false) or the beta versions(true) of the the search suggest feature.\r\n * */\r\nvar $searchContainer = $('.header-search-wrapper .search-inner');\r\n\r\nsearchsuggest.init($searchContainer, Resources.SIMPLE_SEARCH);\r\n\r\n// add show/hide navigation elements\r\n$('.secondary-navigation .toggle').on('click', function () {\r\n\t$(this).toggleClass('expanded').next('ul').toggle();\r\n});\r\n\r\n// add generic toggle functionality\r\n$('.toggle').next('.toggle-content').hide();\r\n$('.toggle').on('click', function () {\r\n\t$(this).toggleClass('expanded').next('.toggle-content').toggle();\r\n});\r\n\r\n// subscribe email box\r\nvar $subscribeEmail = $('.subscribe-email');\r\n\r\nif ($subscribeEmail.length > 0) {\r\n\t$subscribeEmail.on('focus', function () {\r\n\t\tvar val = $(this.val());\r\n\r\n\t\tif (val.length > 0 && val !== Resources.SUBSCRIBE_EMAIL_DEFAULT) {\r\n\t\t\treturn; // do not animate when contains non-default value\r\n\t\t}\r\n\r\n\t\t$(this).animate({\r\n\t\t\tcolor: '#999999'\r\n\t\t}, 500, 'linear', function () {\r\n\t\t\t$(this).val('').css('color', '#333333');\r\n\t\t});\r\n\t}).on('blur', function () {\r\n\t\tvar val = $.trim($(this.val()));\r\n\r\n\t\tif (val.length > 0) {\r\n\t\t\treturn; // do not animate when contains value\r\n\t\t}\r\n\r\n\t\t$(this).val(Resources.SUBSCRIBE_EMAIL_DEFAULT)\r\n\t\t\t.css('color', '#999999')\r\n\t\t\t.animate({\r\n\t\t\t\tcolor: '#333333'\r\n\t\t\t}, 500, 'linear');\r\n\t});\r\n}\r\n\r\nif (SitePreferences.MOTIONPOINT_ENABLED) {\r\n\r\n\t$('#chooseLanguage').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tvar script = document.createElement('script');\r\n\r\n\t\t//MP.SrcUrl = unescape('mp_js_orgin_url'); - commented out per MotionPoint\r\n\t\tMP.UrlLang = 'mp_js_current_lang';\r\n\t\tMP.oSite = decodeURIComponent('mp_js_origin_baseUrl');\r\n\t\tMP.tSite = decodeURIComponent('mp_js_translated_baseUrl');\r\n\r\n\t\tMP.init();\r\n\r\n\t\tscript.src = 'https://shiseidoamericas.mpeasylink.com/mpel/mpel_chooser.js';\r\n\r\n\t\tdocument.body.appendChild(script);\r\n\r\n\t\treturn false;\r\n\t});\r\n\r\n}\r\n\r\n$('.js-quiz-modal, .js-quiz-modal + .tapable-on-mobile').on('click', function () {\r\n\tvar quizModal = $('#quiz-modal'),\r\n\t\tquizLoader = quizModal.find('.ajax-loader'),\r\n\t\tquizContent = quizModal.find('.questions-content');\r\n\r\n\tquizLoader.show();\r\n\tquizContent.empty();\r\n\r\n\t$.ajax({\r\n\t\turl: Urls.quizModalUrl,\r\n\t\tsuccess: function (response) {\r\n\t\t\tquizLoader.hide();\r\n\t\t\tquizContent.empty().html(response);\r\n\t\t\tquiz.bindQuizEvents();\r\n\t\t\tquiz.createStepsIndicators();\r\n\t\t\tquiz.registerPageView(quizContent);\r\n\t\t}\r\n\t});\r\n});\r\n\r\n$('.js-foundation-finder-start').on('click', function(e) {\r\n\te.preventDefault();\r\n\tfor(var i = 1; i <= 5; i++) {\r\n\t\tif (localStorage.getItem('question' + i) !== null) {\r\n\t\t\tlocalStorage.removeItem('question' + i);\r\n\t\t}\r\n\t}\r\n\twindow.location.href = $(this).attr('href');\r\n});\r\n\r\nif ($('.order-confirmation-details').length) {\r\n\tsessionStorage.removeItem('isGift');\r\n\tsessionStorage.removeItem('giftMessage');\r\n}\r\n\r\nvar url = Urls.passwordReset;\r\n\r\nif ($('.reset-password-link').length) {\r\n\tif (location.protocol === 'https:') {\r\n\t\turl = Urls.securePasswordReset;\r\n\t}\r\n\r\n\t$('.reset-password-link').each(function () {\r\n\t\t$(this).find('a').attr('href', url);\r\n\t});\r\n}\r\n\r\nif ($('.user-recognized').length) {\r\n\tif (location.protocol === 'https:') {\r\n\t\turl = Urls.securePasswordReset;\r\n\t}\r\n\r\n\t$('.user-recognized').find('a').attr('href', url);\r\n}\r\n\r\n// checkout checkout minicart on right side event handling\r\naddSummaryScrollbar();\r\n\r\n//Accordion\r\n$(document).on('click', '.accordion .accordion_title', function () {\r\n\tif (false === $(this).next().is(':visible')) {\r\n\t\t$('.accordion_description').slideUp(300);\r\n\t\t$('.open').removeClass('open');\r\n\t}\r\n\t$(this).next().slideToggle(300);\r\n\r\n\t$(this).toggleClass('open');\r\n\tif ($(this).hasClass('open')) {\r\n\t\tif ($(\".sb-checkout\").length) {\r\n\t\t\t$(\".sb-checkout .sb-container\").scrollBox();\r\n\t\t}\r\n\t}\r\n});\r\n$(document).ready(function () {\r\n\tif ($('.accordion .accordion_title').hasClass('open')) {\r\n\t\tif ($(\".sb-checkout\").length) {\r\n\t\t\t$(\".sb-checkout .sb-container\").scrollBox();\r\n\t\t}\r\n\t}\r\n\t\r\n\t//To set header search icon alignment when Marketing site enabled\r\n\tif (!$('.minicart-link').length) {\r\n\t\t$('.courtesy-nav').css('margin-right', '0');\r\n\t}\r\n\t\r\n\treadMore();\r\n});\r\n\r\n//Hero Carousel Chevron animation\r\n$('.hero-chevron .chevron-icon').click(function(e){\r\n\tvar targetHeight= $('.top-hero-section').height();\r\n\t\tif (checkLayout == 'desktop') {\r\n\t\t\t$('html, body, .content').animate({scrollTop: targetHeight}, 1500);\r\n\t\t} else {\r\n\t\t\t$('html, body, .content').animate({scrollTop: targetHeight - 25}, 1500);\r\n\t\t}\r\n\t\t\r\n\te.preventDefault();\r\n});\r\n\r\n$(window).on('orientationchange', function() {\r\n\tif(navigator.userAgent.match(/iPad/i) !== null && $('html').hasClass('sticky-header-search')) {\r\n\t\t$('.js-search-link').trigger('click');\r\n\t}\r\n\t\r\n\tif(navigator.userAgent.match(/iPad/i) !== null && !$('.morelink ').hasClass('less')) {\r\n\t\t$('.cat-slot-banner-plp .content .morecontent span').toggle();\r\n\t\t$('.morelink').toggle();\r\n\t}\r\n});\r\n\r\n//Tips and Tutorial slider\r\nif ($('.tips-and-tutorials.variation-2').length) {\r\n\tvar tutorialVariation2 = $('.tips-and-tutorials.variation-2 .slides');\r\n\ttutorialVariation2.slick({\r\n\t\tdots: true,\r\n\t\tinfinite: false,\r\n\t\tarrows: true,\r\n\t\tslidesToShow: 1,\r\n\t\tslidesToScroll: 1,\r\n\t\tfocusOnSelect: true,\r\n\t\tresponsive: [{\r\n\t\t\tbreakpoint: 769,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 1,\r\n\t\t\t\tslidesToScroll: 1\r\n\t\t\t}\r\n\t\t}]\r\n\t});\r\n}\r\n\r\nif ($('.tips-and-tutorials.variation-3').length) {\r\n\tvar tutorialVariation3 = $('.tips-and-tutorials.variation-3 .videos');\r\n\ttutorialVariation3.slick({\r\n\t\tdots: true,\r\n\t\tarrows: true,\r\n\t\tinfinite: false,\r\n\t\tslidesToShow: 3,\r\n\t\tslidesToScroll: 1,\r\n\t\tfocusOnSelect: true,\r\n\t\tresponsive: [{\r\n\t\t\tbreakpoint: 769,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 2,\r\n\t\t\t\tslidesToScroll: 1\r\n\t\t\t}\r\n\t\t}]\r\n\t});\r\n}\r\nif ($('.tips-and-tutorials.variation-4').length) {\r\n\t$('.tips-and-tutorials.variation-4 .slider-for').slick({\r\n\t\tdots: false,\r\n\t\tarrows: false,\r\n\t\tinfinite: false,\r\n\t\tslidesToShow: 2,\r\n\t\tslidesToScroll: 1,\r\n\t\tfocusOnSelect: true,\r\n\t\tadaptiveHeight: true,\r\n\t\tresponsive: [{\r\n\t\t\tbreakpoint: 769,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 2,\r\n\t\t\t\tslidesToScroll: 1\r\n\t\t\t}\r\n\t\t}]\r\n\t});\r\n\t$('.tips-and-tutorials.variation-4 .slider-nav').slick({\r\n\t\tdots: false,\r\n\t\tarrows: true,\r\n\t\tinfinite: false,\r\n\t\tslidesToShow: 2,\r\n\t\tslidesToScroll: 1,\r\n\t\tfocusOnSelect: true,\r\n\t\tadaptiveHeight: true,\r\n\t\tasNavFor: '.slider-for',\r\n\t\tresponsive: [{\r\n\t\t\tbreakpoint: 769,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 2,\r\n\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\tadaptiveHeight: false\r\n\t\t\t}\r\n\t\t}]\r\n\t});\r\n}\r\n}\r\n\r\n/**\r\n* @global\r\n* @function\r\n* @description Read More Ability\r\n*/\r\nfunction readMore() {\r\n\tvar showChar = 80;\r\n\tvar ellipsestext = \"...\";\r\n\tvar moretext = $('.cat-slot-banner-plp .read-more').text();\r\n\tvar lesstext = \"less\";\r\n\t\r\n\tif (window.innerWidth >= 768) {\r\n\t\tshowChar = 200;\r\n\t} else if (window.innerWidth >= 375) {\r\n\t\tshowChar = 90;\r\n\t}\r\n\t$('.more').each(function() {\r\n\t\tvar content = $(this).html();\r\n\t\tif (window.innerWidth < 769) {\r\n\t\t\tif(content.length > showChar) {\r\n\t\r\n\t\t\t\tvar c = content.substr(0, showChar);\r\n\t\t\t\tvar h = content.substr(showChar, content.length - showChar);\r\n\t\t\t\t\r\n\t\t\t\tvar html = c + '<span class=\"moreelipses\"> '+ellipsestext+' </span><span class=\"morecontent\"><span>' + h + '</span><a href=\"\" class=\"morelink\">'+moretext+'</a></span>';\r\n\t\r\n\t\t\t\t$(this).html(html);\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n\r\n\t$(\".morelink\").click(function(){\r\n\t\tif($(this).hasClass(\"less\")) {\r\n\t\t\t$(this).removeClass(\"less\");\r\n\t\t\t$(this).html(moretext);\r\n\t\t} else {\r\n\t\t\t$(this).addClass(\"less\");\r\n\t\t\t$(this).html(lesstext);\r\n\t\t}\r\n\t\t$(this).parent().prev().toggle();\r\n\t\t$(this).prev().toggle();\r\n\t\treturn false;\r\n\t});\r\n}\r\n\r\n/**\r\n* @private\r\n* @function\r\n* @description jquery UI Select Menu.\r\n*/\r\nfunction selectMenu() {\r\n$('select').selectmenu({\r\n\t//Add class to Dropdown Set for css targeting\r\n\twidth: false,\r\n\tposition: {\r\n\t\tmy: \"left top\",\r\n\t\tat: \"left bottom\",\r\n\t\tcollision: \"flip flip\"\r\n\t}\r\n});\r\n}\r\n\r\nfunction refreshSelectMenu() {\r\nif ($('[role=\"combobox\"][aria-expanded=\"true\"]').length > 0) {\r\n\t$('[role=\"combobox\"][aria-expanded=\"true\"]').each(function () { // anyone that is open\r\n\t\t$(this).prev().selectmenu(\"close\");\r\n\t});\r\n}\r\n}\r\n\r\n/**\r\n* @private\r\n* @function\r\n* @description Screen Resize Handler.\r\n*/\r\nfunction screenResizeHandler() {\r\n$(window).on('resize orientationchange', function () {\r\n\trefreshSelectMenu();\r\n\tupdateSigleTileContentHeight();\r\n\taosInitialize();\r\n\r\n\t// Initilize detect layout on Resize\r\n\tcheckLayout = currentLayout.init();\r\n\tif (checkLayout == 'desktop') {\r\n\t\t$('.main-nav').removeAttr('style');\r\n\t}\r\n\r\n\tif ($('#social-media-post-detail-modal').length) {\r\n\t\t$('#social-media-post-detail-modal').find('.modal-close').trigger('click');\r\n\t}\r\n});\r\n}\r\n\r\n/**\r\n* @private\r\n* @function\r\n* @description Adds class ('js') to html for css targeting and loads js specific styles.\r\n*/\r\nfunction initializeDom() {\r\n// add class to html for css targeting\r\n$('html').addClass('js');\r\n\r\n// Touch screen detection\r\nif ('ontouchstart' in window || 'ontouch' in window) {\r\n\t$('body').addClass('touch');\r\n}\r\n\r\nif (SitePreferences.LISTING_INFINITE_SCROLL) {\r\n\t$('html').addClass('infinite-scroll');\r\n}\r\n\r\n// load js specific styles\r\nutil.limitCharacters();\r\n\r\n//Initialize custom select \r\nselectMenu();\r\n\r\nscreenResizeHandler();\r\n\r\n}\r\n\r\n//Back to top function\r\nfunction backToTopHandler() {\r\nvar scrollToTopEle = $('.scroll-top-wrapper');\r\n$.fn.scrollEnd = function (callback, timeout) {\r\n\tvar scrollVal = 100;\r\n\t$(this).on('scroll', function () {\r\n\t\tvar $this = $(this);\r\n\t\tif (($('.pt_storefront').length || $('.pt_articles_listing').length) && $('.top-hero-section').length) {\r\n\t\t\tscrollVal = $('.top-hero-section').height() + 100;\r\n\t\t}\r\n\t\tbackToTopShowHide(scrollVal, callback, timeout, scrollToTopEle);\r\n\t});\r\n\t\r\n\tscrollToTopEle.on('mouseover touchstart', function(){\r\n\t\t$(this).addClass('js-backToTopOver');\r\n\t}).on('mouseout touchend', function(){\r\n\t\t$(this).removeClass('js-backToTopOver');\r\n\t\tbackToTopShowHide(scrollVal, callback, timeout, $(this));\r\n\t});\r\n};\r\n$('.scroll-top-wrapper').on('click', scrollToTop); \r\nfunction scrollToTopDesktop() {\r\n\t$('html, body').animate({\r\n\t\tscrollTop: $('.breadcrumbs-wrap').offset().top\r\n\t},800); \r\n} \r\n$('.buy-back-to-top-nav-link').on('click', scrollToTopDesktop); \r\n\r\n$(window).scrollEnd(function () {\r\n\tscrollToTopEle.not('.js-backToTopOver').removeClass('show');\r\n}, 3000);\r\n}\r\n\r\nfunction backToTopShowHide(scrollVal, callback, timeout, scrollToTopEle) {\r\nvar windowObj = $(window);\r\nif (windowObj.scrollTop() > scrollVal) {\r\n\tscrollToTopEle.addClass('show');\r\n} else {\r\n\tscrollToTopEle.not('.js-backToTopOver').removeClass('show');\r\n}\r\n\r\nif (windowObj.data('scrollTimeout')) {\r\n\tclearTimeout(windowObj.data('scrollTimeout'));\r\n}\r\nwindowObj.data('scrollTimeout', setTimeout(callback, timeout));\r\n}\r\n\r\nfunction scrollToTop(e) {\r\n e.preventDefault();\r\n\r\n \r\n var headerHeight = $('.header-wrapper').height();\r\n var verticalOffset = typeof (verticalOffset) != 'undefined' ? verticalOffset : 0;\r\n var element = $('#main');\r\n var offset = element.offset();\r\n var offsetTop;\r\n\r\n if (!$('body').hasClass('pdp-page')) {\r\n if (($('.pt_storefront').length || $('.pt_articles_listing').length)) {\r\n if ($('.header-wrapper').css('position') === \"fixed\") {\r\n offsetTop = offset.top; \r\n } else {\r\n offsetTop = offset.top - headerHeight;\r\n }\r\n } else {\r\n if (($('.pt_product-details').length)) {\r\n offsetTop = 0;\r\n } else {\r\n offsetTop = offset.top - headerHeight;\r\n }\r\n }\r\n\r\n $('html, body').animate({\r\n scrollTop: offsetTop\r\n }, 500, 'linear', function () {\r\n if ($('body').hasClass('touch')) {\r\n $('.scroll-top-wrapper').removeClass('js-backToTopOver');\r\n }\r\n });\r\n }\r\n else { \r\n if (currentLayout.init() === 'mobile') {\r\n offsetTop = $(\".product-details-wrapper\").offset().top\r\n } else {\r\n offsetTop = $('.breadcrumbs-wrap').offset().top\r\n }\r\n\r\n $('html, body').animate({\r\n scrollTop: offsetTop\r\n }, 800)\r\n }\r\n \r\n}\r\n\r\n//Minimize header and make it stick to the top\r\nfunction minimizedHeaderHandler() {\r\ncheckScrolledDown();\r\n\r\n$(window).on('scroll', function () {\r\n\tcheckScrolledDown();\r\n});\r\n}\r\n\r\nfunction checkScrolledDown() {\r\n\r\nvar $stickyHeader = $('#minimized-header-container');\r\nvar $headerScrollOffset = $('.header-banner').outerHeight();\r\nvar $wrapper = $('#wrapper');\r\n\r\nif ($('body').hasClass('is-reveal-open')) {\r\n\treturn false;\r\n}\r\n\r\n}\r\n\r\nfunction searchMenuEvent() {\r\n// Search for mobile view\r\n$('.quick-access-menu [title=\"Search\"]').on('click', function (e) {\r\n\te.preventDefault();\r\n\r\n\t$('.header-search').slideToggle(200);\r\n});\r\n}\r\n\r\n//add class for scrollbar on miniline summary\r\nfunction addSummaryScrollbar() {\r\nvar itemCount = $('.pt_checkout .checkout-mini-cart .accordion-content .mini-cart-product').length;\r\n\r\nif (itemCount > 4) {\r\n\t$('.checkout-mini-cart .accordion-content').addClass('scroll-items');\r\n}\r\n}\r\n\r\nfunction playVideoHandler() {\r\nvar MAIN_VIDEO_SELECTOR = \".main-video\";\r\nvar CAROUSEL_VIDEO_SELECTOR = \".modal-video\";\r\n$(document)\r\n\t// main video (inline)\r\n\t.on(\"click\", MAIN_VIDEO_SELECTOR, function () {\r\n\t\tvar $this = $(this);\r\n\r\n\t\tvar $inlineEle = $this.parent(\"div\"),\r\n\t\t\tvideoId = $this.data(\"video-id\");\r\n\r\n\t\tvideo.playInline($inlineEle, videoId);\r\n\t})\r\n\r\n\t// carousel videos (launched in modal)\r\n\t.on(\"click\", CAROUSEL_VIDEO_SELECTOR, function () {\r\n\t\tvar videoId = $(this).data(\"video-id\");\r\n\r\n\t\tvideo.playInModal(videoId);\r\n\t});\r\n}\r\n\r\n\r\nfunction resetFooterError() {\r\n$('.store-locator-form input[type=\"text\"]').val('');\r\n\r\nif ($('.store-locator-form .field-button-container div').hasClass('error')) {\r\n\t$('.store-locator-form .field-button-container div').removeClass('error');\r\n\t$('.store-locator-form .field-button-container .error-message').remove();\r\n}\r\n}\r\n\r\nfunction aosInitialize() {\r\nif ($('.pt_storefront').length || $('.pt_product-search-result.category').length && checkLayout !== 'mobile') {\r\n\tanimation.init({\r\n\t\toffset: 200,\r\n\t\tduration: 600,\r\n\t\teasing: 'ease-in-sine',\r\n\t\tdelay: 100,\r\n\t\tonce: true\r\n\t});\r\n}\r\n\r\nif (checkLayout == 'mobile') {\r\n\tif ($('.pt_storefront').length) {\r\n\t\tanimation.init({\r\n\t\t\toffset: 200,\r\n\t\t\tdisable: 'mobile',\r\n\t\t\tduration: 600,\r\n\t\t\teasing: 'ease-in-sine',\r\n\t\t\tdelay: 100,\r\n\t\t\tonce: true\r\n\t\t});\r\n\t}\r\n\tif ($('.pt_product-search-result.category').length) {\r\n\t\tanimation.init({\r\n\t\t\tdisable: 'mobile'\r\n\t\t});\r\n\t}\r\n} else {\r\n\tif ($('.pt_storefront').length) {\r\n\t\tanimation.init({\r\n\t\t\toffset: 200,\r\n\t\t\tduration: 600,\r\n\t\t\teasing: 'ease-in-sine',\r\n\t\t\tdelay: 100,\r\n\t\t\tonce: true\r\n\t\t});\r\n\t}\r\n}\r\n}\r\nvar pages = {\r\naccount: require('./pages/account'),\r\ncart: require('./pages/cart'),\r\ncheckout: require('./pages/checkout'),\r\nsinglepagecheckout: require('./pages/singlepagecheckout'),\r\ncompare: require('./pages/compare'),\r\nproduct: require('./pages/product'),\r\nregistry: require('./pages/registry'),\r\norderconfirmation: require('./pages/order-confirm'),\r\nsearch: require('./pages/search'),\r\ntutorial: require('./pages/tutorial'),\r\nstorefront: require('./pages/storefront'),\r\nwishlist: require('./pages/wishlist'),\r\nstorelocator: require('./pages/storelocator'),\r\ncheckorder: require('./pages/checkorder'),\r\ncontent: require('./pages/content'),\r\npromotionlanding: require('./pages/promotionlanding'),\r\nconsultation: require('./quiz'),\r\nfoundationfinder: require('./pages/foundationfinder'),\r\nonlinequiz: require('./pages/onlinequiz')\r\n};\r\n\r\nvar app = {\r\ninit: function () {\r\n\r\n\tif (document.cookie.length === 0) {\r\n\t\t$('<div/>').addClass('browser-compatibility-alert').append($('<p/>').addClass('browser-error').html(Resources.COOKIES_DISABLED)).appendTo('#browser-check');\r\n\t}\r\n\r\n\tinitializeDom();\r\n\tinitializeEvents();\r\n\tbackToTopHandler();\r\n\tminimizedHeaderHandler();\r\n\tresetFooterError();\r\n\tsearchMenuEvent();\r\n\t// init specific global components\r\n\tanalytics.init();\r\n\tcountries.init();\r\n\ttooltip.init();\r\n\tminicart.init();\r\n\tvalidator.init();\r\n\torderreplenishment.init();\r\n\trating.init();\r\n\tslick.init();\r\n\tsearchplaceholder.init();\r\n\theader.init();\r\n\tvideo.init();\r\n\t//checkoutLogin.init();\r\n\tfooterSelector.countrySelector();\r\n\tnewsletter.newsletterHeader();\r\n\tnewsletter.isNewsletterEnabled();\r\n\tinputEntry.entry();\r\n\tplayVideoHandler();\r\n\tpressrelease.init();\r\n\tshadedtool.init();\r\n\tupdateSigleTileContentHeight();\r\n\tcustomModal.modal();\r\n\tsearch.viewMore();\r\n\tvideo.initialize();\r\n\tdelayImage.showDelayedImages();\r\n\r\n\tif ($(\"#selectcountry\").length > 0) {\r\n\t\tcountrySelectDropdown();\r\n\t}\r\n\r\n\t// execute page specific initializations\r\n\t$.extend(page, window.pageContext);\r\n\r\n\tvar ns = page.ns;\r\n\r\n\tif (ns && pages[ns] && pages[ns].init) {\r\n\t\tpages[ns].init();\r\n\t}\r\n\r\n\t// Check TLS status if indicated by site preference\r\n\tif (SitePreferences.CHECK_TLS === true) {\r\n\t\ttls.getUserAgent();\r\n\t}\r\n\r\n\tdefendAndRegenerate();\r\n\t$(document).on('change', 'select', function(){\r\n\t\tif($(this).selectmenu('instance') !== undefined){\r\n\t\t\t$(this).selectmenu('refresh');\r\n\t\t}\r\n\t});\r\n\t\r\n\taosInitialize();\r\n}\r\n};\r\n\r\n//Select menu widget to prepend span tag for the country flag on selected dropdown and options.\r\n$.widget(\"ui.selectmenu\", $.ui.selectmenu, {\r\n_renderItem: function (ul, item) {\r\n\tvar _div = $('<div></div>');\r\n\tvar li = $(\"<li></li>\");\r\n\r\n\tif (item.disabled) {\r\n\t\tli.addClass(\"ui-state-disabled\");\r\n\t}\r\n\r\n\tthis._setText(_div, item.label);\r\n\t_div.appendTo(li);\r\n\r\n\tvar setClass = item.element.attr('class');\r\n\tif (typeof setClass != 'undefined' && setClass !== '') {\r\n\t\t_div.prepend(\"<span class='\" + setClass + \"'></span>\");\r\n\t}\r\n\r\n\treturn li.appendTo(ul);\r\n},\r\n_renderButtonItem: function (item) {\r\n\tvar buttonItem = $(\"<span>\", {\r\n\t\t\"class\": \"ui-selectmenu-text\"\r\n\t})\r\n\tthis._setText(buttonItem, item.label);\r\n\r\n\tvar setClass = item.element.attr('class');\r\n\tif (typeof setClass != 'undefined' && setClass !== '') {\r\n\t\tbuttonItem.prepend(\"<span class='\" + setClass + \"'></span>\");\r\n\t}\r\n\r\n\treturn buttonItem;\r\n}\r\n});\r\n\r\nfunction defendAndRegenerate() {\r\nif ($('.defend-regenerate-section').length > 0) {\r\n\tvar offset = $('.defend-regenerate-section').offset().top,\r\n\t\twindowScroll = $(window).scrollTop();\r\n\tif (offset <= windowScroll) {\r\n\t\t$('.defend-regenerate-module').addClass('animate-step2');\r\n\t}\r\n\tvar offset2 = $('.defend-regenerate-section .regenerate').offset().top;\r\n\toffset2 = offset2 - 800;\r\n\tif (offset2 <= windowScroll) {\r\n\t\t$('.defend-regenerate-module').addClass('animate-step3');\r\n\t}\r\n\tvar offset3 = $('.defend-regenerate-section .regenerate').offset().top;\r\n\tif (offset3 <= windowScroll) {\r\n\t\t$('.defend-regenerate-module').addClass('animate-step4');\r\n\t}\r\n}\r\n}\r\n\r\n$(window).on('scroll', function () {\r\ndefendAndRegenerate();\r\n});\r\n\r\n//general extension functions\r\n(function () {\r\nString.format = function () {\r\n\tvar s = arguments[0];\r\n\tvar i, len = arguments.length - 1;\r\n\r\n\tfor (i = 0; i < len; i++) {\r\n\t\tvar reg = new RegExp('\\\\{' + i + '\\\\}', 'gm');\r\n\r\n\t\ts = s.replace(reg, arguments[i + 1]);\r\n\t}\r\n\r\n\treturn s;\r\n};\r\n})();\r\n\r\n//initialize app\r\n$(document).ready(function () {\r\napp.init();\r\n});\r\n\r\n$(window).on('load', function () {\r\n//Some of the product tiles have issues with Color and Size carousel\r\n//hence the initialization is called upon window on load.\r\nproductTile.initCarouselSwatches();\r\nvar heroVideo = document.getElementById(\"hero-video\");\r\nif (heroVideo !== undefined && heroVideo !== null) {\r\n\tvar playPromise = document.getElementById(\"hero-video\").play();\r\n\tif (playPromise !== undefined) {\r\n\t\tplayPromise.then(function () {}).catch(function (error) {\r\n\t\t\t// Auto-play was prevented\r\n\t\t\t// Show paused UI.\r\n\t\t\t$('.video-control').addClass('paused');\r\n\t\t});\r\n\t}\r\n\t$('.video-control').on('click', function (event) {\r\n\t\tif (!heroVideo.paused) {\r\n\t\t\theroVideo.pause();\r\n\t\t\t$(this).addClass('paused');\r\n\t\t} else {\r\n\t\t\theroVideo.play();\r\n\t\t\t$(this).removeClass('paused');\r\n\t\t}\r\n\t});\r\n}\r\n});\r\n\r\n//Country selector menu init \r\nfunction countrySelectDropdown() {\r\n$(\"#selectcountry\").selectmenu();\r\n$(\"#header-selectcountry\").selectmenu({\r\n\tposition: {\r\n\t\tmy: \"left+10 top+15\",\r\n\t\tat: \"left bottom\",\r\n\t\tof: \"#country-selector\"\r\n\t}\r\n});\r\n}\r\n\r\n//make single tile content height same with product-tile\r\nfunction updateSigleTileContentHeight() {\r\nvar tileContentSiblingHeight = $('.product-tile:eq(0)').innerHeight();\r\n$('.single-tile-promo, .double-tile-content').removeAttr('style').css('height', tileContentSiblingHeight);\r\n}\r\n//expose global app obj for 3rd party integrations\r\nwindow.app = {\r\nquickView: quickview,\r\nminicart: minicart,\r\nuser: window.User,\r\nSCemailUrl: window.Urls.SCemailUrl,\r\nProduct: {},\r\ntagmanager: analytics.tagmanager,\r\ngtmInternalPromotion: analytics.gtmInternalPromotion\r\n};\r\n\r\n//expose global saveURL to support legacy Composed integration\r\nwindow.saveURL = window.Urls.saveConsultationURL;\r\n//summary scroll bar global scope\r\nwindow.addSummaryScrollbar = addSummaryScrollbar;\r\nwindow.scrollToTop = scrollToTop;\r\n\n},{\"./analytics\":2,\"./aos\":3,\"./captcha\":7,\"./consentTracking\":9,\"./cookieprivacy\":10,\"./countries\":11,\"./delay-image\":12,\"./detect-layout\":13,\"./footer-selector\":16,\"./header\":20,\"./input-entry\":21,\"./jquery-ext\":22,\"./jquery-ui\":24,\"./jquery-ui-slider\":23,\"./minicart\":26,\"./modal\":27,\"./newsletter\":28,\"./order-replenishment\":29,\"./page\":30,\"./pages/account\":31,\"./pages/cart\":33,\"./pages/checkorder\":34,\"./pages/checkout\":39,\"./pages/compare\":43,\"./pages/content\":44,\"./pages/foundationfinder\":45,\"./pages/onlinequiz\":46,\"./pages/order-confirm\":47,\"./pages/product\":52,\"./pages/promotionlanding\":57,\"./pages/registry\":58,\"./pages/search\":59,\"./pages/singlepagecheckout\":64,\"./pages/storefront\":69,\"./pages/storelocator\":70,\"./pages/tutorial\":72,\"./pages/wishlist\":74,\"./pressrelease\":76,\"./product-tile\":77,\"./quickview\":79,\"./quiz\":80,\"./rating\":81,\"./scrollbar\":83,\"./searchplaceholder\":84,\"./searchsuggest\":85,\"./shaded-tool\":86,\"./slick\":87,\"./tls\":91,\"./tooltip\":92,\"./util\":93,\"./validator\":95,\"./video\":96,\"croppie\":109,\"dragdealer\":111,\"exif-js\":122,\"html2canvas\":132,\"jquery\":135,\"jquery-validation\":134,\"lazysizes\":136,\"owl.carousel\":139,\"resize-sensor\":154,\"slick-carousel\":157,\"spritespin\":158}],5:[function(require,module,exports){\n'use strict';\r\n\r\nvar page = require('./page'),\r\n\tutil = require('./util'),\r\n\tsamples = require('./samples'),\r\n\tcurrentLayout = require('./detect-layout'),\r\n\tcustomModal = require('./modal');\r\n\r\nvar selectedList = [];\r\nvar maxItems = 1;\r\nvar bliUUID = '';\r\n\r\n//Initilize detect layout\r\nvar checkLayout = currentLayout.init();\r\n\r\n/**\r\n * @private\r\n * @function\r\n * description Gets a list of bonus products related to a promoted product\r\n */\r\nfunction getBonusProducts() {\r\n\tvar bonusproducts = [];\r\n\r\n\tvar i, len;\r\n\tfor (i = 0, len = selectedList.length; i < len; i++) {\r\n\t\tvar p = {\r\n\t\t\tpid: selectedList[i].pid,\r\n\t\t\tqty: selectedList[i].qty,\r\n\t\t\toptions: {}\r\n\t\t};\r\n\t\tvar a, alen, bp = selectedList[i];\r\n\t\tif (bp.options) {\r\n\t\t\tfor (a = 0, alen = bp.options.length; a < alen; a++) {\r\n\t\t\t\tvar opt = bp.options[a];\r\n\t\t\t\tp.options = {\r\n\t\t\t\t\toptionName: opt.name,\r\n\t\t\t\t\toptionValue: opt.value\r\n\t\t\t\t};\r\n\t\t\t}\r\n\t\t}\r\n\t\tbonusproducts.push({\r\n\t\t\tproduct: p\r\n\t\t});\r\n\t}\r\n\treturn {\r\n\t\tbonusproducts: bonusproducts\r\n\t};\r\n}\r\n\r\nvar selectedItemTemplate = function (data) {\r\n\tvar attributes = '';\r\n\tfor (var attrID in data.attributes) {\r\n\t\tvar attr = data.attributes[attrID];\r\n\t\tattributes += '<li data-attribute-id=\"' + attrID + '\">\\n';\r\n\t\tattributes += '<span class=\"display-name\">' + attr.displayName + '</span>: ';\r\n\t\tattributes += '<span class=\"display-value\">' + attr.displayValue + '</span>\\n';\r\n\t\tattributes += '</li>';\r\n\t}\r\n\tattributes += '<li class=\"item-qty\">\\n';\r\n\tattributes += '<span class=\"display-name\">Qty</span>: ';\r\n\tattributes += '<span class=\"display-value\">' + data.qty + '</span>';\r\n\treturn [\r\n\t\t'<li class=\"selected-bonus-item\" data-uuid=\"' + data.uuid + '\" data-pid=\"' + data.pid + '\">',\r\n\t\t'<i class=\"remove-link fa fa-remove\" title=\"Remove this product\" href=\"#\"></i>',\r\n\t\t'<div class=\"item-name\">' + data.name + '</div>',\r\n\t\t'<ul class=\"item-attributes\">',\r\n\t\tattributes,\r\n\t\t'<ul>',\r\n\t\t'<li>'\r\n\t].join('\\n');\r\n};\r\n\r\n// hide swatches that are not selected or not part of a Product Variation Group\r\nvar hideSwatches = function () {\r\n\t$('.bonus-product-item:not([data-producttype=\"master\"]) .swatches li').not('.selected').not('.variation-group-value').hide();\r\n\t// prevent unselecting the selected variant\r\n\t$('.bonus-product-item .swatches .selected').on('click', function () {\r\n\t\treturn false;\r\n\t});\r\n};\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Updates the summary page with the selected bonus product\r\n */\r\nfunction updateSummary() {\r\n\tvar $bonusProductList = $('#bonus-product-list');\r\n\tif (!selectedList.length) {\r\n\t\t$bonusProductList.find('li.selected-bonus-item').remove();\r\n\t} else {\r\n\t\tvar ulList = $bonusProductList.find('ul.selected-bonus-items').first();\r\n\t\tvar i, len;\r\n\t\tfor (i = 0, len = selectedList.length; i < len; i++) {\r\n\t\t\tvar item = selectedList[i];\r\n\t\t\tvar li = selectedItemTemplate(item);\r\n\t\t\t$(li).appendTo(ulList);\r\n\t\t}\r\n\t}\r\n\r\n\t// get remaining item count\r\n\tvar remain = maxItems - selectedList.length;\r\n\t$bonusProductList.find('.bonus-items-available').text(remain);\r\n\tif (remain <= 0) {\r\n\t\t$bonusProductList.find('.select-bonus-item').attr('disabled', 'disabled');\r\n\t} else {\r\n\t\t$bonusProductList.find('.select-bonus-item').prop('disabled', false);\r\n\t}\r\n}\r\n\r\nfunction initializeGrid() {\r\n\tvar $bonusProduct = $('#bonus-product-dialog'),\r\n\t\t$bonusProductList = $('#bonus-product-list'),\r\n\t\tbliData = $bonusProductList.data('line-item-detail');\r\n\tmaxItems = bliData.maxItems;\r\n\tbliUUID = bliData.uuid;\r\n\r\n\tif (bliData.itemCount >= maxItems) {\r\n\t\t$bonusProductList.find('.select-bonus-item').attr('disabled', 'disabled');\r\n\t}\r\n\r\n\tvar cartItems = $bonusProductList.find('.selected-bonus-item');\r\n\tcartItems.each(function () {\r\n\t\tvar ci = $(this);\r\n\t\tvar product = {\r\n\t\t\tuuid: ci.data('uuid'),\r\n\t\t\tpid: ci.data('pid'),\r\n\t\t\tqty: ci.find('.item-qty').text(),\r\n\t\t\tname: ci.find('.item-name').html(),\r\n\t\t\tattributes: {}\r\n\t\t};\r\n\t\tvar attributes = ci.find('ul.item-attributes li');\r\n\t\tattributes.each(function () {\r\n\t\t\tvar li = $(this);\r\n\t\t\tproduct.attributes[li.data('attributeId')] = {\r\n\t\t\t\tdisplayName: li.children('.display-name').html(),\r\n\t\t\t\tdisplayValue: li.children('.display-value').html()\r\n\t\t\t};\r\n\t\t});\r\n\t\tselectedList.push(product);\r\n\t});\r\n\r\n\t$bonusProductList.on('click', '.bonus-product-item a[href].swatchanchor', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar url = this.href,\r\n\t\t\t$this = $(this);\r\n\t\turl = util.appendParamsToUrl(url, {\r\n\t\t\t'source': 'bonus',\r\n\t\t\t'format': 'ajax'\r\n\t\t});\r\n\t\t$.ajax({\r\n\t\t\turl: url,\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\t$this.closest('.bonus-product-item').empty().html(response);\r\n\t\t\t\thideSwatches();\r\n\t\t\t}\r\n\t\t});\r\n\t}).on('change', '.input-text', function () {\r\n\t\t$bonusProductList.find('.select-bonus-item').prop('disabled', false);\r\n\t\t$(this).closest('.bonus-product-form').find('.quantity-error').text('');\r\n\t}).on('click', '.select-bonus-item', function (e) {\r\n\t\te.preventDefault();\r\n\t\tif (selectedList.length >= maxItems) {\r\n\t\t\t$bonusProductList.find('.select-bonus-item').attr('disabled', 'disabled');\r\n\t\t\t$bonusProductList.find('.bonus-items-available').text('0');\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar form = $(this).closest('.bonus-product-form'),\r\n\t\t\tdetail = $(this).closest('.product-detail'),\r\n\t\t\tuuid = form.find('input[name=\"productUUID\"]').val(),\r\n\t\t\tqtyVal = form.find('input[name=\"Quantity\"]').val(),\r\n\t\t\tqty = (isNaN(qtyVal)) ? 1 : (+qtyVal);\r\n\r\n\t\tif (qty > maxItems) {\r\n\t\t\t$bonusProductList.find('.select-bonus-item').attr('disabled', 'disabled');\r\n\t\t\tform.find('.quantity-error').text(Resources.BONUS_PRODUCT_TOOMANY);\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar product = {\r\n\t\t\tuuid: uuid,\r\n\t\t\tpid: form.find('input[name=\"pid\"]').val(),\r\n\t\t\tqty: qty,\r\n\t\t\tname: detail.find('.product-name').text(),\r\n\t\t\tattributes: detail.find('.product-variations').data('attributes'),\r\n\t\t\toptions: []\r\n\t\t};\r\n\r\n\t\tvar optionSelects = form.find('.product-option');\r\n\t\toptionSelects.each(function () {\r\n\t\t\tproduct.options.push({\r\n\t\t\t\tname: this.name,\r\n\t\t\t\tvalue: $(this).val(),\r\n\t\t\t\tdisplay: $(this).children(':selected').first().html()\r\n\t\t\t});\r\n\t\t});\r\n\t\tselectedList.push(product);\r\n\t\tupdateSummary();\r\n\t}).on('click', '.remove-link', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar container = $(this).closest('.selected-bonus-item');\r\n\t\tif (!container.data('uuid')) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar uuid = container.data('uuid');\r\n\t\tvar i, len = selectedList.length;\r\n\t\tfor (i = 0; i < len; i++) {\r\n\t\t\tif (selectedList[i].uuid === uuid) {\r\n\t\t\t\tselectedList.splice(i, 1);\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t}\r\n\t\tupdateSummary();\r\n\t}).on('click', '.add-to-cart-bonus', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar url = util.appendParamsToUrl(Urls.addBonusProduct, {\r\n\t\t\tbonusDiscountLineItemUUID: bliUUID\r\n\t\t});\r\n\t\tvar bonusProducts = getBonusProducts();\r\n\t\tif (bonusProducts.bonusproducts[0].product.qty > maxItems) {\r\n\t\t\tbonusProducts.bonusproducts[0].product.qty = maxItems;\r\n\t\t}\r\n\t\t// make the server call\r\n\t\t$.ajax({\r\n\t\t\ttype: 'POST',\r\n\t\t\tdataType: 'json',\r\n\t\t\tcache: false,\r\n\t\t\tcontentType: 'application/json',\r\n\t\t\turl: url,\r\n\t\t\tdata: JSON.stringify(bonusProducts)\r\n\t\t}).done(function () {\r\n\t\t\t// success\r\n\t\t\tpage.refresh();\r\n\t\t}).fail(function (xhr, textStatus) {\r\n\t\t\t// failed\r\n\t\t\tif (textStatus === 'parsererror') {\r\n\t\t\t\twindow.alert(Resources.BAD_RESPONSE);\r\n\t\t\t} else {\r\n\t\t\t\twindow.alert(Resources.SERVER_CONNECTION_ERROR);\r\n\t\t\t}\r\n\t\t})\r\n\t}).on('click', '#more-bonus-products', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar uuid = $('#bonus-product-list').data().lineItemDetail.uuid;\r\n\r\n\t\t//get the next page of choice of bonus products\r\n\t\tvar lineItemDetail = JSON.parse($('#bonus-product-list').attr('data-line-item-detail'));\r\n\t\tlineItemDetail.pageStart = lineItemDetail.pageStart + lineItemDetail.pageSize;\r\n\t\t$('#bonus-product-list').attr('data-line-item-detail', JSON.stringify(lineItemDetail));\r\n\r\n\t\tvar url = util.appendParamsToUrl(Urls.getBonusProducts, {\r\n\t\t\tbonusDiscountLineItemUUID: uuid,\r\n\t\t\tformat: 'ajax',\r\n\t\t\tlazyLoad: 'true',\r\n\t\t\tpageStart: lineItemDetail.pageStart,\r\n\t\t\tpageSize: $('#bonus-product-list').data().lineItemDetail.pageSize,\r\n\t\t\tbonusProductsTotal: $('#bonus-product-list').data().lineItemDetail.bpTotal\r\n\t\t});\r\n\r\n\t\t$.ajax({\r\n\t\t\ttype: 'GET',\r\n\t\t\tcache: false,\r\n\t\t\tcontentType: 'application/json',\r\n\t\t\turl: url\r\n\t\t}).done(function (data) {\r\n\t\t\t//add the new page to DOM and remove 'More' link if it is the last page of results\r\n\t\t\t$('#more-bonus-products').before(data);\r\n\t\t\tif ((lineItemDetail.pageStart + lineItemDetail.pageSize) >= $('#bonus-product-list').data().lineItemDetail.bpTotal) {\r\n\t\t\t\t$('#more-bonus-products').remove();\r\n\t\t\t}\r\n\t\t}).fail(function (xhr, textStatus) {\r\n\t\t\tif (textStatus === 'parsererror') {\r\n\t\t\t\twindow.alert(Resources.BAD_RESPONSE);\r\n\t\t\t} else {\r\n\t\t\t\twindow.alert(Resources.SERVER_CONNECTION_ERROR);\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n}\r\n\r\nvar bonusProductsView = {\r\n\t/**\r\n\t * @function\r\n\t * @description Open the list of bonus products selection dialog\r\n\t */\r\n\tshow: function (url) {\r\n\t\t// render content to modal by url\r\n\t\turl = util.appendParamToURL(url, 'format', 'ajax')\r\n\r\n\t\t$('.ajax-loader').show();\r\n\t\tvar index = require('./pages/product/index');\r\n\t\t$('.overlay').show();\r\n\t\t$.ajax({\r\n\t\t\turl: url,\r\n\t\t\tdataType: 'html',\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\tcustomModal.createCustomModal('bonus-sample-selection');\r\n\t\t\t\t$('.bonus-sample-selection').find('.modal-body').html(response);\r\n\t\t\t\tvar bonusLeft = $(response).find('.bonuses-left-indicator').data('selectlimit');\r\n\t\t\t\tvar bonusSelectedLimit = $(response).find('input[data-button=\"sample-bonus-add-to-cart\"]').data('limit') - bonusLeft;\r\n\t\t\t\tif (parseInt(bonusLeft) > 0 && parseInt(bonusSelectedLimit) > 0){\r\n\t\t\t\t\t$('.update-selection').removeClass('hide');\r\n\t\t\t\t} else if (parseInt(bonusSelectedLimit) > 0) {\r\n\t\t\t\t\t$('.selection-limit').removeClass('hide');\r\n\t\t\t\t}\r\n\t\t\t\tindex.bodyPositionFixed('bonus-sample-selection');\r\n\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t$('.overlay').hide();\r\n\t\t\t}\r\n\t\t}).done(function (data) {\r\n\t\t\tsamples.updateModalScroll();\r\n\t\t\tvar bonusSampleHeight=(function(){\r\n\t\t\t\tvar height;\r\n\t\t\t\tif($('.bonus-sample-selection .samples-left-indicator').outerHeight())\r\n\t\t\t\t{\r\n\t\t\t\t\theight= $('.bonus-sample-selection .samples-left-indicator').outerHeight()\r\n\t\t\t\t}\r\n\t\t\t\telse{\r\n\t\t\t\t\theight=$('.bonus-sample-selection .bonuses-left-indicator').outerHeight()\r\n\t\t\t\t}\r\n\t\t\t\treturn height;\r\n\t\t\t})();\r\n\t\t\tvar scrollableArea = $('.bonus-sample-selection .modal-wrapper').innerHeight() - ($('.bonus-sample-selection .add-btn-container').outerHeight() + $('.bonus-sample-selection .wrapper-header').outerHeight() + bonusSampleHeight);\r\n\t\t\t\r\n\t\t\tif (checkLayout == 'desktop') {\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents').css('height', $('.bonus-sample-selection .modal-wrapper').innerHeight() - $('.bonus-sample-selection .add-btn-container').outerHeight());\r\n\t\t\t} else {\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents').css('height', scrollableArea );\r\n\t\t\t}\r\n\t\t\t$('.bonus-sample-selection .sample-bonus-contents .sample-bonus-body').scrollBox();\r\n\t\t\t$(\".thumb-image\").on('load', function(){\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents .sample-bonus-body').scrollBox().resize();\r\n\t\t\t});\r\n\t\t});\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Open bonus product promo prompt dialog\r\n\t */\r\n\tloadBonusOption: function () {\r\n\t\tvar self = this,\r\n\t\t\tbonusDiscountContainer = document.querySelector('.bonus-discount-container');\r\n\t\tif (!bonusDiscountContainer) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\t// get the html from minicart, then trash it\r\n\t\tvar bonusDiscountContainerHtml = bonusDiscountContainer.outerHTML;\r\n\t\tbonusDiscountContainer.parentNode.removeChild(bonusDiscountContainer);\r\n\t},\r\n\r\n\thasBonusOptions: function () {\r\n\t\treturn ($(\".bonus-discount-container\").length > 0);\r\n\t}\r\n};\r\n\r\nmodule.exports = bonusProductsView;\n},{\"./detect-layout\":13,\"./modal\":27,\"./page\":30,\"./pages/product/index\":52,\"./samples\":82,\"./util\":93}],6:[function(require,module,exports){\n'use strict';\r\n\r\nvar buyallutil = {\r\n\tupdatepid: function (oldpid, newpid) {\r\n\t\tif (typeof $('#pids').val() !== typeof undefined) {\r\n\t\t\tvar oldpid = oldpid.toString();\r\n\t\t\tvar newpid = newpid.toString();\r\n\t\t\tif (oldpid !== newpid) {\r\n\t\t\t\tvar newPids = '';\r\n\t\t\t\tvar pids = $('#pids').val().split(',');\r\n\t\t\t\tfor (var i = 0; i <= (pids.length - 1); i++) {\r\n\t\t\t\t\tvar pid = pids[i].split(':')[0];\r\n\t\t\t\t\tif (pid === oldpid){\r\n\t\t\t\t\t\tvar tempPid = pids[i].replace(oldpid, newpid);\r\n\t\t\t\t\t\tnewPids = newPids+','+tempPid;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tnewPids = newPids+','+pids[i];\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tif (newPids.indexOf(',') === 0)\r\n\t\t\t\t\tnewPids = newPids.substr(1);\r\n\t\t\t\t$('#pids').val(newPids);\r\n\t\t\t\tbuyallutil.updateqty(newpid, 1);\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn;\r\n\t},\r\n\tupdateqty: function ($pid, $qty) {\r\n\t\tif (typeof $('#pids').val() !== typeof undefined) {\r\n\t\t\t$pid = $pid.toString();\r\n\t\t\t$qty = parseInt($qty).toString();\r\n\t\t\tif ($('#pids').val().indexOf($pid) > -1) {\r\n\t\t\t\tvar newPids = '';\r\n\t\t\t\tvar pids = $('#pids').val().split(',');\r\n\t\t\t\tfor (var i = 0; i < pids.length; i++) {\r\n\t\t\t\t\tvar $temp = pids[i];\r\n\t\t\t\t\tvar pid = pids[i].split(':')[0];\r\n\t\t\t\t\tif ($pid === pid) {\r\n\t\t\t\t\t\t$temp = pid + ':' + $qty;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tnewPids = newPids + ',' + $temp;\r\n\t\t\t\t}\r\n\t\t\t\tif (newPids.indexOf(',') === 0)\r\n\t\t\t\t\tnewPids = newPids.substr(1);\r\n\t\t\t\t$('#pids').val(newPids);\r\n\t\t\t\tvar $errEle = $(\"#all-a2c-error\");\r\n\t\t\t\t$errEle.slideUp(500);\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n};\r\n\r\nmodule.exports = buyallutil;\n},{}],7:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util'),\r\n\tcustomModal = require('./modal'),\r\n\tSessionAttributes = window.SessionAttributes;\r\n\r\n/**\r\n * @function captcha Used to display/control the scrim containing the simulated captcha code\r\n **/\r\nmodule.exports = function () {\r\n\t/**\r\n\t * if the session.privacy.ratelimited element is present then show the notification\r\n\t * NOTE: You will probably want to replace this with a call to an actual CAPTCHA system to replace the simple one here\r\n\t */\r\n\tif (SessionAttributes.SHOW_CAPTCHA) {\r\n\t\tcustomModal.createCustomModal('login-captcha');\r\n\t\t$('.login-captcha .modal-body').html('<h1>' + Resources.ARE_YOU_HUMAN + '</h1><button class=\"primary large\">' + Resources.OK + '</button>');\r\n\t\t$('.login-captcha button').on('click', function() {\r\n\t\t\tvar url = util.appendParamsToUrl(Urls.rateLimiterReset, {format: 'ajax'});\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: url\r\n\t\t\t});\r\n\t\t\t$('.login-captcha .modal-close').trigger('click');\r\n\t\t});\r\n\t}\r\n};\r\n\n},{\"./modal\":27,\"./util\":93}],8:[function(require,module,exports){\n'use strict';\r\n\r\nvar page = require('./page'),\r\n\tutil = require('./util'),\r\n\tTPromise = require('promise');\r\n\r\nvar _currentCategory = '',\r\n\tMAX_ACTIVE = 6;\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Verifies the number of elements in the compare container and updates it with sequential classes for ui targeting\r\n */\r\nfunction refreshContainer() {\r\n\tvar $compareContainer = $('.compare-items');\r\n\tvar $compareItems = $compareContainer.find('.compare-item');\r\n\tvar numActive = $compareItems.filter('.active').length;\r\n\r\n\tif (numActive < 2) {\r\n\t\t$('#compare-items-button').attr('disabled', 'disabled');\r\n\t} else {\r\n\t\t$('#compare-items-button').prop('disabled', false);\r\n\t}\r\n\r\n\t$compareContainer.toggle(numActive > 0);\r\n}\r\n/**\r\n * @private\r\n * @function\r\n * @description Adds an item to the compare container and refreshes it\r\n */\r\nfunction addToList(data) {\r\n\t// get the first compare-item not currently active\r\n\tvar $item = $('.compare-items .compare-item').not('.active').first(),\r\n\t\t$productTile = $('#' + data.uuid);\r\n\r\n\tif ($item.length === 0) {\r\n\t\tif ($productTile.length > 0) {\r\n\t\t\t$productTile.find('.compare-check')[0].checked = false;\r\n\t\t}\r\n\t\twindow.alert(Resources.COMPARE_ADD_FAIL);\r\n\t\treturn;\r\n\t}\r\n\r\n\t// if already added somehow, return\r\n\tif ($('[data-uuid=\"' + data.uuid + '\"]').length > 0) {\r\n\t\treturn;\r\n\t}\r\n\t// set as active item\r\n\t$item.addClass('active')\r\n\t\t.attr('data-uuid', data.uuid)\r\n\t\t.attr('data-itemid', data.itemid)\r\n\t\t.data('uuid', data.uuid)\r\n\t\t.data('itemid', data.itemid)\r\n\t\t.append($(data.img).clone().addClass('compare-item-image'));\r\n}\r\n/**\r\n * @private\r\n * @function\r\n * description Removes an item from the compare container and refreshes it\r\n */\r\nfunction removeFromList($item) {\r\n\tif ($item.length === 0) {\r\n\t\treturn;\r\n\t}\r\n\t// remove class, data and id from item\r\n\t$item.removeClass('active')\r\n\t\t.removeAttr('data-uuid')\r\n\t\t.removeAttr('data-itemid')\r\n\t\t.data('uuid', '')\r\n\t\t.data('itemid', '')\r\n\t\t// remove the image\r\n\t\t.find('.compare-item-image').remove();\r\n}\r\n\r\nfunction addProductAjax(args) {\r\n\tvar promise = new TPromise(function (resolve, reject) {\r\n\t\t$.ajax({\r\n\t\t\turl: Urls.compareAdd,\r\n\t\t\tdata: {\r\n\t\t\t\tpid: args.itemid,\r\n\t\t\t\tcategory: _currentCategory\r\n\t\t\t},\r\n\t\t\tdataType: 'json'\r\n\t\t}).done(function (response) {\r\n\t\t\tif (!response || !response.success) {\r\n\t\t\t\treject(new Error(Resources.COMPARE_ADD_FAIL));\r\n\t\t\t} else {\r\n\t\t\t\tresolve(response);\r\n\t\t\t}\r\n\t\t}).fail(function (jqxhr, status, err) {\r\n\t\t\treject(new Error(err));\r\n\t\t});\r\n\t});\r\n\treturn promise;\r\n}\r\n\r\nfunction removeProductAjax(args) {\r\n\tvar promise = new TPromise(function (resolve, reject) {\r\n\t\t$.ajax({\r\n\t\t\turl: Urls.compareRemove,\r\n\t\t\tdata: {\r\n\t\t\t\tpid: args.itemid,\r\n\t\t\t\tcategory: _currentCategory\r\n\t\t\t},\r\n\t\t\tdataType: 'json'\r\n\t\t}).done(function (response) {\r\n\t\t\tif (!response || !response.success) {\r\n\t\t\t\treject(new Error(Resources.COMPARE_REMOVE_FAIL));\r\n\t\t\t} else {\r\n\t\t\t\tresolve(response);\r\n\t\t\t}\r\n\t\t}).fail(function (jqxhr, status, err) {\r\n\t\t\treject(new Error(err));\r\n\t\t});\r\n\t});\r\n\treturn promise;\r\n}\r\n\r\nfunction shiftImages() {\r\n\treturn new TPromise(function (resolve) {\r\n\t\tvar $items = $('.compare-items .compare-item');\r\n\t\t$items.each(function (i, item) {\r\n\t\t\tvar $item = $(item);\r\n\t\t\t// last item\r\n\t\t\tif (i === $items.length - 1) {\r\n\t\t\t\treturn removeFromList($item);\r\n\t\t\t}\r\n\t\t\tvar $next = $items.eq(i + 1);\r\n\t\t\tif ($next.hasClass('active')) {\r\n\t\t\t\t// remove its own image\r\n\t\t\t\t$next.find('.compare-item-image').detach().appendTo($item);\r\n\t\t\t\t$item.addClass('active')\r\n\t\t\t\t\t.attr('data-uuid', $next.data('uuid'))\r\n\t\t\t\t\t.attr('data-itemid', $next.data('itemid'))\r\n\t\t\t\t\t.data('uuid', $next.data('uuid'))\r\n\t\t\t\t\t.data('itemid', $next.data('itemid'));\r\n\t\t\t}\r\n\t\t});\r\n\t\tresolve();\r\n\t});\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Adds product to the compare table\r\n */\r\nfunction addProduct(args) {\r\n\tvar promise;\r\n\tvar $items = $('.compare-items .compare-item');\r\n\tvar $cb = $(args.cb);\r\n\tvar numActive = $items.filter('.active').length;\r\n\tif (numActive === MAX_ACTIVE) {\r\n\t\tif (!window.confirm(Resources.COMPARE_CONFIRMATION)) {\r\n\t\t\t$cb[0].checked = false;\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\t// remove product using id\r\n\t\tvar $firstItem = $items.first();\r\n\t\tpromise = removeItem($firstItem).then(function () {\r\n\t\t\treturn shiftImages();\r\n\t\t});\r\n\t} else {\r\n\t\tpromise = TPromise.resolve(0);\r\n\t}\r\n\treturn promise.then(function () {\r\n\t\treturn addProductAjax(args).then(function () {\r\n\t\t\taddToList(args);\r\n\t\t\tif ($cb && $cb.length > 0) {\r\n\t\t\t\t$cb[0].checked = true;\r\n\t\t\t}\r\n\t\t\trefreshContainer();\r\n\t\t});\r\n\t}).then(null, function () {\r\n\t\tif ($cb && $cb.length > 0) {\r\n\t\t\t$cb[0].checked = false;\r\n\t\t}\r\n\t});\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Removes product from the compare table\r\n * @param {object} args - the arguments object should have the following properties: itemid, uuid and cb (checkbox)\r\n */\r\nfunction removeProduct(args) {\r\n\tvar $cb = args.cb ? $(args.cb) : null;\r\n\treturn removeProductAjax(args).then(function () {\r\n\t\tvar $item = $('[data-uuid=\"' + args.uuid + '\"]');\r\n\t\tremoveFromList($item);\r\n\t\tif ($cb && $cb.length > 0) {\r\n\t\t\t$cb[0].checked = false;\r\n\t\t}\r\n\t\trefreshContainer();\r\n\t}, function () {\r\n\t\tif ($cb && $cb.length > 0) {\r\n\t\t\t$cb[0].checked = true;\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction removeItem($item) {\r\n\tvar uuid = $item.data('uuid'),\r\n\t\t$productTile = $('#' + uuid);\r\n\treturn removeProduct({\r\n\t\titemid: $item.data('itemid'),\r\n\t\tuuid: uuid,\r\n\t\tcb: ($productTile.length === 0) ? null : $productTile.find('.compare-check')\r\n\t});\r\n}\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Initializes the DOM-Object of the compare container\r\n */\r\nfunction initializeDom() {\r\n\tvar $compareContainer = $('.compare-items');\r\n\t_currentCategory = $compareContainer.data('category') || '';\r\n\tvar $active = $compareContainer.find('.compare-item').filter('.active');\r\n\t$active.each(function () {\r\n\t\tvar $productTile = $('#' + $(this).data('uuid'));\r\n\t\tif ($productTile.length === 0) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\t$productTile.find('.compare-check')[0].checked = true;\r\n\t});\r\n\t// set container state\r\n\trefreshContainer();\r\n}\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Initializes the events on the compare container\r\n */\r\nfunction initializeEvents() {\r\n\t// add event to buttons to remove products\r\n\t$('.compare-item').on('click', '.compare-item-remove', function () {\r\n\t\tremoveItem($(this).closest('.compare-item'));\r\n\t});\r\n\r\n\t// Button to go to compare page\r\n\t$('#compare-items-button').on('click', function () {\r\n\t\tpage.redirect(util.appendParamToURL(Urls.compareShow, 'category', _currentCategory));\r\n\t});\r\n\r\n\t// Button to clear all compared items\r\n\t// rely on refreshContainer to take care of hiding the container\r\n\t$('#clear-compared-items').on('click', function () {\r\n\t\t$('.compare-items .active').each(function () {\r\n\t\t\tremoveItem($(this));\r\n\t\t});\r\n\t});\r\n}\r\n\r\nexports.init = function () {\r\n\tinitializeDom();\r\n\tinitializeEvents();\r\n};\r\n\r\nexports.addProduct = addProduct;\r\nexports.removeProduct = removeProduct;\n},{\"./page\":30,\"./util\":93,\"promise\":141}],9:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util');\r\n/**\r\n * @function getConsent Used to display/control of the modal containing the consent management message\r\n **/\r\n\r\n\r\nfunction getConsent() {\r\n\t$.get(util.appendParamsToUrl(Urls.consentTracking, {\r\n\t\t\"format\": \"ajax\"\r\n\t}), function (data) {\r\n\r\n\t\t$(document).find('body #main').append(\"<div class='cookie_popup_container'><div class='popup_overlay'/><div class='cookie_consent_popup'>\" + data + \"</div></div>\");\r\n\r\n\t\t$(document).find('.cookie_consent_popup .trackingYes').on('click', function () {\r\n\t\t\t$.ajax({\r\n\t\t\t\ttype: 'GET',\r\n\t\t\t\turl: util.appendParamToURL(Urls.consentTrackingSetSession, 'consentTracking', true),\r\n\t\t\t\tsuccess: function () {\r\n\t\t\t\t\tshowPrivacyDialog();\r\n\t\t\t\t},\r\n\t\t\t\terror: function () {\r\n\t\t\t\t\tshowPrivacyDialog();\r\n\t\t\t\t}\r\n\t\t\t})\r\n\t\t\t$('.cookie_popup_container').remove();\r\n\t\t});\r\n\r\n\t\t$(document).find('.cookie_consent_popup .trackingNo').on('click', function () {\r\n\t\t\t$.ajax({\r\n\t\t\t\ttype: 'GET',\r\n\t\t\t\turl: util.appendParamToURL(Urls.consentTrackingSetSession, 'consentTracking', false),\r\n\t\t\t\tsuccess: function () {\r\n\t\t\t\t\tshowPrivacyDialog();\r\n\t\t\t\t},\r\n\t\t\t\terror: function () {\r\n\t\t\t\t\tshowPrivacyDialog();\r\n\t\t\t\t}\r\n\t\t\t})\r\n\t\t\t$('.cookie_popup_container').remove();\r\n\t\t});\r\n\r\n\t});\r\n}\r\n\r\nfunction enablePrivacyCookies() {\r\n\tvar shouldSendSameSiteCookie = util.shouldSendSameSiteNone(navigator.userAgent) || false;\r\n\tif (document.cookie.indexOf('dw=1') < 0) {\r\n\t\tif (shouldSendSameSiteCookie) {\r\n\t\t\tdocument.cookie = 'dw=1; secure; samesite=none; path=/';\r\n\t\t} else {\r\n\t\t\tdocument.cookie = 'dw=1; secure; path=/';\r\n\t\t}\r\n\t\t\r\n\t}\r\n\tif (document.cookie.indexOf('dw_cookies_accepted') < 0) {\r\n\t\tif (shouldSendSameSiteCookie) {\r\n\t\t\tdocument.cookie = 'dw_cookies_accepted=1; secure; samesite=none; path=/';\r\n\t\t} else {\r\n\t\t\tdocument.cookie = 'dw_cookies_accepted=1; secure; path=/';\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunction showPrivacyDialog() {\r\n\r\n\tif (SitePreferences.COOKIE_HINT === true && document.cookie.indexOf('dw_cookies_accepted') < 0) {\r\n\t\t// check for privacy policy page\r\n\t\tif ($('.privacy-policy').length === 0) {\r\n\t\t\t$.get(util.appendParamsToUrl(Urls.cookieHint, {\r\n\t\t\t\t\"format\": \"ajax\"\r\n\t\t\t}), function (data) {\r\n\t\t\t\t$(document).find('body #main').append(\"<div class='cookie_consent_popup'>\" + data + \"</div>\");\r\n\t\t\t\t$(document).find('.cookie_consent_popup .agreeButton').on('click', function () {\r\n\t\t\t\t\t$('.cookie_consent_popup').hide();\r\n\t\t\t\t});\r\n\t\t\t\tenablePrivacyCookies();\r\n\t\t\t});\r\n\t\t}\r\n\t} else {\r\n\t\t// Otherwise, we don't need to show the asset, just enable the cookies\r\n\t\tenablePrivacyCookies();\r\n\t}\r\n}\r\nvar consentTracking = {\r\n\tinit: function () {\r\n\t\tif (consent == null && SitePreferences.CONSENT_TRACKING_HINT) { // eslint-disable-line no-undef\r\n\t\t\tgetConsent();\r\n\t\t}\r\n\r\n\t\tif (consent != null && SitePreferences.CONSENT_TRACKING_HINT) { // eslint-disable-line no-undef\r\n\t\t\tshowPrivacyDialog();\r\n\t\t}\r\n\r\n\t},\r\n\tshow: function () {\r\n\t\tgetConsent();\r\n\t}\r\n};\r\nmodule.exports = consentTracking;\n},{\"./util\":93}],10:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util');\r\n\r\n/**\r\n * @function cookieprivacy Used to display/control the scrim containing the cookie privacy code\r\n **/\r\nmodule.exports = function () {\r\n\t/**\r\n\t * If we have not accepted cookies AND we're not on the Privacy Policy page, then show the notification\r\n\t * NOTE: You will probably want to adjust the Privacy Page test to match your site's specific privacy / cookie page\r\n\t */\r\n\tif (!SitePreferences.CONSENT_TRACKING_HINT && SitePreferences.COOKIE_HINT === true && document.cookie.indexOf('dw_cookies_accepted') < 0) {\r\n\t\t// check for privacy policy page\r\n\t\tif ($('.privacy-policy').length === 0) {\r\n\t\t\t$.get(util.appendParamsToUrl(Urls.cookieHint, {\r\n\t\t\t\t\"format\": \"ajax\"\r\n\t\t\t}), function (data) {\r\n\t\t\t\t$(document).find('body #main').append(\"<div class='cookie_consent_popup'>\" + data + \"</div>\");\r\n\t\t\t\t$(document).find('.cookie_consent_popup .agreeButton').on('click', function () {\r\n\t\t\t\t\t$('.cookie_consent_popup').remove();\r\n\t\t\t\t});\r\n\t\t\t\tenableCookies();\r\n\t\t\t});\r\n\t\t}\r\n\t} else {\r\n\t\t// Otherwise, we don't need to show the asset, just enable the cookies\r\n\t\tenableCookies();\r\n\t}\r\n\r\n\tfunction enableCookies() {\r\n\t\tvar shouldSendSameSiteCookie = util.shouldSendSameSiteNone(navigator.userAgent) || false;\r\n\t\tif (document.cookie.indexOf('dw=1') < 0) {\r\n\t\t\tif (shouldSendSameSiteCookie) {\r\n\t\t\t\tdocument.cookie = 'dw=1; secure; samesite=none; path=/';\r\n\t\t\t} else {\r\n\t\t\t\tdocument.cookie = 'dw=1; secure; path=/';\r\n\t\t\t}\r\n\t\t}\r\n\t\tif (document.cookie.indexOf('dw_cookies_accepted') < 0) {\r\n\t\t\tif (shouldSendSameSiteCookie) {\r\n\t\t\t\tdocument.cookie = 'dw_cookies_accepted=1; secure; samesite=none; path=/';\r\n\t\t\t} else {\r\n\t\t\t\tdocument.cookie = 'dw_cookies_accepted=1; secure; path=/';\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n};\n},{\"./util\":93}],11:[function(require,module,exports){\n'use strict';\r\n\r\nexports.init = function init() {\r\n\t$('.country-selector .current-country').on('click', function () {\r\n\t\t$('.country-selector .selector').toggleClass('active');\r\n\t\t$(this).toggleClass('selector-active');\r\n\t});\r\n\t// set currency first before reload\r\n\t$('.country-selector .selector .locale').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar url = this.href;\r\n\t\tvar currency = this.getAttribute('data-currency');\r\n\t\t$.ajax({\r\n\t\t\tdataType: 'json',\r\n\t\t\turl: Urls.setSessionCurrency,\r\n\t\t\tdata: {\r\n\t\t\t\tformat: 'ajax',\r\n\t\t\t\tcurrencyMnemonic: currency\r\n\t\t\t}\r\n\t\t}).done(function (response) {\r\n\t\t\tif (!response.success) {\r\n\t\t\t\tthrow new Error('Unable to set currency');\r\n\t\t\t}\r\n\t\t\twindow.location.href = url;\r\n\t\t});\r\n\t});\r\n};\n},{}],12:[function(require,module,exports){\n'use strict';\r\n\r\nvar currentLayout = require('./detect-layout'),\r\n\tRESPONSIVE_IMAGE_TAG = 'picture';\r\n\r\n/*\r\n* @Object\r\n* @description a delayedimageload object for showing the images based on the data- attribute value\r\n*/\r\nvar delayedimageload = {\r\n\t/**\r\n\t* @function\r\n\t* @description init function initialises the triggers and assigns the onload, ready elements.\r\n\t*/\r\n\tinit: function () {\r\n\t\tthis.$eldesktoponly = $('img[data-image-load-on=desktop]');\r\n\t\t$(window).on('resize orientationchange', function () {\r\n\t\t\tdelayedimageload.showDesktopImages();\r\n\t\t});\r\n\r\n\t\tthis.$elloadonhover = $('img[data-image-load-on-demand=hover]');\r\n\t\tthis.$elloadonclick = $('img[data-image-load-on-demand=click]');\r\n\t\tdelayedimageload.loadImagesOnDemand();\r\n\t},\r\n\t/**\r\n\t* @function\r\n\t* @description A function to display all the images on document ready specifically\r\n\t*/\r\n\tshowDesktopImages: function () {\r\n\t\tif (this.$eldesktoponly && currentLayout.init() === 'desktop') {\r\n\t\t\tvar $desktopImageIndex = 0;\r\n\t\t\tvar $desktopImagesLength = this.$eldesktoponly.length;\r\n\t\t\tfor ($desktopImageIndex; $desktopImageIndex < $desktopImagesLength; $desktopImageIndex++) {\r\n\t\t\t\tvar $desktopImage = this.$eldesktoponly[$desktopImageIndex];\r\n\t\t\t\tvar $currentElement = $($desktopImage);\r\n\t\t\t\tif (!$currentElement.hasClass('js-loaded')) {\r\n\t\t\t\t\tshowResponsiveImages($currentElement);\r\n\t\t\t\t\t$currentElement.attr('src', $currentElement.attr('data-image'));\r\n\t\t\t\t\t$currentElement.addClass('js-loaded');\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t},\r\n\t/**\r\n\t* @function\r\n\t* @description A function to load images on demand\r\n\t*/\r\n\tloadImagesOnDemand: function () {\r\n\t\tif (this.$elloadonhover && currentLayout.init() === 'desktop') {\r\n\t\t\t$(this.$elloadonhover.data('image-load-target')).on('mouseenter', function() {\r\n\t\t\t\tvar $currentElement = $(this).find('img[data-image-load-on-demand=hover]');\r\n\t\t\t\tif($currentElement.attr('src') == undefined) {\r\n\t\t\t\t\t$currentElement.attr('src', $currentElement.attr('data-image'));\r\n\t\t\t\t\t$currentElement.addClass('js-loaded');\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\tif (this.$elloadonclick) {\r\n\t\t\t$(this.$elloadonclick.data('image-load-target')).on('click', function() {\r\n\t\t\t\tvar $currentElement = $(this).find('img[data-image-load-on-demand=click]');\r\n\t\t\t\tif($currentElement.attr('src') == undefined) {\r\n\t\t\t\t\t$currentElement.attr('src', $currentElement.attr('data-image'));\r\n\t\t\t\t\t$currentElement.addClass('js-loaded');\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n};\r\n\r\nfunction showDelayedImages() {\r\n\tdelayedimageload.init();\r\n\tdelayedimageload.showDesktopImages();\r\n}\r\n\r\n/**\r\n* @function\r\n* @description A function to determine and lazy-load responsive images\r\n*/\r\nfunction showResponsiveImages(image) {\r\n\tvar $parentNode = image.parent();\r\n\tif ($parentNode.prop('tagName').toLowerCase() === RESPONSIVE_IMAGE_TAG) {\r\n\t\tvar $imageSources = $parentNode.children();\r\n\t\tfor (var i = 0; i < $imageSources.length; i++) {\r\n\t\t\tvar $element = $imageSources.eq(i);\r\n\t\t\t$element.attr('srcset', $element.data('srcset'));\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\nmodule.exports = delayedimageload;\r\nmodule.exports.showDelayedImages = showDelayedImages;\r\n\n},{\"./detect-layout\":13}],13:[function(require,module,exports){\n'use strict';\r\nvar currLayout;\r\nfunction initCurrentLayout() {\r\n\tif (window.innerWidth >= 769) {\r\n\t\treturn currLayout = \"desktop\"\r\n\t} else {\r\n\t\treturn currLayout = \"mobile\"\r\n\t}\r\n}\r\n\r\nexports.init = function () {\r\n\treturn initCurrentLayout();\r\n};\n},{}],14:[function(require,module,exports){\n'use strict';\r\n\r\nvar ajax = require('./ajax'),\r\n\tutil = require('./util'),\r\n\t_ = require('lodash'),\r\n\timagesLoaded = require('imagesloaded');\r\n\r\nvar dialog = {\r\n\t/**\r\n\t * @function\r\n\t * @description Appends a dialog to a given container (target)\r\n\t * @param {Object} params params.target can be an id selector or an jquery object\r\n\t */\r\n\tcreate: function (params) {\r\n\t\tvar $target, id;\r\n\r\n\t\tif (_.isString(params.target)) {\r\n\t\t\tif (params.target.charAt(0) === '#') {\r\n\t\t\t\t$target = $(params.target);\r\n\t\t\t} else {\r\n\t\t\t\t$target = $('#' + params.target);\r\n\t\t\t}\r\n\t\t} else if (params.target instanceof jQuery) {\r\n\t\t\t$target = params.target;\r\n\t\t} else {\r\n\t\t\t$target = $('#dialog-container');\r\n\t\t}\r\n\r\n\t\t// if no element found, create one\r\n\t\tif ($target.length === 0) {\r\n\t\t\tif ($target.selector && $target.selector.charAt(0) === '#') {\r\n\t\t\t\tid = $target.selector.substr(1);\r\n\t\t\t\t$target = $('<div>').attr('id', id).addClass('dialog-content').appendTo('body');\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t// create the dialog\r\n\t\tthis.$container = $target;\r\n\t\tthis.$container.dialog(_.merge({}, this.settings, params.options || {}));\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Opens a dialog using the given url (params.url) or html (params.html)\r\n\t * @param {Object} params\r\n\t * @param {Object} params.url should contain the url\r\n\t * @param {String} params.html contains the html of the dialog content\r\n\t */\r\n\topen: function (params) {\r\n\t\t// close any open dialog\r\n\t\tthis.close();\r\n\t\tthis.create(params);\r\n\t\tthis.replace(params);\r\n\t},\r\n\t/**\r\n\t * @description populate the dialog with html content, then open it\r\n\t **/\r\n\topenWithContent: function (params) {\r\n\t\tvar content, position, callback;\r\n\r\n\t\tif (!this.$container) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tcontent = params.content || params.html;\r\n\t\tif (!content) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.$container.empty().html(content);\r\n\t\tif (!this.$container.dialog('isOpen')) {\r\n\t\t\tthis.$container.dialog('open');\r\n\t\t}\r\n\r\n\t\tif (params.options) {\r\n\t\t\tposition = params.options.position;\r\n\t\t}\r\n\t\tif (!position) {\r\n\t\t\tposition = this.settings.position;\r\n\t\t}\r\n\t\timagesLoaded(this.$container).on('done', function () {\r\n\t\t\tthis.$container.dialog('option', 'position', position);\r\n\t\t}.bind(this));\r\n\r\n\t\tcallback = (typeof params.callback === 'function') ? params.callback : function () {};\r\n\t\tcallback();\r\n\t},\r\n\t/**\r\n\t * @description Replace the content of current dialog\r\n\t * @param {object} params\r\n\t * @param {string} params.url - If the url property is provided, an ajax call is performed to get the content to replace\r\n\t * @param {string} params.html - If no url property is provided, use html provided to replace\r\n\t */\r\n\treplace: function (params) {\r\n\t\tif (!this.$container) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tif (params.url) {\r\n\t\t\tparams.url = util.appendParamToURL(params.url, 'format', 'ajax');\r\n\t\t\tajax.load({\r\n\t\t\t\turl: params.url,\r\n\t\t\t\tdata: params.data,\r\n\t\t\t\tcallback: function (response) {\r\n\t\t\t\t\tparams.content = response;\r\n\t\t\t\t\tthis.openWithContent(params);\r\n\t\t\t\t}.bind(this)\r\n\t\t\t});\r\n\t\t} else if (params.html) {\r\n\t\t\tthis.openWithContent(params);\r\n\t\t}\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Closes the dialog\r\n\t */\r\n\tclose: function () {\r\n\t\tif (!this.$container) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.$container.dialog('close');\r\n\t},\r\n\texists: function () {\r\n\t\treturn this.$container && (this.$container.length > 0);\r\n\t},\r\n\tisActive: function () {\r\n\t\treturn this.exists() && (this.$container.children.length > 0);\r\n\t},\r\n\tsettings: {\r\n\t\tautoOpen: false,\r\n\t\theight: 'auto',\r\n\t\tmodal: true,\r\n\t\toverlay: {\r\n\t\t\topacity: 0.5,\r\n\t\t\tbackground: 'black'\r\n\t\t},\r\n\t\tresizable: false,\r\n\t\ttitle: '',\r\n\t\twidth: '800',\r\n\t\tclose: function () {\r\n\t\t\t$(this).dialog('close');\r\n\t\t},\r\n\t\tposition: {\r\n\t\t\tmy: 'center',\r\n\t\t\tat: 'center',\r\n\t\t\tof: window,\r\n\t\t\tcollision: 'flipfit'\r\n\t\t}\r\n\t}\r\n};\r\n\r\nmodule.exports = dialog;\n},{\"./ajax\":1,\"./util\":93,\"imagesloaded\":133,\"lodash\":137}],15:[function(require,module,exports){\n!function(e,n){\"function\"==typeof define&&define.amd?define([\"exports\"],n):\"undefined\"!=typeof exports?n(exports):n(e.dragscroll={})}(this,function(e){var n,t,o=window,l=document,c=\"mousemove\",r=\"mouseup\",i=\"mousedown\",m=\"EventListener\",d=\"add\"+m,s=\"remove\"+m,f=[],u=function(e,m){for(e=0;e<f.length;)(m=(m=f[e++]).container||m)[s](i,m.md,0),o[s](r,m.mu,0),o[s](c,m.mm,0);for(f=[].slice.call(l.getElementsByClassName(\"dragscroll\")),e=0;e<f.length;)!function(e,m,s,f,u,a){(a=e.container||e)[d](i,a.md=function(n){e.hasAttribute(\"nochilddrag\")&&l.elementFromPoint(n.pageX,n.pageY)!=a||(f=1,m=n.clientX,s=n.clientY,n.preventDefault())},0),o[d](r,a.mu=function(){f=0},0),o[d](c,a.mm=function(o){f&&((u=e.scroller||e).scrollLeft-=n=-m+(m=o.clientX),u.scrollTop-=t=-s+(s=o.clientY),e==l.body&&((u=l.documentElement).scrollLeft-=n,u.scrollTop-=t))},0)}(f[e++])};\"complete\"==l.readyState?u():o[d](\"load\",u,0),e.reset=u});\n},{}],16:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util');\r\n\r\nfunction countrySelector() {\r\n\r\n\t$('#selectcountry, #header-selectcountry').on(\"selectmenuchange change\", function (event) {\r\n\t\tevent.preventDefault();\r\n\t\tvar countrySelected = $(this).find(':selected').attr('data-country').trim().toLowerCase();\r\n\t\tvar redirectCheck;\r\n\t\tvar countryUrl = $(this).find(':selected').val();\r\n\t\tif ($(this).find(':selected').attr('data-redirect')) {\r\n\t\t\tredirectCheck = $(this).find(':selected').attr('data-redirect').trim().toLowerCase();\r\n\t\t}\r\n\t\tif (redirectCheck == \"no\") {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\tif (countrySelected.indexOf('other') >= 0) {\r\n\t\t\tif (countryUrl == '') {\r\n\t\t\t\tcountryUrl = Urls.countrySelectorUrl;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tvar countryUrl = (countrySelected.indexOf('other') >= 0) ? Urls.countrySelectorUrl : $(this).find(':selected').val();\r\n\r\n\t\t// _self parameter used so that user gets redirected to GMW region selector on the same window.\r\n\t\tif (window.open(countryUrl, \"_self\") == null) {\r\n\t\t\tdocument.location.href = countryUrl;\r\n\t\t}\r\n\t});\r\n}\r\n\r\nexports.countrySelector = countrySelector;\n},{\"./util\":93}],17:[function(require,module,exports){\n'use strict';\r\n\r\nvar ajax = require('./ajax'),\r\n\tutil = require('./util');\r\n/**\r\n * @function\r\n * @description Load details to a given gift certificate\r\n * @param {String} id The ID of the gift certificate\r\n * @param {Function} callback A function to called\r\n */\r\nexports.checkBalance = function (id, pin, callback) {\r\n\t// load gift certificate details\r\n\tajax.getJson({\r\n\t\turl: util.appendParamsToUrl(Urls.giftCardCheckBalance, {\r\n\t\t\t'giftCertCode': id,\r\n\t\t\t'giftCertPIN': pin\r\n\t\t}),\r\n\t\tcallback: callback\r\n\t});\r\n};\n},{\"./ajax\":1,\"./util\":93}],18:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util');\r\nvar giftcert = require('./giftcert');\r\nvar validator = require('./validator');\r\n\r\nfunction updateCart() {\r\n\t$('#AddToBasketButton').on('click', function () {\r\n\t\t$('#GiftCertificateForm').submit();\r\n\t});\r\n}\r\n\r\nexports.init = function () {\r\n\t$('.gift-cert-edit').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t});\r\n}\n},{\"./giftcert\":19,\"./util\":93,\"./validator\":95}],19:[function(require,module,exports){\n'use strict';\r\n\r\nvar ajax = require('./ajax'),\r\n\tminicart = require('./minicart'),\r\n\tutil = require('./util');\r\n\r\nvar setAddToCartHandler = function (e) {\r\n\te.preventDefault();\r\n\tif ($(\".termsandconditions\").hasClass(\"error\")) {\r\n\t\treturn false;\r\n\t}\r\n\tsetGiftCard();\r\n\r\n\tvar form = $(this).closest('form');\r\n\tvar options = {\r\n\t\turl: util.ajaxUrl(form.attr('action')),\r\n\t\tmethod: 'POST',\r\n\t\tcache: false,\r\n\t\tdata: form.serialize()\r\n\t};\r\n\r\n\t$.ajax(options).done(function (response) {\r\n\t\tif (response.success) {\r\n\t\t\tajax.load({\r\n\t\t\t\turl: Urls.minicartGC,\r\n\t\t\t\tdata: {\r\n\t\t\t\t\tlineItemId: response.result.lineItemId\r\n\t\t\t\t},\r\n\t\t\t\tcallback: function (response) {\r\n\t\t\t\t\tminicart.show(response);\r\n\t\t\t\t\tform.find('input,textarea').val('');\r\n\t\t\t\t\tsetGiftCard();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t}).fail(function (xhr, textStatus) {\r\n\t\t// failed\r\n\t\tif (textStatus === 'parsererror') {\r\n\t\t\treturn window.alert(Resources.BAD_RESPONSE);\r\n\t\t}\r\n\r\n\t\twindow.alert(Resources.SERVER_CONNECTION_ERROR);\r\n\t});\r\n};\r\n\r\nfunction initializeEvents() {\r\n\t$('.gift-templates li').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\t$('.gift-templates li').removeClass('active');\r\n\t\t$(this).addClass('active');\r\n\r\n\t\tsetGiftCard();\r\n\t});\r\n\r\n\t$('.gift-templates select').on('change', function () {\r\n\t\tvar imageSource = $(this).find('option:selected').val();\r\n\t\tvar imageAlt = $(this).find('option:selected').text();\r\n\r\n\t\t$('.gift-templates li.active').removeClass('active');\r\n\t\t$('.gift-templates li:has(img[alt=\"' + imageAlt + '\"])').addClass('active');\r\n\r\n\t\tsetGiftCardImage(imageSource);\r\n\t\tsetGiftCardName(imageAlt);\r\n\t});\r\n}\r\n\r\nfunction setGiftCard() {\r\n\tvar imageSource = $('.gift-templates li.active').find('img').attr('src') || $('.img-source input').val();\r\n\tvar imageAlt = $('.gift-templates li.active').find('img').attr('alt') || $('.img-alt input').val();\r\n\r\n\t$('.gift-templates select').val(imageSource);\r\n\t$('.gift-templates li:has(img[alt=\"' + imageAlt + '\"])').addClass('active');\r\n\r\n\tsetGiftCardImage(imageSource);\r\n\tsetGiftCardName(imageAlt);\r\n}\r\n\r\nfunction setGiftCardImage(imageSource) {\r\n\t$('.img-preview').html('<img src=\"' + imageSource + '\" />');\r\n\t$('#GiftCertificateForm .img-source input').val(imageSource);\r\n}\r\n\r\nfunction setGiftCardName(imageAlt) {\r\n\t$('.gift-templates strong').text(imageAlt);\r\n\t$('#GiftCertificateForm .img-alt input').val(imageAlt);\r\n}\r\n\r\nexports.init = function () {\r\n\t$('#AddToBasketButton').on('click', setAddToCartHandler);\r\n\r\n\tif ($('.gift-check-balance').length) {\r\n\t\t$('.gift-templates li').first().addClass('active');\r\n\t}\r\n\r\n\tinitializeEvents();\r\n};\n},{\"./ajax\":1,\"./minicart\":26,\"./util\":93}],20:[function(require,module,exports){\n'use strict';\r\n\r\nvar currentLayout = require('./detect-layout'),\r\n\tresizedScreen = currentLayout.init(),\r\n\tutil = require('./util');\r\n\r\n\r\n/**\r\n * @function\r\n * @description Mobile navigation open/close handler\r\n */\r\nfunction mobileNavHandler() {\r\n\tvar windowScrollPosition;\r\n\t$(document).on('click','.icon-hamburger', function() {\r\n\t\tif (window.innerWidth < 1024) {\r\n\t\t\twindowScrollPosition = $(window).scrollTop();\r\n\t\t\t// Scroll to the top to remove the flicker effect before the body scrolls off using CSS by nav-open class.\r\n\t\t\t$(window).scrollTop(0);\r\n\t\t\t$('html').addClass('nav-open');\r\n\t\t\t$('.top-navigation-list').scrollTop(0);\r\n\t\t}\r\n\t})\r\n\t$(document).on('click', '.nav-overlay', function () {\r\n\t\tif ($('.nav-open').length > 0) {\r\n\t\t\t$('html').removeClass('nav-open');\r\n\t\t\t$(window).scrollTop(windowScrollPosition);\r\n\t\t\t$('.main-nav, .main-sub-nav, .sub-menu, #signin-overlay').removeClass('active').removeAttr('style');\r\n\t\t\t$('.main-nav, .main-sub-nav, .sub-menu, #contactus-overlay').removeClass('active').removeAttr('style');\r\n\t\t}\r\n\t}).on('click', '.has-sub-nav > a', function (e) {\r\n\t\t$('.utility-nav > ul > li').removeClass('hovered');\r\n\t\tif (window.innerWidth < 1024) {\r\n\t\t\t$(this).siblings('.sub-menu, .main-sub-nav').addClass('active');\r\n\t\t\t$('.main-nav').removeAttr('style');\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}).on('click', '.back-link span', function () {\r\n\t\tif ($(this).closest('.sub-menu').hasClass('level-2')) {\r\n\t\t\t$(this).closest('.main-sub-nav').removeClass('active');\r\n\t\t} else {\r\n\t\t\t$(this).closest('.sub-menu').removeClass('active');\r\n\t\t}\r\n\t});\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Desktop navigation flyout open/close handler\r\n */\r\nfunction desktopNavHandler() {\r\n\t$(document).on('mouseenter', '.top-navigation-list > li:not(.js-hover)', function () {\r\n\t\tif (window.innerWidth >= 1024) {\r\n\t\t\tvar $this = $(this);\r\n\t\t\tsetTimeout(function() {\r\n\t\t\t\tif($this.is(\":hover\") || $this.children('a').is(\":focus\")) {\r\n\t\t\t\t\t$('.top-navigation-list .level-2-wrapper').scrollTop(0);\r\n\t\t\t\t\t$this.addClass('js-hover').siblings('li').removeClass('js-hover');\r\n\t\t\t\t}\r\n\t\t\t}, 300);\r\n\t\t}\r\n\t}).on('mouseleave', '.top-navigation-list > li', function () {\r\n\t\tif (window.innerWidth >= 1024) {\r\n\t\t\tvar $this = $(this);\r\n\t\t\tsetTimeout(function() {\r\n\t\t\t\tif(!$this.is(\":hover\")) {\r\n\t\t\t\t\t$('.top-navigation-list .level-2-wrapper').scrollTop(0);\r\n\t\t\t\t\t$this.removeClass('js-hover');\r\n\t\t\t\t}\r\n\t\t\t}, 300);\r\n\t\t}\r\n\t}).on('click', '.top-navigation-list > li > a', function () {\r\n\t\tif (window.innerWidth >= 1024) {\r\n\t\t\t$(this).parent('li').trigger('mouseenter');\r\n\t\t}\r\n\t}).on('click', '.top-navigation-list > li > .main-sub-nav .close', function () {\r\n\t\tif (window.innerWidth >= 1024) {\r\n\t\t\t$('.top-navigation-list .level-2-wrapper').scrollTop(0);\r\n\t\t\t$(this).closest('li.js-hover').removeClass('js-hover');\r\n\t\t}\r\n\t}).on('mouseenter', '.level-2-bottom-space', function () {\r\n\t\tif (window.innerWidth >= 1024) {\r\n\t\t\t$('.top-navigation-list .level-2-wrapper').scrollTop(0);\r\n\t\t\t$('.top-navigation-list > li.js-hover').removeClass('js-hover');\r\n\t\t}\r\n\t}).keyup(function(e) {\r\n\t\t if (e.keyCode === 27) { //on click Esc key close the open menu flyout.\r\n\t\t\t if ($('.top-navigation-list > li.js-hover').length > 0) {\r\n\t\t\t\t $('.top-navigation-list > li.js-hover').trigger('mouseleave').children('a').focus();\r\n\t\t\t }\r\n\t\t }\r\n\t});\r\n\r\n\tif ($('.top-notification').length > 0) {\r\n\t\t$('.header-container').addClass('top-notification-configured');\r\n\t}\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Utility navigation hover and click handling.\r\n */\r\nfunction utilityNavTouchHandler(event, anchor) {\r\n\tif (resizedScreen == 'desktop' && util.isMobile()) {\r\n\t\tif (!$(anchor).parent().hasClass('hovered')) {\r\n\t\t\t$(anchor).parent().siblings().removeClass('hovered');\r\n\t\t\t$(anchor).parent().toggleClass('hovered');\r\n\t\t\tif ($(anchor).parent().hasClass('hovered')) {\r\n\t\t\t\tevent.preventDefault();\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunction setFlyoutContentMenu(){\r\n\tlet subNav=$('.has-flyout-content').find('.main-sub-nav').addClass('no-sub-distinguish');\r\n\t$('.has-flyout-content').find('a.flyout-menu-link').after(subNav);\r\n\t$('.has-flyout-content').find('.content-asset').hide();\t\r\n}\r\n\r\nexports.init = function () {\r\n\t$(window).on('resize', function() {\r\n\t\tresizedScreen = currentLayout.init();\r\n\t\tresizeScreenInit();\r\n\t\thandleResizeForBannerMessages();\r\n\t});\r\n\t\r\n\t// 'tap' doesn't work as expected so using touchstart instead\r\n\t$(document).on('touchstart',function(e){\r\n\t\t// the tapped element\r\n\t\tvar $target = $(e.target);\r\n\t\t\r\n\t});\r\n\r\n\t$('a.utility-link').on('click', function(evt) {\r\n\t\tevt.preventDefault();\r\n\t});\r\n\t\r\n\tvar $submenuItems = $('.utility-nav .sub-menu-item > a');\r\n\t\r\n\t$('.contactus-overlay-container').on('click', function(e) {\t\r\n\t\t$('html').removeClass('sticky-header-contact');\r\n\t\t$('#contactus-overlay').removeClass('active');\r\n\t\t$('#contactus-overlay').hide();\r\n\t\te.preventDefault();\r\n\t\treturn false;\r\n\t});\r\n\r\n\t//Common signin-overlay close\r\n\t$('#signin-overlay .signin-overlay-close').on('click', function(e){\r\n\t\te.preventDefault();\r\n\t\te.stopPropagation();\r\n\t\t$('html').removeClass('nav-open sticky-header-signin');\r\n\t\t$('body').removeClass('body-fixed');\r\n\t\t$(this).parents('#signin-overlay').removeClass('active');\r\n\t\t$(this).parents('#signin-overlay').hide();\r\n\t\t$('#signin-link').removeClass('hovered');\r\n\t});\t\r\n\t\r\n\t$('#contactus-overlay .contactus-overlay-close').on('click', function(e){\r\n\t\te.preventDefault();\r\n\t\te.stopPropagation();\r\n\t\t$('html').removeClass('nav-open sticky-header-contact');\r\n\t\t$(this).parents('#contactus-overlay').removeClass('active');\r\n\t\t$(this).parents('#contactus-overlay').addClass('d-none');\r\n\t\t$(this).parents('#contactus-overlay').hide();\r\n\t\t$('#contactus-link').removeClass('hovered');\r\n\t});\r\n\r\n\tfunction handleSigninOverlayDisplay(){\r\n\t\t//Remove body fixed / sticky-header-signin after orientation change or resize in ipad landscape\r\n\t\tif($('#signin-overlay').is(':visible') && $('body').hasClass('body-fixed')) {\r\n\t\t\t$('body').removeClass('body-fixed');\r\n\t\t\t$('html').removeClass('sticky-header-signin');\r\n\t\t}\r\n\t}\r\n\r\n\t//Desktop contactus-overlay \r\n\tfunction desktopContactusOverlay(){\r\n\t\t$('#contactus-link > a').on('mouseover', function(e){\r\n\t\t\te.preventDefault();\r\n\t\t\tif($(\".contactus-link\").hasClass(\"active\")) {\r\n\t\t\t\t$(\".contactus-overlay\").addClass(\"d-none\");\r\n\t\t\t}\r\n\t\t\t$(this).nextAll('#contactus-overlay').removeAttr('style');\r\n\t\t\t$(\".signin-link\").removeClass('hovered');\r\n\t\t\t$(\".minicart-link\").removeClass('hovered');\r\n\t\t}).on('click', function() {\r\n\t\t\tutilityNavTouchHandler(event, this);\r\n\t\t});\r\n\t}\r\n\r\n\t//Desktop signin-overlay \r\n\tfunction desktopSigninOverlay() {\r\n\t\t//$('.nav-container-row').removeAttr('style');\r\n\r\n\t\t$(\".courtesy-nav li.signin-link\").hover(function(){ \r\n\t\t\tsinginOverlayScroll();\r\n\t\t}); \r\n\r\n\t\t$('#signin-link > a').on('mouseover', function(e) {\r\n\t\t\t$(this).nextAll('#signin-overlay').removeAttr('style');\r\n\t\t\tsinginOverlayScroll();\r\n\t\t\t$('#header-selectcountry').selectmenu('close');\r\n\t\t});\r\n\t}\r\n\t\r\n\t\r\n\r\n\t//Mobile signin-overlay\r\n\tfunction mobileSigninOverlay() {\r\n\t\t$(document).on('click', '#signin-link > a', function(e) {\r\n\t\t\tif (window.innerWidth < 1024) {\r\n\t\t\t\te.preventDefault();\r\n\t\t\t\t$(this).parent().addClass('hovered').siblings().removeClass('hovered');\r\n\t\t\t}\r\n\t\t\tif(window.innerWidth < 1024 ) {\r\n\t\t\t\tvar overlay = $(this).nextAll('#signin-overlay');\r\n\t\t\t\toverlay.removeAttr('style');\r\n\t\t\t\toverlay.addClass('active');\r\n\t\t\t\t$('.signin-link').addClass('hovered');\r\n\t\t\t\tvar vHeight = overlay.find('.sign-in-dropdown').innerHeight();\r\n\t\t\t\t\r\n\t\t\t\tif($('.signin-overlay .sb-content').length > 0) {\r\n\t\t\t\t\t$('.signin-overlay .sb-content').removeAttr('style');\r\n\t\t\t\t\t$(window).trigger(\"resize.scrollBox\");\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif($('#signin-link').hasClass('guest')){\r\n\t\t\t\t\t$('html').addClass('sticky-header-signin');\r\n\t\t\t\t\t$('body').addClass('body-fixed');\r\n\t\t\t\t} \r\n\t\t\t\telse {\r\n\t\t\t\t\t$(document).on('click', '#signin-overlay .back-link', function(e){\r\n\t\t\t\t\t\te.preventDefault();\r\n\t\t\t\t\t\t$(this).parents('#signin-overlay').removeClass('active');\r\n\t\t\t\t\t});\t\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\t\r\n\t}\r\n\r\n\tfunction mobileContactusOverlay() {\r\n\t\t$(document).on('click','#contactus-link > a, #contactus-link > .nav-toggle', function(e) {\r\n\t\t\tif (window.innerWidth < 1024) { \r\n\t\t\t\te.preventDefault();\r\n\t\t\t\t$(this).parent().addClass('hovered').siblings().removeClass('hovered');\r\n\t\t\t}\r\n\t\t\t$(\"html.nav-open\").addClass(\"sticky-header-contact\");\r\n\t\t\tvar overlay = $(this).nextAll('#contactus-overlay');\r\n\t\t\toverlay.removeClass('d-none');\r\n\t\t\toverlay.removeAttr('style');\r\n\t\t\toverlay.addClass('active');\r\n\t\t});\r\n\t}\r\n\r\n\tfunction resizeScreenInit() {\r\n\t\tif(window.innerWidth < 1024 ) {\r\n\t\t\tmobileSigninOverlay();\r\n\t\t} else {\r\n\t\t\tdesktopSigninOverlay();\r\n\t\t\thandleSigninOverlayDisplay();\r\n\t\t}\r\n\r\n\t\t$('.utility-nav > ul > li').toggleClass('no-touch', !util.isMobile());\r\n\t}\r\n\r\n\t$(window).on('orientationchange', function () {\r\n\t\tif(window.innerWidth >= 1024) {\r\n\t\t\tif ($('.nav-open').length > 0) {\r\n\t\t\t\t$('html').removeClass('nav-open');\r\n\t\t\t\t$('.main-nav, .main-sub-nav, .sub-menu, #signin-overlay').removeClass('active').removeAttr('style');\r\n\t\t\t}\r\n\t\t} else if(window.innerWidth <= 1024) {\r\n\t\t\tif($('.top-navigation-list > li.js-hover').length > 0) {\r\n\t\t\t\t$(window).scrollTop(0);\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n\r\n\tresizeScreenInit();\r\n\tinitStickyHeader();\r\n\tmobileNavHandler();\r\n\tdesktopNavHandler();\r\n\thandleResizeForBannerMessages();\r\n\tsetFlyoutContentMenu();\r\n}\r\n\r\nvar lastScrollTop = 0;\r\n//Function for sticky header behavior and other components impact of the same.\r\nfunction initStickyHeader(){\r\n\tvar threashHold = 50;\r\n\tif($('#header-top-notification-message').length==0){\r\n\t\tthreashHold = 30;\r\n\t}\r\n\t$(window).on('scroll', function () {\r\n\t\tvar iCurScrollPos = $(window).scrollTop();\r\n\t\tif (iCurScrollPos > lastScrollTop){\r\n\t\t\t//Downward Scroll\r\n\t\t\tif(!$('body').hasClass('pdp-page') && !$('#wrapper').hasClass('checkout_login')){\r\n\t\t\t\tif(iCurScrollPos>threashHold){\r\n\t\t\t\t\tmakeHeaderSticky();\r\n\t\t\t\t}else{\r\n\t\t\t\t\tremoveStickyHeader();\r\n\t\t\t\t}\r\n\t\t\t}else{\r\n\t\t\t\tremoveStickyHeader();\r\n\t\t\t}\r\n\t\t} else {// upward scroll\r\n\t\t\tif(iCurScrollPos>threashHold && !$('#wrapper').hasClass('checkout_login')){\r\n\t\t\t\tmakeHeaderSticky();\r\n\t\t\t}else{\r\n\t\t\t\tremoveStickyHeader();\r\n\t\t\t}\r\n\t\t}\r\n\t\tif (!$('body').hasClass('pdp-page') && !$('#wrapper').hasClass('sticky-header') && iCurScrollPos > threashHold) {\r\n\t\t\t$('.sticky-component').addClass('sticky-component-hide');\r\n\t\t} else if ($('.sticky-component').hasClass('sticky-component-hide')) {\r\n\t\t\t$('.sticky-component').removeClass('sticky-component-hide');\r\n\t\t}\r\n\t\tif (!$('body').hasClass('pdp-page')) {\r\n\t\t\tlastScrollTop = iCurScrollPos;\r\n\t\t} \r\n\t}); \r\n};\r\n\r\nfunction makeHeaderSticky(){\r\n\tif(!$('#wrapper').hasClass('sticky-header')){\r\n\t\t$('#wrapper').not('.pt_checkout, .pt_order-confirmation').addClass('sticky-header');\r\n\t}\r\n};\r\nfunction removeStickyHeader(){\r\n\tif($('#wrapper').hasClass('sticky-header')){\r\n\t\t$('#wrapper').removeClass('sticky-header');\r\n\t}\r\n};\r\n\r\n\r\nfunction handleResizeForBannerMessages(){\r\n\tvar customMessagesTotalWidth = 0;\r\n\t$('.custom-message').each(function(i,m){customMessagesTotalWidth += $(m).outerWidth()});\r\n\tif(customMessagesTotalWidth>0 && window.innerWidth > customMessagesTotalWidth){\r\n\t\t$('#header-bottom-notification-message').addClass('centered');\r\n\t}else{\r\n\t\t$('#header-bottom-notification-message').removeClass('centered');\r\n\t}\r\n}\r\n\r\nfunction singinOverlayScroll () {\r\n\tif($('.signin-overlay .sb-content').length === 0) {\r\n\t\t$(\".sb-container\").scrollBox();\r\n\t} else {\r\n\t\t$('.signin-overlay .sb-content').removeAttr('style');\r\n\t\t$(window).trigger(\"resize.scrollBox\");\r\n\t}\r\n}\r\n\r\n$(document).on('click', '#signin-link > a', function(e) {\r\n\tif($(this).parent().hasClass('registered')){\r\n\t\te.preventDefault();\r\n\t\te.stopPropagation();\r\n\t}\r\n\t$(this).parent().toggleClass('hovered');\r\n\tutilityNavTouchHandler(e, this);\r\n\t$('#header-selectcountry').selectmenu('close');\r\n\tsinginOverlayScroll();\r\n});\r\n\r\nexports.handleResizeForBannerMessages = function () {\r\n\thandleResizeForBannerMessages()\r\n};\r\n\r\nexports.utilityNavTouchHandler = function (event, anchor) {\r\n\tutilityNavTouchHandler(event, anchor)\r\n};\r\n\r\n\n},{\"./detect-layout\":13,\"./util\":93}],21:[function(require,module,exports){\n'use strict';\r\n\r\nfunction entry() {\r\n\t$(document).on('keyup blur', '.search-text', function () {\r\n\t\tif ($(this).val().trim().length) {\r\n\t\t\treturn $(this).siblings('button').prop('disabled', false);\r\n\t\t}\r\n\r\n\t\t$(this).siblings('button').prop('disabled', true);\r\n\t});\r\n\t$(document).on('blur keyup', '.cart-coupon-code input', function () {\r\n\t\t$('#add-coupon').prop('disabled', this.value == \"\" ? true : false);\r\n\t});\r\n\t$(document).on('change', '.form-row .user-consent-container input[type=\"checkbox\"], .checkout-login-container .user-consent-container input[type=\"checkbox\"]', function () {\r\n\t\tvar fieldErrorWrapper = $(this).parents('.form-row').find('.error-placement'),\r\n\t\t\tform = $(this).parents('form'),\r\n\t\t\tvalidator = form.validate(),\r\n\t\t\tvalidElementFlag = validator.element($(this));\r\n\t\tif (validElementFlag === true && fieldErrorWrapper.length > 0) {\r\n\t\t\tfieldErrorWrapper.remove();\r\n\t\t}\r\n\t\t$(form).find('button[type$=\"submit\"]').prop('disabled', $(form).find('.error-placement').length > 0 ? true : false);\r\n\t});\r\n}\r\n\r\nexports.entry = entry;\n},{}],22:[function(require,module,exports){\n'use strict';\r\n// jQuery extensions\r\n\r\nmodule.exports = function () {\r\n\t// params\r\n\t// toggleClass - required\r\n\t// triggerSelector - optional. the selector for the element that triggers the event handler. defaults to the child elements of the list.\r\n\t// eventName - optional. defaults to 'click'\r\n\t$.fn.toggledList = function (options) {\r\n\t\tif (!options.toggleClass) {\r\n\t\t\treturn this;\r\n\t\t}\r\n\t\tvar list = this;\r\n\t\treturn list.on(options.eventName || 'click', options.triggerSelector || list.children(), function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tvar classTarget = options.triggerSelector ? $(this).parent() : $(this);\r\n\t\t\tclassTarget.toggleClass(options.toggleClass);\r\n\t\t\t// execute callback if exists\r\n\t\t\tif (options.callback) {\r\n\t\t\t\toptions.callback();\r\n\t\t\t}\r\n\t\t});\r\n\t};\r\n\tvar getHeightProperty = function () {\r\n\t\tvar browser_id = 0;\r\n\t\tvar property = [\r\n\t\t\t// To avoid content overflow in synchronised boxes on font scaling, we\r\n\t\t\t// use 'min-height' property for modern browsers ...\r\n\t\t\t['min-height', '0px'],\r\n\t\t\t// and 'height' property for Internet Explorer.\r\n\t\t\t['height', '1%']\r\n\t\t];\r\n\r\n\t\tvar bMatch = /(msie) ([\\w.]+)/.exec(navigator.userAgent.toLowerCase()) || [],\r\n\t\t\tbrowser = bMatch[1] || \"\",\r\n\t\t\tbrowserVersion = bMatch[2] || \"0\";\r\n\r\n\t\t// check for IE6 ...\r\n\t\tif (browser === 'msie' && browserVersion < 7) {\r\n\t\t\tbrowser_id = 1;\r\n\t\t}\r\n\r\n\t\treturn {\r\n\t\t\t'name': property[browser_id][0],\r\n\t\t\t'autoheightVal': property[browser_id][1]\r\n\t\t};\r\n\t};\r\n\r\n\t$.getSyncedHeight = function (selector) {\r\n\t\tvar max = 0;\r\n\t\tvar heightProperty = getHeightProperty();\r\n\t\t// get maximum element height ...\r\n\t\t$(selector).each(function () {\r\n\t\t\t// fallback to auto height before height check ...\r\n\t\t\t$(this).css(heightProperty.name, heightProperty.autoheightVal);\r\n\t\t\tvar val = parseInt($(this).css('height'), 10);\r\n\r\n\t\t\tif (val > max) {\r\n\t\t\t\tmax = val;\r\n\t\t\t}\r\n\t\t});\r\n\t\treturn max;\r\n\t};\r\n\r\n\t$.fn.syncHeight = function (config) {\r\n\t\tvar defaults = {\r\n\t\t\tupdateOnResize: false, // re-sync element heights after a browser resize event (useful in flexible layouts)\r\n\t\t\theight: false,\r\n\t\t\tparentElement: ''\r\n\t\t};\r\n\r\n\t\tvar options = $.extend(defaults, config);\r\n\t\tvar e = this;\r\n\t\tvar max = 0;\r\n\t\tvar heightPropertyName = getHeightProperty().name;\r\n\r\n\t\tif (typeof (options.height) === \"number\") {\r\n\t\t\tmax = options.height;\r\n\t\t} else {\r\n\t\t\tmax = $.getSyncedHeight(this);\r\n\t\t}\r\n\r\n\t\t// set synchronized element height ...\r\n\t\t$(this).each(function () {\r\n\t\t\t// optional sync refresh on resize event ...\r\n\t\t\t$(this).css(heightPropertyName, max + 'px');\r\n\t\t\tif (options.parentElement !== '') {\r\n\t\t\t\t$(this).closest(options.parentElement).css('height', max + 'px');\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\t// optional sync refresh on resize event ...\r\n\t\tif (options.updateOnResize === true) {\r\n\t\t\t$(window).on('resize.syncHeight', function () {\r\n\t\t\t\tif (options.parentElement !== '') {\r\n\t\t\t\t\t$(e).syncHeight({\r\n\t\t\t\t\t\tparentElement: options.parentElement\r\n\t\t\t\t\t});\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$(e).syncHeight();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t\treturn this;\r\n\t};\r\n\r\n\t$.fn.unSyncHeight = function () {\r\n\t\t// unbind optional resize event ...\r\n\t\t$(window).off('resize.syncHeight');\r\n\r\n\t\tvar heightPropertyName = getHeightProperty().name;\r\n\t\t$(this).each(function () {\r\n\t\t\tif (options.parentElement !== '') {\r\n\t\t\t\t$(this).closest(options.parentElement).css(height, '');\r\n\t\t\t}\r\n\t\t\t$(this).css(heightPropertyName, '');\r\n\t\t});\r\n\t};\r\n};\n},{}],23:[function(require,module,exports){\n!function(e){\"function\"==typeof define&&define.amd?define([\"jquery\"],e):e(jQuery)}(function(e){e.widget(\"ui.slider\",e.ui.mouse,{version:\"1.12.1\",widgetEventPrefix:\"slide\",options:{animate:!1,classes:{\"ui-slider\":\"ui-corner-all\",\"ui-slider-handle\":\"ui-corner-all\",\"ui-slider-range\":\"ui-corner-all ui-widget-header\"},distance:0,max:100,min:0,orientation:\"horizontal\",range:!1,step:1,value:0,values:null,change:null,slide:null,start:null,stop:null},numPages:5,_create:function(){this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this._calculateNewMax(),this._addClass(\"ui-slider ui-slider-\"+this.orientation,\"ui-widget ui-widget-content\"),this._refresh(),this._animateOff=!1},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var t,i,s=this.options,a=this.element.find(\".ui-slider-handle\"),n=[];for(i=s.values&&s.values.length||1,a.length>i&&(a.slice(i).remove(),a=a.slice(0,i)),t=a.length;t<i;t++)n.push(\"<span tabindex='0'></span>\");this.handles=a.add(e(n.join(\"\")).appendTo(this.element)),this._addClass(this.handles,\"ui-slider-handle\",\"ui-state-default\"),this.handle=this.handles.eq(0),this.handles.each(function(t){e(this).data(\"ui-slider-handle-index\",t).attr(\"tabIndex\",0)})},_createRange:function(){var t=this.options;t.range?(!0===t.range&&(t.values?t.values.length&&2!==t.values.length?t.values=[t.values[0],t.values[0]]:e.isArray(t.values)&&(t.values=t.values.slice(0)):t.values=[this._valueMin(),this._valueMin()]),this.range&&this.range.length?(this._removeClass(this.range,\"ui-slider-range-min ui-slider-range-max\"),this.range.css({left:\"\",bottom:\"\"})):(this.range=e(\"<div>\").appendTo(this.element),this._addClass(this.range,\"ui-slider-range\")),\"min\"!==t.range&&\"max\"!==t.range||this._addClass(this.range,\"ui-slider-range-\"+t.range)):(this.range&&this.range.remove(),this.range=null)},_setupEvents:function(){this._off(this.handles),this._on(this.handles,this._handleEvents),this._hoverable(this.handles),this._focusable(this.handles)},_destroy:function(){this.handles.remove(),this.range&&this.range.remove(),this._mouseDestroy()},_mouseCapture:function(t){var i,s,a,n,h,l,u,r=this,o=this.options;return!o.disabled&&(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),i={x:t.pageX,y:t.pageY},s=this._normValueFromMouse(i),a=this._valueMax()-this._valueMin()+1,this.handles.each(function(t){var i=Math.abs(s-r.values(t));(a>i||a===i&&(t===r._lastChangedValue||r.values(t)===o.min))&&(a=i,n=e(this),h=t)}),!1!==this._start(t,h)&&(this._mouseSliding=!0,this._handleIndex=h,this._addClass(n,null,\"ui-state-active\"),n.trigger(\"focus\"),l=n.offset(),u=!e(t.target).parents().addBack().is(\".ui-slider-handle\"),this._clickOffset=u?{left:0,top:0}:{left:t.pageX-l.left-n.width()/2,top:t.pageY-l.top-n.height()/2-(parseInt(n.css(\"borderTopWidth\"),10)||0)-(parseInt(n.css(\"borderBottomWidth\"),10)||0)+(parseInt(n.css(\"marginTop\"),10)||0)},this.handles.hasClass(\"ui-state-hover\")||this._slide(t,h,s),this._animateOff=!0,!0))},_mouseStart:function(){return!0},_mouseDrag:function(e){var t={x:e.pageX,y:e.pageY},i=this._normValueFromMouse(t);return this._slide(e,this._handleIndex,i),!1},_mouseStop:function(e){return this._removeClass(this.handles,null,\"ui-state-active\"),this._mouseSliding=!1,this._stop(e,this._handleIndex),this._change(e,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation=\"vertical\"===this.options.orientation?\"vertical\":\"horizontal\"},_normValueFromMouse:function(e){var t,i,s,a,n;return\"horizontal\"===this.orientation?(t=this.elementSize.width,i=e.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(t=this.elementSize.height,i=e.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),(s=i/t)>1&&(s=1),s<0&&(s=0),\"vertical\"===this.orientation&&(s=1-s),a=this._valueMax()-this._valueMin(),n=this._valueMin()+s*a,this._trimAlignValue(n)},_uiHash:function(e,t,i){var s={handle:this.handles[e],handleIndex:e,value:void 0!==t?t:this.value()};return this._hasMultipleValues()&&(s.value=void 0!==t?t:this.values(e),s.values=i||this.values()),s},_hasMultipleValues:function(){return this.options.values&&this.options.values.length},_start:function(e,t){return this._trigger(\"start\",e,this._uiHash(t))},_slide:function(e,t,i){var s,a=this.value(),n=this.values();this._hasMultipleValues()&&(s=this.values(t?0:1),a=this.values(t),2===this.options.values.length&&!0===this.options.range&&(i=0===t?Math.min(s,i):Math.max(s,i)),n[t]=i),i!==a&&!1!==this._trigger(\"slide\",e,this._uiHash(t,i,n))&&(this._hasMultipleValues()?this.values(t,i):this.value(i))},_stop:function(e,t){this._trigger(\"stop\",e,this._uiHash(t))},_change:function(e,t){this._keySliding||this._mouseSliding||(this._lastChangedValue=t,this._trigger(\"change\",e,this._uiHash(t)))},value:function(e){return arguments.length?(this.options.value=this._trimAlignValue(e),this._refreshValue(),void this._change(null,0)):this._value()},values:function(t,i){var s,a,n;if(arguments.length>1)return this.options.values[t]=this._trimAlignValue(i),this._refreshValue(),void this._change(null,t);if(!arguments.length)return this._values();if(!e.isArray(arguments[0]))return this._hasMultipleValues()?this._values(t):this.value();for(s=this.options.values,a=arguments[0],n=0;n<s.length;n+=1)s[n]=this._trimAlignValue(a[n]),this._change(null,n);this._refreshValue()},_setOption:function(t,i){var s,a=0;switch(\"range\"===t&&!0===this.options.range&&(\"min\"===i?(this.options.value=this._values(0),this.options.values=null):\"max\"===i&&(this.options.value=this._values(this.options.values.length-1),this.options.values=null)),e.isArray(this.options.values)&&(a=this.options.values.length),this._super(t,i),t){case\"orientation\":this._detectOrientation(),this._removeClass(\"ui-slider-horizontal ui-slider-vertical\")._addClass(\"ui-slider-\"+this.orientation),this._refreshValue(),this.options.range&&this._refreshRange(i),this.handles.css(\"horizontal\"===i?\"bottom\":\"left\",\"\");break;case\"value\":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case\"values\":for(this._animateOff=!0,this._refreshValue(),s=a-1;s>=0;s--)this._change(null,s);this._animateOff=!1;break;case\"step\":case\"min\":case\"max\":this._animateOff=!0,this._calculateNewMax(),this._refreshValue(),this._animateOff=!1;break;case\"range\":this._animateOff=!0,this._refresh(),this._animateOff=!1}},_setOptionDisabled:function(e){this._super(e),this._toggleClass(null,\"ui-state-disabled\",!!e)},_value:function(){var e=this.options.value;return e=this._trimAlignValue(e)},_values:function(e){var t,i,s;if(arguments.length)return t=this.options.values[e],t=this._trimAlignValue(t);if(this._hasMultipleValues()){for(i=this.options.values.slice(),s=0;s<i.length;s+=1)i[s]=this._trimAlignValue(i[s]);return i}return[]},_trimAlignValue:function(e){if(e<=this._valueMin())return this._valueMin();if(e>=this._valueMax())return this._valueMax();var t=this.options.step>0?this.options.step:1,i=(e-this._valueMin())%t,s=e-i;return 2*Math.abs(i)>=t&&(s+=i>0?t:-t),parseFloat(s.toFixed(5))},_calculateNewMax:function(){var e=this.options.max,t=this._valueMin(),i=this.options.step;(e=Math.round((e-t)/i)*i+t)>this.options.max&&(e-=i),this.max=parseFloat(e.toFixed(this._precision()))},_precision:function(){var e=this._precisionOf(this.options.step);return null!==this.options.min&&(e=Math.max(e,this._precisionOf(this.options.min))),e},_precisionOf:function(e){var t=e.toString(),i=t.indexOf(\".\");return-1===i?0:t.length-i-1},_valueMin:function(){return this.options.min},_valueMax:function(){return this.max},_refreshRange:function(e){\"vertical\"===e&&this.range.css({width:\"\",left:\"\"}),\"horizontal\"===e&&this.range.css({height:\"\",bottom:\"\"})},_refreshValue:function(){var t,i,s,a,n,h=this.options.range,l=this.options,u=this,r=!this._animateOff&&l.animate,o={};this._hasMultipleValues()?this.handles.each(function(s){i=(u.values(s)-u._valueMin())/(u._valueMax()-u._valueMin())*100,o[\"horizontal\"===u.orientation?\"left\":\"bottom\"]=i+\"%\",e(this).stop(1,1)[r?\"animate\":\"css\"](o,l.animate),!0===u.options.range&&(\"horizontal\"===u.orientation?(0===s&&u.range.stop(1,1)[r?\"animate\":\"css\"]({left:i+\"%\"},l.animate),1===s&&u.range[r?\"animate\":\"css\"]({width:i-t+\"%\"},{queue:!1,duration:l.animate})):(0===s&&u.range.stop(1,1)[r?\"animate\":\"css\"]({bottom:i+\"%\"},l.animate),1===s&&u.range[r?\"animate\":\"css\"]({height:i-t+\"%\"},{queue:!1,duration:l.animate}))),t=i}):(s=this.value(),a=this._valueMin(),n=this._valueMax(),i=n!==a?(s-a)/(n-a)*100:0,o[\"horizontal\"===this.orientation?\"left\":\"bottom\"]=i+\"%\",this.handle.stop(1,1)[r?\"animate\":\"css\"](o,l.animate),\"min\"===h&&\"horizontal\"===this.orientation&&this.range.stop(1,1)[r?\"animate\":\"css\"]({width:i+\"%\"},l.animate),\"max\"===h&&\"horizontal\"===this.orientation&&this.range.stop(1,1)[r?\"animate\":\"css\"]({width:100-i+\"%\"},l.animate),\"min\"===h&&\"vertical\"===this.orientation&&this.range.stop(1,1)[r?\"animate\":\"css\"]({height:i+\"%\"},l.animate),\"max\"===h&&\"vertical\"===this.orientation&&this.range.stop(1,1)[r?\"animate\":\"css\"]({height:100-i+\"%\"},l.animate))},_handleEvents:{keydown:function(t){var i,s,a,n=e(t.target).data(\"ui-slider-handle-index\");switch(t.keyCode){case e.ui.keyCode.HOME:case e.ui.keyCode.END:case e.ui.keyCode.PAGE_UP:case e.ui.keyCode.PAGE_DOWN:case e.ui.keyCode.UP:case e.ui.keyCode.RIGHT:case e.ui.keyCode.DOWN:case e.ui.keyCode.LEFT:if(t.preventDefault(),!this._keySliding&&(this._keySliding=!0,this._addClass(e(t.target),null,\"ui-state-active\"),!1===this._start(t,n)))return}switch(a=this.options.step,i=s=this._hasMultipleValues()?this.values(n):this.value(),t.keyCode){case e.ui.keyCode.HOME:s=this._valueMin();break;case e.ui.keyCode.END:s=this._valueMax();break;case e.ui.keyCode.PAGE_UP:s=this._trimAlignValue(i+(this._valueMax()-this._valueMin())/this.numPages);break;case e.ui.keyCode.PAGE_DOWN:s=this._trimAlignValue(i-(this._valueMax()-this._valueMin())/this.numPages);break;case e.ui.keyCode.UP:case e.ui.keyCode.RIGHT:if(i===this._valueMax())return;s=this._trimAlignValue(i+a);break;case e.ui.keyCode.DOWN:case e.ui.keyCode.LEFT:if(i===this._valueMin())return;s=this._trimAlignValue(i-a)}this._slide(t,n,s)},keyup:function(t){var i=e(t.target).data(\"ui-slider-handle-index\");this._keySliding&&(this._keySliding=!1,this._stop(t,i),this._change(t,i),this._removeClass(e(t.target),null,\"ui-state-active\"))}}})});\n},{}],24:[function(require,module,exports){\nmodule.exports = function () {\r\n // jquery-ui 1.12.1 content\r\n\t/*! jQuery UI - v1.12.1 - 2018-10-05\r\n\t* http://jqueryui.com\r\n\t* Includes: widget.js, position.js, data.js, disable-selection.js, focusable.js, form-reset-mixin.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/draggable.js, widgets/resizable.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/dialog.js, widgets/menu.js, widgets/mouse.js, widgets/selectmenu.js, widgets/tabs.js, widgets/tooltip.js\r\n\t* Copyright jQuery Foundation and other contributors; Licensed MIT */\r\n\r\n\t(function(t){\"function\"==typeof define&&define.amd?define([\"jquery\"],t):t(jQuery)})(function(t){function e(t){for(var e=t.css(\"visibility\");\"inherit\"===e;)t=t.parent(),e=t.css(\"visibility\");return\"hidden\"!==e}t.ui=t.ui||{},t.ui.version=\"1.12.1\";var i=0,s=Array.prototype.slice;t.cleanData=function(e){return function(i){var s,n,o;for(o=0;null!=(n=i[o]);o++)try{s=t._data(n,\"events\"),s&&s.remove&&t(n).triggerHandler(\"remove\")}catch(a){}e(i)}}(t.cleanData),t.widget=function(e,i,s){var n,o,a,r={},l=e.split(\".\")[0];e=e.split(\".\")[1];var h=l+\"-\"+e;return s||(s=i,i=t.Widget),t.isArray(s)&&(s=t.extend.apply(null,[{}].concat(s))),t.expr[\":\"][h.toLowerCase()]=function(e){return!!t.data(e,h)},t[l]=t[l]||{},n=t[l][e],o=t[l][e]=function(t,e){return this._createWidget?(arguments.length&&this._createWidget(t,e),void 0):new o(t,e)},t.extend(o,n,{version:s.version,_proto:t.extend({},s),_childConstructors:[]}),a=new i,a.options=t.widget.extend({},a.options),t.each(s,function(e,s){return t.isFunction(s)?(r[e]=function(){function t(){return i.prototype[e].apply(this,arguments)}function n(t){return i.prototype[e].apply(this,t)}return function(){var e,i=this._super,o=this._superApply;return this._super=t,this._superApply=n,e=s.apply(this,arguments),this._super=i,this._superApply=o,e}}(),void 0):(r[e]=s,void 0)}),o.prototype=t.widget.extend(a,{widgetEventPrefix:n?a.widgetEventPrefix||e:e},r,{constructor:o,namespace:l,widgetName:e,widgetFullName:h}),n?(t.each(n._childConstructors,function(e,i){var s=i.prototype;t.widget(s.namespace+\".\"+s.widgetName,o,i._proto)}),delete n._childConstructors):i._childConstructors.push(o),t.widget.bridge(e,o),o},t.widget.extend=function(e){for(var i,n,o=s.call(arguments,1),a=0,r=o.length;r>a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a=\"string\"==typeof o,r=s.call(arguments,1),l=this;return a?this.length||\"instance\"!==o?this.each(function(){var i,s=t.data(this,n);return\"instance\"===o?(l=s,!1):s?t.isFunction(s[o])&&\"_\"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(l=i&&i.jquery?l.pushStack(i.get()):i,!1):void 0):t.error(\"no such method '\"+o+\"' for \"+e+\" widget instance\"):t.error(\"cannot call methods on \"+e+\" prior to initialization; \"+\"attempted to call method '\"+o+\"'\")}):l=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),l}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:\"widget\",widgetEventPrefix:\"\",defaultElement:\"<div>\",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace=\".\"+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger(\"create\",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr(\"aria-disabled\"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if(\"string\"==typeof e)if(a={},s=e.split(\".\"),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return\"classes\"===t&&this._setOptionClasses(e),this.options[t]=e,\"disabled\"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+\"-disabled\",null,!!t),t&&(this._removeClass(this.hoverable,null,\"ui-state-hover\"),this._removeClass(this.focusable,null,\"ui-state-focus\"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.uniqueSort(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:\"_untrackClassesElement\"}),e.keys&&i(e.keys.match(/\\S+/g)||[],!0),e.extra&&i(e.extra.match(/\\S+/g)||[]),s.join(\" \")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s=\"boolean\"==typeof s?s:i;var n=\"string\"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;\"boolean\"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass(\"ui-state-disabled\")?(\"string\"==typeof a?o[a]:a).apply(o,arguments):void 0}\"string\"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var l=s.match(/^([\\w:-]*)\\s*(.*)$/),h=l[1]+o.eventNamespace,c=l[2];c?n.on(h,c,r):i.on(h,r)})},_off:function(e,i){i=(i||\"\").split(\" \").join(this.eventNamespace+\" \")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return(\"string\"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,\"ui-state-hover\")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,\"ui-state-hover\")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,\"ui-state-focus\")},focusout:function(e){this._removeClass(t(e.currentTarget),null,\"ui-state-focus\")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:\"fadeIn\",hide:\"fadeOut\"},function(e,i){t.Widget.prototype[\"_\"+e]=function(s,n,o){\"string\"==typeof n&&(n={effect:n});var a,r=n?n===!0||\"number\"==typeof n?i:n.effect||i:e;n=n||{},\"number\"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,l=/top|center|bottom/,h=/[\\+\\-]\\d+(\\.[\\d]+)?%?/,c=/^\\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t(\"<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>\"),o=s.children()[0];return t(\"body\").append(s),e=o.offsetWidth,s.css(\"overflow\",\"scroll\"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?\"\":e.element.css(\"overflow-x\"),s=e.isWindow||e.isDocument?\"\":e.element.css(\"overflow-y\"),n=\"scroll\"===i||\"auto\"===i&&e.width<e.element[0].scrollWidth,o=\"scroll\"===s||\"auto\"===s&&e.height<e.element[0].scrollHeight;return{width:o?t.position.scrollbarWidth():0,height:n?t.position.scrollbarWidth():0}},getWithinInfo:function(e){var i=t(e||window),s=t.isWindow(i[0]),n=!!i[0]&&9===i[0].nodeType,o=!s&&!n;return{element:i,isWindow:s,isDocument:n,offset:o?t(e).offset():{left:0,top:0},scrollLeft:i.scrollLeft(),scrollTop:i.scrollTop(),width:i.outerWidth(),height:i.outerHeight()}}},t.fn.position=function(n){if(!n||!n.of)return d.apply(this,arguments);n=t.extend({},n);var u,p,f,g,m,_,v=t(n.of),b=t.position.getWithinInfo(n.within),y=t.position.getScrollInfo(b),w=(n.collision||\"flip\").split(\" \"),k={};return _=s(v),v[0].preventDefault&&(n.at=\"left top\"),p=_.width,f=_.height,g=_.offset,m=t.extend({},g),t.each([\"my\",\"at\"],function(){var t,e,i=(n[this]||\"\").split(\" \");1===i.length&&(i=r.test(i[0])?i.concat([\"center\"]):l.test(i[0])?[\"center\"].concat(i):[\"center\",\"center\"]),i[0]=r.test(i[0])?i[0]:\"center\",i[1]=l.test(i[1])?i[1]:\"center\",t=h.exec(i[0]),e=h.exec(i[1]),k[this]=[t?t[0]:0,e?e[0]:0],n[this]=[c.exec(i[0])[0],c.exec(i[1])[0]]}),1===w.length&&(w[1]=w[0]),\"right\"===n.at[0]?m.left+=p:\"center\"===n.at[0]&&(m.left+=p/2),\"bottom\"===n.at[1]?m.top+=f:\"center\"===n.at[1]&&(m.top+=f/2),u=e(k.at,p,f),m.left+=u[0],m.top+=u[1],this.each(function(){var s,r,l=t(this),h=l.outerWidth(),c=l.outerHeight(),d=i(this,\"marginLeft\"),_=i(this,\"marginTop\"),x=h+d+i(this,\"marginRight\")+y.width,C=c+_+i(this,\"marginBottom\")+y.height,D=t.extend({},m),T=e(k.my,l.outerWidth(),l.outerHeight());\"right\"===n.my[0]?D.left-=h:\"center\"===n.my[0]&&(D.left-=h/2),\"bottom\"===n.my[1]?D.top-=c:\"center\"===n.my[1]&&(D.top-=c/2),D.left+=T[0],D.top+=T[1],s={marginLeft:d,marginTop:_},t.each([\"left\",\"top\"],function(e,i){t.ui.position[w[e]]&&t.ui.position[w[e]][i](D,{targetWidth:p,targetHeight:f,elemWidth:h,elemHeight:c,collisionPosition:s,collisionWidth:x,collisionHeight:C,offset:[u[0]+T[0],u[1]+T[1]],my:n.my,at:n.at,within:b,elem:l})}),n.using&&(r=function(t){var e=g.left-D.left,i=e+p-h,s=g.top-D.top,r=s+f-c,u={target:{element:v,left:g.left,top:g.top,width:p,height:f},element:{element:l,left:D.left,top:D.top,width:h,height:c},horizontal:0>i?\"left\":e>0?\"right\":\"center\",vertical:0>r?\"top\":s>0?\"bottom\":\"middle\"};h>p&&p>a(e+i)&&(u.horizontal=\"center\"),c>f&&f>a(s+r)&&(u.vertical=\"middle\"),u.important=o(a(e),a(i))>o(a(s),a(r))?\"horizontal\":\"vertical\",n.using.call(this,t,u)}),l.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,l=n-r,h=r+e.collisionWidth-a-n;e.collisionWidth>a?l>0&&0>=h?(i=t.left+l+e.collisionWidth-a-n,t.left+=l-i):t.left=h>0&&0>=l?n:l>h?n+a-e.collisionWidth:n:l>0?t.left+=l:h>0?t.left-=h:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,l=n-r,h=r+e.collisionHeight-a-n;e.collisionHeight>a?l>0&&0>=h?(i=t.top+l+e.collisionHeight-a-n,t.top+=l-i):t.top=h>0&&0>=l?n:l>h?n+a-e.collisionHeight:n:l>0?t.top+=l:h>0?t.top-=h:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,l=n.isWindow?n.scrollLeft:n.offset.left,h=t.left-e.collisionPosition.marginLeft,c=h-l,u=h+e.collisionWidth-r-l,d=\"left\"===e.my[0]?-e.elemWidth:\"right\"===e.my[0]?e.elemWidth:0,p=\"left\"===e.at[0]?e.targetWidth:\"right\"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-l,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,l=n.isWindow?n.scrollTop:n.offset.top,h=t.top-e.collisionPosition.marginTop,c=h-l,u=h+e.collisionHeight-r-l,d=\"top\"===e.my[1],p=d?-e.elemHeight:\"bottom\"===e.my[1]?e.elemHeight:0,f=\"top\"===e.at[1]?e.targetHeight:\"bottom\"===e.at[1]?-e.targetHeight:0,g=-2*e.offset[1];0>c?(s=t.top+p+f+g+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+g)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+g-l,(i>0||u>a(i))&&(t.top+=p+f+g))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[\":\"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t=\"onselectstart\"in document.createElement(\"div\")?\"selectstart\":\"mousedown\";return function(){return this.on(t+\".ui-disableSelection\",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(\".ui-disableSelection\")}}),t.ui.focusable=function(i,s){var n,o,a,r,l,h=i.nodeName.toLowerCase();return\"area\"===h?(n=i.parentNode,o=n.name,i.href&&o&&\"map\"===n.nodeName.toLowerCase()?(a=t(\"img[usemap='#\"+o+\"']\"),a.length>0&&a.is(\":visible\")):!1):(/^(input|select|textarea|button|object)$/.test(h)?(r=!i.disabled,r&&(l=t(i).closest(\"fieldset\")[0],l&&(r=!l.disabled))):r=\"a\"===h?i.href||s:s,r&&t(i).is(\":visible\")&&e(t(i)))},t.extend(t.expr[\":\"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,\"tabindex\"))}}),t.ui.focusable,t.fn.form=function(){return\"string\"==typeof this[0].form?this.closest(\"form\"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data(\"ui-form-reset-instances\");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data(\"ui-form-reset-instances\")||[];t.length||this.form.on(\"reset.ui-form-reset\",this._formResetHandler),t.push(this),this.form.data(\"ui-form-reset-instances\",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data(\"ui-form-reset-instances\");e.splice(t.inArray(this,e),1),e.length?this.form.data(\"ui-form-reset-instances\",e):this.form.removeData(\"ui-form-reset-instances\").off(\"reset.ui-form-reset\")}}},t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!\"#$%&'()*+,./:;<=>?@[\\]^`{|}~])/g;return function(e){return e.replace(t,\"\\\\$1\")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents(\"label\"),s=this.attr(\"id\"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i=\"label[for='\"+t.ui.escapeSelector(s)+\"']\",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css(\"position\"),s=\"absolute\"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&\"static\"===e.css(\"position\")?!1:n.test(e.css(\"overflow\")+e.css(\"overflow-y\")+e.css(\"overflow-x\"))}).eq(0);return\"fixed\"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[\":\"],{tabbable:function(e){var i=t.attr(e,\"tabindex\"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id=\"ui-id-\"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\\d+$/.test(this.id)&&t(this).removeAttr(\"id\")})}}),t.ui.ie=!!/msie [\\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on(\"mouseup\",function(){n=!1}),t.widget(\"ui.mouse\",{version:\"1.12.1\",options:{cancel:\"input, textarea, button, select, option\",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on(\"mousedown.\"+this.widgetName,function(t){return e._mouseDown(t)}).on(\"click.\"+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+\".preventClickEvent\")?(t.removeData(i.target,e.widgetName+\".preventClickEvent\"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off(\".\"+this.widgetName),this._mouseMoveDelegate&&this.document.off(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).off(\"mouseup.\"+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o=\"string\"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+\".preventClickEvent\")&&t.removeData(e.target,this.widgetName+\".preventClickEvent\"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).on(\"mouseup.\"+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).off(\"mouseup.\"+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+\".preventClickEvent\",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.ui.safeActiveElement=function(t){var e;try{e=t.activeElement}catch(i){e=t.body}return e||(e=t.body),e.nodeName||(e=t.body),e},t.ui.safeBlur=function(e){e&&\"body\"!==e.nodeName.toLowerCase()&&t(e).trigger(\"blur\")},t.widget(\"ui.draggable\",t.ui.mouse,{version:\"1.12.1\",widgetEventPrefix:\"drag\",options:{addClasses:!0,appendTo:\"parent\",axis:!1,connectToSortable:!1,containment:!1,cursor:\"auto\",cursorAt:!1,grid:!1,handle:!1,helper:\"original\",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:\"default\",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:\"both\",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){\"original\"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this._addClass(\"ui-draggable\"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),\"handle\"===t&&(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){return(this.helper||this.element).is(\".ui-draggable-dragging\")?(this.destroyOnClear=!0,void 0):(this._removeHandleClassName(),this._mouseDestroy(),void 0)},_mouseCapture:function(e){var i=this.options;return this.helper||i.disabled||t(e.target).closest(\".ui-resizable-handle\").length>0?!1:(this.handle=this._getHandle(e),this.handle?(this._blurActiveElement(e),this._blockFrames(i.iframeFix===!0?\"iframe\":i.iframeFix),!0):!1)},_blockFrames:function(e){this.iframeBlocks=this.document.find(e).map(function(){var e=t(this);return t(\"<div>\").css(\"position\",\"absolute\").appendTo(e.parent()).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()).offset(e.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(e){var i=t.ui.safeActiveElement(this.document[0]),s=t(e.target);s.closest(i).length||t.ui.safeBlur(i)},_mouseStart:function(e){var i=this.options;return this.helper=this._createHelper(e),this._addClass(this.helper,\"ui-draggable-dragging\"),this._cacheHelperProportions(),t.ui.ddmanager&&(t.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css(\"position\"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=this.helper.parents().filter(function(){return\"fixed\"===t(this).css(\"position\")}).length>0,this.positionAbs=this.element.offset(),this._refreshOffsets(e),this.originalPosition=this.position=this._generatePosition(e,!1),this.originalPageX=e.pageX,this.originalPageY=e.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this._setContainment(),this._trigger(\"start\",e)===!1?(this._clear(),!1):(this._cacheHelperProportions(),t.ui.ddmanager&&!i.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this._mouseDrag(e,!0),t.ui.ddmanager&&t.ui.ddmanager.dragStart(this,e),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(e,i){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(e,!0),this.positionAbs=this._convertPositionTo(\"absolute\"),!i){var s=this._uiHash();if(this._trigger(\"drag\",e,s)===!1)return this._mouseUp(new t.Event(\"mouseup\",e)),!1;this.position=s.position}return this.helper[0].style.left=this.position.left+\"px\",this.helper[0].style.top=this.position.top+\"px\",t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),!1},_mouseStop:function(e){var i=this,s=!1;return t.ui.ddmanager&&!this.options.dropBehaviour&&(s=t.ui.ddmanager.drop(this,e)),this.dropped&&(s=this.dropped,this.dropped=!1),\"invalid\"===this.options.revert&&!s||\"valid\"===this.options.revert&&s||this.options.revert===!0||t.isFunction(this.options.revert)&&this.options.revert.call(this.element,s)?t(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){i._trigger(\"stop\",e)!==!1&&i._clear()}):this._trigger(\"stop\",e)!==!1&&this._clear(),!1},_mouseUp:function(e){return this._unblockFrames(),t.ui.ddmanager&&t.ui.ddmanager.dragStop(this,e),this.handleElement.is(e.target)&&this.element.trigger(\"focus\"),t.ui.mouse.prototype._mouseUp.call(this,e)},cancel:function(){return this.helper.is(\".ui-draggable-dragging\")?this._mouseUp(new t.Event(\"mouseup\",{target:this.element[0]})):this._clear(),this},_getHandle:function(e){return this.options.handle?!!t(e.target).closest(this.element.find(this.options.handle)).length:!0},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,\"ui-draggable-handle\")},_removeHandleClassName:function(){this._removeClass(this.handleElement,\"ui-draggable-handle\")},_createHelper:function(e){var i=this.options,s=t.isFunction(i.helper),n=s?t(i.helper.apply(this.element[0],[e])):\"clone\"===i.helper?this.element.clone().removeAttr(\"id\"):this.element;return n.parents(\"body\").length||n.appendTo(\"parent\"===i.appendTo?this.element[0].parentNode:i.appendTo),s&&n[0]===this.element[0]&&this._setPositionRelative(),n[0]===this.element[0]||/(fixed|absolute)/.test(n.css(\"position\"))||n.css(\"position\",\"absolute\"),n},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css(\"position\"))||(this.element[0].style.position=\"relative\")},_adjustOffsetFromHelper:function(e){\"string\"==typeof e&&(e=e.split(\" \")),t.isArray(e)&&(e={left:+e[0],top:+e[1]||0}),\"left\"in e&&(this.offset.click.left=e.left+this.margins.left),\"right\"in e&&(this.offset.click.left=this.helperProportions.width-e.right+this.margins.left),\"top\"in e&&(this.offset.click.top=e.top+this.margins.top),\"bottom\"in e&&(this.offset.click.top=this.helperProportions.height-e.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var e=this.offsetParent.offset(),i=this.document[0];return\"absolute\"===this.cssPosition&&this.scrollParent[0]!==i&&t.contains(this.scrollParent[0],this.offsetParent[0])&&(e.left+=this.scrollParent.scrollLeft(),e.top+=this.scrollParent.scrollTop()),this._isRootNode(this.offsetParent[0])&&(e={top:0,left:0}),{top:e.top+(parseInt(this.offsetParent.css(\"borderTopWidth\"),10)||0),left:e.left+(parseInt(this.offsetParent.css(\"borderLeftWidth\"),10)||0)}},_getRelativeOffset:function(){if(\"relative\"!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css(\"top\"),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css(\"left\"),10)||0)+(e?0:this.scrollParent.scrollLeft())}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css(\"marginLeft\"),10)||0,top:parseInt(this.element.css(\"marginTop\"),10)||0,right:parseInt(this.element.css(\"marginRight\"),10)||0,bottom:parseInt(this.element.css(\"marginBottom\"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e,i,s,n=this.options,o=this.document[0];return this.relativeContainer=null,n.containment?\"window\"===n.containment?(this.containment=[t(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,t(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,t(window).scrollLeft()+t(window).width()-this.helperProportions.width-this.margins.left,t(window).scrollTop()+(t(window).height()||o.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],void 0):\"document\"===n.containment?(this.containment=[0,0,t(o).width()-this.helperProportions.width-this.margins.left,(t(o).height()||o.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],void 0):n.containment.constructor===Array?(this.containment=n.containment,void 0):(\"parent\"===n.containment&&(n.containment=this.helper[0].parentNode),i=t(n.containment),s=i[0],s&&(e=/(scroll|auto)/.test(i.css(\"overflow\")),this.containment=[(parseInt(i.css(\"borderLeftWidth\"),10)||0)+(parseInt(i.css(\"paddingLeft\"),10)||0),(parseInt(i.css(\"borderTopWidth\"),10)||0)+(parseInt(i.css(\"paddingTop\"),10)||0),(e?Math.max(s.scrollWidth,s.offsetWidth):s.offsetWidth)-(parseInt(i.css(\"borderRightWidth\"),10)||0)-(parseInt(i.css(\"paddingRight\"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(e?Math.max(s.scrollHeight,s.offsetHeight):s.offsetHeight)-(parseInt(i.css(\"borderBottomWidth\"),10)||0)-(parseInt(i.css(\"paddingBottom\"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=i),void 0):(this.containment=null,void 0)},_convertPositionTo:function(t,e){e||(e=this.position);var i=\"absolute\"===t?1:-1,s=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-(\"fixed\"===this.cssPosition?-this.offset.scroll.top:s?0:this.offset.scroll.top)*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-(\"fixed\"===this.cssPosition?-this.offset.scroll.left:s?0:this.offset.scroll.left)*i}},_generatePosition:function(t,e){var i,s,n,o,a=this.options,r=this._isRootNode(this.scrollParent[0]),l=t.pageX,h=t.pageY;return r&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&&(this.containment&&(this.relativeContainer?(s=this.relativeContainer.offset(),i=[this.containment[0]+s.left,this.containment[1]+s.top,this.containment[2]+s.left,this.containment[3]+s.top]):i=this.containment,t.pageX-this.offset.click.left<i[0]&&(l=i[0]+this.offset.click.left),t.pageY-this.offset.click.top<i[1]&&(h=i[1]+this.offset.click.top),t.pageX-this.offset.click.left>i[2]&&(l=i[2]+this.offset.click.left),t.pageY-this.offset.click.top>i[3]&&(h=i[3]+this.offset.click.top)),a.grid&&(n=a.grid[1]?this.originalPageY+Math.round((h-this.originalPageY)/a.grid[1])*a.grid[1]:this.originalPageY,h=i?n-this.offset.click.top>=i[1]||n-this.offset.click.top>i[3]?n:n-this.offset.click.top>=i[1]?n-a.grid[1]:n+a.grid[1]:n,o=a.grid[0]?this.originalPageX+Math.round((l-this.originalPageX)/a.grid[0])*a.grid[0]:this.originalPageX,l=i?o-this.offset.click.left>=i[0]||o-this.offset.click.left>i[2]?o:o-this.offset.click.left>=i[0]?o-a.grid[0]:o+a.grid[0]:o),\"y\"===a.axis&&(l=this.originalPageX),\"x\"===a.axis&&(h=this.originalPageY)),{top:h-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(\"fixed\"===this.cssPosition?-this.offset.scroll.top:r?0:this.offset.scroll.top),left:l-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(\"fixed\"===this.cssPosition?-this.offset.scroll.left:r?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,\"ui-draggable-dragging\"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()},_trigger:function(e,i,s){return s=s||this._uiHash(),t.ui.plugin.call(this,e,[i,s,this],!0),/^(drag|start|stop)/.test(e)&&(this.positionAbs=this._convertPositionTo(\"absolute\"),s.offset=this.positionAbs),t.Widget.prototype._trigger.call(this,e,i,s)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),t.ui.plugin.add(\"draggable\",\"connectToSortable\",{start:function(e,i,s){var n=t.extend({},i,{item:s.element});s.sortables=[],t(s.options.connectToSortable).each(function(){var i=t(this).sortable(\"instance\");\r\n\ti&&!i.options.disabled&&(s.sortables.push(i),i.refreshPositions(),i._trigger(\"activate\",e,n))})},stop:function(e,i,s){var n=t.extend({},i,{item:s.element});s.cancelHelperRemoval=!1,t.each(s.sortables,function(){var t=this;t.isOver?(t.isOver=0,s.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css(\"position\"),top:t.placeholder.css(\"top\"),left:t.placeholder.css(\"left\")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger(\"deactivate\",e,n))})},drag:function(e,i,s){t.each(s.sortables,function(){var n=!1,o=this;o.positionAbs=s.positionAbs,o.helperProportions=s.helperProportions,o.offset.click=s.offset.click,o._intersectsWith(o.containerCache)&&(n=!0,t.each(s.sortables,function(){return this.positionAbs=s.positionAbs,this.helperProportions=s.helperProportions,this.offset.click=s.offset.click,this!==o&&this._intersectsWith(this.containerCache)&&t.contains(o.element[0],this.element[0])&&(n=!1),n})),n?(o.isOver||(o.isOver=1,s._parent=i.helper.parent(),o.currentItem=i.helper.appendTo(o.element).data(\"ui-sortable-item\",!0),o.options._helper=o.options.helper,o.options.helper=function(){return i.helper[0]},e.target=o.currentItem[0],o._mouseCapture(e,!0),o._mouseStart(e,!0,!0),o.offset.click.top=s.offset.click.top,o.offset.click.left=s.offset.click.left,o.offset.parent.left-=s.offset.parent.left-o.offset.parent.left,o.offset.parent.top-=s.offset.parent.top-o.offset.parent.top,s._trigger(\"toSortable\",e),s.dropped=o.element,t.each(s.sortables,function(){this.refreshPositions()}),s.currentItem=s.element,o.fromOutside=s),o.currentItem&&(o._mouseDrag(e),i.position=o.position)):o.isOver&&(o.isOver=0,o.cancelHelperRemoval=!0,o.options._revert=o.options.revert,o.options.revert=!1,o._trigger(\"out\",e,o._uiHash(o)),o._mouseStop(e,!0),o.options.revert=o.options._revert,o.options.helper=o.options._helper,o.placeholder&&o.placeholder.remove(),i.helper.appendTo(s._parent),s._refreshOffsets(e),i.position=s._generatePosition(e,!0),s._trigger(\"fromSortable\",e),s.dropped=!1,t.each(s.sortables,function(){this.refreshPositions()}))})}}),t.ui.plugin.add(\"draggable\",\"cursor\",{start:function(e,i,s){var n=t(\"body\"),o=s.options;n.css(\"cursor\")&&(o._cursor=n.css(\"cursor\")),n.css(\"cursor\",o.cursor)},stop:function(e,i,s){var n=s.options;n._cursor&&t(\"body\").css(\"cursor\",n._cursor)}}),t.ui.plugin.add(\"draggable\",\"opacity\",{start:function(e,i,s){var n=t(i.helper),o=s.options;n.css(\"opacity\")&&(o._opacity=n.css(\"opacity\")),n.css(\"opacity\",o.opacity)},stop:function(e,i,s){var n=s.options;n._opacity&&t(i.helper).css(\"opacity\",n._opacity)}}),t.ui.plugin.add(\"draggable\",\"scroll\",{start:function(t,e,i){i.scrollParentNotHidden||(i.scrollParentNotHidden=i.helper.scrollParent(!1)),i.scrollParentNotHidden[0]!==i.document[0]&&\"HTML\"!==i.scrollParentNotHidden[0].tagName&&(i.overflowOffset=i.scrollParentNotHidden.offset())},drag:function(e,i,s){var n=s.options,o=!1,a=s.scrollParentNotHidden[0],r=s.document[0];a!==r&&\"HTML\"!==a.tagName?(n.axis&&\"x\"===n.axis||(s.overflowOffset.top+a.offsetHeight-e.pageY<n.scrollSensitivity?a.scrollTop=o=a.scrollTop+n.scrollSpeed:e.pageY-s.overflowOffset.top<n.scrollSensitivity&&(a.scrollTop=o=a.scrollTop-n.scrollSpeed)),n.axis&&\"y\"===n.axis||(s.overflowOffset.left+a.offsetWidth-e.pageX<n.scrollSensitivity?a.scrollLeft=o=a.scrollLeft+n.scrollSpeed:e.pageX-s.overflowOffset.left<n.scrollSensitivity&&(a.scrollLeft=o=a.scrollLeft-n.scrollSpeed))):(n.axis&&\"x\"===n.axis||(e.pageY-t(r).scrollTop()<n.scrollSensitivity?o=t(r).scrollTop(t(r).scrollTop()-n.scrollSpeed):t(window).height()-(e.pageY-t(r).scrollTop())<n.scrollSensitivity&&(o=t(r).scrollTop(t(r).scrollTop()+n.scrollSpeed))),n.axis&&\"y\"===n.axis||(e.pageX-t(r).scrollLeft()<n.scrollSensitivity?o=t(r).scrollLeft(t(r).scrollLeft()-n.scrollSpeed):t(window).width()-(e.pageX-t(r).scrollLeft())<n.scrollSensitivity&&(o=t(r).scrollLeft(t(r).scrollLeft()+n.scrollSpeed)))),o!==!1&&t.ui.ddmanager&&!n.dropBehaviour&&t.ui.ddmanager.prepareOffsets(s,e)}}),t.ui.plugin.add(\"draggable\",\"snap\",{start:function(e,i,s){var n=s.options;s.snapElements=[],t(n.snap.constructor!==String?n.snap.items||\":data(ui-draggable)\":n.snap).each(function(){var e=t(this),i=e.offset();this!==s.element[0]&&s.snapElements.push({item:this,width:e.outerWidth(),height:e.outerHeight(),top:i.top,left:i.left})})},drag:function(e,i,s){var n,o,a,r,l,h,c,u,d,p,f=s.options,g=f.snapTolerance,m=i.offset.left,_=m+s.helperProportions.width,v=i.offset.top,b=v+s.helperProportions.height;for(d=s.snapElements.length-1;d>=0;d--)l=s.snapElements[d].left-s.margins.left,h=l+s.snapElements[d].width,c=s.snapElements[d].top-s.margins.top,u=c+s.snapElements[d].height,l-g>_||m>h+g||c-g>b||v>u+g||!t.contains(s.snapElements[d].item.ownerDocument,s.snapElements[d].item)?(s.snapElements[d].snapping&&s.options.snap.release&&s.options.snap.release.call(s.element,e,t.extend(s._uiHash(),{snapItem:s.snapElements[d].item})),s.snapElements[d].snapping=!1):(\"inner\"!==f.snapMode&&(n=g>=Math.abs(c-b),o=g>=Math.abs(u-v),a=g>=Math.abs(l-_),r=g>=Math.abs(h-m),n&&(i.position.top=s._convertPositionTo(\"relative\",{top:c-s.helperProportions.height,left:0}).top),o&&(i.position.top=s._convertPositionTo(\"relative\",{top:u,left:0}).top),a&&(i.position.left=s._convertPositionTo(\"relative\",{top:0,left:l-s.helperProportions.width}).left),r&&(i.position.left=s._convertPositionTo(\"relative\",{top:0,left:h}).left)),p=n||o||a||r,\"outer\"!==f.snapMode&&(n=g>=Math.abs(c-v),o=g>=Math.abs(u-b),a=g>=Math.abs(l-m),r=g>=Math.abs(h-_),n&&(i.position.top=s._convertPositionTo(\"relative\",{top:c,left:0}).top),o&&(i.position.top=s._convertPositionTo(\"relative\",{top:u-s.helperProportions.height,left:0}).top),a&&(i.position.left=s._convertPositionTo(\"relative\",{top:0,left:l}).left),r&&(i.position.left=s._convertPositionTo(\"relative\",{top:0,left:h-s.helperProportions.width}).left)),!s.snapElements[d].snapping&&(n||o||a||r||p)&&s.options.snap.snap&&s.options.snap.snap.call(s.element,e,t.extend(s._uiHash(),{snapItem:s.snapElements[d].item})),s.snapElements[d].snapping=n||o||a||r||p)}}),t.ui.plugin.add(\"draggable\",\"stack\",{start:function(e,i,s){var n,o=s.options,a=t.makeArray(t(o.stack)).sort(function(e,i){return(parseInt(t(e).css(\"zIndex\"),10)||0)-(parseInt(t(i).css(\"zIndex\"),10)||0)});a.length&&(n=parseInt(t(a[0]).css(\"zIndex\"),10)||0,t(a).each(function(e){t(this).css(\"zIndex\",n+e)}),this.css(\"zIndex\",n+a.length))}}),t.ui.plugin.add(\"draggable\",\"zIndex\",{start:function(e,i,s){var n=t(i.helper),o=s.options;n.css(\"zIndex\")&&(o._zIndex=n.css(\"zIndex\")),n.css(\"zIndex\",o.zIndex)},stop:function(e,i,s){var n=s.options;n._zIndex&&t(i.helper).css(\"zIndex\",n._zIndex)}}),t.ui.draggable,t.widget(\"ui.resizable\",t.ui.mouse,{version:\"1.12.1\",widgetEventPrefix:\"resize\",options:{alsoResize:!1,animate:!1,animateDuration:\"slow\",animateEasing:\"swing\",aspectRatio:!1,autoHide:!1,classes:{\"ui-resizable-se\":\"ui-icon ui-icon-gripsmall-diagonal-se\"},containment:!1,ghost:!1,grid:!1,handles:\"e,s,se\",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if(\"hidden\"===t(e).css(\"overflow\"))return!1;var s=i&&\"left\"===i?\"scrollLeft\":\"scrollTop\",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass(\"ui-resizable\"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||\"ui-resizable-helper\":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t(\"<div class='ui-wrapper' style='overflow: hidden;'></div>\").css({position:this.element.css(\"position\"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css(\"top\"),left:this.element.css(\"left\")})),this.element=this.element.parent().data(\"ui-resizable\",this.element.resizable(\"instance\")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css(\"marginTop\"),marginRight:this.originalElement.css(\"marginRight\"),marginBottom:this.originalElement.css(\"marginBottom\"),marginLeft:this.originalElement.css(\"marginLeft\")},this.element.css(e),this.originalElement.css(\"margin\",0),this.originalResizeStyle=this.originalElement.css(\"resize\"),this.originalElement.css(\"resize\",\"none\"),this._proportionallyResizeElements.push(this.originalElement.css({position:\"static\",zoom:1,display:\"block\"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on(\"mouseenter\",function(){i.disabled||(s._removeClass(\"ui-resizable-autohide\"),s._handles.show())}).on(\"mouseleave\",function(){i.disabled||s.resizing||(s._addClass(\"ui-resizable-autohide\"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData(\"resizable\").removeData(\"ui-resizable\").off(\".resizable\").find(\".ui-resizable-handle\").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css(\"position\"),width:e.outerWidth(),height:e.outerHeight(),top:e.css(\"top\"),left:e.css(\"left\")}).insertAfter(e),e.remove()),this.originalElement.css(\"resize\",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case\"handles\":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(\".ui-resizable-handle\",this.element).length?{n:\".ui-resizable-n\",e:\".ui-resizable-e\",s:\".ui-resizable-s\",w:\".ui-resizable-w\",se:\".ui-resizable-se\",sw:\".ui-resizable-sw\",ne:\".ui-resizable-ne\",nw:\".ui-resizable-nw\"}:\"e,s,se\"),this._handles=t(),this.handles.constructor===String)for(\"all\"===this.handles&&(this.handles=\"n,e,s,w,se,sw,ne,nw\"),s=this.handles.split(\",\"),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n=\"ui-resizable-\"+e,o=t(\"<div>\"),this._addClass(o,\"ui-resizable-handle \"+n),o.css({zIndex:a.zIndex}),this.handles[e]=\".ui-resizable-\"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=[\"padding\",/ne|nw|n/.test(i)?\"Top\":/se|sw|s/.test(i)?\"Bottom\":/^e$/.test(i)?\"Right\":\"Left\"].join(\"\"),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(\".ui-resizable-handle\")),this._handles.disableSelection(),this._handles.on(\"mouseover\",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:\"se\")}),a.autoHide&&(this._handles.hide(),this._addClass(\"ui-resizable-autohide\"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css(\"left\")),s=this._num(this.helper.css(\"top\")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio=\"number\"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(\".ui-resizable-\"+this.axis).css(\"cursor\"),t(\"body\").css(\"cursor\",\"auto\"===n?this.axis+\"-resize\":n),this._addClass(\"ui-resizable-resizing\"),this._propagate(\"start\",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,l=this._change[o];return this._updatePrevProperties(),l?(i=l.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate(\"resize\",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger(\"resize\",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,l,h=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],\"left\")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css(\"left\"))+(c.position.left-c.originalPosition.left)||null,l=parseFloat(c.element.css(\"top\"))+(c.position.top-c.originalPosition.top)||null,h.animate||this.element.css(t.extend(a,{top:l,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!h.animate&&this._proportionallyResize()),t(\"body\").css(\"cursor\",\"auto\"),this._removeClass(\"ui-resizable-resizing\"),this._propagate(\"stop\",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+\"px\"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+\"px\"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+\"px\"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+\"px\"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),\"sw\"===s&&(t.left=e.left+(i.width-t.width),t.top=null),\"nw\"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidth<t.width,n=this._isNumber(t.height)&&e.maxHeight&&e.maxHeight<t.height,o=this._isNumber(t.width)&&e.minWidth&&e.minWidth>t.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,l=this.originalPosition.top+this.originalSize.height,h=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&h&&(t.left=r-e.minWidth),s&&h&&(t.left=r-e.maxWidth),a&&c&&(t.top=l-e.minHeight),n&&c&&(t.top=l-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css(\"borderTopWidth\"),t.css(\"borderRightWidth\"),t.css(\"borderBottomWidth\"),t.css(\"borderLeftWidth\")],n=[t.css(\"paddingTop\"),t.css(\"paddingRight\"),t.css(\"paddingBottom\"),t.css(\"paddingLeft\")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t(\"<div style='overflow:hidden;'></div>\"),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:\"absolute\",left:this.elementOffset.left+\"px\",top:this.elementOffset.top+\"px\",zIndex:++i.zIndex}),this.helper.appendTo(\"body\").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),\"resize\"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add(\"resizable\",\"animate\",{stop:function(e){var i=t(this).resizable(\"instance\"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],\"left\")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,l={width:i.size.width-r,height:i.size.height-a},h=parseFloat(i.element.css(\"left\"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css(\"top\"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(l,c&&h?{top:c,left:h}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css(\"width\")),height:parseFloat(i.element.css(\"height\")),top:parseFloat(i.element.css(\"top\")),left:parseFloat(i.element.css(\"left\"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate(\"resize\",e)}})}}),t.ui.plugin.add(\"resizable\",\"containment\",{start:function(){var e,i,s,n,o,a,r,l=t(this).resizable(\"instance\"),h=l.options,c=l.element,u=h.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(l.containerElement=t(d),/document/.test(u)||u===document?(l.containerOffset={left:0,top:0},l.containerPosition={left:0,top:0},l.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t([\"Top\",\"Right\",\"Left\",\"Bottom\"]).each(function(t,s){i[t]=l._num(e.css(\"padding\"+s))}),l.containerOffset=e.offset(),l.containerPosition=e.position(),l.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=l.containerOffset,n=l.containerSize.height,o=l.containerSize.width,a=l._hasScroll(d,\"left\")?d.scrollWidth:o,r=l._hasScroll(d)?d.scrollHeight:n,l.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable(\"instance\"),r=a.options,l=a.containerOffset,h=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css(\"position\"))&&(u=l),h.left<(a._helper?l.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-l.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?l.left:0),h.top<(a._helper?l.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-l.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?l.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css(\"position\")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-l.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-l.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable(\"instance\"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),l=a.outerWidth()-e.sizeDiff.width,h=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css(\"position\"))&&t(this).css({left:r.left-n.left-s.left,width:l,height:h}),e._helper&&!i.animate&&/static/.test(o.css(\"position\"))&&t(this).css({left:r.left-n.left-s.left,width:l,height:h})}}),t.ui.plugin.add(\"resizable\",\"alsoResize\",{start:function(){var e=t(this).resizable(\"instance\"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data(\"ui-resizable-alsoresize\",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css(\"left\")),top:parseFloat(e.css(\"top\"))})})},resize:function(e,i){var s=t(this).resizable(\"instance\"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data(\"ui-resizable-alsoresize\"),n={},o=e.parents(i.originalElement[0]).length?[\"width\",\"height\"]:[\"width\",\"height\",\"top\",\"left\"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData(\"ui-resizable-alsoresize\")}}),t.ui.plugin.add(\"resizable\",\"ghost\",{start:function(){var e=t(this).resizable(\"instance\"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:\"block\",position:\"relative\",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,\"ui-resizable-ghost\"),t.uiBackCompat!==!1&&\"string\"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable(\"instance\");e.ghost&&e.ghost.css({position:\"relative\",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable(\"instance\");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add(\"resizable\",\"grid\",{resize:function(){var e,i=t(this).resizable(\"instance\"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,l=\"number\"==typeof s.grid?[s.grid,s.grid]:s.grid,h=l[0]||1,c=l[1]||1,u=Math.round((n.width-o.width)/h)*h,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,g=s.maxWidth&&p>s.maxWidth,m=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=l,_&&(p+=h),v&&(f+=c),g&&(p-=h),m&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-h)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-h>0?(i.size.width=p,i.position.left=a.left-u):(p=h-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable;var o=/ui-corner-([a-z]){2,6}/g;t.widget(\"ui.controlgroup\",{version:\"1.12.1\",defaultElement:\"<div>\",options:{direction:\"horizontal\",disabled:null,onlyVisible:!0,items:{button:\"input[type=button], input[type=submit], input[type=reset], button, a\",controlgroupLabel:\".ui-controlgroup-label\",checkboxradio:\"input[type='checkbox'], input[type='radio']\",selectmenu:\"select\",spinner:\".ui-spinner-input\"}},_create:function(){this._enhance()},_enhance:function(){this.element.attr(\"role\",\"toolbar\"),this.refresh()},_destroy:function(){this._callChildMethod(\"destroy\"),this.childWidgets.removeData(\"ui-controlgroup-data\"),this.element.removeAttr(\"role\"),this.options.items.controlgroupLabel&&this.element.find(this.options.items.controlgroupLabel).find(\".ui-controlgroup-label-contents\").contents().unwrap()},_initWidgets:function(){var e=this,i=[];t.each(this.options.items,function(s,n){var o,a={};return n?\"controlgroupLabel\"===s?(o=e.element.find(n),o.each(function(){var e=t(this);e.children(\".ui-controlgroup-label-contents\").length||e.contents().wrapAll(\"<span class='ui-controlgroup-label-contents'></span>\")}),e._addClass(o,null,\"ui-widget ui-widget-content ui-state-default\"),i=i.concat(o.get()),void 0):(t.fn[s]&&(a=e[\"_\"+s+\"Options\"]?e[\"_\"+s+\"Options\"](\"middle\"):{classes:{}},e.element.find(n).each(function(){var n=t(this),o=n[s](\"instance\"),r=t.widget.extend({},a);if(\"button\"!==s||!n.parent(\".ui-spinner\").length){o||(o=n[s]()[s](\"instance\")),o&&(r.classes=e._resolveClassesValues(r.classes,o)),n[s](r);var l=n[s](\"widget\");t.data(l[0],\"ui-controlgroup-data\",o?o:n[s](\"instance\")),i.push(l[0])}})),void 0):void 0}),this.childWidgets=t(t.uniqueSort(i)),this._addClass(this.childWidgets,\"ui-controlgroup-item\")},_callChildMethod:function(e){this.childWidgets.each(function(){var i=t(this),s=i.data(\"ui-controlgroup-data\");s&&s[e]&&s[e]()})},_updateCornerClass:function(t,e){var i=\"ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all\",s=this._buildSimpleOptions(e,\"label\").classes.label;this._removeClass(t,null,i),this._addClass(t,null,s)},_buildSimpleOptions:function(t,e){var i=\"vertical\"===this.options.direction,s={classes:{}};return s.classes[e]={middle:\"\",first:\"ui-corner-\"+(i?\"top\":\"left\"),last:\"ui-corner-\"+(i?\"bottom\":\"right\"),only:\"ui-corner-all\"}[t],s},_spinnerOptions:function(t){var e=this._buildSimpleOptions(t,\"ui-spinner\");return e.classes[\"ui-spinner-up\"]=\"\",e.classes[\"ui-spinner-down\"]=\"\",e},_buttonOptions:function(t){return this._buildSimpleOptions(t,\"ui-button\")},_checkboxradioOptions:function(t){return this._buildSimpleOptions(t,\"ui-checkboxradio-label\")},_selectmenuOptions:function(t){var e=\"vertical\"===this.options.direction;return{width:e?\"auto\":!1,classes:{middle:{\"ui-selectmenu-button-open\":\"\",\"ui-selectmenu-button-closed\":\"\"},first:{\"ui-selectmenu-button-open\":\"ui-corner-\"+(e?\"top\":\"tl\"),\"ui-selectmenu-button-closed\":\"ui-corner-\"+(e?\"top\":\"left\")},last:{\"ui-selectmenu-button-open\":e?\"\":\"ui-corner-tr\",\"ui-selectmenu-button-closed\":\"ui-corner-\"+(e?\"bottom\":\"right\")},only:{\"ui-selectmenu-button-open\":\"ui-corner-top\",\"ui-selectmenu-button-closed\":\"ui-corner-all\"}}[t]}},_resolveClassesValues:function(e,i){var s={};return t.each(e,function(n){var a=i.options.classes[n]||\"\";a=t.trim(a.replace(o,\"\")),s[n]=(a+\" \"+e[n]).replace(/\\s+/g,\" \")}),s},_setOption:function(t,e){return\"direction\"===t&&this._removeClass(\"ui-controlgroup-\"+this.options.direction),this._super(t,e),\"disabled\"===t?(this._callChildMethod(e?\"disable\":\"enable\"),void 0):(this.refresh(),void 0)},refresh:function(){var e,i=this;this._addClass(\"ui-controlgroup ui-controlgroup-\"+this.options.direction),\"horizontal\"===this.options.direction&&this._addClass(null,\"ui-helper-clearfix\"),this._initWidgets(),e=this.childWidgets,this.options.onlyVisible&&(e=e.filter(\":visible\")),e.length&&(t.each([\"first\",\"last\"],function(t,s){var n=e[s]().data(\"ui-controlgroup-data\");if(n&&i[\"_\"+n.widgetName+\"Options\"]){var o=i[\"_\"+n.widgetName+\"Options\"](1===e.length?\"only\":s);o.classes=i._resolveClassesValues(o.classes,n),n.element[n.widgetName](o)}else i._updateCornerClass(e[s](),s)}),this._callChildMethod(\"refresh\"))}}),t.widget(\"ui.checkboxradio\",[t.ui.formResetMixin,{version:\"1.12.1\",options:{disabled:null,label:null,icon:!0,classes:{\"ui-checkboxradio-label\":\"ui-corner-all\",\"ui-checkboxradio-icon\":\"ui-corner-all\"}},_getCreateOptions:function(){var e,i,s=this,n=this._super()||{};return this._readType(),i=this.element.labels(),this.label=t(i[i.length-1]),this.label.length||t.error(\"No label found for checkboxradio widget\"),this.originalLabel=\"\",this.label.contents().not(this.element[0]).each(function(){s.originalLabel+=3===this.nodeType?t(this).text():this.outerHTML}),this.originalLabel&&(n.label=this.originalLabel),e=this.element[0].disabled,null!=e&&(n.disabled=e),n},_create:function(){var t=this.element[0].checked;this._bindFormResetHandler(),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled),this._setOption(\"disabled\",this.options.disabled),this._addClass(\"ui-checkboxradio\",\"ui-helper-hidden-accessible\"),this._addClass(this.label,\"ui-checkboxradio-label\",\"ui-button ui-widget\"),\"radio\"===this.type&&this._addClass(this.label,\"ui-checkboxradio-radio-label\"),this.options.label&&this.options.label!==this.originalLabel?this._updateLabel():this.originalLabel&&(this.options.label=this.originalLabel),this._enhance(),t&&(this._addClass(this.label,\"ui-checkboxradio-checked\",\"ui-state-active\"),this.icon&&this._addClass(this.icon,null,\"ui-state-hover\")),this._on({change:\"_toggleClasses\",focus:function(){this._addClass(this.label,null,\"ui-state-focus ui-visual-focus\")},blur:function(){this._removeClass(this.label,null,\"ui-state-focus ui-visual-focus\")}})},_readType:function(){var e=this.element[0].nodeName.toLowerCase();this.type=this.element[0].type,\"input\"===e&&/radio|checkbox/.test(this.type)||t.error(\"Can't create checkboxradio on element.nodeName=\"+e+\" and element.type=\"+this.type)},_enhance:function(){this._updateIcon(this.element[0].checked)},widget:function(){return this.label},_getRadioGroup:function(){var e,i=this.element[0].name,s=\"input[name='\"+t.ui.escapeSelector(i)+\"']\";return i?(e=this.form.length?t(this.form[0].elements).filter(s):t(s).filter(function(){return 0===t(this).form().length}),e.not(this.element)):t([])},_toggleClasses:function(){var e=this.element[0].checked;this._toggleClass(this.label,\"ui-checkboxradio-checked\",\"ui-state-active\",e),this.options.icon&&\"checkbox\"===this.type&&this._toggleClass(this.icon,null,\"ui-icon-check ui-state-checked\",e)._toggleClass(this.icon,null,\"ui-icon-blank\",!e),\"radio\"===this.type&&this._getRadioGroup().each(function(){var e=t(this).checkboxradio(\"instance\");e&&e._removeClass(e.label,\"ui-checkboxradio-checked\",\"ui-state-active\")})},_destroy:function(){this._unbindFormResetHandler(),this.icon&&(this.icon.remove(),this.iconSpace.remove())},_setOption:function(t,e){return\"label\"!==t||e?(this._super(t,e),\"disabled\"===t?(this._toggleClass(this.label,null,\"ui-state-disabled\",e),this.element[0].disabled=e,void 0):(this.refresh(),void 0)):void 0\r\n\t},_updateIcon:function(e){var i=\"ui-icon ui-icon-background \";this.options.icon?(this.icon||(this.icon=t(\"<span>\"),this.iconSpace=t(\"<span> </span>\"),this._addClass(this.iconSpace,\"ui-checkboxradio-icon-space\")),\"checkbox\"===this.type?(i+=e?\"ui-icon-check ui-state-checked\":\"ui-icon-blank\",this._removeClass(this.icon,null,e?\"ui-icon-blank\":\"ui-icon-check\")):i+=\"ui-icon-blank\",this._addClass(this.icon,\"ui-checkboxradio-icon\",i),e||this._removeClass(this.icon,null,\"ui-icon-check ui-state-checked\"),this.icon.prependTo(this.label).after(this.iconSpace)):void 0!==this.icon&&(this.icon.remove(),this.iconSpace.remove(),delete this.icon)},_updateLabel:function(){var t=this.label.contents().not(this.element[0]);this.icon&&(t=t.not(this.icon[0])),this.iconSpace&&(t=t.not(this.iconSpace[0])),t.remove(),this.label.append(this.options.label)},refresh:function(){var t=this.element[0].checked,e=this.element[0].disabled;this._updateIcon(t),this._toggleClass(this.label,\"ui-checkboxradio-checked\",\"ui-state-active\",t),null!==this.options.label&&this._updateLabel(),e!==this.options.disabled&&this._setOptions({disabled:e})}}]),t.ui.checkboxradio,t.widget(\"ui.button\",{version:\"1.12.1\",defaultElement:\"<button>\",options:{classes:{\"ui-button\":\"ui-corner-all\"},disabled:null,icon:null,iconPosition:\"beginning\",label:null,showLabel:!0},_getCreateOptions:function(){var t,e=this._super()||{};return this.isInput=this.element.is(\"input\"),t=this.element[0].disabled,null!=t&&(e.disabled=t),this.originalLabel=this.isInput?this.element.val():this.element.html(),this.originalLabel&&(e.label=this.originalLabel),e},_create:function(){!this.option.showLabel&!this.options.icon&&(this.options.showLabel=!0),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled||!1),this.hasTitle=!!this.element.attr(\"title\"),this.options.label&&this.options.label!==this.originalLabel&&(this.isInput?this.element.val(this.options.label):this.element.html(this.options.label)),this._addClass(\"ui-button\",\"ui-widget\"),this._setOption(\"disabled\",this.options.disabled),this._enhance(),this.element.is(\"a\")&&this._on({keyup:function(e){e.keyCode===t.ui.keyCode.SPACE&&(e.preventDefault(),this.element[0].click?this.element[0].click():this.element.trigger(\"click\"))}})},_enhance:function(){this.element.is(\"button\")||this.element.attr(\"role\",\"button\"),this.options.icon&&(this._updateIcon(\"icon\",this.options.icon),this._updateTooltip())},_updateTooltip:function(){this.title=this.element.attr(\"title\"),this.options.showLabel||this.title||this.element.attr(\"title\",this.options.label)},_updateIcon:function(e,i){var s=\"iconPosition\"!==e,n=s?this.options.iconPosition:i,o=\"top\"===n||\"bottom\"===n;this.icon?s&&this._removeClass(this.icon,null,this.options.icon):(this.icon=t(\"<span>\"),this._addClass(this.icon,\"ui-button-icon\",\"ui-icon\"),this.options.showLabel||this._addClass(\"ui-button-icon-only\")),s&&this._addClass(this.icon,null,i),this._attachIcon(n),o?(this._addClass(this.icon,null,\"ui-widget-icon-block\"),this.iconSpace&&this.iconSpace.remove()):(this.iconSpace||(this.iconSpace=t(\"<span> </span>\"),this._addClass(this.iconSpace,\"ui-button-icon-space\")),this._removeClass(this.icon,null,\"ui-wiget-icon-block\"),this._attachIconSpace(n))},_destroy:function(){this.element.removeAttr(\"role\"),this.icon&&this.icon.remove(),this.iconSpace&&this.iconSpace.remove(),this.hasTitle||this.element.removeAttr(\"title\")},_attachIconSpace:function(t){this.icon[/^(?:end|bottom)/.test(t)?\"before\":\"after\"](this.iconSpace)},_attachIcon:function(t){this.element[/^(?:end|bottom)/.test(t)?\"append\":\"prepend\"](this.icon)},_setOptions:function(t){var e=void 0===t.showLabel?this.options.showLabel:t.showLabel,i=void 0===t.icon?this.options.icon:t.icon;e||i||(t.showLabel=!0),this._super(t)},_setOption:function(t,e){\"icon\"===t&&(e?this._updateIcon(t,e):this.icon&&(this.icon.remove(),this.iconSpace&&this.iconSpace.remove())),\"iconPosition\"===t&&this._updateIcon(t,e),\"showLabel\"===t&&(this._toggleClass(\"ui-button-icon-only\",null,!e),this._updateTooltip()),\"label\"===t&&(this.isInput?this.element.val(e):(this.element.html(e),this.icon&&(this._attachIcon(this.options.iconPosition),this._attachIconSpace(this.options.iconPosition)))),this._super(t,e),\"disabled\"===t&&(this._toggleClass(null,\"ui-state-disabled\",e),this.element[0].disabled=e,e&&this.element.blur())},refresh:function(){var t=this.element.is(\"input, button\")?this.element[0].disabled:this.element.hasClass(\"ui-button-disabled\");t!==this.options.disabled&&this._setOptions({disabled:t}),this._updateTooltip()}}),t.uiBackCompat!==!1&&(t.widget(\"ui.button\",t.ui.button,{options:{text:!0,icons:{primary:null,secondary:null}},_create:function(){this.options.showLabel&&!this.options.text&&(this.options.showLabel=this.options.text),!this.options.showLabel&&this.options.text&&(this.options.text=this.options.showLabel),this.options.icon||!this.options.icons.primary&&!this.options.icons.secondary?this.options.icon&&(this.options.icons.primary=this.options.icon):this.options.icons.primary?this.options.icon=this.options.icons.primary:(this.options.icon=this.options.icons.secondary,this.options.iconPosition=\"end\"),this._super()},_setOption:function(t,e){return\"text\"===t?(this._super(\"showLabel\",e),void 0):(\"showLabel\"===t&&(this.options.text=e),\"icon\"===t&&(this.options.icons.primary=e),\"icons\"===t&&(e.primary?(this._super(\"icon\",e.primary),this._super(\"iconPosition\",\"beginning\")):e.secondary&&(this._super(\"icon\",e.secondary),this._super(\"iconPosition\",\"end\"))),this._superApply(arguments),void 0)}}),t.fn.button=function(e){return function(){return!this.length||this.length&&\"INPUT\"!==this[0].tagName||this.length&&\"INPUT\"===this[0].tagName&&\"checkbox\"!==this.attr(\"type\")&&\"radio\"!==this.attr(\"type\")?e.apply(this,arguments):(t.ui.checkboxradio||t.error(\"Checkboxradio widget missing\"),0===arguments.length?this.checkboxradio({icon:!1}):this.checkboxradio.apply(this,arguments))}}(t.fn.button),t.fn.buttonset=function(){return t.ui.controlgroup||t.error(\"Controlgroup widget missing\"),\"option\"===arguments[0]&&\"items\"===arguments[1]&&arguments[2]?this.controlgroup.apply(this,[arguments[0],\"items.button\",arguments[2]]):\"option\"===arguments[0]&&\"items\"===arguments[1]?this.controlgroup.apply(this,[arguments[0],\"items.button\"]):(\"object\"==typeof arguments[0]&&arguments[0].items&&(arguments[0].items={button:arguments[0].items}),this.controlgroup.apply(this,arguments))}),t.ui.button,t.widget(\"ui.dialog\",{version:\"1.12.1\",options:{appendTo:\"body\",autoOpen:!0,buttons:[],classes:{\"ui-dialog\":\"ui-corner-all\",\"ui-dialog-titlebar\":\"ui-corner-all\"},closeOnEscape:!0,closeText:\"Close\",draggable:!0,hide:null,height:\"auto\",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:\"center\",at:\"center\",of:window,collision:\"fit\",using:function(e){var i=t(this).css(e).offset().top;0>i&&t(this).css(\"top\",e.top-i)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},sizeRelatedOptions:{buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},resizableRelatedOptions:{maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr(\"title\"),null==this.options.title&&null!=this.originalTitle&&(this.options.title=this.originalTitle),this.options.disabled&&(this.options.disabled=!1),this._createWrapper(),this.element.show().removeAttr(\"title\").appendTo(this.uiDialog),this._addClass(\"ui-dialog-content\",\"ui-widget-content\"),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&t.fn.draggable&&this._makeDraggable(),this.options.resizable&&t.fn.resizable&&this._makeResizable(),this._isOpen=!1,this._trackFocus()},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var e=this.options.appendTo;return e&&(e.jquery||e.nodeType)?t(e):this.document.find(e||\"body\").eq(0)},_destroy:function(){var t,e=this.originalPosition;this._untrackInstance(),this._destroyOverlay(),this.element.removeUniqueId().css(this.originalCss).detach(),this.uiDialog.remove(),this.originalTitle&&this.element.attr(\"title\",this.originalTitle),t=e.parent.children().eq(e.index),t.length&&t[0]!==this.element[0]?t.before(this.element):e.parent.append(this.element)},widget:function(){return this.uiDialog},disable:t.noop,enable:t.noop,close:function(e){var i=this;this._isOpen&&this._trigger(\"beforeClose\",e)!==!1&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(\":focusable\").trigger(\"focus\").length||t.ui.safeBlur(t.ui.safeActiveElement(this.document[0])),this._hide(this.uiDialog,this.options.hide,function(){i._trigger(\"close\",e)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(e,i){var s=!1,n=this.uiDialog.siblings(\".ui-front:visible\").map(function(){return+t(this).css(\"z-index\")}).get(),o=Math.max.apply(null,n);return o>=+this.uiDialog.css(\"z-index\")&&(this.uiDialog.css(\"z-index\",o+1),s=!0),s&&!i&&this._trigger(\"focus\",e),s},open:function(){var e=this;return this._isOpen?(this._moveToTop()&&this._focusTabbable(),void 0):(this._isOpen=!0,this.opener=t(t.ui.safeActiveElement(this.document[0])),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css(\"z-index\",this.uiDialog.css(\"z-index\")-1),this._show(this.uiDialog,this.options.show,function(){e._focusTabbable(),e._trigger(\"focus\")}),this._makeFocusTarget(),this._trigger(\"open\"),void 0)},_focusTabbable:function(){var t=this._focusedElement;t||(t=this.element.find(\"[autofocus]\")),t.length||(t=this.element.find(\":tabbable\")),t.length||(t=this.uiDialogButtonPane.find(\":tabbable\")),t.length||(t=this.uiDialogTitlebarClose.filter(\":tabbable\")),t.length||(t=this.uiDialog),t.eq(0).trigger(\"focus\")},_keepFocus:function(e){function i(){var e=t.ui.safeActiveElement(this.document[0]),i=this.uiDialog[0]===e||t.contains(this.uiDialog[0],e);i||this._focusTabbable()}e.preventDefault(),i.call(this),this._delay(i)},_createWrapper:function(){this.uiDialog=t(\"<div>\").hide().attr({tabIndex:-1,role:\"dialog\"}).appendTo(this._appendTo()),this._addClass(this.uiDialog,\"ui-dialog\",\"ui-widget ui-widget-content ui-front\"),this._on(this.uiDialog,{keydown:function(e){if(this.options.closeOnEscape&&!e.isDefaultPrevented()&&e.keyCode&&e.keyCode===t.ui.keyCode.ESCAPE)return e.preventDefault(),this.close(e),void 0;if(e.keyCode===t.ui.keyCode.TAB&&!e.isDefaultPrevented()){var i=this.uiDialog.find(\":tabbable\"),s=i.filter(\":first\"),n=i.filter(\":last\");e.target!==n[0]&&e.target!==this.uiDialog[0]||e.shiftKey?e.target!==s[0]&&e.target!==this.uiDialog[0]||!e.shiftKey||(this._delay(function(){n.trigger(\"focus\")}),e.preventDefault()):(this._delay(function(){s.trigger(\"focus\")}),e.preventDefault())}},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find(\"[aria-describedby]\").length||this.uiDialog.attr({\"aria-describedby\":this.element.uniqueId().attr(\"id\")})},_createTitlebar:function(){var e;this.uiDialogTitlebar=t(\"<div>\"),this._addClass(this.uiDialogTitlebar,\"ui-dialog-titlebar\",\"ui-widget-header ui-helper-clearfix\"),this._on(this.uiDialogTitlebar,{mousedown:function(e){t(e.target).closest(\".ui-dialog-titlebar-close\")||this.uiDialog.trigger(\"focus\")}}),this.uiDialogTitlebarClose=t(\"<button type='button'></button>\").button({label:t(\"<a>\").text(this.options.closeText).html(),icon:\"ui-icon-closethick\",showLabel:!1}).appendTo(this.uiDialogTitlebar),this._addClass(this.uiDialogTitlebarClose,\"ui-dialog-titlebar-close\"),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),e=t(\"<span>\").uniqueId().prependTo(this.uiDialogTitlebar),this._addClass(e,\"ui-dialog-title\"),this._title(e),this.uiDialogTitlebar.prependTo(this.uiDialog),this.uiDialog.attr({\"aria-labelledby\":e.attr(\"id\")})},_title:function(t){this.options.title?t.text(this.options.title):t.html(\" \")},_createButtonPane:function(){this.uiDialogButtonPane=t(\"<div>\"),this._addClass(this.uiDialogButtonPane,\"ui-dialog-buttonpane\",\"ui-widget-content ui-helper-clearfix\"),this.uiButtonSet=t(\"<div>\").appendTo(this.uiDialogButtonPane),this._addClass(this.uiButtonSet,\"ui-dialog-buttonset\"),this._createButtons()},_createButtons:function(){var e=this,i=this.options.buttons;return this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),t.isEmptyObject(i)||t.isArray(i)&&!i.length?(this._removeClass(this.uiDialog,\"ui-dialog-buttons\"),void 0):(t.each(i,function(i,s){var n,o;s=t.isFunction(s)?{click:s,text:i}:s,s=t.extend({type:\"button\"},s),n=s.click,o={icon:s.icon,iconPosition:s.iconPosition,showLabel:s.showLabel,icons:s.icons,text:s.text},delete s.click,delete s.icon,delete s.iconPosition,delete s.showLabel,delete s.icons,\"boolean\"==typeof s.text&&delete s.text,t(\"<button></button>\",s).button(o).appendTo(e.uiButtonSet).on(\"click\",function(){n.apply(e.element[0],arguments)})}),this._addClass(this.uiDialog,\"ui-dialog-buttons\"),this.uiDialogButtonPane.appendTo(this.uiDialog),void 0)},_makeDraggable:function(){function e(t){return{position:t.position,offset:t.offset}}var i=this,s=this.options;this.uiDialog.draggable({cancel:\".ui-dialog-content, .ui-dialog-titlebar-close\",handle:\".ui-dialog-titlebar\",containment:\"document\",start:function(s,n){i._addClass(t(this),\"ui-dialog-dragging\"),i._blockFrames(),i._trigger(\"dragStart\",s,e(n))},drag:function(t,s){i._trigger(\"drag\",t,e(s))},stop:function(n,o){var a=o.offset.left-i.document.scrollLeft(),r=o.offset.top-i.document.scrollTop();s.position={my:\"left top\",at:\"left\"+(a>=0?\"+\":\"\")+a+\" \"+\"top\"+(r>=0?\"+\":\"\")+r,of:i.window},i._removeClass(t(this),\"ui-dialog-dragging\"),i._unblockFrames(),i._trigger(\"dragStop\",n,e(o))}})},_makeResizable:function(){function e(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size}}var i=this,s=this.options,n=s.resizable,o=this.uiDialog.css(\"position\"),a=\"string\"==typeof n?n:\"n,e,s,w,se,sw,ne,nw\";this.uiDialog.resizable({cancel:\".ui-dialog-content\",containment:\"document\",alsoResize:this.element,maxWidth:s.maxWidth,maxHeight:s.maxHeight,minWidth:s.minWidth,minHeight:this._minHeight(),handles:a,start:function(s,n){i._addClass(t(this),\"ui-dialog-resizing\"),i._blockFrames(),i._trigger(\"resizeStart\",s,e(n))},resize:function(t,s){i._trigger(\"resize\",t,e(s))},stop:function(n,o){var a=i.uiDialog.offset(),r=a.left-i.document.scrollLeft(),l=a.top-i.document.scrollTop();s.height=i.uiDialog.height(),s.width=i.uiDialog.width(),s.position={my:\"left top\",at:\"left\"+(r>=0?\"+\":\"\")+r+\" \"+\"top\"+(l>=0?\"+\":\"\")+l,of:i.window},i._removeClass(t(this),\"ui-dialog-resizing\"),i._unblockFrames(),i._trigger(\"resizeStop\",n,e(o))}}).css(\"position\",o)},_trackFocus:function(){this._on(this.widget(),{focusin:function(e){this._makeFocusTarget(),this._focusedElement=t(e.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var e=this._trackingInstances(),i=t.inArray(this,e);-1!==i&&e.splice(i,1)},_trackingInstances:function(){var t=this.document.data(\"ui-dialog-instances\");return t||(t=[],this.document.data(\"ui-dialog-instances\",t)),t},_minHeight:function(){var t=this.options;return\"auto\"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(\":visible\");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(e){var i=this,s=!1,n={};t.each(e,function(t,e){i._setOption(t,e),t in i.sizeRelatedOptions&&(s=!0),t in i.resizableRelatedOptions&&(n[t]=e)}),s&&(this._size(),this._position()),this.uiDialog.is(\":data(ui-resizable)\")&&this.uiDialog.resizable(\"option\",n)},_setOption:function(e,i){var s,n,o=this.uiDialog;\"disabled\"!==e&&(this._super(e,i),\"appendTo\"===e&&this.uiDialog.appendTo(this._appendTo()),\"buttons\"===e&&this._createButtons(),\"closeText\"===e&&this.uiDialogTitlebarClose.button({label:t(\"<a>\").text(\"\"+this.options.closeText).html()}),\"draggable\"===e&&(s=o.is(\":data(ui-draggable)\"),s&&!i&&o.draggable(\"destroy\"),!s&&i&&this._makeDraggable()),\"position\"===e&&this._position(),\"resizable\"===e&&(n=o.is(\":data(ui-resizable)\"),n&&!i&&o.resizable(\"destroy\"),n&&\"string\"==typeof i&&o.resizable(\"option\",\"handles\",i),n||i===!1||this._makeResizable()),\"title\"===e&&this._title(this.uiDialogTitlebar.find(\".ui-dialog-title\")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:\"auto\",minHeight:0,maxHeight:\"none\",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:\"auto\",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i=\"number\"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):\"none\",\"auto\"===s.height?this.element.css({minHeight:e,maxHeight:i,height:\"auto\"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(\":data(ui-resizable)\")&&this.uiDialog.resizable(\"option\",\"minHeight\",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find(\"iframe\").map(function(){var e=t(this);return t(\"<div>\").css({position:\"absolute\",width:e.outerWidth(),height:e.outerHeight()}).appendTo(e.parent()).offset(e.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(e){return t(e.target).closest(\".ui-dialog\").length?!0:!!t(e.target).closest(\".ui-datepicker\").length},_createOverlay:function(){if(this.options.modal){var e=!0;this._delay(function(){e=!1}),this.document.data(\"ui-dialog-overlays\")||this._on(this.document,{focusin:function(t){e||this._allowInteraction(t)||(t.preventDefault(),this._trackingInstances()[0]._focusTabbable())}}),this.overlay=t(\"<div>\").appendTo(this._appendTo()),this._addClass(this.overlay,null,\"ui-widget-overlay ui-front\"),this._on(this.overlay,{mousedown:\"_keepFocus\"}),this.document.data(\"ui-dialog-overlays\",(this.document.data(\"ui-dialog-overlays\")||0)+1)}},_destroyOverlay:function(){if(this.options.modal&&this.overlay){var t=this.document.data(\"ui-dialog-overlays\")-1;t?this.document.data(\"ui-dialog-overlays\",t):(this._off(this.document,\"focusin\"),this.document.removeData(\"ui-dialog-overlays\")),this.overlay.remove(),this.overlay=null}}}),t.uiBackCompat!==!1&&t.widget(\"ui.dialog\",t.ui.dialog,{options:{dialogClass:\"\"},_createWrapper:function(){this._super(),this.uiDialog.addClass(this.options.dialogClass)},_setOption:function(t,e){\"dialogClass\"===t&&this.uiDialog.removeClass(this.options.dialogClass).addClass(e),this._superApply(arguments)}}),t.ui.dialog,t.widget(\"ui.menu\",{version:\"1.12.1\",defaultElement:\"<ul>\",delay:300,options:{icons:{submenu:\"ui-icon-caret-1-e\"},items:\"> *\",menus:\"ul\",position:{my:\"left top\",at:\"right top\"},role:\"menu\",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass(\"ui-menu\",\"ui-widget ui-widget-content\"),this._on({\"mousedown .ui-menu-item\":function(t){t.preventDefault()},\"click .ui-menu-item\":function(e){var i=t(e.target),s=t(t.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&i.not(\".ui-state-disabled\").length&&(this.select(e),e.isPropagationStopped()||(this.mouseHandled=!0),i.has(\".ui-menu\").length?this.expand(e):!this.element.is(\":focus\")&&s.closest(\".ui-menu\").length&&(this.element.trigger(\"focus\",[!0]),this.active&&1===this.active.parents(\".ui-menu\").length&&clearTimeout(this.timer)))},\"mouseenter .ui-menu-item\":function(e){if(!this.previousFilter){var i=t(e.target).closest(\".ui-menu-item\"),s=t(e.currentTarget);i[0]===s[0]&&(this._removeClass(s.siblings().children(\".ui-state-active\"),null,\"ui-state-active\"),this.focus(e,s))}},mouseleave:\"collapseAll\",\"mouseleave .ui-menu\":\"collapseAll\",focus:function(t,e){var i=this.active||this.element.find(this.options.items).eq(0);e||this.focus(t,i)},blur:function(e){this._delay(function(){var i=!t.contains(this.element[0],t.ui.safeActiveElement(this.document[0]));i&&this.collapseAll(e)})},keydown:\"_keydown\"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t),this.mouseHandled=!1}})},_destroy:function(){var e=this.element.find(\".ui-menu-item\").removeAttr(\"role aria-disabled\"),i=e.children(\".ui-menu-item-wrapper\").removeUniqueId().removeAttr(\"tabIndex role aria-haspopup\");this.element.removeAttr(\"aria-activedescendant\").find(\".ui-menu\").addBack().removeAttr(\"role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex\").removeUniqueId().show(),i.children().each(function(){var e=t(this);e.data(\"ui-menu-submenu-caret\")&&e.remove()})},_keydown:function(e){var i,s,n,o,a=!0;switch(e.keyCode){case t.ui.keyCode.PAGE_UP:this.previousPage(e);break;case t.ui.keyCode.PAGE_DOWN:this.nextPage(e);break;case t.ui.keyCode.HOME:this._move(\"first\",\"first\",e);break;case t.ui.keyCode.END:this._move(\"last\",\"last\",e);break;case t.ui.keyCode.UP:this.previous(e);break;case t.ui.keyCode.DOWN:this.next(e);break;case t.ui.keyCode.LEFT:this.collapse(e);break;case t.ui.keyCode.RIGHT:this.active&&!this.active.is(\".ui-state-disabled\")&&this.expand(e);break;case t.ui.keyCode.ENTER:case t.ui.keyCode.SPACE:this._activate(e);break;case t.ui.keyCode.ESCAPE:this.collapse(e);break;default:a=!1,s=this.previousFilter||\"\",o=!1,n=e.keyCode>=96&&105>=e.keyCode?\"\"+(e.keyCode-96):String.fromCharCode(e.keyCode),clearTimeout(this.filterTimer),n===s?o=!0:n=s+n,i=this._filterMenuItems(n),i=o&&-1!==i.index(this.active.next())?this.active.nextAll(\".ui-menu-item\"):i,i.length||(n=String.fromCharCode(e.keyCode),i=this._filterMenuItems(n)),i.length?(this.focus(e,i),this.previousFilter=n,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}a&&e.preventDefault()},_activate:function(t){this.active&&!this.active.is(\".ui-state-disabled\")&&(this.active.children(\"[aria-haspopup='true']\").length?this.expand(t):this.select(t))},refresh:function(){var e,i,s,n,o,a=this,r=this.options.icons.submenu,l=this.element.find(this.options.menus);this._toggleClass(\"ui-menu-icons\",null,!!this.element.find(\".ui-icon\").length),s=l.filter(\":not(.ui-menu)\").hide().attr({role:this.options.role,\"aria-hidden\":\"true\",\"aria-expanded\":\"false\"}).each(function(){var e=t(this),i=e.prev(),s=t(\"<span>\").data(\"ui-menu-submenu-caret\",!0);a._addClass(s,\"ui-menu-icon\",\"ui-icon \"+r),i.attr(\"aria-haspopup\",\"true\").prepend(s),e.attr(\"aria-labelledby\",i.attr(\"id\"))}),this._addClass(s,\"ui-menu\",\"ui-widget ui-widget-content ui-front\"),e=l.add(this.element),i=e.find(this.options.items),i.not(\".ui-menu-item\").each(function(){var e=t(this);a._isDivider(e)&&a._addClass(e,\"ui-menu-divider\",\"ui-widget-content\")}),n=i.not(\".ui-menu-item, .ui-menu-divider\"),o=n.children().not(\".ui-menu\").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(n,\"ui-menu-item\")._addClass(o,\"ui-menu-item-wrapper\"),i.filter(\".ui-state-disabled\").attr(\"aria-disabled\",\"true\"),this.active&&!t.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:\"menuitem\",listbox:\"option\"}[this.options.role]},_setOption:function(t,e){if(\"icons\"===t){var i=this.element.find(\".ui-menu-icon\");this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)}this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr(\"aria-disabled\",t+\"\"),this._toggleClass(null,\"ui-state-disabled\",!!t)},focus:function(t,e){var i,s,n;this.blur(t,t&&\"focus\"===t.type),this._scrollIntoView(e),this.active=e.first(),s=this.active.children(\".ui-menu-item-wrapper\"),this._addClass(s,null,\"ui-state-active\"),this.options.role&&this.element.attr(\"aria-activedescendant\",s.attr(\"id\")),n=this.active.parent().closest(\".ui-menu-item\").children(\".ui-menu-item-wrapper\"),this._addClass(n,null,\"ui-state-active\"),t&&\"keydown\"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=e.children(\".ui-menu\"),i.length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger(\"focus\",t,{item:e})},_scrollIntoView:function(e){var i,s,n,o,a,r;this._hasScroll()&&(i=parseFloat(t.css(this.activeMenu[0],\"borderTopWidth\"))||0,s=parseFloat(t.css(this.activeMenu[0],\"paddingTop\"))||0,n=e.offset().top-this.activeMenu.offset().top-i-s,o=this.activeMenu.scrollTop(),a=this.activeMenu.height(),r=e.outerHeight(),0>n?this.activeMenu.scrollTop(o+n):n+r>a&&this.activeMenu.scrollTop(o+n-a+r))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(\".ui-menu-item-wrapper\"),null,\"ui-state-active\"),this._trigger(\"blur\",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),\"true\"===t.attr(\"aria-hidden\")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(e){var i=t.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(\".ui-menu\").not(e.parents(\".ui-menu\")).hide().attr(\"aria-hidden\",\"true\"),e.show().removeAttr(\"aria-hidden\").attr(\"aria-expanded\",\"true\").position(i)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:t(e&&e.target).closest(this.element.find(\".ui-menu\"));s.length||(s=this.element),this._close(s),this.blur(e),this._removeClass(s.find(\".ui-state-active\"),null,\"ui-state-active\"),this.activeMenu=s},this.delay)},_close:function(t){t||(t=this.active?this.active.parent():this.element),t.find(\".ui-menu\").hide().attr(\"aria-hidden\",\"true\").attr(\"aria-expanded\",\"false\")},_closeOnDocumentClick:function(e){return!t(e.target).closest(\".ui-menu\").length},_isDivider:function(t){return!/[^\\-\\u2014\\u2013\\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(\".ui-menu-item\",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this.active.children(\".ui-menu \").find(this.options.items).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move(\"next\",\"first\",t)},previous:function(t){this._move(\"prev\",\"last\",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(\".ui-menu-item\").length},isLastItem:function(){return this.active&&!this.active.nextAll(\".ui-menu-item\").length},_move:function(t,e,i){var s;this.active&&(s=\"first\"===t||\"last\"===t?this.active[\"first\"===t?\"prevAll\":\"nextAll\"](\".ui-menu-item\").eq(-1):this.active[t+\"All\"](\".ui-menu-item\").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.find(this.options.items)[e]()),this.focus(i,s)},nextPage:function(e){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(\".ui-menu-item\").each(function(){return i=t(this),0>i.offset().top-s-n}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items)[this.active?\"last\":\"first\"]())),void 0):(this.next(e),void 0)},previousPage:function(e){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(\".ui-menu-item\").each(function(){return i=t(this),i.offset().top-s+n>0}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items).first())),void 0):(this.next(e),void 0)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop(\"scrollHeight\")},select:function(e){this.active=this.active||t(e.target).closest(\".ui-menu-item\");var i={item:this.active};this.active.has(\".ui-menu\").length||this.collapseAll(e,!0),this._trigger(\"select\",e,i)},_filterMenuItems:function(e){var i=e.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^$|#\\s]/g,\"\\\\$&\"),s=RegExp(\"^\"+i,\"i\");return this.activeMenu.find(this.options.items).filter(\".ui-menu-item\").filter(function(){return s.test(t.trim(t(this).children(\".ui-menu-item-wrapper\").text()))})}}),t.widget(\"ui.selectmenu\",[t.ui.formResetMixin,{version:\"1.12.1\",defaultElement:\"<select>\",options:{appendTo:null,classes:{\"ui-selectmenu-button-open\":\"ui-corner-top\",\"ui-selectmenu-button-closed\":\"ui-corner-all\"},disabled:null,icons:{button:\"ui-icon-triangle-1-s\"},position:{my:\"left top\",at:\"left bottom\",collision:\"none\"},width:!1,change:null,close:null,focus:null,open:null,select:null},_create:function(){var e=this.element.uniqueId().attr(\"id\");this.ids={element:e,button:e+\"-button\",menu:e+\"-menu\"},this._drawButton(),this._drawMenu(),this._bindFormResetHandler(),this._rendered=!1,this.menuItems=t()},_drawButton:function(){var e,i=this,s=this._parseOption(this.element.find(\"option:selected\"),this.element[0].selectedIndex);this.labels=this.element.labels().attr(\"for\",this.ids.button),this._on(this.labels,{click:function(t){this.button.focus(),t.preventDefault()}}),this.element.hide(),this.button=t(\"<span>\",{tabindex:this.options.disabled?-1:0,id:this.ids.button,role:\"combobox\",\"aria-expanded\":\"false\",\"aria-autocomplete\":\"list\",\"aria-owns\":this.ids.menu,\"aria-haspopup\":\"true\",title:this.element.attr(\"title\")}).insertAfter(this.element),this._addClass(this.button,\"ui-selectmenu-button ui-selectmenu-button-closed\",\"ui-button ui-widget\"),e=t(\"<span>\").appendTo(this.button),this._addClass(e,\"ui-selectmenu-icon\",\"ui-icon \"+this.options.icons.button),this.buttonItem=this._renderButtonItem(s).appendTo(this.button),this.options.width!==!1&&this._resizeButton(),this._on(this.button,this._buttonEvents),this.button.one(\"focusin\",function(){i._rendered||i._refreshMenu()})},_drawMenu:function(){var e=this;this.menu=t(\"<ul>\",{\"aria-hidden\":\"true\",\"aria-labelledby\":this.ids.button,id:this.ids.menu}),this.menuWrap=t(\"<div>\").append(this.menu),this._addClass(this.menuWrap,\"ui-selectmenu-menu\",\"ui-front\"),this.menuWrap.appendTo(this._appendTo()),this.menuInstance=this.menu.menu({classes:{\"ui-menu\":\"ui-corner-bottom\"},role:\"listbox\",select:function(t,i){t.preventDefault(),e._setSelection(),e._select(i.item.data(\"ui-selectmenu-item\"),t)},focus:function(t,i){var s=i.item.data(\"ui-selectmenu-item\");null!=e.focusIndex&&s.index!==e.focusIndex&&(e._trigger(\"focus\",t,{item:s}),e.isOpen||e._select(s,t)),e.focusIndex=s.index,e.button.attr(\"aria-activedescendant\",e.menuItems.eq(s.index).attr(\"id\"))}}).menu(\"instance\"),this.menuInstance._off(this.menu,\"mouseleave\"),this.menuInstance._closeOnDocumentClick=function(){return!1},this.menuInstance._isDivider=function(){return!1}},refresh:function(){this._refreshMenu(),this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(this._getSelectedItem().data(\"ui-selectmenu-item\")||{})),null===this.options.width&&this._resizeButton()},_refreshMenu:function(){var t,e=this.element.find(\"option\");this.menu.empty(),this._parseOptions(e),this._renderMenu(this.menu,this.items),this.menuInstance.refresh(),this.menuItems=this.menu.find(\"li\").not(\".ui-selectmenu-optgroup\").find(\".ui-menu-item-wrapper\"),this._rendered=!0,e.length&&(t=this._getSelectedItem(),this.menuInstance.focus(null,t),this._setAria(t.data(\"ui-selectmenu-item\")),this._setOption(\"disabled\",this.element.prop(\"disabled\")))},open:function(t){this.options.disabled||(this._rendered?(this._removeClass(this.menu.find(\".ui-state-active\"),null,\"ui-state-active\"),this.menuInstance.focus(null,this._getSelectedItem())):this._refreshMenu(),this.menuItems.length&&(this.isOpen=!0,this._toggleAttr(),this._resizeMenu(),this._position(),this._on(this.document,this._documentClick),this._trigger(\"open\",t)))},_position:function(){this.menuWrap.position(t.extend({of:this.button},this.options.position))},close:function(t){this.isOpen&&(this.isOpen=!1,this._toggleAttr(),this.range=null,this._off(this.document),this._trigger(\"close\",t))\r\n\t},widget:function(){return this.button},menuWidget:function(){return this.menu},_renderButtonItem:function(e){var i=t(\"<span>\");return this._setText(i,e.label),this._addClass(i,\"ui-selectmenu-text\"),i},_renderMenu:function(e,i){var s=this,n=\"\";t.each(i,function(i,o){var a;o.optgroup!==n&&(a=t(\"<li>\",{text:o.optgroup}),s._addClass(a,\"ui-selectmenu-optgroup\",\"ui-menu-divider\"+(o.element.parent(\"optgroup\").prop(\"disabled\")?\" ui-state-disabled\":\"\")),a.appendTo(e),n=o.optgroup),s._renderItemData(e,o)})},_renderItemData:function(t,e){return this._renderItem(t,e).data(\"ui-selectmenu-item\",e)},_renderItem:function(e,i){var s=t(\"<li>\"),n=t(\"<div>\",{title:i.element.attr(\"title\")});return i.disabled&&this._addClass(s,null,\"ui-state-disabled\"),this._setText(n,i.label),s.append(n).appendTo(e)},_setText:function(t,e){e?t.text(e):t.html(\" \")},_move:function(t,e){var i,s,n=\".ui-menu-item\";this.isOpen?i=this.menuItems.eq(this.focusIndex).parent(\"li\"):(i=this.menuItems.eq(this.element[0].selectedIndex).parent(\"li\"),n+=\":not(.ui-state-disabled)\"),s=\"first\"===t||\"last\"===t?i[\"first\"===t?\"prevAll\":\"nextAll\"](n).eq(-1):i[t+\"All\"](n).eq(0),s.length&&this.menuInstance.focus(e,s)},_getSelectedItem:function(){return this.menuItems.eq(this.element[0].selectedIndex).parent(\"li\")},_toggle:function(t){this[this.isOpen?\"close\":\"open\"](t)},_setSelection:function(){var t;this.range&&(window.getSelection?(t=window.getSelection(),t.removeAllRanges(),t.addRange(this.range)):this.range.select(),this.button.focus())},_documentClick:{mousedown:function(e){this.isOpen&&(t(e.target).closest(\".ui-selectmenu-menu, #\"+t.ui.escapeSelector(this.ids.button)).length||this.close(e))}},_buttonEvents:{mousedown:function(){var t;window.getSelection?(t=window.getSelection(),t.rangeCount&&(this.range=t.getRangeAt(0))):this.range=document.selection.createRange()},click:function(t){this._setSelection(),this._toggle(t)},keydown:function(e){var i=!0;switch(e.keyCode){case t.ui.keyCode.TAB:case t.ui.keyCode.ESCAPE:this.close(e),i=!1;break;case t.ui.keyCode.ENTER:this.isOpen&&this._selectFocusedItem(e);break;case t.ui.keyCode.UP:e.altKey?this._toggle(e):this._move(\"prev\",e);break;case t.ui.keyCode.DOWN:e.altKey?this._toggle(e):this._move(\"next\",e);break;case t.ui.keyCode.SPACE:this.isOpen?this._selectFocusedItem(e):this._toggle(e);break;case t.ui.keyCode.LEFT:this._move(\"prev\",e);break;case t.ui.keyCode.RIGHT:this._move(\"next\",e);break;case t.ui.keyCode.HOME:case t.ui.keyCode.PAGE_UP:this._move(\"first\",e);break;case t.ui.keyCode.END:case t.ui.keyCode.PAGE_DOWN:this._move(\"last\",e);break;default:this.menu.trigger(e),i=!1}i&&e.preventDefault()}},_selectFocusedItem:function(t){var e=this.menuItems.eq(this.focusIndex).parent(\"li\");e.hasClass(\"ui-state-disabled\")||this._select(e.data(\"ui-selectmenu-item\"),t)},_select:function(t,e){var i=this.element[0].selectedIndex;this.element[0].selectedIndex=t.index,this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(t)),this._setAria(t),this._trigger(\"select\",e,{item:t}),t.index!==i&&this._trigger(\"change\",e,{item:t}),this.close(e)},_setAria:function(t){var e=this.menuItems.eq(t.index).attr(\"id\");this.button.attr({\"aria-labelledby\":e,\"aria-activedescendant\":e}),this.menu.attr(\"aria-activedescendant\",e)},_setOption:function(t,e){if(\"icons\"===t){var i=this.button.find(\"span.ui-icon\");this._removeClass(i,null,this.options.icons.button)._addClass(i,null,e.button)}this._super(t,e),\"appendTo\"===t&&this.menuWrap.appendTo(this._appendTo()),\"width\"===t&&this._resizeButton()},_setOptionDisabled:function(t){this._super(t),this.menuInstance.option(\"disabled\",t),this.button.attr(\"aria-disabled\",t),this._toggleClass(this.button,null,\"ui-state-disabled\",t),this.element.prop(\"disabled\",t),t?(this.button.attr(\"tabindex\",-1),this.close()):this.button.attr(\"tabindex\",0)},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(\".ui-front, dialog\")),e.length||(e=this.document[0].body),e},_toggleAttr:function(){this.button.attr(\"aria-expanded\",this.isOpen),this._removeClass(this.button,\"ui-selectmenu-button-\"+(this.isOpen?\"closed\":\"open\"))._addClass(this.button,\"ui-selectmenu-button-\"+(this.isOpen?\"open\":\"closed\"))._toggleClass(this.menuWrap,\"ui-selectmenu-open\",null,this.isOpen),this.menu.attr(\"aria-hidden\",!this.isOpen)},_resizeButton:function(){var t=this.options.width;return t===!1?(this.button.css(\"width\",\"\"),void 0):(null===t&&(t=this.element.show().outerWidth(),this.element.hide()),this.button.outerWidth(t),void 0)},_resizeMenu:function(){this.menu.outerWidth(Math.max(this.button.outerWidth(),this.menu.width(\"\").outerWidth()+1))},_getCreateOptions:function(){var t=this._super();return t.disabled=this.element.prop(\"disabled\"),t},_parseOptions:function(e){var i=this,s=[];e.each(function(e,n){s.push(i._parseOption(t(n),e))}),this.items=s},_parseOption:function(t,e){var i=t.parent(\"optgroup\");return{element:t,index:e,value:t.val(),label:t.text(),optgroup:i.attr(\"label\")||\"\",disabled:i.prop(\"disabled\")||t.prop(\"disabled\")}},_destroy:function(){this._unbindFormResetHandler(),this.menuWrap.remove(),this.button.remove(),this.element.show(),this.element.removeUniqueId(),this.labels.attr(\"for\",this.ids.element)}}]),t.widget(\"ui.tabs\",{version:\"1.12.1\",delay:300,options:{active:null,classes:{\"ui-tabs\":\"ui-corner-all\",\"ui-tabs-nav\":\"ui-corner-all\",\"ui-tabs-panel\":\"ui-corner-bottom\",\"ui-tabs-tab\":\"ui-corner-top\"},collapsible:!1,event:\"click\",heightStyle:\"content\",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:function(){var t=/#.*$/;return function(e){var i,s;i=e.href.replace(t,\"\"),s=location.href.replace(t,\"\");try{i=decodeURIComponent(i)}catch(n){}try{s=decodeURIComponent(s)}catch(n){}return e.hash.length>1&&i===s}}(),_create:function(){var e=this,i=this.options;this.running=!1,this._addClass(\"ui-tabs\",\"ui-widget ui-widget-content\"),this._toggleClass(\"ui-tabs-collapsible\",null,i.collapsible),this._processTabs(),i.active=this._initialActive(),t.isArray(i.disabled)&&(i.disabled=t.uniqueSort(i.disabled.concat(t.map(this.tabs.filter(\".ui-state-disabled\"),function(t){return e.tabs.index(t)}))).sort()),this.active=this.options.active!==!1&&this.anchors.length?this._findActive(i.active):t(),this._refresh(),this.active.length&&this.load(i.active)},_initialActive:function(){var e=this.options.active,i=this.options.collapsible,s=location.hash.substring(1);return null===e&&(s&&this.tabs.each(function(i,n){return t(n).attr(\"aria-controls\")===s?(e=i,!1):void 0}),null===e&&(e=this.tabs.index(this.tabs.filter(\".ui-tabs-active\"))),(null===e||-1===e)&&(e=this.tabs.length?0:!1)),e!==!1&&(e=this.tabs.index(this.tabs.eq(e)),-1===e&&(e=i?!1:0)),!i&&e===!1&&this.anchors.length&&(e=0),e},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):t()}},_tabKeydown:function(e){var i=t(t.ui.safeActiveElement(this.document[0])).closest(\"li\"),s=this.tabs.index(i),n=!0;if(!this._handlePageNav(e)){switch(e.keyCode){case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:s++;break;case t.ui.keyCode.UP:case t.ui.keyCode.LEFT:n=!1,s--;break;case t.ui.keyCode.END:s=this.anchors.length-1;break;case t.ui.keyCode.HOME:s=0;break;case t.ui.keyCode.SPACE:return e.preventDefault(),clearTimeout(this.activating),this._activate(s),void 0;case t.ui.keyCode.ENTER:return e.preventDefault(),clearTimeout(this.activating),this._activate(s===this.options.active?!1:s),void 0;default:return}e.preventDefault(),clearTimeout(this.activating),s=this._focusNextTab(s,n),e.ctrlKey||e.metaKey||(i.attr(\"aria-selected\",\"false\"),this.tabs.eq(s).attr(\"aria-selected\",\"true\"),this.activating=this._delay(function(){this.option(\"active\",s)},this.delay))}},_panelKeydown:function(e){this._handlePageNav(e)||e.ctrlKey&&e.keyCode===t.ui.keyCode.UP&&(e.preventDefault(),this.active.trigger(\"focus\"))},_handlePageNav:function(e){return e.altKey&&e.keyCode===t.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):e.altKey&&e.keyCode===t.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(e,i){function s(){return e>n&&(e=0),0>e&&(e=n),e}for(var n=this.tabs.length-1;-1!==t.inArray(s(),this.options.disabled);)e=i?e+1:e-1;return e},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).trigger(\"focus\"),t},_setOption:function(t,e){return\"active\"===t?(this._activate(e),void 0):(this._super(t,e),\"collapsible\"===t&&(this._toggleClass(\"ui-tabs-collapsible\",null,e),e||this.options.active!==!1||this._activate(0)),\"event\"===t&&this._setupEvents(e),\"heightStyle\"===t&&this._setupHeightStyle(e),void 0)},_sanitizeSelector:function(t){return t?t.replace(/[!\"$%&'()*+,.\\/:;<=>?@\\[\\]\\^`{|}~]/g,\"\\\\$&\"):\"\"},refresh:function(){var e=this.options,i=this.tablist.children(\":has(a[href])\");e.disabled=t.map(i.filter(\".ui-state-disabled\"),function(t){return i.index(t)}),this._processTabs(),e.active!==!1&&this.anchors.length?this.active.length&&!t.contains(this.tablist[0],this.active[0])?this.tabs.length===e.disabled.length?(e.active=!1,this.active=t()):this._activate(this._findNextTab(Math.max(0,e.active-1),!1)):e.active=this.tabs.index(this.active):(e.active=!1,this.active=t()),this._refresh()},_refresh:function(){this._setOptionDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({\"aria-selected\":\"false\",\"aria-expanded\":\"false\",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({\"aria-hidden\":\"true\"}),this.active.length?(this.active.attr({\"aria-selected\":\"true\",\"aria-expanded\":\"true\",tabIndex:0}),this._addClass(this.active,\"ui-tabs-active\",\"ui-state-active\"),this._getPanelForTab(this.active).show().attr({\"aria-hidden\":\"false\"})):this.tabs.eq(0).attr(\"tabIndex\",0)},_processTabs:function(){var e=this,i=this.tabs,s=this.anchors,n=this.panels;this.tablist=this._getList().attr(\"role\",\"tablist\"),this._addClass(this.tablist,\"ui-tabs-nav\",\"ui-helper-reset ui-helper-clearfix ui-widget-header\"),this.tablist.on(\"mousedown\"+this.eventNamespace,\"> li\",function(e){t(this).is(\".ui-state-disabled\")&&e.preventDefault()}).on(\"focus\"+this.eventNamespace,\".ui-tabs-anchor\",function(){t(this).closest(\"li\").is(\".ui-state-disabled\")&&this.blur()}),this.tabs=this.tablist.find(\"> li:has(a[href])\").attr({role:\"tab\",tabIndex:-1}),this._addClass(this.tabs,\"ui-tabs-tab\",\"ui-state-default\"),this.anchors=this.tabs.map(function(){return t(\"a\",this)[0]}).attr({role:\"presentation\",tabIndex:-1}),this._addClass(this.anchors,\"ui-tabs-anchor\"),this.panels=t(),this.anchors.each(function(i,s){var n,o,a,r=t(s).uniqueId().attr(\"id\"),l=t(s).closest(\"li\"),h=l.attr(\"aria-controls\");e._isLocal(s)?(n=s.hash,a=n.substring(1),o=e.element.find(e._sanitizeSelector(n))):(a=l.attr(\"aria-controls\")||t({}).uniqueId()[0].id,n=\"#\"+a,o=e.element.find(n),o.length||(o=e._createPanel(a),o.insertAfter(e.panels[i-1]||e.tablist)),o.attr(\"aria-live\",\"polite\")),o.length&&(e.panels=e.panels.add(o)),h&&l.data(\"ui-tabs-aria-controls\",h),l.attr({\"aria-controls\":a,\"aria-labelledby\":r}),o.attr(\"aria-labelledby\",r)}),this.panels.attr(\"role\",\"tabpanel\"),this._addClass(this.panels,\"ui-tabs-panel\",\"ui-widget-content\"),i&&(this._off(i.not(this.tabs)),this._off(s.not(this.anchors)),this._off(n.not(this.panels)))},_getList:function(){return this.tablist||this.element.find(\"ol, ul\").eq(0)},_createPanel:function(e){return t(\"<div>\").attr(\"id\",e).data(\"ui-tabs-destroy\",!0)},_setOptionDisabled:function(e){var i,s,n;for(t.isArray(e)&&(e.length?e.length===this.anchors.length&&(e=!0):e=!1),n=0;s=this.tabs[n];n++)i=t(s),e===!0||-1!==t.inArray(n,e)?(i.attr(\"aria-disabled\",\"true\"),this._addClass(i,null,\"ui-state-disabled\")):(i.removeAttr(\"aria-disabled\"),this._removeClass(i,null,\"ui-state-disabled\"));this.options.disabled=e,this._toggleClass(this.widget(),this.widgetFullName+\"-disabled\",null,e===!0)},_setupEvents:function(e){var i={};e&&t.each(e.split(\" \"),function(t,e){i[e]=\"_eventHandler\"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(t){t.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:\"_tabKeydown\"}),this._on(this.panels,{keydown:\"_panelKeydown\"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(e){var i,s=this.element.parent();\"fill\"===e?(i=s.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(\":visible\").each(function(){var e=t(this),s=e.css(\"position\");\"absolute\"!==s&&\"fixed\"!==s&&(i-=e.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=t(this).outerHeight(!0)}),this.panels.each(function(){t(this).height(Math.max(0,i-t(this).innerHeight()+t(this).height()))}).css(\"overflow\",\"auto\")):\"auto\"===e&&(i=0,this.panels.each(function(){i=Math.max(i,t(this).height(\"\").height())}).height(i))},_eventHandler:function(e){var i=this.options,s=this.active,n=t(e.currentTarget),o=n.closest(\"li\"),a=o[0]===s[0],r=a&&i.collapsible,l=r?t():this._getPanelForTab(o),h=s.length?this._getPanelForTab(s):t(),c={oldTab:s,oldPanel:h,newTab:r?t():o,newPanel:l};e.preventDefault(),o.hasClass(\"ui-state-disabled\")||o.hasClass(\"ui-tabs-loading\")||this.running||a&&!i.collapsible||this._trigger(\"beforeActivate\",e,c)===!1||(i.active=r?!1:this.tabs.index(o),this.active=a?t():o,this.xhr&&this.xhr.abort(),h.length||l.length||t.error(\"jQuery UI Tabs: Mismatching fragment identifier.\"),l.length&&this.load(this.tabs.index(o),e),this._toggle(e,c))},_toggle:function(e,i){function s(){o.running=!1,o._trigger(\"activate\",e,i)}function n(){o._addClass(i.newTab.closest(\"li\"),\"ui-tabs-active\",\"ui-state-active\"),a.length&&o.options.show?o._show(a,o.options.show,s):(a.show(),s())}var o=this,a=i.newPanel,r=i.oldPanel;this.running=!0,r.length&&this.options.hide?this._hide(r,this.options.hide,function(){o._removeClass(i.oldTab.closest(\"li\"),\"ui-tabs-active\",\"ui-state-active\"),n()}):(this._removeClass(i.oldTab.closest(\"li\"),\"ui-tabs-active\",\"ui-state-active\"),r.hide(),n()),r.attr(\"aria-hidden\",\"true\"),i.oldTab.attr({\"aria-selected\":\"false\",\"aria-expanded\":\"false\"}),a.length&&r.length?i.oldTab.attr(\"tabIndex\",-1):a.length&&this.tabs.filter(function(){return 0===t(this).attr(\"tabIndex\")}).attr(\"tabIndex\",-1),a.attr(\"aria-hidden\",\"false\"),i.newTab.attr({\"aria-selected\":\"true\",\"aria-expanded\":\"true\",tabIndex:0})},_activate:function(e){var i,s=this._findActive(e);s[0]!==this.active[0]&&(s.length||(s=this.active),i=s.find(\".ui-tabs-anchor\")[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return e===!1?t():this.tabs.eq(e)},_getIndex:function(e){return\"string\"==typeof e&&(e=this.anchors.index(this.anchors.filter(\"[href$='\"+t.ui.escapeSelector(e)+\"']\"))),e},_destroy:function(){this.xhr&&this.xhr.abort(),this.tablist.removeAttr(\"role\").off(this.eventNamespace),this.anchors.removeAttr(\"role tabIndex\").removeUniqueId(),this.tabs.add(this.panels).each(function(){t.data(this,\"ui-tabs-destroy\")?t(this).remove():t(this).removeAttr(\"role tabIndex aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded\")}),this.tabs.each(function(){var e=t(this),i=e.data(\"ui-tabs-aria-controls\");i?e.attr(\"aria-controls\",i).removeData(\"ui-tabs-aria-controls\"):e.removeAttr(\"aria-controls\")}),this.panels.show(),\"content\"!==this.options.heightStyle&&this.panels.css(\"height\",\"\")},enable:function(e){var i=this.options.disabled;i!==!1&&(void 0===e?i=!1:(e=this._getIndex(e),i=t.isArray(i)?t.map(i,function(t){return t!==e?t:null}):t.map(this.tabs,function(t,i){return i!==e?i:null})),this._setOptionDisabled(i))},disable:function(e){var i=this.options.disabled;if(i!==!0){if(void 0===e)i=!0;else{if(e=this._getIndex(e),-1!==t.inArray(e,i))return;i=t.isArray(i)?t.merge([e],i).sort():[e]}this._setOptionDisabled(i)}},load:function(e,i){e=this._getIndex(e);var s=this,n=this.tabs.eq(e),o=n.find(\".ui-tabs-anchor\"),a=this._getPanelForTab(n),r={tab:n,panel:a},l=function(t,e){\"abort\"===e&&s.panels.stop(!1,!0),s._removeClass(n,\"ui-tabs-loading\"),a.removeAttr(\"aria-busy\"),t===s.xhr&&delete s.xhr};this._isLocal(o[0])||(this.xhr=t.ajax(this._ajaxSettings(o,i,r)),this.xhr&&\"canceled\"!==this.xhr.statusText&&(this._addClass(n,\"ui-tabs-loading\"),a.attr(\"aria-busy\",\"true\"),this.xhr.done(function(t,e,n){setTimeout(function(){a.html(t),s._trigger(\"load\",i,r),l(n,e)},1)}).fail(function(t,e){setTimeout(function(){l(t,e)},1)})))},_ajaxSettings:function(e,i,s){var n=this;return{url:e.attr(\"href\").replace(/#.*$/,\"\"),beforeSend:function(e,o){return n._trigger(\"beforeLoad\",i,t.extend({jqXHR:e,ajaxSettings:o},s))}}},_getPanelForTab:function(e){var i=t(e).attr(\"aria-controls\");return this.element.find(this._sanitizeSelector(\"#\"+i))}}),t.uiBackCompat!==!1&&t.widget(\"ui.tabs\",t.ui.tabs,{_processTabs:function(){this._superApply(arguments),this._addClass(this.tabs,\"ui-tab\")}}),t.ui.tabs,t.widget(\"ui.tooltip\",{version:\"1.12.1\",options:{classes:{\"ui-tooltip\":\"ui-corner-all ui-widget-shadow\"},content:function(){var e=t(this).attr(\"title\")||\"\";return t(\"<a>\").text(e).html()},hide:!0,items:\"[title]:not([disabled])\",position:{my:\"left top+15\",at:\"left bottom\",collision:\"flipfit flip\"},show:!0,track:!1,close:null,open:null},_addDescribedBy:function(e,i){var s=(e.attr(\"aria-describedby\")||\"\").split(/\\s+/);s.push(i),e.data(\"ui-tooltip-id\",i).attr(\"aria-describedby\",t.trim(s.join(\" \")))},_removeDescribedBy:function(e){var i=e.data(\"ui-tooltip-id\"),s=(e.attr(\"aria-describedby\")||\"\").split(/\\s+/),n=t.inArray(i,s);-1!==n&&s.splice(n,1),e.removeData(\"ui-tooltip-id\"),s=t.trim(s.join(\" \")),s?e.attr(\"aria-describedby\",s):e.removeAttr(\"aria-describedby\")},_create:function(){this._on({mouseover:\"open\",focusin:\"open\"}),this.tooltips={},this.parents={},this.liveRegion=t(\"<div>\").attr({role:\"log\",\"aria-live\":\"assertive\",\"aria-relevant\":\"additions\"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,\"ui-helper-hidden-accessible\"),this.disabledTitles=t([])},_setOption:function(e,i){var s=this;this._super(e,i),\"content\"===e&&t.each(this.tooltips,function(t,e){s._updateContent(e.element)})},_setOptionDisabled:function(t){this[t?\"_disable\":\"_enable\"]()},_disable:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event(\"blur\");n.target=n.currentTarget=s.element[0],e.close(n,!0)}),this.disabledTitles=this.disabledTitles.add(this.element.find(this.options.items).addBack().filter(function(){var e=t(this);return e.is(\"[title]\")?e.data(\"ui-tooltip-title\",e.attr(\"title\")).removeAttr(\"title\"):void 0}))},_enable:function(){this.disabledTitles.each(function(){var e=t(this);e.data(\"ui-tooltip-title\")&&e.attr(\"title\",e.data(\"ui-tooltip-title\"))}),this.disabledTitles=t([])},open:function(e){var i=this,s=t(e?e.target:this.element).closest(this.options.items);s.length&&!s.data(\"ui-tooltip-id\")&&(s.attr(\"title\")&&s.data(\"ui-tooltip-title\",s.attr(\"title\")),s.data(\"ui-tooltip-open\",!0),e&&\"mouseover\"===e.type&&s.parents().each(function(){var e,s=t(this);s.data(\"ui-tooltip-open\")&&(e=t.Event(\"blur\"),e.target=e.currentTarget=this,i.close(e,!0)),s.attr(\"title\")&&(s.uniqueId(),i.parents[this.id]={element:this,title:s.attr(\"title\")},s.attr(\"title\",\"\"))}),this._registerCloseHandlers(e,s),this._updateContent(s,e))},_updateContent:function(t,e){var i,s=this.options.content,n=this,o=e?e.type:null;return\"string\"==typeof s||s.nodeType||s.jquery?this._open(e,t,s):(i=s.call(t[0],function(i){n._delay(function(){t.data(\"ui-tooltip-open\")&&(e&&(e.type=o),this._open(e,t,i))})}),i&&this._open(e,t,i),void 0)},_open:function(e,i,s){function n(t){h.of=t,a.is(\":hidden\")||a.position(h)}var o,a,r,l,h=t.extend({},this.options.position);if(s){if(o=this._find(i))return o.tooltip.find(\".ui-tooltip-content\").html(s),void 0;i.is(\"[title]\")&&(e&&\"mouseover\"===e.type?i.attr(\"title\",\"\"):i.removeAttr(\"title\")),o=this._tooltip(i),a=o.tooltip,this._addDescribedBy(i,a.attr(\"id\")),a.find(\".ui-tooltip-content\").html(s),this.liveRegion.children().hide(),l=t(\"<div>\").html(a.find(\".ui-tooltip-content\").html()),l.removeAttr(\"name\").find(\"[name]\").removeAttr(\"name\"),l.removeAttr(\"id\").find(\"[id]\").removeAttr(\"id\"),l.appendTo(this.liveRegion),this.options.track&&e&&/^mouse/.test(e.type)?(this._on(this.document,{mousemove:n}),n(e)):a.position(t.extend({of:i},this.options.position)),a.hide(),this._show(a,this.options.show),this.options.track&&this.options.show&&this.options.show.delay&&(r=this.delayedShow=setInterval(function(){a.is(\":visible\")&&(n(h.of),clearInterval(r))},t.fx.interval)),this._trigger(\"open\",e,{tooltip:a})}},_registerCloseHandlers:function(e,i){var s={keyup:function(e){if(e.keyCode===t.ui.keyCode.ESCAPE){var s=t.Event(e);s.currentTarget=i[0],this.close(s,!0)}}};i[0]!==this.element[0]&&(s.remove=function(){this._removeTooltip(this._find(i).tooltip)}),e&&\"mouseover\"!==e.type||(s.mouseleave=\"close\"),e&&\"focusin\"!==e.type||(s.focusout=\"close\"),this._on(!0,i,s)},close:function(e){var i,s=this,n=t(e?e.currentTarget:this.element),o=this._find(n);return o?(i=o.tooltip,o.closing||(clearInterval(this.delayedShow),n.data(\"ui-tooltip-title\")&&!n.attr(\"title\")&&n.attr(\"title\",n.data(\"ui-tooltip-title\")),this._removeDescribedBy(n),o.hiding=!0,i.stop(!0),this._hide(i,this.options.hide,function(){s._removeTooltip(t(this))}),n.removeData(\"ui-tooltip-open\"),this._off(n,\"mouseleave focusout keyup\"),n[0]!==this.element[0]&&this._off(n,\"remove\"),this._off(this.document,\"mousemove\"),e&&\"mouseleave\"===e.type&&t.each(this.parents,function(e,i){t(i.element).attr(\"title\",i.title),delete s.parents[e]}),o.closing=!0,this._trigger(\"close\",e,{tooltip:i}),o.hiding||(o.closing=!1)),void 0):(n.removeData(\"ui-tooltip-open\"),void 0)},_tooltip:function(e){var i=t(\"<div>\").attr(\"role\",\"tooltip\"),s=t(\"<div>\").appendTo(i),n=i.uniqueId().attr(\"id\");return this._addClass(s,\"ui-tooltip-content\"),this._addClass(i,\"ui-tooltip\",\"ui-widget ui-widget-content\"),i.appendTo(this._appendTo(e)),this.tooltips[n]={element:e,tooltip:i}},_find:function(t){var e=t.data(\"ui-tooltip-id\");return e?this.tooltips[e]:null},_removeTooltip:function(t){t.remove(),delete this.tooltips[t.attr(\"id\")]},_appendTo:function(t){var e=t.closest(\".ui-front, dialog\");return e.length||(e=this.document[0].body),e},_destroy:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event(\"blur\"),o=s.element;n.target=n.currentTarget=o[0],e.close(n,!0),t(\"#\"+i).remove(),o.data(\"ui-tooltip-title\")&&(o.attr(\"title\")||o.attr(\"title\",o.data(\"ui-tooltip-title\")),o.removeData(\"ui-tooltip-title\"))}),this.liveRegion.remove()}}),t.uiBackCompat!==!1&&t.widget(\"ui.tooltip\",t.ui.tooltip,{options:{tooltipClass:null},_tooltip:function(){var t=this._superApply(arguments);return this.options.tooltipClass&&t.tooltip.addClass(this.options.tooltipClass),t}}),t.ui.tooltip});\r\n}\n},{}],25:[function(require,module,exports){\n'use strict';\r\n\r\nvar customModal = require('./modal'),\r\n\tpage = require('./page'),\r\n\tutil = require('./util'),\r\n\tformPrepare = require('./pages/checkout/formPrepare'),\r\n\tvalidator = require('./validator');\r\n\r\nvar login = {\r\n\t/**\r\n\t * @private\r\n\t * @function\r\n\t * @description init events for the loginPage\r\n\t */\r\n\tinit: function () {\r\n\t\t//o-auth binding for which icon is clicked\r\n\t\t$('.oAuthIcon').on('click', function () {\r\n\t\t\t$('#OAuthProvider').val(this.id);\r\n\t\t});\r\n\r\n\r\n\t\t//toggle the value of the rememberme checkbox\r\n\t\t$('#dwfrm_login_rememberme').on('change', function () {\r\n\t\t\tif ($('#dwfrm_login_rememberme').attr('checked')) {\r\n\t\t\t\t$('#rememberme').val('true');\r\n\t\t\t} else {\r\n\t\t\t\t$('#rememberme').val('false');\r\n\t\t\t}\r\n\t\t});\r\n\t},\r\n\twishlistAjaxLogin: function (form) {\r\n\t\tvar _this = this;\r\n\t\t$(form).on('submit', function (event) {\r\n\t\t\tevent.preventDefault();\r\n\t\t\tvar data = {}\r\n\t\t\t$(form).find('.data-field, .input-field input').each(function () {\r\n\t\t\t\tvar name = $(this).attr('name');\r\n\t\t\t\tvar value = $(this).val();\r\n\t\t\t\tdata[name] = value;\r\n\t\t\t})\r\n\t\t\t$('.login-wrapper .ajax-loader').show();\r\n\t\t\tvar actionUrl = $(form).attr('action');\r\n\t\t\tvar wishlistLoginUrl = actionUrl.replace('LoginForm', 'LoginFormAjax');\r\n\t\t\t$.ajax({\r\n\t\t\t\ttype: 'post',\r\n\t\t\t\turl: wishlistLoginUrl,\r\n\t\t\t\tdata: data\r\n\t\t\t}).done(function (response) {\r\n\t\t\t\tif (response !== '' && response !== null) {\r\n\t\t\t\t\tif (response.success) {\r\n\t\t\t\t\t\twindow.location.href = response.url;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tif(response.indexOf('class=\"csrf-message\"') > -1) {\r\n\t\t\t\t\t\t\t$('#login-modal .login-wrapper').html(response);\r\n\t\t\t\t\t\t\t// CSRF redirecting handler on EDGE.\r\n\t\t\t\t\t\t\tif(/Edge\\/\\d./i.test(navigator.userAgent)) {\r\n\t\t\t\t\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\t\t\t\t\twindow.location.href = $('#login-modal .error-page-message a').attr('href');\r\n\t\t\t\t\t\t\t\t}, 5000);\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\t$('#login-modal .login-box').replaceWith($(response).find('.login-main'));\r\n\t\t\t\t\t\t\tvalidator.initForm('form[id$=\"dwfrm_login\"]');\r\n\t\t\t\t\t\t\t_this.wishlistAjaxLogin('form[id$=\"dwfrm_login\"]');\r\n\t\t\t\t\t\t\t$('.login-wrapper .ajax-loader').hide();\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t} else {\r\n\t\t\t\t\tvar UrlParams = getUrlParameter('virtualtryon');\r\n\t\t\t\t\t\r\n\t\t\t\t\tif(UrlParams){\r\n\t\t\t\t\t\tvar finalUrl = window.location.origin+window.location.pathname+\"?\"+UrlParams;\r\n\t\t\t\t\t\twindow.location = finalUrl;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse{\r\n\t\t\t\t\t\tlocation.reload();\r\n\t\t\t\t\t}\r\n\t\t\t\t\t\r\n\t\t\t\t\tif ($('.pt_articles_listing').length) {\r\n\t\t\t\t\t\tvar offsetTop = '';\r\n\t\t\t\t\t\tif ($('.header-wrapper').css('position') === \"fixed\") {\r\n\t\t\t\t\t\t\toffsetTop = $('#main').offset().top;\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\toffsetTop = $('#main').offset().top - $('.header-wrapper').height();\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\t$(window).scrollTop(offsetTop);\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t});\r\n\t},\r\n\twishListButtonEnableDisable: function () {\r\n\t\t//Guest Checkout\r\n\t\tif ($('.login-wrapper').length) {\r\n\t\t\tvar emailButton2 = $('.login-wrapper button#login'),\r\n\t\t\t\temailInput2 = $('.login-wrapper input[type=\"email\"]'),\r\n\t\t\t\tpassword = $('.login-wrapper input[type=\"password\"]');\r\n\t\t\t$(emailInput2, password).on('blur', function () {\r\n\t\t\t\tvar email_regx = validator.regex.email;\r\n\t\t\t\tif (email_regx.test(emailInput2.val())) {\r\n\t\t\t\t\tif (!password.val().length || login.enableDisableSubmitButton(emailButton2)) {\r\n\t\t\t\t\t\temailButton2.prop('disabled', 'disabled');\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\temailButton2.prop('disabled', false);\r\n\t\t\t\t\t}\r\n\t\t\t\t} else {\r\n\t\t\t\t\temailButton2.prop('disabled', 'disabled');\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t\tif (!emailInput2.val().length || !password.val().length) {\r\n\t\t\t\temailButton2.prop('disabled', 'disabled');\r\n\t\t\t}\r\n\t\t}\r\n\t},\r\n\tenableDisableSubmitButton: function (el) {\r\n\t\tvar $saveBtn = $(el).closest('form').find('button[type=\"submit\"]');\r\n\t\tvar hasError = $saveBtn.closest('form').find('span.error');\r\n\t\tif (hasError.length) {\r\n\t\t\treturn true\r\n\t\t} else {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n}\r\n\r\nvar getUrlParameter = function getUrlParameter(Param) {\r\n var urlQueryString = window.location.search.substring(1),\r\n URLVariables = urlQueryString.split('&'),\r\n ParameterName,\r\n i;\r\n var finalQueryString = '';\r\n\r\n for (i = 0; i < URLVariables.length; i++) {\r\n ParameterName = URLVariables[i].split('=');\r\n\r\n if (ParameterName[0] !== Param) {\r\n \tif(finalQueryString){\r\n \t\tfinalQueryString = finalQueryString+\"&\"+ParameterName.join(\"=\");\r\n \t}else{\r\n \t\tfinalQueryString = ParameterName.join(\"=\");\r\n \t}\r\n }\r\n }\r\n \r\n return finalQueryString;\r\n};\r\n\r\n//Reset Password\r\n$(document).on('click', '.password-reset', function (e) {\r\n\te.preventDefault();\r\n\tvar ajaxUrl;\r\n\tajaxUrl = util.appendParamToURL(Urls.securePasswordReset, 'format', 'ajax')\r\n\t$.ajax({\r\n\t\ttype: 'GET',\r\n\t\turl: ajaxUrl\r\n\t}).done(function (response) {\r\n\t\tif (response !== '' && response !== null && response.error === undefined) {\r\n\t\t\tcustomModal.createCustomModal('forgot-password-modal');\r\n\t\t\t$('.forgot-password-modal .modal-body').html(response);\r\n\t\t\tvalidator.initForm('.forgot-password-modal form');\r\n\r\n\t\t\tvar $requestPasswordForm = $('[name$=\"_requestpassword\"]'),\r\n\t\t\t\t$submit = $requestPasswordForm.find('[name$=\"_requestpassword_send\"]');\r\n\r\n\t\t\t$($submit).on('click', function (e) {\r\n\t\t\t\tif (!$requestPasswordForm.valid()) {\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\t\t\t\te.preventDefault();\r\n\t\t\t\tvar data = $requestPasswordForm.serialize();\r\n\t\t\t\t// add form action to data\r\n\t\t\t\tdata += '&' + $submit.attr('name') + '=';\r\n\t\t\t\t// make sure the server knows this is an ajax request\r\n\t\t\t\tif (data.indexOf('ajax') === -1) {\r\n\t\t\t\t\tdata += '&format=ajax';\r\n\t\t\t\t}\r\n\t\t\t\t$.ajax({\r\n\t\t\t\t\ttype: 'POST',\r\n\t\t\t\t\turl: $requestPasswordForm.attr('action'),\r\n\t\t\t\t\tdata: data,\r\n\t\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\t\tif (typeof response === 'object' &&\r\n\t\t\t\t\t\t\t!response.success &&\r\n\t\t\t\t\t\t\tresponse.error === 'CSRF Token Mismatch') {\r\n\t\t\t\t\t\t\tpage.redirect(Urls.csrffailed);\r\n\t\t\t\t\t\t} else if (typeof response === 'string') {\r\n\t\t\t\t\t\t\t$('.forgot-password-modal .forgot-password-container').html(response);\r\n\t\t\t\t\t\t\t$('.forgot-password-modal .modal-body').scrollBox();\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t},\r\n\t\t\t\t\tfailure: function () {\r\n\t\t\t\t\t\t$('.forgot-password-modal .forgot-password-container').html('<h1>' + Resources.SERVER_ERROR + '</h1>');\r\n\t\t\t\t\t\t$('.forgot-password-modal .modal-body').scrollBox();\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t});\r\n\r\n\t\t\t$('.forgot-password-modal .modal-body').scrollBox();\r\n\t\t}\r\n\t});\r\n});\r\n\r\nmodule.exports = login;\r\n\r\n///Login Greetings\r\nif (window.User.isCustomerAuthenticated != false || window.User.isRegistered == true) {\r\n\tvar myDate = new Date();\r\n\tvar hrs = myDate.getHours();\r\n\tvar mins = myDate.getMinutes();\r\n\tvar time;\r\n\tvar greeting;\r\n\r\n\tmins = ('0' + mins).slice(-2);\r\n\ttime = hrs + mins;\r\n\ttime = Number(time);\r\n\r\n\tif (time >= 300 && time <= 1159) {\r\n\t\tgreeting = window.Resources.GREETINGS_MORNING;\r\n\t} else if (time >= 1200 && time <= 1700) {\r\n\t\tgreeting = window.Resources.GREETINGS_AFTERNOON;\r\n\t} else {\r\n\t\tgreeting = window.Resources.GREETINGS_EVENING;\r\n\t}\r\n\r\n\t$('#login-greetings').text(greeting);\r\n\t$('.menu-greeting #login-greetings').text(greeting);\r\n}\n},{\"./modal\":27,\"./page\":30,\"./pages/checkout/formPrepare\":38,\"./util\":93,\"./validator\":95}],26:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util'),\r\n\tbonusProductsView = require('./bonus-products-view'),\r\n\tsamples = require('./samples'),\r\n\tcustomModal = require('./modal'),\r\n\tcurrentLayout = require('./detect-layout'),\r\n\tcheckLayout = currentLayout.init(),\r\n\theader = require('./header');\r\n$(window).on('resize', function() {\r\n\tcheckLayout = currentLayout.init();\r\n});\r\n\r\nvar timer = {\r\n\tid: null,\r\n\tclear: function () {\r\n\t\tif (this.id) {\r\n\t\t\twindow.clearTimeout(this.id);\r\n\t\t\tdelete this.id;\r\n\t\t}\r\n\t},\r\n\tstart: function (duration, callback) {\r\n\t\tthis.id = setTimeout(callback, duration);\r\n\t}\r\n};\r\n\r\nvar minicart = {\r\n\tinit: function () {\r\n\t\tthis.$el = $('#mini-cart');\r\n\t\tthis.$elMobile = $('#mini-cart-mobile');\r\n\t\tthis.$content = this.$el.find('.mini-cart-content');\r\n\r\n\t\t// events\r\n\t\tthis.$el.find('.mini-cart-total').on('mouseenter', function () {\r\n\t\t\tif (this.$content.not(':visible')) {\r\n\t\t\t\tthis.slide();\r\n\t\t\t}\r\n\t\t}.bind(this));\r\n\r\n\t\tthis.$content.on('mouseenter', function () {\r\n\t\t\ttimer.clear();\r\n\t\t}).on('mouseleave', function () {\r\n\t\t\ttimer.clear();\r\n\t\t\ttimer.start(200, this.close.bind(this));\r\n\t\t}.bind(this));\r\n\t},\r\n\r\n\taddProduct: function (data) {\r\n\t\tvar show = this.show.bind(this);\r\n\r\n\t\treturn new Promise(function (resolve, reject) {\r\n\t\t\tif (data.hasOwnProperty(\"pid\") === false) {\r\n\t\t\t\treturn reject();\r\n\t\t\t}\r\n\r\n\t\t\t$.post(util.appendParamsToUrl(Urls.addProduct, {\r\n\t\t\t\t\"format\": \"ajax\",\r\n\t\t\t\t\"pid\": encodeURIComponent(data.pid),\r\n\t\t\t\t\"Quantity\": data.hasOwnProperty(\"Quantity\") ? data.Quantity : \"1\"\r\n\t\t\t}), function (data) {\r\n\t\t\t\tif (data.success === false) {\r\n\t\t\t\t\treturn reject(data.error);\r\n\t\t\t\t}\r\n\r\n\t\t\t\tshow(data);\r\n\t\t\t\tresolve();\r\n\t\t\t}).fail(function (err) {\r\n\t\t\t\treject(err.error);\r\n\t\t\t});\r\n\t\t});\r\n\t},\r\n\r\n\taddAllToWishlistFromContent: function (pids) {\r\n\t\treturn window.location.href = Urls.addAllFromContent\r\n\t\t\t+ \"?pid=\" + pids.join(\":1,\") // pass qty of one\r\n\t\t\t+ \"&cid=\" + window.contentAssetID\r\n\t\t\t+ \"&hashparam=\" + window.location.hash.split('#')[1];\r\n\t},\r\n\r\n\taddAllProducts: function (pids, to) {\r\n\t\tif (!pids || pids.length === 0) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar isWishlist = (to && to.toLowerCase() === \"wishlist\");\r\n\t\tif (isWishlist && !window.User.isCustomerAuthenticated) {\r\n\t\t\tif (window.contentAssetID) {\r\n\t\t\t\treturn this.addAllToWishlistFromContent(pids);\r\n\t\t\t} else {\r\n\t\t\t\tvar footerURL = $('footer') ? $('footer').data('url') : null;\r\n\t\t\t\twindow.location = util.appendParamToURL(Urls.showLogin, 'original', footerURL);\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tvar show = this.show.bind(this);\r\n\t\tvar urlName = Urls.addMultipleProducts;\r\n\r\n\t\tif (isWishlist) {\r\n\t\t\turlName = Urls.wishlistAddAll.split(window.location.hostname)[1];\r\n\t\t}\r\n\t\tvar $data = new FormData();\r\n\t\t$data.append( window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n\t\t$data.append( 'pid', pids );\r\n\r\n\t\tvar isTryOn = (to && to.toLowerCase() === \"virtual-tryon\");\r\n\t\tif(isTryOn){\r\n\t\t\tvar webcamMode = $('#webcam-status').attr('mode');\r\n\t\t\t$data.append( 'webcamMode', webcamMode);\r\n\t\t}\r\n\t\t\r\n\t\t$.ajax({\r\n \t\turl: util.appendParamToURL(urlName, 'format', 'ajax'),\r\n \t\tdata: $data,\r\n \t\tprocessData: false,\r\n \t\tcontentType: false,\r\n \t\tmethod: 'POST'\r\n \t}).done(function (data) {\r\n \t\tif (data.error === \"CSRF Token Mismatch\") {\r\n \t\t\tpage.redirect(Urls.csrffailed);\r\n \t\t} else if (data.error === \"Basket Limit Exceed\") {\r\n \t\t\tvar url = util.appendParamToURL(Urls.basketLimitExceed, 'format', 'ajax');\r\n \t\t\t$.ajax({\r\n\t\t\t\t\turl: url,\r\n\t\t\t\t\tdataType: 'html',\r\n\t\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\t\tcustomModal.createCustomModal('addProduct-error-modal');\r\n\t\t\t\t\t\t$('.addProduct-error-modal').find('.modal-body').html(response).scrollBox();\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n \t\t} else { \t\t\r\n\t\t\t\tif (isWishlist) {\r\n\t\t\t\t\twindow.location.href = window.location.href;\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\t\r\n\t\t\t\tif (data) {\r\n\t\t\t\t\tvar $errEle = $(\"#all-a2c-error\");\r\n\t\t\t\t\t$errEle.hide();\r\n\t\t\t\t\tshow(data, $('#add-all-to-cart'),$('#add-all-to-cart'));\r\n\t\t\t\t\tif(isTryOn) { \r\n\t\t\t\t\t\t$('.bag-counter').text($(data).find('.counter-num').val());\r\n\t\t\t\t\t\t\t$('button.addToBag').css('opacity', '0').css('pointer-events','none');\r\n\t\t\t\t\t\t\t$('.addToBag-counter').css('opacity', '1');\r\n\t\t\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\t\t\t$('.addToBag-counter').css('opacity', '0');\r\n\t\t\t\t\t\t\t$('button.addToBag').css('opacity', '1').css('pointer-events','auto');\r\n\t\t\t\t\t\t}, 3000);\r\n\t\t\t\t\t\t\t$('button.addToBag').addClass('productAdded');\r\n\t\t\t\t\t}\r\n\t\t\t\t} else {\r\n\t\t\t\t\tvar msg = Resources.BUYALL_LIMIT_EXCEED;\r\n\t\t\t\t\tvar $errEle = $('#all-a2c-error');\r\n\t\t\t\t\t$errEle.html(msg).slideDown(500);\r\n\t\t\t\t\t$('#addToBag').addClass('disable');\r\n\t\t\t\t\t$('.addtobag-modal').addClass('active');\r\n\t\t\t\t\tvar txt = Resources.MAX_LIMIT_EXCEED;\r\n\t\t\t\t\t$('.addtobag-modal .stock-msg').text(txt);\r\n\t\t\t\t\tif($('.addtobag-modal').hasClass('active')) {\r\n\t\t\t\t\t\tsetTimeout(function(){\r\n\t\t\t\t\t\t\t$('.addtobag-modal').removeClass('active');\r\n\t\t\t\t\t\t}, 3000);\r\n\t\t\t\t\t}\t\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description Shows the given content in the mini cart\r\n\t * @param {String} A HTML string with the content which will be shown\r\n\t */\r\n\tshow: function (html, addToCartButton, addedToCartMsgHolder) {\r\n\t\tvar headerHight = $('.header-wrapper').height() + 'px';\r\n\t\tif ($('.header-wrapper').css('position') != 'fixed') {\r\n\t\t\t$('.header-wrapper').css('position', 'fixed');\r\n\t\t\t$('.top-wrapper').css('padding-bottom', headerHight);\r\n\t\t}\r\n\t\tif (html && $('.minicart-link').length > 0) {\r\n\t\t\t$('.minicart-link.desktop-only, .minicart-link.mobile-only').html(html);\r\n\t\t\tif (checkLayout == 'mobile') {\r\n\t\t\t\t$('.minicart-link.mobile-only').find('.mini-cart-content').remove();\r\n\t\t\t\t$('body').addClass('add-to-confirmation');\r\n\t\t\t}\r\n\t\t\tif ((checkLayout == 'desktop') || (!$('.pdp-page').hasClass('giaran-body'))) {\r\n\t\t\t\tif ($('.added-to-cart-products').length) {\r\n\t\t\t\t\t$('.minicart').addClass('confirmation-active');\r\n\t\t\t\t\tif(radialTimerInterval) {\r\n\t\t\t\t\t\tclearInterval(radialTimerInterval);\r\n\t\t\t\t\t}\r\n\t\t\t\t\tstartOrResumeInterval(0,addToCartButton,addedToCartMsgHolder);\r\n\t\t\t\t\tif($('.pdp-page').length) {\r\n\t\t\t\t\t\tvar scrollTop = 100;\r\n\t\t\t\t\t\tif(document.documentElement.scrollTop > scrollTop){\r\n\t\t\t\t\t\t\t$('.minicart').addClass('fixed-confirmation');\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t$('.sb-container').scrollBox();\r\n\t\t}\r\n\t\t// identify if we can show the sample overlay\r\n\t\tvar canShowSamples = false;\r\n\r\n\t\tif ((bonusProductsView.hasBonusOptions() === false && samples.canShowSelection()) && canShowSamples) {\r\n\t\t\tsamples.showSelection();\r\n\t\t}\r\n\r\n\t\tbonusProductsView.loadBonusOption();\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Slides down and show the contents of the mini cart\r\n\t */\r\n\tslide: function () {\r\n\t\ttimer.clear();\r\n\t\t// show the item\r\n\t\tthis.$content.slideDown('slow');\r\n\t\tthis.$content.attr('aria-expanded', true);\r\n\t\t// after a time out automatically close it\r\n\t\ttimer.start(6000, this.close.bind(this));\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Closes the mini cart with given delay\r\n\t * @param {Number} delay The delay in milliseconds\r\n\t */\r\n\tclose: function (delay) {\r\n\t\t$('.minicart').removeClass('confirmation-active');\r\n\t\t$('body').removeClass('add-to-confirmation')\r\n\t\t$('.minicart').hide();\r\n\t\t$('#add-all-to-cart').removeAttr('disabled').text($('#add-all-to-cart').attr('title'));\r\n\t\t$('.add-to-cart').removeAttr('disabled');\r\n\t\t$('.add-to-cart').find('.label').text(Resources.ADD_TO_CART);\r\n\t\t$('.add-to-cart-in-stock .add-to-cart').text(Resources.ADD_TO_CART);\r\n\t\t\r\n\t},\r\n\tremove: function (pid) {\r\n\t\t$('.mini-cart-products .ajax-loader').show();\r\n\t\tvar $data = new FormData();\r\n\t\t$data.append( window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n\t\t$data.append( 'pid', pid);\r\n\t\t$.ajax({\r\n \t\turl: util.appendParamToURL(Urls.removeMiniCartLineItem, 'format', 'ajax'),\r\n \t\tdata: $data,\r\n \t\tprocessData: false,\r\n \t\tcontentType: false,\r\n \t\tmethod: 'POST'\r\n \t}).done(function (data) {\r\n \t\tif (data.error === \"CSRF Token Mismatch\") {\r\n \t\t\twindow.location.reload();\r\n \t\t} else { \t\t\r\n\t\t\t\tif (data) {\r\n\t\t\t\t\t$('.minicart').parent('li').html(data);\r\n\t\t\t\t\t$('.sb-container').scrollBox();\r\n\t\t\t\t\tif($('.pdp-page').hasClass('giaran-body') && $('.addToBag').hasClass('disable')){\r\n\t\t\t\t\t\tvar webcamMode = $('#webcam-status').attr('mode');\r\n\t\t\t\t\t\tvar isAddToBagDisable = false;\r\n\t\t\t\t\t\tif(webcamMode == 'multi'){\r\n\t\t\t\t\t\t\tvar multisplit1 = $('#multisplit').attr('screen-1');\r\n\t\t\t\t\t\t\tvar multisplit2 = $('#multisplit').attr('screen-2');\r\n\t\t\t\t\t\t\tvar multisplit3 = $('#multisplit').attr('screen-3');\r\n\t\t\t\t\t\t\tvar multisplit4 = $('#multisplit').attr('screen-4');\t\t\t\t\r\n\t\t\t\t\t\t\tisAddToBagDisable = ((multisplit1!=\"\") && typeof(multisplit1) !== undefined && multisplit1 == pid) ? true : ((multisplit2!=\"\") && typeof(multisplit2) !== undefined && multisplit2 == pid) ? true : ((multisplit3!=\"\") && typeof(multisplit3) !== undefined && multisplit3 == pid) ? true : ((multisplit4!=\"\") && typeof(multisplit4) !== undefined && multisplit4 == pid) ? true : false;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tvar currentPid = $('#pid').val();\r\n\t\t\t\t\t\t\tisAddToBagDisable = ((currentPid!=\"\") && typeof(currentPid) !== undefined && currentPid == pid) ? true : false;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tif(isAddToBagDisable){\r\n\t\t\t\t\t\t\t$('.addToBag').removeClass('disable');\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}).fail(function (err) {\r\n\t\t\treject(err.error);\r\n\t\t});\r\n\t},\r\n\thideBuyAllErrMsg: function (pid) {\r\n\t\tif (typeof $('#pids').val() !== typeof undefined) {\r\n\t\t\tvar $pid = pid.toString();\r\n\t\t\tif ($('#pids').val().indexOf($pid) > -1) {\r\n\t\t\t\t$('#all-a2c-error').hide();\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n};\r\n\r\n/**\r\n * Global add to cart\r\n */\r\n$('.global-add-to-cart').on('click', function () {\r\n\tvar _this = $(this);\r\n\tvar skuData = _this.data('sku');\r\n\tminicart.addProduct({\r\n\t\tpid: skuData\r\n\t});\r\n});\r\n\r\nfunction miniCartScroll() {\r\n\tif (checkLayout == 'desktop') {\r\n\t\t$('.minicart').removeAttr('style');\r\n\t\tif ($('.minicart-link .sb-container .sb-content').length === 0) {\r\n\t\t\t$('.sb-container').scrollBox();\r\n\t\t} else {\r\n\t\t\t$('.minicart-link .sb-container .sb-content').removeAttr('style');\r\n\t\t\t$(window).trigger('resize.scrollBox');\r\n\t\t}\r\n\t}\r\n}\r\n\r\n$(\".courtesy-nav li.minicart-link\").hover(function(){ \r\n\tminiCartScroll();\r\n});\r\n\r\n$(document).on('mouseover', '.minicart-link .bag-icon', function () {\r\n\tminiCartScroll();\r\n\t$(\".contactus-link\").removeClass(\"hovered\");\r\n}).on('click', '.minicart-link > a:not(.empty-cart)', function(event) {\r\n\theader.utilityNavTouchHandler(event, this);\r\n\tminiCartScroll();\r\n\t$(\".contactus-link\").removeClass(\"hovered\");\r\n}).on('click', '.remove-link-wrapper .remove-link', function () {\r\n\tminicart.remove($(this).data('pid'));\r\n\tminicart.hideBuyAllErrMsg($(this).data('pid'));\r\n\t$('.minicart-link').removeClass('hovered');\r\n}).on('click', '.minicart-close,.radial-timer-wrapper', function () {\r\n\tminicart.close();\r\n\t$('.minicart-link').removeClass('hovered');\r\n\tif(radialTimerInterval){\r\n\t\tclearInterval(radialTimerInterval);\r\n\t}\r\n});\r\n\r\nfunction setProgress(val){\r\n var $circle = $('#radial-timer #radial-timer-progress');\r\n if (isNaN(val)) {\r\n val = 100;\r\n }\r\n else {\r\n var r = $circle.attr('r');\r\n var c = Math.PI * (r * 2);\r\n if (val < 0) { val = 0; }\r\n if (val > 100) { val = 100; }\r\n var pct = ((100 - val) / 100) * c;\r\n $circle.css({ strokeDashoffset: pct });\r\n $('#radial-timer-percent').attr('data-pct', val);\r\n }\r\n}\r\n\r\nvar isRadialTimerPaused = false;\r\nvar lastRadialTimerValue = 0;\r\nvar radialTimerInterval;\r\n\r\nfunction startOrResumeInterval(i, addToCartButton, addedToCartMsgHolder) {\r\n\tvar currentPosition = $('.header-wrapper').css('position');\r\n\tif(addedToCartMsgHolder!==undefined && addedToCartMsgHolder !==null) {\r\n\t\tif(addToCartButton.attr('id')==\"add-all-to-cart\") {\r\n\t\t\taddedToCartMsgHolder.text(Resources.ADDED_ALL_TO_CART);\r\n\t\t}else {\r\n\t\t\taddedToCartMsgHolder.text(Resources.ADDED_TO_CART);\r\n\t\t}\r\n\t\taddToCartButton.attr('disabled',true);\t\r\n\t}\r\n radialTimerInterval = setInterval(function () {\r\n setProgress(i);\r\n if (isRadialTimerPaused) {\r\n clearInterval(radialTimerInterval);\r\n lastRadialTimerValue = i;\r\n } else if (i == 100) {\r\n\t\t\tclearInterval(radialTimerInterval);\r\n\t\t\tminicart.close();\r\n\t\t\t$('.minicart-link').removeClass('hovered');\r\n\t\t\t$('.header-wrapper').css('position', currentPosition);\r\n\t\t\t$('.top-wrapper').removeAttr('style');\r\n\t\t\t$('.minicart').removeClass('fixed-confirmation');\r\n lastRadialTimerValue = 0;\r\n } else {\r\n i++;\r\n }\r\n }, 30);\r\n}\r\n\r\n$(document).on('mouseover','#minicart.confirmation-active',function () {\r\n\tif(window.outerWidth>768){\r\n\t\tisRadialTimerPaused = true;\r\n\t}\r\n}).on('mouseleave','#minicart.confirmation-active',function () {\r\n isRadialTimerPaused = false;\r\n startOrResumeInterval(lastRadialTimerValue);\r\n});\r\nmodule.exports = minicart;\n},{\"./bonus-products-view\":5,\"./detect-layout\":13,\"./header\":20,\"./modal\":27,\"./samples\":82,\"./util\":93}],27:[function(require,module,exports){\nvar util = require('./util'),\r\n\tmodalContainer = '';\r\n\r\nfunction customModal() {\r\n\t$(document).on('click', '[data-modal=\"true\"]', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar elementID = $(this).attr('data-modal-id'),\r\n\t\t\tmodal = document.getElementById(elementID);\r\n\t\tcustomModalOpen(modal);\r\n\t});\r\n\t$(document).on('click', '.modal-close, .modal-close-outer, .modal-close-btn', function () {\r\n\t\tvar modal = $(this).closest('.modal-overlay');\r\n\t\tif ($('.modal-overlay.bonus-sample-selection.error').length > 0) {\r\n\t\t\t$('.modal-overlay.bonus-sample-selection').removeClass('error');\r\n\t\t}\r\n\t\tif($('.modal-overlay').attr('id') == 'quickview-modal' && $('.item-edit-details').hasClass('remove-click')){\r\n\t\t\t$('.item-edit-details').removeClass('remove-click');\r\n\t\t}\r\n\t\tcustomModalClose(modal);\r\n\t});\r\n}\r\n\r\nfunction createCustomModal(id, container) {\r\n\tvar modalStructure = [],\r\n\t\tmodal = document.createElement('div');\r\n\r\n\tmodalContainer = container || 'body';\r\n\tmodal.id = id;\r\n\tmodal.className = 'modal-overlay ' + id;\r\n\t$(modal).html('<div class=\"modal-close-outer\"></div><div class=\"modal-wrapper\"><div class=\"icon-close modal-close\"></div><div class=\"modal-body\"></div></div>');\r\n\tmodalStructure.push(modal);\r\n\t$(modalContainer).append(modalStructure);\r\n\tcustomModalOpen(modal);\r\n\tcustomModalRemove(modal);\r\n}\r\n\r\nfunction customModalOpen(modal) {\r\n\t$(modal).show();\r\n\tif (modalContainer === '' || modalContainer === 'body') {\r\n\t\t$('html').addClass('modal-open');\r\n\t}\r\n}\r\n\r\nfunction customModalClose(modal) {\r\n\t$(modal).hide();\r\n\t$('html').removeClass('modal-open');\r\n}\r\n\r\nfunction customModalRemove(modal) {\r\n\t$(document).on('click', '.modal-close, .modal-close-outer', function () {\r\n\t\tif (!$(this).closest('.modal-overlay').hasClass('data-modal')) {\r\n\t\t\t$(this).closest('.modal-overlay').remove();\r\n\t\t}\r\n\t\t$('html').removeClass('modal-open');\r\n\t});\r\n}\r\n\r\nmodule.exports.modal = function () {\r\n\treturn customModal();\r\n};\r\nexports.createCustomModal = function (id, container) {\r\n\tcreateCustomModal(id, container)\r\n};\n},{\"./util\":93}],28:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util'),\r\n\tvalidator = require('./validator'),\r\n\tindex = require('./pages/product/index'),\r\n\tcustomModal = require('./modal');\r\n\r\n\r\nfunction isNewsletterEnabled() {\r\n\t$('.register-newsletter').removeClass('hide');\r\n\t$('.newsletter-success').addClass('hide');\r\n\r\n\tif (!enableNewsletter) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tvar hasViewedNewsletter = [siteId, 'hasViewedNewsletter'].join('-');\r\n\tvar isViewedNewsletterValid = util.getCookieSelector(hasViewedNewsletter);\r\n\r\n\tif (isViewedNewsletterValid === 'true') {\r\n\t\treturn;\r\n\t}\r\n\r\n\tvar shouldDisplayNewsletter = [siteId, 'shouldDisplayNewsletter'].join('-');\r\n\tvar isDisplayedNewsletterValid = util.getCookieSelector(shouldDisplayNewsletter);\r\n\r\n\tif (isDisplayedNewsletterValid === 'false') {\r\n\t\treturn;\r\n\t}\r\n\r\n\tutil.setCookie(hasViewedNewsletter, false, newsletterCookieDuration, 'none');\r\n\tutil.setCookie(shouldDisplayNewsletter, true, newsletterCookieDuration, 'none');\r\n\r\n\tsetNewsletterCounterCookie();\r\n\tsignUpEventListener();\r\n\tNewsletterModal();\r\n}\r\n\r\nfunction setNewsletterCounterCookie() {\r\n\tvar pageViewCount = [siteId, 'pageViewCount'].join('-');\r\n\tvar isCookieValid = util.getCookieSelector(pageViewCount);\r\n\tvar counterCookie = Number(isCookieValid);\r\n\r\n\tif (!isCookieValid) {\r\n\t\tcounterCookie = 0;\r\n\t} else {\r\n\t\tcounterCookie += 1;\r\n\t}\r\n\r\n\tutil.setCookie(pageViewCount, counterCookie, newsletterCookieDuration, 'none');\r\n}\r\n\r\nfunction signUpEventListener() {\r\n\t$(document)\r\n\t\t.on('submit', '.modal-content .news-letter-form', function (e) {\r\n\t\t\te.preventDefault();\r\n\r\n\t\t\tvar emailAddress = $('.modal-content input').val();\r\n\t\t\tvalidateNewsletterEmail(true, emailAddress);\r\n\t\t})\r\n\r\n\t\t.on('keyup blur', '.modal-content input', function (e) {\r\n\t\t\tvar emailAddress = $(this).val();\r\n\r\n\t\t\t$('.modal-content button').prop('disabled', false);\r\n\t\t\t$('.modal-content button').css('color', '');\r\n\r\n\t\t\tif (!emailAddress.length) {\r\n\t\t\t\t$('.modal-content button').prop('disabled', true);\r\n\t\t\t\t$('.modal-content button').css('color', '#FFFFFF');\r\n\t\t\t}\r\n\t\t});\r\n}\r\n\r\nfunction newsletterHeader() {\r\n\t$(document).on('submit', '.newsletter-content .news-letter-form', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tvar emailAddress = $('.news-letter-form input.email').val();\r\n\t\tvalidateNewsletterEmail(false, emailAddress);\r\n\t});\r\n}\r\n\r\nfunction validateNewsletterEmail(isModal, emailAddress) {\r\n\tvar validateClass = '.news-letter-form';\r\n\r\n\tif (isModal) {\r\n\t\tvalidateClass = '.modal-content';\r\n\t}\r\n\r\n\t$(validateClass + ' input').removeAttr('aria-invalid');\r\n\t$(validateClass + ' input').removeAttr('aria-describedby');\r\n\t$(validateClass + ' input').removeAttr('class');\r\n\t$(validateClass + ' span').remove();\r\n\r\n\tif (!util.validateEmail(emailAddress)) {\r\n\t\tvar errorMessage;\r\n\r\n\t\tif (isModal) {\r\n\t\t\terrorMessage = [\r\n\t\t\t\t'<span id=\"-error\" class=\"error\">',\r\n\t\t\t\tResources.VALIDATE_EMAIL,\r\n\t\t\t\t'</span>'\r\n\t\t\t].join('');\r\n\r\n\t\t\t$(validateClass + ' .promotions-container').after(errorMessage);\r\n\t\t\t$(validateClass + ' button').prop('disabled', true);\r\n\t\t} else {\r\n\t\t\terrorMessage = [\r\n\t\t\t\t'<span id=\"-error\" class=\"error\">',\r\n\t\t\t\tResources.VALIDATE_EMAIL,\r\n\t\t\t\t'</span>'\r\n\t\t\t].join('');\r\n\r\n\t\t\t$(validateClass + ' input').before(errorMessage);\r\n\t\t}\r\n\t}\r\n\r\n\tif (isModal) {\r\n\t\tsetHasViewedNewsletterCookie(true);\r\n\t}\r\n\r\n\tif ($('.news-letter-form').length > 0) {\r\n\t\tvar dataToPost = 'dwfrm_newsletter_subscribe=dwfrm_newsletter_subscribe' + '&' + $('.news-letter-form').serialize() + '&source=' + (isModal ? 'modal' : 'header');\r\n\t\t$.ajax({\r\n\t\t\ttype: 'POST',\r\n\t\t\turl: $('.news-letter-form').attr('action'),\r\n\t\t\tasync: false,\r\n\t\t\tdata: dataToPost,\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\tif (isModal) {\r\n\t\t\t\t\t$(document).trigger(\"clicknewsletter\", {\r\n\t\t\t\t\t\t\"siteloc\": \"pop-up\"\r\n\t\t\t\t\t});\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$('.newsletter-content').html(response);\r\n\t\t\t\t\t$(document).trigger(\"clicknewsletter\", {\r\n\t\t\t\t\t\t\"siteloc\": \"navbar\"\r\n\t\t\t\t\t});\r\n\t\t\t\t\t$('#newsletter-modal').trigger('resize');\r\n\t\t\t\t}\r\n\t\t\t\tif (window.universal_variable !== undefined && !window.universal_variable.user.hasOwnProperty('user_id')) {\r\n\t\t\t\t\twindow.universal_variable.user.email = emailAddress;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n}\r\n\r\nfunction NewsletterModal() {\r\n\t$(document).on('click', '.newsletter-modal-btn, .newsletter-full-modal-btn', function (e) {\r\n\t\te.preventDefault();\r\n\t\tif ($('.newsletter-modal').length === 0) {\r\n\t\t\tvar ajaxUrl;\r\n\t\t\tajaxUrl = util.appendParamToURL(Urls.showNewsletter, 'format', 'ajax');\r\n\r\n\t\t\tif (this.classList.contains('newsletter-full-modal-btn')) {\r\n\t\t\t\tajaxUrl = util.appendParamToURL(Urls.showFullNewsletter, 'format', 'ajax');\r\n\t\t\t}\r\n\t\t\t$.ajax({\r\n\t\t\t\ttype: 'GET',\r\n\t\t\t\turl: ajaxUrl\r\n\t\t\t}).done(function (response) {\r\n\t\t\t\tif (response !== '' && response !== null && response.error === undefined) {\r\n\t\t\t\t\tcustomModal.createCustomModal('newsletter-modal');\r\n\t\t\t\t\t$('.newsletter-modal').find('.modal-body').html(response);\r\n\t\t\t\t\tif (navigator.userAgent.match(/(iPhone|iPad)/)) {\r\n\t\t\t\t\t\t$('body').addClass('body-fixed');\r\n\t\t\t\t\t}\r\n\t\t\t\t\tindex.bodyPositionFixed('newsletter-modal');\r\n\t\t\t\t\tvalidator.initForm('.newsletter-modal form');\r\n\t\t\t\t\t$('.newsletter-modal .modal-body').scrollBox();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t}).on('click', '.newsletter-modal .continue-shopping .primary', function (e) {\r\n\t\t$('.newsletter-modal .modal-close').trigger('click');\r\n\t});\r\n}\r\n\r\nfunction setHasViewedNewsletterCookie(val) {\r\n\tvar hasViewedNewsletter = [siteId, 'hasViewedNewsletter'].join('-');\r\n\tutil.setCookie(hasViewedNewsletter, val, newsletterCookieDuration, 'none');\r\n}\r\n\r\nexports.isNewsletterEnabled = isNewsletterEnabled;\r\nexports.newsletterHeader = newsletterHeader;\n},{\"./modal\":27,\"./pages/product/index\":52,\"./util\":93,\"./validator\":95}],29:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util'),\r\n\tcustomModal = require('./modal');\r\n\r\nexports.init = function init() {\r\n\t$('.bottom-section-left select').on( \"selectmenuchange change\", function( event ) {\r\n\t\tevent.preventDefault();\r\n\t\t$(this).parents('.bottom-section').find('.view-detail-btn-container a').removeClass('disabled');\r\n\t\t$(this).selectmenu('refresh');\r\n\t});\r\n\t\r\n\t//pdp replenishment edit button\r\n\t$(document).on('click', '.order-replenishment-edit', function() {\r\n\t\tif ($(this).data('url')) {\r\n\t\t\tvar hash = $(this).attr('href');\r\n\t\t\twindow.location = $(this).data('url')+hash;\r\n\t\t}\r\n\t});\r\n\r\n\t$(window).on('load resize', function () {\r\n\t\t$(document).on('click', '.replenishment .info-link', function() {\r\n\t\t\t$('.replenishment-info-modal .modal-body').scrollBox();\r\n\t\t});\r\n\t});\r\n\t\r\n\t//Update the Order replenishment suggestion based on product variant sizeVariations\t\r\n\t$(\"input[name=size]\").on('click', function() {\r\n\t\t//Get the recommendation from the input data-isreplenishable\r\n\t\tvar replennumber = this.getAttribute('data-isreplenishable');\r\n\r\n\t\t//Construct the replenishment message\r\n\t\tvar replenmsg = \"\";\r\n\t\tif(replennumber !== null && replennumber > 0){\r\n\t\t\tvar message = Resources.RECOMMENDED_REPLENISHMENT;\r\n\r\n\t\t\treplenmsg += message;\r\n\t\t\treplenmsg += replennumber;\t\t\t\r\n\t\t\treplenmsg += \" \";\r\n\t\t\treplenmsg += replennumber > 1 ? \"${spanPlural}\" : \"${span}\";\r\n\t\t\treplenmsg += \".\";\r\n\t\t}\r\n\r\n\t\t//Assign it to replenreccomendation\r\n\t\t$(\"#replenrecommendation\").text(replenmsg);\r\n\t});\r\n\t\r\n\t//My Account Replenishment Update Button\r\n\t$( \".replenishmentupdate\" ).on('click', function(e) {\r\n\t\te.preventDefault();\r\n\t\tvar href = $(this).attr('href');\r\n\t\tvar rid = getQueryValue(\"rid\", href);\r\n\t\tvar pid = getQueryValue(\"pid\", href);\r\n\t\tvar rdays = $(\".\" + rid + \"_days\").val();\r\n\t\tvar replenishmentQuantity = $(\".\" + rid + \"_quantity\").val();\r\n\t\tvar $data = new FormData();\r\n\t\t$data.append('rid',rid);\r\n\t\t$data.append('pid',pid);\r\n\t\t$data.append('rdays',rdays);\r\n\t\t$data.append('qty',replenishmentQuantity);\r\n\t\t$data.append(window.User.CSRFTokenName,window.User.CSRFTokenValue);\r\n\t\t$.post({ \r\n\t\t\turl : util.appendParamToURL(Urls.updateReplenishment,'format', 'ajax'),\r\n\t\t\tprocessData: false,\r\n\t\t contentType: false,\t\r\n\t\t data : $data,\t\t\r\n\t\t\tsuccess: function(data, textStatus, jqXHR) {\r\n\t\t\t\twindow.location = Urls.showReplenishment;\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\r\n\t// Gets the query string value if it exists, returns null if it does not.\r\n\t// Example: getQueryValue(\"reset\") will return the value true if the URL is http://www.domain.com?reset=true\r\n\tfunction getQueryValue(str,href) \r\n\t{\r\n\t\tvar queryString = href;\r\n\t\tvar queries = queryString.split(\"?\");\r\n\t\tfor (var i=0;i<queries.length;i++) {\r\n\t\t\tvar ft = queries[i].split(\"&\");\r\n\t\t\tfor(var j=0;j<ft.length;j++) {\r\n\t\t\t\tvar id = ft[j].split(\"=\");\r\n\t\t\t\tif(id[0]==str) {\r\n\t\t\t\t\treturn id[1];\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn null;\r\n\t}\r\n\t//My Account Replenishment Cancel Button\r\n\t$('.replenishmentcancel').on('click', function(e) {\r\n\t\te.preventDefault();\r\n\t\tvar href = $(this).attr('href');\r\n\t\tvar rid = getQueryValue(\"rid\", href);\r\n\t\tvar modalBody = $('#cancel-replenishment').html();\r\n\t\tcustomModal.createCustomModal('replenishment-cancel-modal' );\r\n\t\t$('.replenishment-cancel-modal').find('.modal-body').html(modalBody);\r\n\t\t\r\n\t\t$('.modal-btn-confirm').on('click', function() {\r\n\t\t\tvar $data = new FormData();\r\n\t\t\t$data.append('rid',rid);\r\n\t\t\t$data.append(window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n\t\t\t$.post({\r\n\t\t\t\turl: util.appendParamToURL(Urls.cancelReplenishment),\r\n\t\t\t\tprocessData: false,\r\n\t\t\t contentType: false,\r\n\t\t\t\tdata: $data,\r\n\t\t\t\tsuccess: function(data, textStatus, jqXHR) {\r\n\t\t\t\t\twindow.location = Urls.showReplenishment;\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t});\r\n\t\t\r\n\t\t$('.modal-btn-keep').on('click', function() {\r\n\t\t\t$('.replenishment-cancel-modal .modal-close').trigger('click');\r\n\t\t});\r\n\t});\r\n\r\n\t//Replenishment info popup close \r\n\t$(document).on('click','.rep-modal-close', function(e){\r\n\t\te.preventDefault();\r\n\t\tvar modal = $(this).closest('.modal-overlay');\r\n\t\t$(modal).hide();\r\n\t\t$('html').removeClass('modal-open');\r\n\t});\r\n};\r\n\n},{\"./modal\":27,\"./util\":93}],30:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util');\r\n\r\nvar page = {\r\n\ttitle: '',\r\n\ttype: '',\r\n\tparams: util.getQueryStringParams(window.location.search.substr(1)),\r\n\tredirect: function (newURL) {\r\n\t\tsetTimeout(function () {\r\n\t\t\twindow.location.href = newURL;\r\n\t\t}, 0);\r\n\t},\r\n\trefresh: function () {\r\n\t\tsetTimeout(function () {\r\n\t\t\twindow.location.assign(window.location.href);\r\n\t\t}, 500);\r\n\t}\r\n};\r\n\r\nmodule.exports = page;\n},{\"./util\":93}],31:[function(require,module,exports){\n'use strict';\r\n\r\nvar giftcert = require('../giftcert'),\r\n\ttooltip = require('../tooltip'),\r\n\tutil = require('../util'),\r\n\tpage = require('../page'),\r\n\tlogin = require('../login'),\r\n\tcustomModal = require('../modal'),\r\n\tcardValidation = require('./checkout/card-validation'),\r\n\tvalidator = require('../validator'),\r\n\tsearch = require('./search'),\r\n\tproductTile = require('../product-tile'),\r\n\tcurrentLayout = require('../detect-layout'),\r\n\tindex = require('./product/index'),\r\n\tcurrLayout = currentLayout.init(),\r\n\tactimirror = require('../pages/actimirror'),\r\n\tvisualizerresult = require('../pages/visualizerresult');\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Toggles the list of Orders\r\n */\r\nfunction toggleFullOrder() {\r\n\t$('.order-items')\r\n\t\t.find('li.hidden:first')\r\n\t\t.prev('li')\r\n\t\t.append('<a class=\"toggle\">View All</a>')\r\n\t\t.children('.toggle')\r\n\t\t.on('click', function () {\r\n\t\t\t$(this).parent().siblings('li.hidden').show();\r\n\t\t\t$(this).remove();\r\n\t\t});\r\n}\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Binds the events on the address form (edit, create, delete)\r\n */\r\nfunction initAddressEvents() {\r\n\tvar addresses = $('#addresses');\r\n\tif (addresses.length === 0) {\r\n\t\treturn;\r\n\t}\r\n\r\n\t$(document)\r\n\t\t.on('click', '.address-create', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\t$('.ajax-loader').show();\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: util.appendParamToURL(Urls.checkoutAddAccountAddress, 'format', 'ajax'),\r\n\t\t\t\tdataType: 'html',\r\n\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\tif (response.indexOf('header-wrapper') === -1) {\r\n\t\t\t\t\t\tindex = require('./product/index');\r\n\t\t\t\t\t\tcustomModal.createCustomModal('edit-add-address');\r\n\t\t\t\t\t\t$('.edit-add-address').find('.modal-body').html(response);\r\n\t\t\t\t\t\tindex.bodyPositionFixed('edit-add-address');\r\n\t\t\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}).always(function (data) {\r\n\t\t\t\t$('select').selectmenu();\r\n\t\t\t\t$('.edit-add-address .modal-body').scrollBox();\r\n\t\t\t\tvalidator.initStateValidation();\r\n\t\t\t\tvalidator.initForm('form[id=\"EditAddressForm\"]');\r\n\r\n\t\t\t\t//Remove state field error element\r\n\t\t\t\tsetTimeout(function () {\r\n\t\t\t\t\t$('.state .error-placement').remove();\r\n\t\t\t\t\t$('.state span.ui-selectmenu-button').removeClass('dropdownerror');\r\n\t\t\t\t}, 500);\r\n\t\t\t});\r\n\r\n\t\t})\r\n\t\t.on('click', '.account-address-edit', function (evt) {\r\n\t\t\tvar element = document.getElementById(evt.currentTarget.id);\r\n\t\t\tvar addressID = element.dataset.addressId;\r\n\t\t\tvar addressCode = element.dataset.addressCode;\r\n\t\t\tvar url = Urls.checkoutEditAccountAddress + encodeURIComponent(addressID);\r\n\t\t\t$('.ajax-loader').show();\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: util.appendParamToURL(url, 'format', 'ajax'),\r\n\t\t\t\tdataType: 'html',\r\n\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\tif (response.indexOf('header-wrapper') === -1) {\r\n\t\t\t\t\t\tindex = require('./product/index');\r\n\t\t\t\t\t\tcustomModal.createCustomModal('edit-add-address');\r\n\t\t\t\t\t\t$('.edit-add-address').find('.modal-body').html(response);\r\n\t\t\t\t\t\tindex.bodyPositionFixed('edit-add-address');\r\n\t\t\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}).always(function (data) {\r\n\t\t\t\t$('select').selectmenu();\r\n\t\t\t\tvalidator.initStateValidation();\r\n\t\t\t\tvalidator.initForm('form[id=\"EditAddressForm\"]');\r\n\t\t\t\t$('.edit-add-address .modal-body').scrollBox();\r\n\t\t\t});\r\n\t\t})\r\n\t\t.on('click', '.address-delete', function () {\r\n\t\t\tvar href = $(this).attr('href');\r\n\t\t\tvar AddressID = getQueryValue('AddressID',href);\r\n\t\t\t$('.remove-address-cc-cta').off('click').on('click', function (e) {\r\n\t\t\t\te.preventDefault();\r\n\t\t\t\tvar $data = new FormData();\r\n\t\t\t\t$data.append('AddressID', AddressID);\r\n\t\t\t\t$data.append(window.User.CSRFTokenName,window.User.CSRFTokenValue);\r\n\t\t\t\t$.ajax({\r\n\t\t\t\t\turl: util.appendParamToURL(Urls.addressDelete, 'format', 'ajax'),\r\n\t\t\t\t\tdataType: 'json',\r\n\t\t\t\t\tprocessData: false,\r\n\t\t\t\t contentType: false,\r\n\t\t\t\t\tdata: $data,\r\n\t\t\t\t\tmethod : 'POST',\r\n\t\t\t\t}).done(function (data) {\r\n\t\t\t\t\tlocation.reload();\r\n\t\t\t\t});\r\n\t\t\t});\r\n\t\t})\r\n\t .on('click', '.address-make-default', function(e) {\r\n\t \te.preventDefault();\r\n\t \tvar href = $(this).attr('href');\r\n\t \tvar AddressID = getQueryValue('AddressID',href);\r\n\t \tvar $data = new FormData();\r\n\t \t$data.append('AddressID', AddressID);\r\n\t \t$data.append(window.User.CSRFTokenName,window.User.CSRFTokenValue);\r\n\t \t$.ajax({\r\n\t \t\turl: util.appendParamToURL(Urls.setDefaultAddress, 'format', 'ajax'),\r\n\t \t\tprocessData: false,\r\n\t \t\tcontentType: false,\r\n\t \t\tdata: $data,\r\n\t \t\ttype : 'POST',\r\n\t \t\tsuccess : function(){\r\n\t \t\t\tlocation.reload();\r\n\t \t\t}\r\n\t \t});\r\n\t });\r\n\t\r\n}\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Binds the events of the payment methods list (delete card)\r\n */\r\nfunction initPaymentEvents() {\r\n\t$(document)\r\n\t\t.on('click', '.credit-card-create', function (evt) {\r\n\t\t\tevt.preventDefault();\r\n\t\t\t$('.ajax-loader').show();\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: util.appendParamToURL(window.Urls.myaccountAddCreditCard, 'format', 'ajax'),\r\n\t\t\t\tdataType: 'html',\r\n\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\tindex = require('./product/index');\r\n\t\t\t\t\tif (response.indexOf('header-wrapper') === -1) {\r\n\t\t\t\t\t\tcustomModal.createCustomModal('add-credit-card');\r\n\t\t\t\t\t\t$('.add-credit-card').find('.modal-body').html(response);\r\n\t\t\t\t\t\tindex.bodyPositionFixed('add-credit-card');\r\n\t\t\t\t\t\tcreditCardTypeDetector();\r\n\t\t\t\t\t\tvalidator.initForm('form[id$=\"CreditCardForm\"]');\r\n\t\t\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}).always(function (data) {\r\n\t\t\t\t$('form[id$=\"CreditCardForm\"] .input-text.cvn').val('');\r\n\t\t\t\t$('select').selectmenu();\r\n\t\t\t\tcardValidation.init();\r\n\t\t\t\t$('.add-credit-card .modal-body').scrollBox();\r\n\t\t\t});\r\n\t\t})\r\n\t\t.on('submit', '#CreditCardForm', function (evt) {\r\n\t\t\tevt.preventDefault();\r\n\t\t\tvar $form = $(this);\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: util.appendParamToURL($form.attr('action'), 'format', 'ajax'),\r\n\t\t\t\tdata: $form.serialize() + '&' + $form.find('#applyBtn').attr('name') + '=x',\r\n\t\t\t\ttype: 'POST'\r\n\t\t\t}).done(function (data) {\r\n\t\t\t\tif (data.length) {\r\n\t\t\t\t\twindow.location.reload();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t});\r\n\r\n\t$('form.remove-card-form button.delete').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar $button = $(this);\r\n\t\tvar $form = $button.closest('form.remove-card-form');\r\n\r\n\t\t$(\".remove-address-cc-cta\").off().on('click', function () {\r\n\r\n\t\t\t$('<input/>').attr({\r\n\t\t\t\ttype: 'hidden',\r\n\t\t\t\tname: $button.attr('name'),\r\n\t\t\t\tvalue: $button.attr('value') || 'delete card'\r\n\t\t\t}).appendTo($form);\r\n\t\t\tvar data = $form.serialize();\r\n\r\n\t\t\t$.ajax({\r\n\t\t\t\t\ttype: 'POST',\r\n\t\t\t\t\turl: $form.attr('action'),\r\n\t\t\t\t\tdata: data\r\n\t\t\t\t})\r\n\t\t\t\t.done(function () {\r\n\t\t\t\t\tlocation.reload();\r\n\t\t\t\t});\r\n\t\t});\r\n\t});\r\n}\r\n\r\nfunction registerAccountEvents() {\r\n\t// get the field elements\r\n\tvar $gender = $('.registration-box #dwfrm_profile_customer_gender');\r\n\tvar $newsletterCB = $('.registration-box #dwfrm_profile_customer_addtoemaillist');\r\n\r\n\t$gender.on('selectmenuchange change', function (e) {\r\n\t\t$(this).closest('form').find('button[type=\"submit\"]').prop('disabled', false);\r\n\t\t$(this).selectmenu('refresh');\r\n\t});\r\n\t$newsletterCB.on('change', function (e) {\r\n\t\t$(this).closest('form').find('button[type=\"submit\"]').prop('disabled', false);\r\n\t});\r\n}\r\n\r\nfunction initContactUs() {\r\n\tvar registrationForm = $('form#RegistrationForm');\r\n\r\n\tregistrationForm.on('click', 'button#sendBtn', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\t$.ajax({\r\n\t\t\t\turl: util.appendParamToURL(Urls.customerServiceSubmit, 'format', 'ajax'),\r\n\t\t\t\tdata: registrationForm.serialize(),\r\n\t\t\t\tmethod: 'POST'\r\n\t\t\t})\r\n\t\t\t.done(function (response) {\r\n\t\t\t\tif (response.status) {\r\n\t\t\t\t\tvar modalBody = $('#contact-response').html();\r\n\t\t\t\t\tcustomModal.createCustomModal('customer-contact-us-modal');\r\n\t\t\t\t\t$('.customer-contact-us-modal').find('.modal-body').html(modalBody);\r\n\t\t\t\t\t$(document).trigger(\"gtmcontactus\");\r\n\t\t\t\t\tclearContactUsForm();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t});\r\n}\r\n\r\nfunction initAsktheExpert() {\r\n\tvar askexpertform = $('form#dwfrm_beautyconsultant');\r\n\taskexpertform.on('click', 'button#sendBtn', function (e) {\r\n\t\te.preventDefault();\r\n\t\t$('.ajax-loader').show();\r\n\t\tvar hasError = askexpertform.find('span.error');\r\n\t\tvar formData = askexpertform.serializeArray();\r\n\t\tformData.push({ name: window.User.CSRFTokenName, value: window.User.CSRFTokenValue });\r\n\t\t\r\n\t\t$.ajax({\r\n\t\t\t\turl: util.appendParamToURL(Urls.customerServiceSubmit, 'format', 'ajax'),\r\n\t\t\t\tdata: formData,\r\n\t\t\t\tmethod: 'POST'\r\n\t\t\t})\r\n\t\t\t.done(function (response) {\r\n\t\t\t\tif (!hasError.length) {\r\n\t\t\t\t\tvar modalBody = $('#askexpert-response').html();\r\n\t\t\t\t\tcustomModal.createCustomModal('concierge-modal');\r\n\t\t\t\t\t$('#concierge-modal').find('.modal-body').html(modalBody);\r\n\t\t\t\t\tclearAskExpertForm();\r\n\t\t\t\t}\r\n\t\t\t\t$('.ajax-loader').hide()\r\n\t\t\t});\r\n\r\n\t});\r\n\r\n}\r\n\r\nfunction maxLengthTextArea() {\r\n\t$('.concierge-form-wrapper .input-textarea').onkeypress = function () {\r\n\t\tif (this.value.length >= 500) return false;\r\n\t}\r\n\r\n}\r\n/**\r\n * Clear Ask the expert form\r\n */\r\nfunction clearAskExpertForm() {\r\n\tvar askexpertform = $('form#dwfrm_beautyconsultant');\r\n\tif (window.User.isCustomerAuthenticated == false) {\r\n\t\taskexpertform.find('input[type=\"text\"],input[type=\"email\"]').val('');\r\n\t}\r\n\taskexpertform.find('input[type=\"checkbox\"]').prop(\"checked\", false);\r\n\taskexpertform.find('textarea').val('');\r\n\taskexpertform.find(\"select\").prop('selectedIndex', 0);\r\n\taskexpertform.find(\"select\").selectmenu(\"refresh\");\r\n\t$('input[name$=\"_userconsent_termsandconditions\"]').prop(\"checked\", false);\r\n}\r\n/**\r\n * Clear contact us form\r\n */\r\nfunction clearContactUsForm() {\r\n\tif (window.User.isCustomerAuthenticated == false) {\r\n\t\t$('input[name$=\"_contactus_firstname\"]').val('');\r\n\t\t$('input[name$=\"_contactus_lastname\"]').val('');\r\n\t\t$('input[name$=\"_contactus_email\"]').val('');\r\n\t\t$('input[name$=\"_contactus_phone\"]').val('');\r\n\t}\r\n\r\n\t$('input[name$=\"_contactus_ordernumber\"]').val('');\r\n\t$('textarea[name$=\"_contactus_comment\"]').val('').trigger('change');\r\n\t$('input[name$=\"_userconsent_termsandconditions\"]').prop(\"checked\", false);\r\n}\r\n\r\n\r\nfunction setGender() {\r\n\tvar genderMenu = $('.registration-box #dwfrm_profile_customer_gender');\r\n\tvar selectedGender = genderMenu.data('gender');\r\n\tgenderMenu.val(selectedGender);\r\n\tgenderMenu.selectmenu(\"refresh\");\r\n}\r\n\r\nfunction getBirthday(birthmonth, dob, birthyear) {\r\n\tvar birthday = [\r\n\t\tbirthmonth,\r\n\t\t'/',\r\n\t\tdob,\r\n\t\t'/',\r\n\t\tbirthyear\r\n\t].join('');\r\n\r\n\tif (birthday === '00/00/' || birthday === '0/0/') {\r\n\t\tbirthday = '';\r\n\r\n\t\t$('.birthmonth select').val('00');\r\n\t\t$('.dob select').val('00');\r\n\t}\r\n\r\n\t$('.birthday input').val(birthday);\r\n}\r\n\r\nfunction setBirthday() {\r\n\t//Birth Month\r\n\tvar birthmonthMenu = $('#dwfrm_profile_customer_birthmonth');\r\n\tvar birthmonth = ('0' + birthmonthMenu.data('birthmonth')).slice(-2);\r\n\tif (birthmonth && birthmonth > 0) {\r\n\t\tbirthmonthMenu.val(birthmonth);\r\n\t\tbirthmonthMenu.selectmenu(\"refresh\");\r\n\t}\r\n\r\n\t//Birth Day\r\n\tvar dobMenu = $('#dwfrm_profile_customer_dob');\r\n\tvar dob = ('0' + dobMenu.data('dob')).slice(-2);\r\n\tif (dob && dob > 0) {\r\n\t\tdobMenu.val(dob);\r\n\t\tdobMenu.selectmenu(\"refresh\");\r\n\t}\r\n\r\n\t//Birth Year\r\n\tvar birthyear = $('input.birthyear').data('birthyear');\r\n\t$('input.birthyear').val(birthyear);\r\n\r\n\tgetBirthday(birthmonth, dob, birthyear);\r\n}\r\n\r\nfunction setNewBirthday(birthmonth, dob, birthyear) {\r\n\tvar monthField = $('.birthmonth select');\r\n\tvar dayField = $('.dob select');\r\n\tvar yearField = $('.birthyear input');\r\n\tvar customRow = $('.birthdate .form-row-custom');\r\n\r\n\tvar month = ~~birthmonth ? birthmonth : '';\r\n\tvar day = ~~dob ? dob : '';\r\n\tvar year = ~~birthyear ? birthyear : '';\r\n\r\n\tyearField.siblings('.error').remove();\r\n\tyearField.removeClass('error');\r\n\t$('.birthmonth, .dob').find('.ui-selectmenu-button').removeClass('dropdownerror');\r\n\tcustomRow.find('.error-placement').remove();\r\n\r\n\tif (month || day || year) {\r\n\t\tvar now = new Date();\r\n\t\tvar birthday = new Date(birthyear, birthmonth - 1, dob, 0, 0, 0, 0);\r\n\r\n\t\tif (!month.match(/^[\\d]{1,2}$/) ||\r\n\t\t\t!day.match(/^[\\d]{1,2}$/) ||\r\n\t\t\t!year.match(/^[\\d]{4}$/) ||\r\n\t\t\t!birthday.getTime() ||\r\n\t\t\tnow.getTime() <= birthday.getTime()) {\r\n\r\n\t\t\tif (customRow.find('.error-placement').length === 0) {\r\n\t\t\t\t$('<div class=\"error-placement\"><i class=\"error-icon\"></i><span class=\"error\">' + Resources.INVALID_BIRTHDAY + '</span></div>').appendTo(customRow);\r\n\t\t\t}\r\n\r\n\t\t\tif(month.match(/^[\\d]{1,2}$/) == null) {\r\n\t\t\t\t$('.birthmonth .ui-selectmenu-button').addClass('dropdownerror');\r\n\t\t\t}\r\n\t\t\tif(day.match(/^[\\d]{1,2}$/) == null) {\r\n\t\t\t\t$('.dob .ui-selectmenu-button').addClass('dropdownerror');\r\n\t\t\t}\r\n\t\t\tif(year.match(/^[\\d]{4}$/) == null) {\r\n\t\t\t\tyearField.addClass('error');\r\n\t\t\t}\r\n\r\n\t\t\t$('#profile-save-changes').prop('disabled', true);\r\n\t\t}\r\n\t} else if(birthyear !== '' && year.match(/^[\\d]{4}$/) == null) {\r\n\t\tyearField.addClass('error');\r\n\t\tif(month.match(/^[\\d]{1,2}$/) == null) {\r\n\t\t\t$('.birthmonth .ui-selectmenu-button').addClass('dropdownerror');\r\n\t\t}\r\n\t\tif(day.match(/^[\\d]{1,2}$/) == null) {\r\n\t\t\t$('.dob .ui-selectmenu-button').addClass('dropdownerror');\r\n\t\t}\r\n\t\tif (customRow.find('.error-placement').length === 0) {\r\n\t\t\t$('<div class=\"error-placement\"><i class=\"error-icon\"></i><span class=\"error\">' + Resources.INVALID_BIRTHDAY + '</span></div>').appendTo(customRow);\r\n\t\t}\r\n\t\t$('#profile-save-changes').prop('disabled', true);\r\n\t}\r\n\r\n\tgetBirthday(birthmonth, dob, birthyear);\r\n\r\n\tif ($('.account-edit #RegistrationForm .error-placement').length === 0) {\r\n\t\t$('#profile-save-changes').prop('disabled', false);\r\n\t}\r\n}\r\n\r\nfunction updateBirthday() {\r\n\tvar birthday = $('.birthday input').val();\r\n\tvar birthmonth = $('.birthmonth select').val();\r\n\tvar dob = $('.dob select').val();\r\n\tvar birthyear = $('.birthyear input').val();\r\n\r\n\t$('.birthmonth select').on('selectmenuchange change', function () {\r\n\t\tbirthmonth = $(this).val();\r\n\t\tsetNewBirthday(birthmonth, dob, birthyear);\r\n\t\t$(this).selectmenu('refresh');\r\n\t});\r\n\r\n\t$('.dob select').on('selectmenuchange change', function () {\r\n\t\tdob = $(this).val();\r\n\t\tsetNewBirthday(birthmonth, dob, birthyear);\r\n\t\t$(this).selectmenu('refresh');\r\n\t});\r\n\r\n\t$('.birthyear input').on('blur', function () {\r\n\t\tbirthyear = $(this).val();\r\n\t\tsetNewBirthday(birthmonth, dob, birthyear);\r\n\t})\r\n}\r\n\r\nfunction handleDisplayselectedCard(currentcard, $selectedCards) {\r\n\t$selectedCards.find('.card-icon').addClass('other-cards');\r\n\t$selectedCards.find(\"[data-card-type='\" + currentcard + \"']\").removeClass('other-cards').addClass(\"current-card\");\r\n}\r\n\r\nfunction creditCardTypeDetector(options) {\r\n\r\n\t// the regular expressions check for possible matches as you type, hence the OR operators based on the number of chars\r\n\t// Visa\r\n\tvar visa_regex = new RegExp('^4[0-9]{0,15}$'),\r\n\r\n\t\t// MasterCard\r\n\t\tmastercard_regex = new RegExp('^5$|^5[1-5][0-9]{0,14}$'),\r\n\r\n\t\t// American Express\r\n\t\tamex_regex = new RegExp('^3$|^3[47][0-9]{0,13}$'),\r\n\r\n\t\t//Discover\r\n\t\tdiscover_regex = new RegExp('^6[05]$|^601[1]?$|^65[0-9][0-9]?$|^6(?:011|5[0-9]{2})[0-9]{0,12}$'),\r\n\r\n\t\t//JCB\r\n\t\tunionpay_regex = new RegExp('^62[0-9]{0,14}$|^645[0-9]{0,13}$|^65[0-9]{0,14}$'),\r\n\t\t\r\n\t\tcvnField = $('input.cvn');\r\n\r\n\t$('.cc-number input').on('focusout', function (e) {\r\n\t\tvar cur_val = $(this).val();\r\n\r\n\t\tvar $ccNumberContain = $(this).parents('.cc-number');\r\n\t\tvar $selectedCards = $('.available-cards');\r\n\r\n\t\t// get rid of spaces and dashes before using the regular expression\r\n\t\tcur_val = cur_val.replace(/ /g, '').replace(/-/g, '');\r\n\r\n\t\tvar $creditCard = $('[data-method=\"CREDIT_CARD\"]');\r\n\r\n\t\t// checks per each, as their could be multiple hits\r\n\t\tif (cur_val.match(visa_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_visa');\r\n\t\t\t$selectedCards.addClass('is_visa');\r\n\t\t\thandleDisplayselectedCard('is_visa', $selectedCards);\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"Visa\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_visa');\r\n\t\t\t$selectedCards.removeClass('is_visa', $selectedCards);\r\n\t\t}\r\n\r\n\t\tif (cur_val.match(mastercard_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_mastercard');\r\n\t\t\t$selectedCards.addClass('is_mastercard');\r\n\t\t\thandleDisplayselectedCard('is_mastercard', $selectedCards);\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"MasterCard\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_mastercard');\r\n\t\t\t$selectedCards.removeClass('is_mastercard', $selectedCards);\r\n\t\t}\r\n\r\n\t\tif (cur_val.match(amex_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_amex');\r\n\t\t\t$selectedCards.addClass('is_amex');\r\n\t\t\thandleDisplayselectedCard('is_amex', $selectedCards);\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"Amex\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_amex');\r\n\t\t\t$selectedCards.removeClass('is_amex', $selectedCards);\r\n\t\t}\r\n\r\n\t\tif (cur_val.match(discover_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_discover');\r\n\t\t\t$selectedCards.addClass('is_discover');\r\n\t\t\thandleDisplayselectedCard('is_discover', $selectedCards);\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"Discover\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_discover');\r\n\t\t\t$selectedCards.removeClass('is_discover', $selectedCards);\r\n\t\t}\r\n\r\n\t\tif (cur_val.match(unionpay_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_unionpay');\r\n\t\t\t$selectedCards.addClass('is_unionpay');\r\n\t\t\thandleDisplayselectedCard('is_unionpay', $selectedCards);\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"Union\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_unionpay');\r\n\t\t\t$selectedCards.removeClass('is_unionpay', $selectedCards);\r\n\t\t}\r\n\r\n\t\t// if nothing is a hit we add a class to fade them all out\r\n\t\tif (cur_val != '' && !cur_val.match(visa_regex) && !cur_val.match(mastercard_regex) &&\r\n\t\t\t!cur_val.match(amex_regex) && !cur_val.match(discover_regex) && !cur_val.match(unionpay_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_nothing');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_nothing');\r\n\t\t}\r\n\t\t\r\n\t\tif(cur_val.match(amex_regex)) {\r\n\t\t\tcvnField.prop('maxlength', 4);\r\n\t\t} else {\r\n\t\t\tcvnField.prop('maxlength', 3);\r\n\t\t}\r\n\t\t\r\n\t});\r\n\r\n};\r\n\r\n//function to highlight the selected page on navigation bar\r\nfunction setAccountNavText(currLayout) {\r\n\tvar accountNav = $('.account-left-nav');\r\n\tif (accountNav.length > 0) {\r\n\t\tvar selectvar = $('.selected-page').val() || '';\r\n\t\t$(\".account-left-nav li[data-attr='\" + selectvar + \"']\").addClass(\"selected\");\r\n\t}\r\n\tif (currLayout === 'mobile' && $(\".account-left-nav li[data-attr='\" + selectvar + \"']\").length > 0) {\r\n\t\taccountNav.slick(\r\n\t\t\t'slickGoTo', $(\".account-left-nav li[data-attr='\" + selectvar + \"']\").parents('.slick-slide:not(\".slick-cloned\")').eq(0).attr('data-slick-index')\r\n\t\t).addClass('loaded');\r\n\t}\r\n}\r\n\r\n$(window).on('resize orientationchange', function () {\r\n\tcurrLayout = currentLayout.init();\r\n\tsetAccountNavText(currLayout);\r\n});\r\n\r\n$('.foundation-section.cta-block-section').on('click',function(){\r\n var linkedUrl=$(this).attr('data-attribute');\r\n window.location= linkedUrl;\r\n});\r\n\r\n$('.beauty-section.cta-block-section').on('click',function(){\r\n var linkedUrl=$(this).attr('data-attribute');\r\n window.location= linkedUrl;\r\n});\r\n\r\nfunction getQueryValue(str,href) \r\n{\r\n\tvar queryString = href;\r\n\tvar queries = queryString.split(\"?\");\r\n\tfor (var i=0;i<queries.length;i++) {\r\n\t\tvar ft = queries[i].split(\"&\");\r\n\t\tfor(var j=0;j<ft.length;j++) {\r\n\t\t\tvar id = ft[j].split(\"=\");\r\n\t\t\tif(id[0]==str) {\r\n\t\t\t\treturn id[1];\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\treturn null;\r\n}\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Binds the events of the order, address and payment pages\r\n */\r\nfunction initializeEvents() {\r\n\tcardValidation.init();\r\n\ttoggleFullOrder();\r\n\tinitAddressEvents();\r\n\tinitPaymentEvents();\r\n\tlogin.init();\r\n\tregisterAccountEvents();\r\n\tinitContactUs();\r\n\tinitAsktheExpert();\r\n\tmaxLengthTextArea();\r\n\tsetGender();\r\n\tsetBirthday();\r\n\tupdateBirthday();\r\n\tsearch.viewMore();\r\n\tproductTile.init();\r\n\tsetAccountNavText(currLayout);\r\n}\r\n\r\n\r\nvar account = {\r\n\tinit: function () {\r\n\t\tinitializeEvents();\r\n\t\tgiftcert.init();\r\n\t\tactimirror.init();\r\n\t\tvisualizerresult.init();\r\n\t},\r\n\tinitCartLogin: function () {\r\n\t\tlogin.init();\r\n\t},\r\n\tinitPaymentEvents: function () {\r\n\t\tinitPaymentEvents();\r\n\t}\r\n};\r\n\r\nmodule.exports = account;\n},{\"../detect-layout\":13,\"../giftcert\":19,\"../login\":25,\"../modal\":27,\"../page\":30,\"../pages/actimirror\":32,\"../pages/visualizerresult\":73,\"../product-tile\":77,\"../tooltip\":92,\"../util\":93,\"../validator\":95,\"./checkout/card-validation\":37,\"./product/index\":52,\"./search\":59}],32:[function(require,module,exports){\n'use strict';\r\nvar util = require('../../../../app_shiseidogmw/cartridge/js/util');\r\n\r\n\r\nfunction toggleSectionContent() {\r\n\t$(document).on('click', '[data-toggle=\"section-toggle\"]', function () {\r\n\t\t$(this).toggleClass('active');\r\n\t\t$($(this).data('target')).slideToggle( \"slow\").toggleClass('slideactive');\r\n\t\treturn false;\r\n\t});\r\n}\r\nfunction displayPreviousResults(e) {\r\n\tvar url = util.appendParamsToUrl(Urls.getAllImageAnalysisList, { \r\n\t\t\t\t\t'format': 'ajax'\r\n\t\t\t\t});\r\n\t$.ajax({\r\n\t\turl: url,\r\n\t\tdataType: 'html',\r\n\t\tsuccess: function(response) {\r\n\t\t\tif (response) {\r\n\t\t\t\tif ($(response).find('.score-block-wrapper').length > 1 ) {\r\n\t\t\t\t\t$('.session-title .prev-result-toggle').addClass('show-prev-result');\r\n\t\t\t\t\t$(\".sessions-overlay\").append(response);\r\n\t\t\t\t\tvar getCuerrentId = window.location.href;\r\n\t\t\t\t\tgetCuerrentId = util.getQueryStringParams(getCuerrentId)\r\n\t\t\t\t\tif(getCuerrentId.analysisId !== undefined){\r\n\t\t\t\t\t\t$('li.session-score[data-id='+getCuerrentId.analysisId+'] .score-link').addClass('active');\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\t$('li.session-score.first-scrore .score-link').addClass('active');\r\n\t\t\t\t\t}\r\n\t\t\t\t} else if ($(response).find('.score-block-wrapper').length == 0) {\r\n\t\t\t\t\t$('.session-title .prev-result-toggle').addClass('show-prev-result');\r\n\t\t\t\t\t$(\".sessions-overlay\").append(response);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n}\r\nfunction paintTriangle() {\r\n\tvar radiance, resilience, smoothness;\r\n\tvar width = 247;\r\n\tvar height = 213;\r\n\tvar triangleSvg = $('.magic-triangle svg');\r\n\tvar center = { x: width / 2, y: 143 };\r\n\r\n\tradiance = $('.magic-triangle').data('radiance');\r\n\tresilience = $('.magic-triangle').data('resilience');\r\n\tsmoothness = $('.magic-triangle').data('smoothness');\r\n\r\n\tvar radiancePoint = {\r\n\t\tx: center.x,\r\n\t\ty: center.y * (1 - radiance / 100),\r\n\t};\r\n\r\n\tvar resiliencePoint = {\r\n\t\tx: center.x - center.x * (resilience / 100),\r\n\t\ty: center.y + (height - center.y) * (resilience / 100),\r\n\t};\r\n\r\n\tvar smoothnessPoint = {\r\n\t\tx: center.x + (width - center.x) * (smoothness / 100),\r\n\t\ty: center.y + (height - center.y) * (smoothness / 100),\r\n\t};\r\n\r\n\t$(triangleSvg).find('polygon.your-score').addClass('load-polygon').attr('points',radiancePoint.x +','+ radiancePoint.y+' '+ resiliencePoint.x +','+resiliencePoint.y +' '+ smoothnessPoint.x+','+smoothnessPoint.y);\r\n}\r\n\r\nfunction actiMirrorAvgTriangle() {\r\n\tvar avgradiance, avgresilience, avgsmoothness;\r\n\tvar width = 247;\r\n\tvar height = 213;\r\n\tvar triangleSvg = $('.magic-triangle svg');\r\n\tvar center = { x: width / 2, y: 143 };\r\n\r\n\tavgradiance = $('.magic-triangle').data('avgradiance');\r\n\tavgresilience = $('.magic-triangle').data('avgresilience');\r\n\tavgsmoothness = $('.magic-triangle').data('avgsmoothness');\r\n\r\n\tvar avgradiancePoint = {\r\n\t\tx: center.x,\r\n\t\ty: center.y * (1 - avgradiance / 100),\r\n\t};\r\n\r\n\tvar avgresiliencePoint = {\r\n\t\tx: center.x - center.x * (avgresilience / 100),\r\n\t\ty: center.y + (height - center.y) * (avgresilience / 100),\r\n\t};\r\n\r\n\tvar avgsmoothnessPoint = {\r\n\t\tx: center.x + (width - center.x) * (avgsmoothness / 100),\r\n\t\ty: center.y + (height - center.y) * (avgsmoothness / 100),\r\n\t};\r\n\r\n\tif (avgradiance > 0 && avgresilience > 0 && avgsmoothness > 0) {\r\n\t\t$(triangleSvg).find('polygon.average-score').addClass('load-avgpolygon').attr('points',avgradiancePoint.x +','+ avgradiancePoint.y+' '+ avgresiliencePoint.x +','+avgresiliencePoint.y +' '+ avgsmoothnessPoint.x+','+avgsmoothnessPoint.y);\r\n\t}\r\n}\r\n\r\nfunction actiMirrorScoreGraph() {\r\n\tif($('.skin-analysis-wrapper-tab-body .skin-analysis-wrapper').hasClass('activeLtoR') || $('.skin-analysis-wrapper-tab-body .skin-analysis-wrapper').hasClass('activeRtoL')){\r\n\t\t$('.skin-analysis-wrapper.activeLtoR .graph-section').addClass('active');\r\n\t\t$('.skin-analysis-wrapper.activeRtoL .graph-section').addClass('active');\r\n\t}\r\n\r\n\tvar selectedgraphview = $('.skin-analysis-wrapper .graph-section.active');\r\n\tvar firstPoint = $(selectedgraphview).data('firstpoint');\r\n\tvar avgfirstPoint = $(selectedgraphview).data('avgfirstpoint');\r\n\tvar secondPoint = $(selectedgraphview).data('secondpoint');\r\n\tvar avgsecondPoint = $(selectedgraphview).data('avgsecondpoint');\r\n\tvar thirdPoint = $(selectedgraphview).data('thirdpoint');\r\n\tvar avgthirdPoint = $(selectedgraphview).data('avgthirdpoint');\r\n\t\r\n\tsetTimeout(function() {\r\n\t\t$('.skin-analysis-wrapper .graph-section.active .first-point .your-score').css('width',firstPoint+'%');\r\n\t\t$('.skin-analysis-wrapper .graph-section.active .first-point .average-score').css('width',avgfirstPoint+'%');\r\n\t\t$('.skin-analysis-wrapper .graph-section.active .second-point .your-score').css('width',secondPoint+'%');\r\n\t\t$('.skin-analysis-wrapper .graph-section.active .second-point .average-score').css('width',avgsecondPoint+'%');\r\n\t\t$('.skin-analysis-wrapper .graph-section.active .third-point .your-score').css('width',thirdPoint+'%');\r\n\t\t$('.skin-analysis-wrapper .graph-section.active .third-point .average-score').css('width',avgthirdPoint+'%');\r\n\t}, 200);\r\n}\r\n\r\nfunction initActimirrorCarousel(){\r\n\t$(document).on('init', '.tile-size-carousel', function(){\r\n\t\tif($(this).hasClass('slick-initialized')){\r\n\t\t\tvar that = $(this);\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tthat.slick('slickSetOption', {\r\n\t\t\t\t\tresponsive: [\r\n\t\t\t\t\t\t { breakpoint: 1300, settings: { slidesToShow: 3, slidesToScroll: 3 } },\r\n\t\t\t\t\t\t { breakpoint: 769, settings: { slidesToShow: 3, slidesToScroll: 3 } },\r\n\t\t\t\t\t\t { breakpoint: 601, settings: { slidesToShow: 3, slidesToScroll: 3 } },\r\n\t\t\t\t\t\t { breakpoint: 451, settings: { slidesToShow: 3, slidesToScroll: 3 } },\r\n\t\t\t\t\t\t { breakpoint: 321, settings: { slidesToShow: 3, slidesToScroll: 3 } }\r\n\t\t\t\t\t ]\r\n\t\t\t\t }, true);\r\n\t\t\t},1);\r\n\t\t}\r\n\t});\r\n\t\r\n\t$(document).on('init', '.tile-color-carousel', function(){\r\n\t\tif($(this).hasClass('slick-initialized')){\r\n\t\t\tvar that = $(this);\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tthat.slick('slickSetOption', {\r\n\t\t\t\t\tresponsive: [\r\n\t\t\t\t\t\t { breakpoint: 1300, settings: { slidesToShow: 5, slidesToScroll: 5 } },\r\n\t\t\t\t\t\t { breakpoint: 769, settings: { slidesToShow: 5, slidesToScroll: 5 } },\r\n\t\t\t\t\t\t { breakpoint: 601, settings: { slidesToShow: 6, slidesToScroll: 6 } },\r\n\t\t\t\t\t\t { breakpoint: 451, settings: { slidesToShow: 6, slidesToScroll: 6 } },\r\n\t\t\t\t\t\t { breakpoint: 321, settings: { slidesToShow: 5, slidesToScroll: 5 } }\r\n\t\t\t\t\t ]\r\n\t\t\t\t }, true);\r\n\t\t\t},1);\r\n\t\t}\r\n\t});\r\n}\r\n\r\n// visualizer result section tab\r\n$(\".skin-analysis-wrapper-tab-head a\").click(function(e) {\r\n\te.preventDefault();\r\n\tvar selectedClass = $(this).attr('class');\r\n\t// bottom slide line for nav\r\n\tvar selectedposition = $(this).position();\r\n\tvar selectedwidth = (($(this).outerWidth(true)) / 2 ); \r\n $(\".skin-analysis-wrapper-tab-head .slide-line\").css({\"left\":+ selectedposition.left + selectedwidth - 60});\r\n\tvar curractiveindex = $('.skin-analysis-wrapper-tab-head a').filter('.active').index();\r\n\t$(\".skin-analysis-wrapper-tab-head a\").removeClass('active');\r\n\t$(this).addClass('active');\r\n\t// visualizer result section tab animation\r\n\tvar currchangeindex = $('.skin-analysis-wrapper-tab-head a').filter('.active').index();\r\n\tif(currchangeindex != curractiveindex) {\r\n\t\tif(currchangeindex > curractiveindex) { // left to right animation\r\n\t\t\t$(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper\").removeClass('preactiveLtoR preactiveRtoL');\r\n\t\t\tif($(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper\").hasClass('active')) {\r\n\t\t\t\t$(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper.active\").addClass('preactiveLtoR').removeClass('active');\r\n\t\t\t} else if($(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper\").hasClass('activeRtoL')) {\r\n\t\t\t\t$(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper.activeRtoL\").addClass('preactiveLtoR').removeClass('activeRtoL');\r\n\t\t\t} else {\r\n\t\t\t\t$(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper.activeLtoR\").addClass('preactiveLtoR').removeClass('activeLtoR');\r\n\t\t\t}\r\n\t\t\tif($(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper\").hasClass(selectedClass)) {\r\n\t\t\t\t$(\".skin-analysis-wrapper.\"+selectedClass).addClass('activeLtoR');\r\n\t\t\t\t$(\".skin-analysis-wrapper-tab-body\").find('.activeRtoLfirst').removeClass('activeRtoLfirst');\r\n\t\t\t}\r\n\t\t\t$('.magic-triangle svg polygon.your-score').removeClass('load-polygon');\r\n\t\t\t$('.magic-triangle svg polygon.average-score').removeClass('load-avgpolygon');\r\n\t\t} else { // right to left animation\r\n\t\t\t$(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper\").removeClass('preactiveRtoL preactiveLtoR');\r\n\t\t\tif($(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper\").hasClass('activeLtoR')) {\r\n\t\t\t\t$(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper.activeLtoR\").addClass('preactiveRtoL').removeClass('activeLtoR');\r\n\t\t\t} else {\r\n\t\t\t\t$(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper.activeRtoL\").addClass('preactiveRtoL').removeClass('activeRtoL');\r\n\t\t\t}\r\n\t\t\tif($(\".skin-analysis-wrapper-tab-body .skin-analysis-wrapper\").hasClass(selectedClass)) {\r\n\t\t\t\t$(\".skin-analysis-wrapper.\"+selectedClass).addClass('activeRtoL');\r\n\t\t\t\tif(currchangeindex == 0) {\r\n\t\t\t\t\t$(\".skin-analysis-wrapper.\"+selectedClass).addClass('activeRtoLfirst');\r\n\t\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\t\t$('.magic-triangle svg polygon.your-score').addClass('load-polygon');\r\n\t\t\t\t\t\t$('.magic-triangle svg polygon.average-score').addClass('load-avgpolygon');\r\n\t\t\t\t\t}, 200);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\t$('.skin-analysis-wrapper .graph-section').removeClass('active');\r\n\t\t$('.skin-analysis-wrapper.metrics .graph-section .your-score').css('width','0');\r\n\t\t$('.skin-analysis-wrapper.metrics .graph-section .average-score').css('width','0');\r\n\t\tsetTimeout(function() {\r\n\t\t\tactiMirrorScoreGraph();\r\n\t\t}, 400);\r\n\t}\r\n});\r\n\r\n// recommended for you section tab\r\n$(\".recommended-section-tab-head span.tab-head-link\").click(function(e) {\r\n\t// bottom slide line for recommended section nav and tab heading\r\n\tvar selectedpositionR = $(this).position();\r\n\tvar selectedmarginR = ($(this).outerWidth(true) - $(this).innerWidth()) / 2; \r\n $(\".recommended-section-tab-head .slide-line\").css({\"left\":+ selectedpositionR.left + selectedmarginR});\r\n\tvar curractiveindex = $('.recommended-section-tab-head span.tab-head-link').filter('.active').index();\r\n\t$(\".recommended-section-tab-head span.tab-head-link\").removeClass('active');\r\n\t$(this).addClass('active');\r\n\tvar currchangeindex = $('.recommended-section-tab-head span.tab-head-link').filter('.active').index();\r\n\t// recommended for you section tab animation\r\n\tvar dataTarget = $(this).attr('data-target');\r\n\tif($('.recommended-section-tab-head.sticky').length > 0) { // animation if recommented nav is sticky\r\n\t\t$('html, body').animate({\r\n\t\t\tscrollTop: $(\".recommended-section-tab-head-out\").offset().top - 40 // static value is given for scrolltop should stop before it reaches top\r\n\t\t}, 0);\r\n\t\tif(currchangeindex != curractiveindex) {\r\n\t\t\t$(\".recommended-section-tab-body .recommended-section-list\").removeClass('active curactive').addClass('preactive');\r\n\t\t\t$(\".recommended-section-tab-body .recommended-section-list\").filter(dataTarget).removeClass('preactive').addClass('active curactive');\r\n\t\t}\r\n\t} else { // animation if recommented nav is not sticky\r\n\t\tif(currchangeindex != curractiveindex) {\r\n\t\t\t$(\".recommended-section-tab-body .recommended-section-list\").removeClass('active curactive').addClass('preactive');\r\n\t\t\t$(\".recommended-section-tab-body .recommended-section-list\").filter(dataTarget).removeClass('preactive').addClass('active curactive');\t\t\r\n\t\t}\r\n\t}\r\n});\r\n$(window).on('resize', function() {\r\n\tif ($('.recommended-section-tab-head').length > 0) {\r\n\t\tvar selectedpositionR = $('.recommended-section-tab-head .tab-head-link.active').position();\r\n\t\tvar selectedmarginR = ($('.recommended-section-tab-head .tab-head-link.active').outerWidth(true) - $('.recommended-section-tab-head .tab-head-link.active').innerWidth()) / 2;\r\n\t\t$(\".recommended-section-tab-head .slide-line\").css({\"left\":+ selectedpositionR.left + selectedmarginR});\r\n\t}\r\n\tif ($('.skin-analysis-wrapper-tab-head .active').length > 0) {\r\n\t\tvar selectedposition = $('.skin-analysis-wrapper-tab-head a.active').position();\r\n\t\tvar selectedwidth = (($('.skin-analysis-wrapper-tab-head a.active').outerWidth(true)) / 2 ); \r\n\t\t$(\".skin-analysis-wrapper-tab-head .slide-line\").css({\"left\":+ selectedposition.left + selectedwidth - 60});\r\n\t}\r\n\tif ($('.recommended-section-tab-head').hasClass('sticky')) {\r\n\t\t$('.recommended-section-tab-head').css('top', $('.pt_account .sticky-component').outerHeight(true));\r\n\t}\r\n\r\n\trecommendedNav();\r\n});\r\n\r\n// recommended for you section back to top on sticky\r\n$(\".recommended-section-tab-head-out .back-to-top, .recommended-section-tab-head-out .back-to-top-bottom\").click(function(e) {\r\n\t// on click scroll top to recommented for you section, both in mobile and desktop \r\n\t$('html, body').animate({\r\n\t\tscrollTop: $(\".recommended-section-tab-head-out\").offset().top - 40 // 40 static value is given, scroll should stop before when it is in sticky state\r\n\t}, 800);\r\n});\r\n\r\n// recommended tab nav sticky between recommented section\r\nif ($('.recommended-section-tab-head').length > 0) {\r\n\t$('.recommended-section-tab-head-out').css('min-height', $('.recommended-section-tab-head-out').outerHeight(true));\r\n}\r\n\r\nfunction initRecommendedNav() {\r\n\tif ($('.recommended-section-tab-head').length > 0) {\r\n\t\tvar selectedpositionR = $('.recommended-section-tab-head .tab-head-link.active').position();\r\n\t\tvar selectedmarginR = ($('.recommended-section-tab-head .tab-head-link.active').outerWidth(true) - $('.recommended-section-tab-head .tab-head-link.active').innerWidth()) / 2;\r\n\t\tif(selectedpositionR.left >= 0 && selectedmarginR >= 0) {\r\n\t\t\t$(\".recommended-section-tab-head .slide-line\").css({\"left\":+ selectedpositionR.left + selectedmarginR});\r\n\t\t}\r\n\t\tsetTimeout(function() {\r\n\t\t\tvar mainNavHeight = Math.round( $('.pt_account .sticky-component').outerHeight(true));\r\n\t\t\tvar scrollStart = Math.round($('.recommended-section-tab-head-out').offset().top - mainNavHeight);\r\n\t\t\tvar scrollEnd = $('.actimirror-content').next().offset().top - mainNavHeight;\r\n\t\t\tif($(window).scrollTop() > scrollStart && $(window).scrollTop() < scrollEnd) {\r\n\t\t\t\t$('.recommended-section-tab-head').addClass('sticky');\r\n\t\t\t\tif($('.pt_account').hasClass('sticky-header')) {\r\n\t\t\t\t\t$('.recommended-section-tab-head').css('top', $('.pt_account.sticky-header .sticky-component').outerHeight(true));\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$('.recommended-section-tab-head').css('top', mainNavHeight);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}, 1600);\r\n\t}\r\n}\r\n\r\nfunction recommendedNav() {\r\n\tif ($('.recommended-section-tab-head').length > 0) {\r\n\t\tvar mainNavHeight = Math.round( $('.pt_account .sticky-component').outerHeight(true));\r\n\t\tvar scrollStart = Math.round($('.recommended-section-tab-head-out').offset().top - mainNavHeight);\r\n\t\tvar scrollEnd = $('.actimirror-content').next().offset().top - mainNavHeight;\r\n\t\t//recommended section sticky nav\r\n\t\tif($(window).scrollTop() > scrollStart && $(window).scrollTop() < scrollEnd) {\r\n\t\t\tif ($('.pt_account').hasClass('sticky-header')) {\r\n\t\t\t\t$('.recommended-section-tab-head').addClass('sticky').css('top', $('.pt_account.sticky-header .sticky-component').outerHeight(true));\r\n\t\t\t}\r\n\t\t\t$('.recommended-section-tab-head-out .back-to-top-bottom').addClass('sticky');\r\n\t\t} else {\r\n\t\t\t$('.recommended-section-tab-head').removeClass('sticky').css('top', '0');\r\n\t\t\t$('.recommended-section-tab-head-out .back-to-top-bottom').removeClass('sticky');\r\n\t\t}\r\n\t\t// recommended section sticky nav\r\n\t\tif($(window).scrollTop() > scrollStart + 100 && $(window).scrollTop() < scrollEnd) { // static value 75 is given as per requirment button should enable after certain height of scrolltop\r\n\t\t\t$(\".recommended-section-tab-head-out .back-to-top, .recommended-section-tab-head-out .back-to-top-bottom\").addClass('sticky');\r\n\t\t} else {\r\n\t\t\t$(\".recommended-section-tab-head-out .back-to-top, .recommended-section-tab-head-out .back-to-top-bottom\").removeClass('sticky');\r\n\t\t}\r\n\t}\r\n}\r\n\r\n$(window).on('scroll', function() {\r\n\trecommendedNav();\r\n});\r\n\r\nexports.init = function () {\r\n\t\r\n\tif ($('.account-actimirror').length > 0) {\r\n\t\tpaintTriangle();\r\n\t\tactiMirrorAvgTriangle();\r\n\t\tinitRecommendedNav();\r\n\t\ttoggleSectionContent();\r\n\t\tdisplayPreviousResults();\r\n\t\tinitActimirrorCarousel();\r\n\t}\r\n\t\r\n};\n},{\"../../../../app_shiseidogmw/cartridge/js/util\":93}],33:[function(require,module,exports){\n'use strict';\r\n\r\nvar account = require('./account'),\r\n\tbonusProductsView = require('../bonus-products-view'),\r\n\tquickview = require('../quickview'),\r\n\tgiftShipping = require('./checkout/shipping'),\r\n\trecommendations = require('./product/recommendations'),\r\n\tcartStoreInventory = require('../storeinventory/cart'),\r\n\tsamples = require('../samples'),\r\n\tgiftCert = require('../giftcert-modal'),\r\n\tlogin = require('./checkout/login'),\r\n\tutil = require('../util'),\r\n\tsummarysection = require('./summarysection'),\r\n\tproductTile = require('../product-tile'),\r\n\tpage = require('../page'),\r\n\tanalytics = require('../analytics'),\r\n\tcustomModal = require('../modal'),\r\n\tsamples = require('.././samples');\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Binds events to the cart page (edit item's details, bonus item's actions, coupon code entry)\r\n */\r\nfunction initializeEvents() {\r\n\tvar quickview;\r\n\t$('#cart-table').off('click' , '.item-edit-details a').on('click', '.item-edit-details a', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tquickview = require('../quickview');\r\n\t\t\tquickview.show({\r\n\t\t\t\turl: e.target.href,\r\n\t\t\t\tsource: 'cart'\r\n\t\t\t});\r\n\t\t\t$(\".item-edit-details\").addClass('remove-click')\r\n\t\t})\r\n\t\t.on('click', '.bonus-item-actions a, .item-details .bonusproducts a', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tbonusProductsView.show(this.href);\r\n\t\t});\r\n\r\n\t//to prevent multiple submissions of the form when removing a product from the cart\r\n\tvar removeItemEvent = false;\r\n\t$('button[name$=\"deleteProduct\"], button[name$=\"addCoupon\"], button[name$=\"deleteCoupon\"]').off().on('click',function (e) {\r\n\t\tif (removeItemEvent) {\r\n\t\t\te.preventDefault();\r\n\t\t} else {\r\n\t\t\tremoveItemEvent = true;\r\n\t\t\te.preventDefault();\r\n\t\t\tvar $form = $('form#cart-items-form');\r\n\t\t\tvar action = $form[0].action;\r\n\t\t\tvar $removeButton = $(this);\r\n\t\t\tvar postData = $form.serialize() + '&' + $removeButton.attr('name') +'='+($removeButton.val() || $removeButton.attr('name'))+'&format=ajax';\r\n\t\t\t\t\t\t\r\n\t\t\tpostCartData(action, postData);\r\n\t\t}\r\n\t});\r\n\r\n\t$('select.cart-qty-select').selectmenu({\r\n\t\tclasses: {\r\n\t\t\t\"ui-selectmenu-menu\": \"cart-qty-select\"\r\n\t\t}\r\n\t});\r\n\t// product level bonus modal\r\n\t$('div.bonus-item-promo').on('click', 'a.select-bonus', function (e) {\r\n\t\te.preventDefault();\r\n\t\tbonusProductsView.show(this.href);\r\n\t});\r\n\r\n\t$(document).on('click', '.paypal-container a', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar cartCheckoutForm = $('.cart-action-checkout');\r\n\t\tif (cartCheckoutForm.length > 0) {\r\n\t\t\tcartCheckoutForm.attr('action', Urls.cartPaypalCheckout);\r\n\t\t\tcartCheckoutForm.submit();\r\n\t\t}\r\n\t});\r\n\t\r\n\t$(document).on('click', 'button.removebutton, .user-action-remove button', function (e) {\r\n\t\tenableDisableButtonBasedOnCoupon();\r\n\t});\r\n}\r\n\r\nfunction postCartData(action, postData, container, callback) {\r\n\t$('.overlay').show();\r\n\t$.ajax({\r\n\t\ttype: 'POST',\r\n\t\turl: action,\r\n\t\tcontext: this,\r\n\t\tdata: postData,\r\n\t\tsuccess: function (response) {\r\n\t\t\t$('#primary').html(response);\r\n\t\t\tif (this.data.indexOf('addCoupon') > -1 && !($('.cart-coupon-code .field-button-container.error').length))\r\n\t\t\t\tanalytics.couponAppliedEvent();\r\n\t\t\tif ($('.cart-empty').length){\r\n\t\t\t\t$(window).scrollTop(0);\r\n\t\t\t} else {\r\n\t\t\t\t$(window).trigger('scroll');\r\n\t\t\t}\r\n\t\t\t$('.overlay').hide();\r\n\t\t\t$.ajax({\r\n\t\t\t\ttype: 'GET',\r\n\t\t\t\turl: Urls.showMinicart,\r\n\t\t\t\tsuccess: function (minCartData) {\r\n\t\t\t\t\t$('.header-container .minicart-link').html(minCartData);\r\n\t\t\t\t\tinitializeAll();\r\n\t\t\t\t},\r\n\t\t\t\terror: function () {\r\n\t\t\t\t\tpage.refresh();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t\tanalytics.gtmCouponApplied();\r\n\t\t},\r\n\t\terror: function () {\r\n\t\t\tpage.refresh();\r\n\t\t}\r\n\t});\r\n}\r\n\r\n// Enable or disable coupon form button based on coupon code\r\nfunction enableDisableButtonBasedOnCoupon() {\r\n\t$('#add-coupon').prop('disabled', $('input[name$=\"couponCode\"]').val() == \"\" ? true : false);\r\n}\r\n\r\n\r\nfunction isGift() {\r\n\tvar isGift = $('.gift-container .input-checkbox').is(':checked');\r\n\tvar isGiftName = [\r\n\t\t$('#cart-items-form').attr('name'),\r\n\t\t'isGift'\r\n\t].join('_');\r\n\r\n\t$('#checkout-form .is-gift').val(isGift);\r\n\t$('#checkout-form .is-gift').attr('name', isGiftName);\r\n\t$('.gift-container .input-checkbox').attr('checked', isGift);\r\n\t$('.gift-container .input-checkbox').on('change', function () {\r\n\t\tisGift = $(this).is(':checked');\r\n\r\n\t\tif (!isGift) {\r\n\t\t\t$('.gift-container .input-textarea').val('');\r\n\t\t\t$('#checkout-form .gift-message').val('');\r\n\r\n\t\t\tsessionStorage.removeItem('isGift');\r\n\t\t\tsessionStorage.removeItem('giftMessage');\r\n\t\t} else {\r\n\t\t\t$('.gift-container .input-textarea').trigger('keyup');\r\n\t\t}\r\n\r\n\t\t$('#checkout-form .is-gift').val(isGift);\r\n\t});\r\n}\r\n\r\nfunction giftMessage() {\r\n\tvar giftMessage = sessionStorage.getItem('giftMessage') ? sessionStorage.getItem('giftMessage') : '';\r\n\tvar giftMessageName = [\r\n\t\t$('#cart-items-form').attr('name'),\r\n\t\t'giftMessage'\r\n\t].join('_');\r\n\r\n\t$('#checkout-form .gift-message').val(giftMessage);\r\n\t$('#checkout-form .gift-message').attr('name', giftMessageName);\r\n\t$('.gift-container .input-textarea').val(giftMessage);\r\n\t$('.gift-container .input-textarea').on('blur', function () {\r\n\t\t$('.gift-bottom .gift-error-placement').remove();\r\n\t\tgiftMessage = $(this).val().trim();\r\n\t\tif (giftMessage === '' || util.validateMessage(giftMessage)) {\r\n\t\t\t$('#checkout-form .gift-message').val(giftMessage);\r\n\t\t\t$('.gift-bottom .gift-error-placement').addClass('hide');\r\n\t\t\t$('.gift-bottom .gift-error-placement .error').empty();\r\n\t\t\t$('#cart-checkout-button').prop('disabled', false);\r\n\t\t\t$('.third-party-container').css('opacity', 1);\r\n\t\t\t$('.third-party-container').css('pointer-events', 'all');\r\n\t\t\tsessionStorage.setItem('giftMessage', giftMessage);\r\n\t\t} else {\r\n\t\t\t$(\"<div class='gift-error-placement'><i class='error-icon'></i><span class='error'></span></div>\").insertBefore($(\".giftmessage\"));\r\n\t\t\t$('.gift-bottom .gift-error-placement .error').text('Invalid message');\r\n\t\t\t$('#cart-checkout-button').prop('disabled', true);\r\n\t\t\t$('.third-party-container').css('opacity', 0.5);\r\n\t\t\t$('.third-party-container').css('pointer-events', 'none');\r\n\t\t}\r\n\t});\r\n}\r\n\r\n\r\nfunction updateCart() {\r\n\t$('.quantity-container select').on('selectmenuchange change', function () {\r\n\t\tvar $form = $('form#cart-items-form');\r\n\t\tvar action = $form[0].action;\r\n\t\tvar $removeButton = $(this);\r\n\t\tvar postData = $form.serialize() +'&format=ajax';\t\t\t\r\n\t\tpostCartData(action, postData);\r\n\t});\r\n}\r\n\r\nfunction cartCount() {\r\n\tif ($('.cart-empty').length) {\r\n\t\tsessionStorage.removeItem('isGift');\r\n\t\tsessionStorage.removeItem('giftMessage');\r\n\t}\r\n}\r\n\r\n$.fn.isInViewport = function () {\r\n\tif ($(this).length) {\r\n\t\tvar elementTop = $(this).offset().top;\r\n\t\tvar elementBottom = elementTop + $(this).outerHeight();\r\n\t\tvar viewportTop = $(window).scrollTop();\r\n\t\tvar viewportBottom = viewportTop + $(window).height();\r\n\r\n\t\treturn elementBottom > viewportTop && elementTop < viewportBottom;\r\n\t}\r\n};\r\n\r\nfunction stickyCheckout() {\r\n\t$(window).on('scroll', function () {\r\n\t\tif ($(window).width() < 769) {\r\n\t\t\tif ($('.cart-right-column .cart-actions button').isInViewport()) {\r\n\t\t\t\t$('.cart-actions-checkout').removeClass('show');\r\n\t\t\t} else {\r\n\t\t\t\t$('.cart-actions-checkout').addClass('show');\r\n\t\t\t}\r\n\r\n\t\t\t$('.cart-right-column, .cart-right-column > div').removeAttr('style');\r\n\t\t\t$('.resize-sensor').remove();\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction stickyCartError() {\r\n\tvar position = $(window).scrollTop(); \r\n\t$(window).on('scroll', function () {\r\n\t\tif ($(window).width() < 769) {\r\n\t\t\tvar scroll = $(window).scrollTop(),\r\n\t\t\t\ttopoffset = 0,\r\n\t\t\t\terrorDiv = $('.pt_cart .cart-error'),\r\n\t\t\t\tcartTopDivHeight = $('.cart-top').height(),\r\n\t\t\t\tcartItemHedlineHeight = $('.cart-item-qty').height(),\r\n\t\t\t\theaderHeight = $('.header-wrapper').height();\r\n\t\t\tif(scroll >= position) {\r\n\t\t\t\ttopoffset = errorDiv.height() + cartTopDivHeight + headerHeight;\r\n\t\t\t} else {\r\n\t\t\t\ttopoffset = errorDiv.outerHeight() + cartTopDivHeight -cartItemHedlineHeight;\r\n\t\t\t}\r\n\t\t\tif (scroll >= topoffset) {\r\n\t\t\t\terrorDiv.addClass('sticky label-hide');\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\terrorDiv.removeClass('sticky');\r\n\t\t\t}\r\n\t\t\tposition = scroll;\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction handleErrorMsgClick(e) {\r\n\t$(document).on('click', function(e) {\r\n\t\tif($('.pt_cart .cart-error').hasClass('sticky')) {\r\n\t\t\tif(e.target.id == 'js-error-icon' && $('.pt_cart .cart-error').hasClass('label-hide')) {\r\n\t\t\t\t$('.pt_cart .cart-error').removeClass('label-hide');\r\n\t\t\t} else if (e.target.id != 'js-error-icon' && $(e.target).parents('#js-cart-error').length == 0) {\r\n\t\t\t\t$('.pt_cart .cart-error').addClass('label-hide');\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n}\r\n\r\n$(window).on('resize', function () {\r\n\tif ($('.cart-right-column').length > 0) {\r\n\t\tstickyCheckout();\r\n\t}\r\n\tif ($('.pt_cart .cart-error').length) {\r\n\t\tstickyCartError();\r\n\t\tif ($(window).width() > 768) {\r\n\t\t\t$('.pt_cart .cart-error').removeClass('sticky label-hide');\r\n\t\t}\r\n\t}\r\n});\r\n\r\n//to prevent multiple submissions of the form submit\r\nvar removeSubmitButtonEvent = false;\r\n\r\n$(document).on('click', 'button.cart-checkout-button', function (e) {\r\n\tif (removeSubmitButtonEvent) {\r\n\t\te.preventDefault();\r\n\t} else {\r\n\t\tremoveSubmitButtonEvent = true;\r\n\t\te.preventDefault();\r\n\t\tvar $form = $('#checkout-form');\r\n\t\tvar action = $form[0].action;\r\n\t\tvar postData = $form.serialize();\r\n\t\t$.ajax({\r\n\t\t\ttype: 'POST',\r\n\t\t\turl: action,\r\n\t\t\tdata: postData,\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\tvar responseData = JSON.parse(response);\r\n\t\t\t\tif (!!responseData.success)\t{\r\n\t\t\t\t\tif (!!responseData.redirectURL) {\r\n\t\t\t\t\t\t// move to next step of checkout\r\n\t\t\t\t\t\twindow.location = responseData.redirectURL;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\t// trigger samples modal\r\n\t\t\t\t\t\tremoveSubmitButtonEvent = false;\r\n\t\t\t\t\t\t$.ajax({\r\n\t\t\t\t\t\t\ttype: 'GET',\t\t\t\r\n\t\t\t\t\t\t\turl: Urls.showMissedSamplesModal,\r\n\t\t\t\t\t\t\tsuccess: function(response) {\r\n\t\t\t\t\t\t\t\tcustomModal.createCustomModal('missed-samples-modal');\r\n\t\t\t\t\t\t\t\t$('.missed-samples-modal .modal-body').html(response).scrollBox();\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t$('.modal-btn-select-sample').on('click', function () {\r\n\t\t\t\t\t\t\t\t\tanalytics.sampleNoticeEvent('modal-btn-select-sample');\r\n\t\t\t\t\t\t\t\t\tsamples.showSelection();\r\n\t\t\t\t\t\t\t\t\t$('#missed-samples-modal').find('.modal-close').trigger('click');\r\n\t\t\t\t\t\t\t\t});\r\n\r\n\t\t\t\t\t\t\t\t$('.modal-btn-proceed-checkout').on('click', function () {\r\n\t\t\t\t\t\t\t\t\tanalytics.sampleNoticeEvent('modal-btn-proceed-checkout')\r\n\t\t\t\t\t\t\t\t\twindow.location = Urls.proceedToCheckout;\r\n\t\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t});\t\r\n\t\t\t\t\t} \r\n\t\t\t\t} else {\r\n\t\t\t\t\tpage.refresh();\r\n\t\t\t\t}\t\t\t\t\t\t\r\n\t\t\t},\r\n\t\t\terror: function () {\r\n\t\t\t\tpage.refresh();\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\tenableDisableButtonBasedOnCoupon();\r\n});\r\n\r\n$(document).on('click','button.qty-btn',function () {\r\n\tvar qtyTextField = $(this).siblings('.quantity-text').find('.qty-value');\r\n\tvar qtyFormField = $(this).siblings('.quantity-text').find('.quantity-select');\r\n\tvar currentValue = new Number($(qtyTextField).text());\r\n\r\n\tif($(this).hasClass('incr-quantity')){\r\n\t\tcurrentValue++;\r\n\t}\r\n\tif($(this).hasClass('decr-quantity')){\r\n\t\tcurrentValue--;\r\n\t}\r\n\tif($(this).hasClass('delete')){\r\n\t\tvar removeButton = $(this).parents('.product-line-item').find('.user-action-remove button');\r\n\t\tremoveButton.trigger('click');\r\n\t}\r\n\t\r\n\r\n\t$(qtyTextField).text(('0'+currentValue).slice(-2));\r\n\t$(qtyFormField).val(currentValue).trigger('change');\r\n});\r\n\r\nfunction initializeAll() {\r\n\tlogin.init();\r\n\tinitializeEvents();\r\n\trecommendations();\r\n\tproductTile.init();\r\n\tproductTile.initCarouselSwatches();\r\n\tisGift();\r\n\tgiftMessage();\r\n\tupdateCart();\r\n\tcartCount();\r\n\tgiftShipping.init();\r\n\tgiftCert.init();\r\n\tsummarysection.init();\r\n\tutil.limitCharacters();\r\n\tif (SitePreferences.STORE_PICKUP) {\r\n\t\tcartStoreInventory.init();\r\n\t}\r\n\taccount.initCartLogin();\r\n\tif ($('.cart-column').length) {\r\n\t\tstickyCheckout();\r\n\t}\r\n\tif ($('.pt_cart .cart-error').length) {\r\n\t\tstickyCartError();\r\n\t\thandleErrorMsgClick();\r\n\t}\r\n}\r\n\r\nexports.init = initializeAll;\n},{\".././samples\":82,\"../analytics\":2,\"../bonus-products-view\":5,\"../giftcert-modal\":18,\"../modal\":27,\"../page\":30,\"../product-tile\":77,\"../quickview\":79,\"../samples\":82,\"../storeinventory/cart\":88,\"../util\":93,\"./account\":31,\"./checkout/login\":40,\"./checkout/shipping\":42,\"./product/recommendations\":54,\"./summarysection\":71}],34:[function(require,module,exports){\n'use strict';\r\n\r\nvar formPrepare = require('./checkout/formPrepare'),\r\n\tvalidator = require('../validator');\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Validates if check order form is filled out before enabling button\r\n */\r\nfunction initializeEvents() {\r\n\tvalidator.initForm('form[id$=\"ordertrack\"]');\r\n}\r\n\r\nexports.init = function () {\r\n\tinitializeEvents();\r\n}\r\n\n},{\"../validator\":95,\"./checkout/formPrepare\":38}],35:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('../../util');\r\nvar shipping = require('./shipping');\r\n\r\n/**\r\n * @function\r\n * @description Selects the first address from the list of addresses\r\n */\r\nexports.init = function () {\r\n\tvar $form = $('.address');\r\n\t// select address from list\r\n\t$('select[name$=\"_addressList\"]', $form).on('change', function () {\r\n\t\tvar selected = $(this).children(':selected').first();\r\n\t\tvar selectedAddress = $(selected).data('address');\r\n\t\tif (!selectedAddress) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tutil.fillAddressFields(selectedAddress, $form);\r\n\t\tshipping.updateShippingMethodList();\r\n\t\t// re-validate the form\r\n\t\t$form.validate().form();\r\n\t});\r\n};\n},{\"../../util\":93,\"./shipping\":42}],36:[function(require,module,exports){\n'use strict';\r\n\r\nvar ajax = require('../../ajax'),\r\n\tformPrepare = require('./formPrepare'),\r\n\tgiftcard = require('../../giftcard'),\r\n\tutil = require('../../util'),\r\n\tcardValidation = require('./card-validation'),\r\n\tvalidator = require('../../validator'),\r\n\tsummarysection = require('../../pages/summarysection'),\r\n\tindex = require('../product/index'),\r\n\tcustomModal = require('../../modal');\r\n\r\nvar $cache;\r\n\r\n/**\r\n * @function\r\n * @description Changes the payment method form depending on the passed paymentMethodID\r\n * @param {String} paymentMethodID the ID of the payment method, to which the payment method form should be changed to\r\n */\r\nfunction updatePaymentMethod(paymentMethodID) {\r\n\tvar $paymentMethods = $('.payment-method');\r\n\t$paymentMethods.removeClass('payment-method-expanded');\r\n\r\n\tvar dataMethod = paymentMethodID;\r\n\tif (paymentMethodID == 'SA_SILENTPOST') {\r\n\t\tdataMethod = 'CREDIT_CARD';\r\n\t}\r\n\r\n\tvar $selectedPaymentMethod = $paymentMethods.filter('[data-method=\"' + dataMethod + '\"]');\r\n\tif ($selectedPaymentMethod.length === 0) {\r\n\t\t$selectedPaymentMethod = $('[data-method=\"Custom\"]');\r\n\t}\r\n\r\n\tif (paymentMethodID == \"CREDIT_CARD\" || paymentMethodID == \"SA_SILENTPOST\") {\r\n\t\t$(\".spsavecard\").show();\r\n\t} else if ((paymentMethodID == \"SA_REDIRECT\" || paymentMethodID == \"SA_IFRAME\") && SitePreferences.TOKENIZATION_ENABLED) {\r\n\t\t$(\".spsavecard\").show();\r\n\t} else {\r\n\t\t$(\".spsavecard\").hide();\r\n\t}\r\n\r\n\t$selectedPaymentMethod.addClass('payment-method-expanded');\r\n\r\n\t// ensure checkbox of payment method is checked\r\n\t$('input[name$=\"_selectedPaymentMethodID\"]').prop('checked', false);\r\n\t$('input[value=' + paymentMethodID + ']').prop('checked', 'checked');\r\n\r\n}\r\n\r\nfunction handleDisplayselectedCard(currentcard, $selectedCards) {\r\n\t$selectedCards.find('.card-icon').addClass('other-cards');\r\n\t$selectedCards.find(\"[data-card-type='\" + currentcard + \"']\").removeClass('other-cards').addClass(\"current-card\");\r\n}\r\n\r\nfunction creditCardTypeDetector(options) {\r\n\r\n\t// the regular expressions check for possible matches as you type, hence the OR operators based on the number of chars\r\n\t// Visa\r\n\tvar visa_regex = new RegExp('^4[0-9]{0,15}$'),\r\n\r\n\t\t// MasterCard\r\n\t\tmastercard_regex = new RegExp('^5$|^5[1-5][0-9]{0,14}$'),\r\n\r\n\t\t// American Express\r\n\t\tamex_regex = new RegExp('^3$|^3[47][0-9]{0,13}$'),\r\n\r\n\t\t//Discover\r\n\t\tdiscover_regex = new RegExp('^6[05]$|^601[1]?$|^65[0-9][0-9]?$|^6(?:011|5[0-9]{2})[0-9]{0,12}$'),\r\n\r\n\t\t//JCB\r\n\t\tunionpay_regex = new RegExp('^62[0-9]{0,14}$|^645[0-9]{0,13}$|^65[0-9]{0,14}$'),\r\n\t\t\r\n\t\tcvnField = $('input.cvn');\r\n\r\n\t$('.cc-number input').on('focusout', function (e) {\r\n\t\tvar cur_val = $(this).val();\r\n\r\n\t\t//Commenting this out since the event is handled on focusout\r\n\t\t// if ( cur_val.length == 16 ) {\r\n\t\t// e.preventDefault();\r\n\t\t// return;\r\n\t\t// }\r\n\r\n\t\tvar $ccNumberContain = $(this).parents('.cc-number');\r\n\t\tvar $selectedCards = $('.available-cards');\r\n\t\t// get rid of spaces and dashes before using the regular expression\r\n\t\tcur_val = cur_val.replace(/ /g, '').replace(/-/g, '');\r\n\r\n\t\tvar $creditCard = $('[data-method=\"CREDIT_CARD\"]');\r\n\r\n\t\t// checks per each, as their could be multiple hits\r\n\t\tif (cur_val.match(visa_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_visa');\r\n\t\t\t$selectedCards.addClass('is_visa');\r\n\t\t\thandleDisplayselectedCard('is_visa', $selectedCards);\r\n\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"Visa\").trigger('change');\r\n\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_visa');\r\n\t\t\t$selectedCards.removeClass('is_visa', $selectedCards);\r\n\t\t}\r\n\r\n\t\tif (cur_val.match(mastercard_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_mastercard');\r\n\t\t\t$selectedCards.addClass('is_mastercard');\r\n\t\t\thandleDisplayselectedCard('is_mastercard', $selectedCards);\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"MasterCard\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_mastercard');\r\n\t\t\t$selectedCards.removeClass('is_mastercard');\r\n\t\t}\r\n\r\n\t\tif (cur_val.match(amex_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_amex');\r\n\t\t\t$selectedCards.addClass('is_amex');\r\n\t\t\thandleDisplayselectedCard('is_amex', $selectedCards);\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"Amex\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_amex');\r\n\t\t\t$selectedCards.removeClass('is_amex');\r\n\t\t}\r\n\r\n\t\tif (cur_val.match(discover_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_discover');\r\n\t\t\t$selectedCards.addClass('is_discover');\r\n\t\t\thandleDisplayselectedCard('is_discover', $selectedCards);\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"Discover\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_discover');\r\n\t\t\t$selectedCards.removeClass('is_discover');\r\n\t\t}\r\n\r\n\t\tif (cur_val.match(unionpay_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_unionpay');\r\n\t\t\t$selectedCards.addClass('is_unionpay');\r\n\t\t\thandleDisplayselectedCard('is_unionpay');\r\n\t\t\t$creditCard.find('input[name$=\"_type\"]').val(\"Union\").trigger('change');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_unionpay');\r\n\t\t\t$selectedCards.removeClass('is_unionpay');\r\n\t\t}\r\n\r\n\t\t// if nothing is a hit we add a class to fade them all out\r\n\t\tif (cur_val != '' && !cur_val.match(visa_regex) && !cur_val.match(mastercard_regex) &&\r\n\t\t\t!cur_val.match(amex_regex) && !cur_val.match(discover_regex) && !cur_val.match(unionpay_regex)) {\r\n\t\t\t$ccNumberContain.addClass('is_nothing');\r\n\t\t\t$selectedCards.addClass('is_nothing');\r\n\t\t\thandleDisplayselectedCard('is_nothing');\r\n\t\t} else {\r\n\t\t\t$ccNumberContain.removeClass('is_nothing');\r\n\t\t\t$selectedCards.removeClass('is_nothing');\r\n\t\t}\r\n\t\t\r\n\t\tif(cur_val.match(amex_regex)) {\r\n\t\t\tcvnField.prop('maxlength', 4);\r\n\t\t} else {\r\n\t\t\tcvnField.prop('maxlength', 3);\r\n\t\t}\r\n\t});\r\n\r\n};\r\n\r\nfunction checkGiftCert() {\r\n\tvar $balance = $('div#gift-card-balance-form .balance');\r\n\tvar $error = $('div#gift-card-balance-form .balance-error');\r\n\tvar $giftCode = $('div#gift-card-balance-form input[name$=\"_giftCertCode\"]');\r\n\tvar $giftPin = $('div#gift-card-balance-form input[name$=\"_giftCertPIN\"]');\r\n\r\n\t$error.html('');\r\n\t$balance.html('');\r\n\tif ($giftCode.val().length === 0) {\r\n\t\t$error.html(Resources.GIFT_CARD_CODE_INVALID);\r\n\t\treturn;\r\n\t} else if ($giftCode.val().length !== 0 && $giftPin.val().length === 0) {\r\n\t\t$error.html(Resources.GIFT_CARD_PIN_INVALID);\r\n\t\treturn;\r\n\t} else if ($giftCode.val().length === 0 && $giftPin.val().length === 0) {\r\n\t\t$error.html(Resources.GIFT_CARD_CODE_PIN_INVALID);\r\n\t\treturn;\r\n\t}\r\n\r\n\tgiftcard.checkBalance($giftCode.val(), $giftPin.val(), function (data) {\r\n\t\tif (data && data.error) {\r\n\t\t\treturn $error.html(data.error);\r\n\t\t}\r\n\r\n\t\tif (!data || !data.giftCertificate) {\r\n\t\t\t$error.html(Resources.GIFT_CARD_CODE_PIN_INVALID);\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tif (!data || !data.giftCertificate) {\r\n\t\t\t$balance.html(Resources.GIFT_CERT_INVALID).removeClass('success').addClass('error');\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\t$balance.html(Resources.GIFT_CERT_CURRENT_BALANCE + ' ' + data.giftCertificate.balance);\r\n\r\n\t\t$giftCode.attr('disabled', \"true\");\r\n\t\t$giftPin.attr('disabled', \"true\");\r\n\t\t$('button#check-giftcert-modal').addClass('hide');\r\n\t\t$('button#add-giftcert-modal').removeClass('hide');\r\n\t\t$('button#new-giftcert-modal').removeClass('hide');\r\n\t});\r\n};\r\n\r\nfunction applyGiftCert() {\r\n\tvar $error = $('div#gift-card-balance-form .balance-error');\r\n\tvar $giftCode = $('div#gift-card-balance-form input[name$=\"_giftCertCode\"]');\r\n\tvar $giftPin = $('div#gift-card-balance-form input[name$=\"_giftCertPIN\"]');\r\n\r\n\t$error.html('');\r\n\tif ($giftCode.val().length === 0) {\r\n\t\t$error.html(Resources.GIFT_CARD_CODE_INVALID);\r\n\t\treturn;\r\n\t}\r\n\t/*else if ($giftCode.val().length !== 0 && $giftPin.val().length === 0) {\r\n\t $error.html(Resources.GIFT_CARD_PIN_INVALID);\r\n\t return;\r\n\t} else if ($giftCode.val().length === 0 && $giftPin.val().length === 0) {\r\n\t $error.html(Resources.GIFT_CARD_CODE_PIN_INVALID);\r\n\t return;\r\n\t}*/\r\n\r\n\tvar url = util.appendParamsToUrl(Urls.redeemGiftCert, {\r\n\t\tgiftCertCode: $giftCode.val(),\r\n\t\tgiftCertPIN: $giftPin.val(),\r\n\t\tformat: 'ajax'\r\n\t});\r\n\t$.getJSON(url, function (data) {\r\n\t\tvar fail = false;\r\n\t\tvar msg = '';\r\n\t\tif (!data) {\r\n\t\t\tmsg = Resources.BAD_RESPONSE;\r\n\t\t\tfail = true;\r\n\t\t} else if (!data.success) {\r\n\t\t\tmsg = data.message.split('<').join('<').split('>').join('>');\r\n\t\t\tfail = true;\r\n\t\t}\r\n\t\tif (fail) {\r\n\t\t\t$error.html(msg);\r\n\t\t\treturn;\r\n\t\t} else {\r\n\t\t\twindow.location.assign(Urls.billing);\r\n\t\t}\r\n\t});\r\n};\r\n\r\nfunction initCache() {\r\n\t$cache = {};\r\n\r\n\t$cache.checkoutForm = $(\".checkout-billing\");\r\n\t$cache.selectedCardIdInput = $cache.checkoutForm.find('input[name$=\"_selectedCardID\"]');\r\n}\r\n\r\nfunction initCreditCardForm() {\r\n\t$cache.checkoutForm.find('input[name$=\"_selectedCardID\"]').val('');\r\n\t$cache.checkoutForm.find('input[name*=\"_number\"]').val('');\r\n\r\n\tvar $ccContainer = $cache.checkoutForm.find(\".payment-method\").filter(function () {\r\n\t\treturn $(this).data(\"method\") == \"CREDIT_CARD\";\r\n\t});\r\n\r\n\t$ccContainer.find('input[name*=\"_number\"]').on('change', function (e) {\r\n\t\t$cache.checkoutForm.find('input[name$=\"_selectedCardID\"]').val('');\r\n\t});\r\n\t$ccContainer.find('input[name$=\"_owner\"]').on('change', function (e) {\r\n\t\t$cache.checkoutForm.find('input[name$=\"_selectedCardID\"]').val('');\r\n\t});\r\n\r\n\t$ccContainer.find('select[name*=\"expiration\"]').on('change', function (e) {\r\n\t\t$cache.checkoutForm.find('input[name$=\"_selectedCardID\"]').val('');\r\n\r\n\t\tvar selectedPaymentMethodID = $('input[name$=\"_selectedPaymentMethodID\"]:checked').val();\r\n\t\tvar cardNumber = $cache.checkoutForm.find('input[name*=\"_number\"]').val();\r\n\t\tif (cardNumber.indexOf('****') != -1 && selectedPaymentMethodID == 'SA_SILENTPOST') {\r\n\t\t\t$cache.checkoutForm.find('input[name*=\"_number\"]').val('');\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction setSelectedCardID(uuid) {\r\n\t$cache.selectedCardIdInput.val(uuid);\r\n}\r\n\r\nfunction enableCountryField(status) {\r\n\tvar countryField = $('select[id$=\"billing_billingAddress_addressFields_country\"]');\r\n\tif (status) {\r\n\t\tcountryField.prop('disabled', false);\r\n\t} else {\r\n\t\tcountryField.prop('disabled', true);\r\n\t}\r\n}\r\n\r\nfunction addCVNEvent() {\r\n\t$('input[name$=\"creditCard_cvn\"]').on('keydown', function (e) {\r\n\t\tif (e.key.toString().match(/[\\d]/) ||\r\n\t\t\t$.inArray(e.keyCode, [8, 9, 13, 46, 33, 34, 35, 36, 37, 38, 39, 40]) >= 0) {\r\n\t\t\t// do nothing\r\n\t\t} else {\r\n\t\t\te.preventDefault();\r\n\t\t\te.stopPropagation();\r\n\t\t\treturn;\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction initGiftCardBalance() {\r\n\tvar $checkoutForm = $('.checkout-billing');\r\n\tvar $addGiftCert = $('#add-giftcert');\r\n\tvar $giftCertCode = $('input[name$=\"_giftCertCode\"]');\r\n\tvar $giftCertPin = $('input[name$=\"_giftCertPIN\"]');\r\n\tvar $addCoupon = $('#add-coupon');\r\n\tvar $couponCode = $('input[name$=\"_couponCode\"]');\r\n\r\n\t// Check Balance button is clicked in Check Balance Modal\r\n\t$(document).off('click', 'button#check-giftcert-modal');\r\n\t$(document).on('click', 'button#check-giftcert-modal', function (e) {\r\n\t\te.preventDefault();\r\n\t\tcheckGiftCert();\r\n\t});\r\n\r\n\t// Check Another Card button is clicked in Check Balance Modal\r\n\t$(document).off('click', 'button#new-giftcert-modal');\r\n\t$(document).on('click', 'button#new-giftcert-modal', function (e) {\r\n\t\tvar $balance = $('div#gift-card-balance-form .balance');\r\n\t\tvar $error = $('div#gift-card-balance-form .balance-error');\r\n\t\tvar $giftCode = $('div#gift-card-balance-form input[name$=\"_giftCertCode\"]');\r\n\t\tvar $giftPin = $('div#gift-card-balance-form input[name$=\"_giftCertPIN\"]');\r\n\r\n\t\t$balance.html('');\r\n\t\t$error.html('');\r\n\t\t$giftCode.val(null).prop('disabled', false);\r\n\t\t$giftPin.val(null).prop('disabled', false);\r\n\r\n\t\t$('button#add-giftcert-modal').addClass('hide');\r\n\t\t$('button#new-giftcert-modal').addClass('hide');\r\n\t\t$('button#check-giftcert-modal').removeClass('hide');\r\n\t});\r\n\r\n\t// Apply button is clicked in Check Balance Modal\r\n\t$(document).off('click', 'button#add-giftcert-modal');\r\n\t$(document).on('click', 'button#add-giftcert-modal', function (e) {\r\n\t\te.preventDefault();\r\n\t\tapplyGiftCert();\r\n\t});\r\n\r\n\t$addGiftCert.off();\r\n\t$addGiftCert.on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar code = $giftCertCode.val();\r\n\t\tvar pin = $giftCertPin.val();\r\n\t\t//var $error = $checkoutForm.find('.giftcert-error');\r\n\t\tvar $error = $checkoutForm.find('.apply-error');\r\n\r\n\t\t// clear all errors\r\n\t\t$(this).closest('form').find('span.error').remove();\r\n\r\n\t\t$error.html('');\r\n\t\tif (code.length === 0) {\r\n\t\t\t$error.html(Resources.GIFT_CARD_CODE_INVALID);\r\n\t\t\treturn;\r\n\t\t} else if (code.length !== 0 && pin.length === 0) {\r\n\t\t\t$error.html(Resources.GIFT_CARD_PIN_INVALID);\r\n\t\t\treturn;\r\n\t\t} else if (code.length === 0 && pin.length === 0) {\r\n\t\t\t$error.html(Resources.GIFT_CARD_CODE_PIN_INVALID);\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar url = util.appendParamsToUrl(Urls.redeemGiftCert, {\r\n\t\t\tgiftCertCode: code,\r\n\t\t\tgiftCertPIN: pin,\r\n\t\t\tformat: 'ajax'\r\n\t\t});\r\n\t\t$.getJSON(url, function (data) {\r\n\t\t\tvar fail = false;\r\n\t\t\tvar msg = '';\r\n\t\t\tif (!data) {\r\n\t\t\t\tmsg = Resources.BAD_RESPONSE;\r\n\t\t\t\tfail = true;\r\n\t\t\t} else if (!data.success) {\r\n\t\t\t\tmsg = data.message.split('<').join('<').split('>').join('>');\r\n\t\t\t\tfail = true;\r\n\t\t\t}\r\n\t\t\tif (fail) {\r\n\t\t\t\t$error.html(msg);\r\n\t\t\t\treturn;\r\n\t\t\t} else {\r\n\t\t\t\twindow.location.assign(Urls.billing);\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\r\n\t$giftCertCode.off();\r\n\t$giftCertCode.on('keydown', function (e) {\r\n\t\tif (e.which === 13) {\r\n\t\t\te.preventDefault();\r\n\t\t\t$addGiftCert.trigger('click');\r\n\t\t}\r\n\t});\r\n}\r\n\r\n\r\n//address modal close\r\nfunction addressModalClose() {\r\n\t$(document).on(\"click\", \".edit-add-address .cancel-button\", function () {\r\n\t\t$('.edit-add-address .modal-close').trigger('click');\r\n\t})\r\n}\r\n\r\n/**\r\n * @function\r\n * @description loads billing address, Gift Certificates, Coupon and Payment methods\r\n */\r\nexports.init = function () {\r\n\tcardValidation.init();\r\n\tinitCache();\r\n\tinitCreditCardForm();\r\n\tinitGiftCardBalance();\r\n\tsummarysection.init();\r\n\r\n\r\n\t$(document).on('click', '.billing .address-create', function () {\r\n\t\t\t$('.ajax-loader').show();\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: Urls.checkoutAddBillingAddress,\r\n\t\t\t\tdataType: 'html',\r\n\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\tif (response.indexOf('header-wrapper') === -1) {\r\n\t\t\t\t\t\tindex = require('../product/index');\r\n\t\t\t\t\t\tcustomModal.createCustomModal('edit-add-address');\r\n\t\t\t\t\t\t$('.edit-add-address').find('.modal-body').html(response);\r\n\t\t\t\t\t\tindex.bodyPositionFixed('edit-add-address');\r\n\t\t\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t\t\taddressModalClose();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}).always(function (data) {\r\n\t\t\t\t$('select').selectmenu();\r\n\t\t\t\tvalidator.initStateValidation();\r\n\t\t\t\tvalidator.initForm('form[id=\"EditAddressForm\"]');\r\n\t\t\t\t$('.edit-add-address .modal-body').scrollBox();\r\n\t\t\t\t//Hide addressname on billing\r\n\t\t\t\tif ($('.pt_checkout').length > 0 && $('.addressname').length > 0) {\r\n\t\t\t\t\t$('.edit-add-address').find('.addressname').addClass('hidden');\r\n\t\t\t\t}\r\n\r\n\t\t\t\t//Remove state field error element\r\n\t\t\t\tsetTimeout(function () {\r\n\t\t\t\t\t$('.state .error-placement').remove();\r\n\t\t\t\t\t$('.state span.ui-selectmenu-button').removeClass('dropdownerror');\r\n\t\t\t\t}, 500);\r\n\t\t\t});\r\n\t\t})\r\n\t\t// edit address link\r\n\t\t.on(\"click\", \".billing .address-edit\", function (evt) {\r\n\t\t\tvar $this = $(this);\r\n\t\t\tvar addressID = $this.data('addressId');\r\n\r\n\t\t\t$('.ajax-loader').show();\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: Urls.checkoutEditBillingAddress + encodeURIComponent(addressID),\r\n\t\t\t\tdataType: 'html',\r\n\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\tif (response.indexOf('header-wrapper') === -1) {\r\n\t\t\t\t\t\tindex = require('../product/index');\r\n\t\t\t\t\t\tcustomModal.createCustomModal('edit-add-address');\r\n\t\t\t\t\t\t$('.edit-add-address').find('.modal-body').html(response);\r\n\t\t\t\t\t\tindex.bodyPositionFixed('edit-add-address');\r\n\t\t\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t\t\taddressModalClose();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}).always(function (data) {\r\n\t\t\t\t$('select').selectmenu();\r\n\t\t\t\tvalidator.initStateValidation();\r\n\t\t\t\tvalidator.initForm('form[id=\"EditAddressForm\"]');\r\n\t\t\t\tvar setDefaultCheckbox = $('input[id$=\"_setdefault\"]');\r\n\t\t\t\tif (setDefaultCheckbox.prop('checked')) {\r\n\t\t\t\t\tsetDefaultCheckbox.attr('disabled', 'true');\r\n\t\t\t\t}\r\n\t\t\t\t$('.edit-add-address .modal-body').scrollBox();\r\n\t\t\t\t//Hide addressname on billing\r\n\t\t\t\tif ($('.pt_checkout').length > 0 && $('.addressname').length > 0) {\r\n\t\t\t\t\t$('.edit-add-address').find('.addressname').addClass('hidden');\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t});\r\n\r\n\tvar $selectPaymentMethod = $('.payment-method-options');\r\n\tvar selectedPaymentMethod = $selectPaymentMethod.find(':checked').val();\r\n\tvalidator.initStateValidation();\r\n\tvalidator.initForm('form[id$=\"billing\"]');\r\n\tcardValidation.init();\r\n\r\n\tfunction toggleBillingAddressFields(visible) {\r\n\t\tif (visible == true) {\r\n\t\t\t$('.country-dependent').each(function () {\r\n\t\t\t\t$(this).show();\r\n\t\t\t});\r\n\t\t} else {\r\n\t\t\t$('.country-dependent').each(function () {\r\n\t\t\t\t$(this).hide();\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\tif (window.User.isCustomerAuthenticated == false) {\r\n\t\t\t$('.checkout-billing').find('.set-default-cb').hide();\r\n\t\t}\r\n\t}\r\n\r\n\t$(document).on('change', '#dwfrm_billing_billingAddress_addressFields_country, #dwfrm_billingaddress_country', function () {\r\n\t\tvar selectContry = $(this).val();\r\n\t\tif (selectContry == '') {\r\n\t\t\ttoggleBillingAddressFields();\r\n\t\t} else if (selectContry == 'us') {\r\n\t\t\ttoggleBillingAddressFields(true);\r\n\t\t\t$('.us-fields').show();\r\n\t\t\t$('.us-fields input').each(function () {\r\n\t\t\t\t$(this).addClass('required');\r\n\t\t\t});\r\n\r\n\t\t\t$('.cn-fields').hide();\r\n\t\t\t$('.cn-fields input').each(function () {\r\n\t\t\t\t$(this).removeClass('required');\r\n\t\t\t});\r\n\t\t} else {\r\n\t\t\ttoggleBillingAddressFields(true);\r\n\t\t\t$(\".cn-fields\").show().css({\r\n\t\t\t\t\"display\": \"flex\"\r\n\t\t\t});\r\n\t\t\t$('.cn-fields input').each(function () {\r\n\t\t\t\t$(this).addClass('required');\r\n\t\t\t});\r\n\r\n\t\t\t$('.us-fields').hide();\r\n\t\t\t$('.us-fields input').each(function () {\r\n\t\t\t\t$(this).removeClass('required');\r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n\r\n\t$('.billing-address-section :input').on('change', function (e) {\r\n\t\tif (e.target.id == 'dwfrm_billing_billingAddress_useAsBillingAddress') {\r\n\t\t\treturn false;\r\n\t\t}\r\n\r\n\t\t$('#dwfrm_billing_billingAddress_useAsBillingAddress').prop('checked', false);\r\n\t});\r\n\r\n\t$('input#same-as-shipping').on('change', function () {\r\n\t\tvar sameascheckbox = $(this);\r\n\r\n\t\tif (sameascheckbox.is(\":checked\")) {\r\n\t\t\t$('.saved-addresses.select-billing-address').addClass('hidden');\r\n\t\t\t$('.saved-addresses.default-billing-address').removeClass('hidden');\r\n\t\t\t/** for Same as shipping address in billing address\r\n\t\t\t Removing the errors on hiding billing address */\r\n\t\t\t$('.saved-addresses.select-billing-address').find('div.error-placement').remove();\r\n\t\t\t$('.saved-addresses.select-billing-address').find('span.error').remove();\r\n\t\t\t$('.saved-addresses.select-billing-address').find('select').removeClass('dropdownerror error');\r\n\t\t\t$('.saved-addresses.select-billing-address').find('.state span.ui-selectmenu-button').removeClass('dropdownerror');\r\n\t\t\t$('.saved-addresses.select-billing-address').find('input').removeClass('error');\r\n\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_firstName').val($('#dwfrm_billing_billingAddress_addressFields_firstName').attr('data-firstname'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_lastName').val($('#dwfrm_billing_billingAddress_addressFields_lastName').attr('data-lastname'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_address1').val($('#dwfrm_billing_billingAddress_addressFields_address1').attr('data-address1'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_address2').val($('#dwfrm_billing_billingAddress_addressFields_address2').attr('data-address2'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_city').val($('#dwfrm_billing_billingAddress_addressFields_city').attr('data-city'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_city').val($('#dwfrm_billing_billingAddress_addressFields_city').attr('data-city'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_postal').val($('#dwfrm_billing_billingAddress_addressFields_postal').attr('data-postal'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_country').val($('#dwfrm_billing_billingAddress_addressFields_country').attr('data-country'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_states_state').val($('#dwfrm_billing_billingAddress_addressFields_states_state').attr('data-state'));\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_phone').val($('#dwfrm_billing_billingAddress_addressFields_phone').attr('data-phone'));\r\n\t\t\t$('#sameAsShippingAddress').val(false);\r\n\t\t\t// for logged-in users with address, reselect default shipping address\r\n\t\t\t// if customer chooses to use the shipping address as their billing address\r\n\t\t\tvar selectedShipping = $('div.address-tile.address-default');\r\n\t\t\tif (selectedShipping) {\r\n\t\t\t\tselectedShipping.removeClass('selected');\r\n\t\t\t\tselectedShipping.removeClass('default');\r\n\t\t\t\tselectedShipping.trigger('click');\r\n\t\t\t\t//enabling the continue button on same as shipping address selection\r\n\t\t\t\t$('.billing-address-section .continue').prop('disabled', false);\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\t$('.saved-addresses.default-billing-address').addClass('hidden');\r\n\t\t\t$('.saved-addresses.select-billing-address').removeClass('hidden');\r\n\t\t\t$('.checkout-billing').find('.addressname').addClass('hidden');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_firstName').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_lastName').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_address1').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_address2').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_city').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_postal').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_phone').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_postcode').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_province').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_states_state').val('');\r\n\t\t\t$('#dwfrm_billing_billingAddress_addressFields_states_state').selectmenu('refresh');\r\n\t\t\t$('#sameAsShippingAddress').val(true);\r\n\t\t\t$('.checkout-billing').find('.set-default-cb').addClass('hidden');\r\n\t\t}\r\n\t});\r\n\r\n\t// default payment method to 'CREDIT_CARD'\r\n\tupdatePaymentMethod((selectedPaymentMethod) ? selectedPaymentMethod : 'CREDIT_CARD');\r\n\t$selectPaymentMethod.on('click', 'input[type=\"radio\"]', function () {\r\n\t\tupdatePaymentMethod($(this).val());\r\n\t});\r\n\r\n\t$('.gift-card-form-toggle').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tvar $giftCardForm = $('.gift-card-form');\r\n\t\tvar $giftCardCheckLink = $('.check-gift-card');\r\n\r\n\t\t$giftCardForm.slideDown().removeClass('rolledup');\r\n\t\t$giftCardCheckLink.removeClass('hide');\r\n\t\t$(this).addClass('hide');\r\n\t\tinitGiftCardBalance();\r\n\r\n\t\t$('.gift-card-form input[name$=\"_giftCertCode\"], .gift-card-form input[name$=\"_giftCertPIN\"]').on('blur', function (e) {\r\n\t\t\tvar $this = $(this);\r\n\t\t\t$this.siblings('span.error').remove();\r\n\t\t\t$this.removeClass('error');\r\n\t\t\t$('#add-giftcert').prop('disabled', false);\r\n\t\t\t$('.gift-card-form .apply-error').html('');\r\n\r\n\t\t\tif ($this.val() && !$this.val().trim().match(/^[a-z0-9]+$/i)) {\r\n\t\t\t\t$('<span class=\"error\">' + $this.attr('data-required-text') + '</span>').insertBefore($this);\r\n\t\t\t\t$this.addClass('error');\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\r\n\tcreditCardTypeDetector();\r\n\r\n\t$(document).on('click', '.credit-card-create', function (evt) {\r\n\t\t$('.ajax-loader').show();\r\n\t\t$.ajax({\r\n\t\t\turl: Urls.checkoutAddCreditCard,\r\n\t\t\tdataType: 'html',\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\tif (response.indexOf('header-wrapper') === -1) {\r\n\t\t\t\t\tcustomModal.createCustomModal('add-credit-card');\r\n\t\t\t\t\t$('.add-credit-card').find('.modal-body').html(response);\r\n\t\t\t\t\tindex.bodyPositionFixed('add-credit-card');\r\n\t\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}).always(function (data) {\r\n\t\t\t$('select').selectmenu();\r\n\t\t\tcreditCardTypeDetector();\r\n\t\t\tcardValidation.init();\r\n\t\t\tvalidator.initForm('form[id$=\"CreditCardForm\"]');\r\n\t\t\t$('.add-credit-card .modal-body').scrollBox();\r\n\t\t});\r\n\t});\r\n\r\n\t$(document).on(\"submit\", \"#CreditCardForm\", function (evt) {\r\n\t\tevt.preventDefault();\r\n\r\n\t\tvar $form = $(this);\r\n\r\n\t\t$.ajax({\r\n\t\t\turl: util.appendParamToURL($form.attr('action'), 'format', 'ajax'),\r\n\t\t\tdata: $form.serialize() + '&' + $form.find('#applyBtn').attr('name') + '=x',\r\n\t\t\ttype: 'POST'\r\n\t\t}).done(function (data) {\r\n\t\t\tif (data.length) {\r\n\t\t\t\tvalidator.initForm('form[id$=\"CreditCardForm\"]');\r\n\t\t\t\tcardValidation.init();\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\tif (!location.assign(Urls.billing)) {\r\n\t\t\t\twindow.location.href = Urls.billing;\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\r\n\t//select credit card tile\r\n\t$(document).on('click', '.payment-list .creditcard-tile', function (evt) {\r\n\t\tvar $this = $(this);\r\n\t\tvar ccEdit = $this.find('.credit-card-edit');\r\n\t\tvar cvnParent = $('.creditcard-tile.selected');\r\n\t\tvar fauxCVNInput = '<div class=\"cvn-input\"></div>';\r\n\t\tvar CVNInput = '<input class=\"input-text required cvn\" type=\"text\" id=\"dwfrm_billing_paymentMethods_creditCard_cvn\" data-id=\"input-billing-paymentMethods-creditCard-cvn\" name=\"dwfrm_billing_paymentMethods_creditCard_cvn\" maxlength=\"4\" required aria-required=\"true\" data-required-text=\"' + Resources.SAVED_CARD_CVV_REQUIRED_ERROR + '\" placeholder=\"' + Resources.SAVED_CARD_CVV_PLACEHOLDER + '\">';\r\n\t\t\r\n\t\tif(cvnParent.find('.cc-number').hasClass('is_amex')) {\r\n\t\t\tcvnParent.find('.saved-cvn input').attr('maxlength','4');\r\n\t\t}\r\n\t\telse {\r\n\t\t\tcvnParent.find('.saved-cvn input').attr('maxlength','3');\r\n\t\t}\r\n\t\t\r\n\t\tif (evt.target == ccEdit[0]) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tif ($(this).is('.selected, .default')) {\r\n\t\t\treturn false;\r\n\t\t} else {\r\n\t\t\t$('.creditcard-tile').each(function () {\r\n\t\t\t\t$(this).removeClass('selected');\r\n\t\t\t\t$(this).removeClass('default');\r\n\t\t\t\t$(this).find('.saved-cvn').addClass('disabled');\r\n\t\t\t\t$(this).find('.saved-cvn input').replaceWith(fauxCVNInput);\r\n\t\t\t\t$(this).find('.js-editCVVLink').addClass('hidden');\r\n\t\t\t\t$(this).find('.error-placement').remove();\r\n\t\t\t});\r\n\r\n\t\t\t$this.addClass('selected');\r\n\t\t\t$this.find('.cvn-input').removeClass('disabled');\r\n\t\t\t$this.find('.saved-cvn .cvn-input').replaceWith(CVNInput).removeClass('hidden');\r\n\t\t\t$('.masked-values').addClass('hidden');\r\n\t\t\t$this.find('.saved-cvn input').focus();\r\n\t\t\t$this.find('.saved-cvn input').trigger(\"click\");\r\n\r\n\t\t\tvar element = document.getElementById(evt.currentTarget.id);\r\n\r\n\t\t\tvar creditcardPosition = element.dataset.creditcardPosition;\r\n\r\n\t\t\tvar url = util.appendParamsToUrl(Urls.checkoutCreditCardSelection, {\r\n\t\t\t\tposition: creditcardPosition\r\n\t\t\t});\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: url,\r\n\t\t\t\ttype: 'GET',\r\n\t\t\t\tsuccess: function (result) {}\r\n\t\t\t});\r\n\r\n\t\t\tsetSelectedCardID($this.data(\"uuid\"));\r\n\t\t\taddCVNEvent();\r\n\t\t}\r\n\t\t$(this).find('input').on('focusout', function (e) {\r\n\t\t\tif ($(this).val() !== '') {\r\n\t\t\t\t$('.selected .masked-values').removeClass('hidden').text(creditCardMask($(this)[0].value));\r\n\t\t\t\t$(this).addClass('hideCVV');\r\n\t\t\t\t$('.selected .js-editCVVLink').removeClass('hidden');\r\n\t\t\t\t$('.selected .error-placement').remove();\r\n\t\t\t}\r\n\t\t\tvalidator.initForm('form[id$=\"billing\"]');\r\n\t\t});\r\n\t});\r\n\r\n\t//Click event on credit card tile edit cvv link\r\n\t$(document).on('click', '.creditcard-tile.selected .js-editCVVLink', function (e) {\r\n\t\te.preventDefault();\r\n\t\t$('.selected .masked-values').addClass('hidden');\r\n\t\t$('.creditcard-tile.selected').find('input').removeClass('hideCVV').focus();\r\n\t\t$('.selected .js-editCVVLink').addClass('hidden');\r\n\t});\r\n\r\n\tfunction creditCardMask(number) {\r\n\t\tvar character = \"*\";\r\n\t\tnumber = number.replace(/[^0-9]+/g, ''); /*ensureOnlyNumbers*/\r\n\t\tvar l = number.length;\r\n\t\treturn Array(number.length + 1).join(\"*\").toString();\r\n\t}\r\n\r\n\t$(document).on('click', '.address-list .address-tile', function (evt) {\r\n\t\tif ($(this).is('.selected, .default') || evt.target.nodeName == 'A') {\r\n\t\t\treturn false;\r\n\t\t} else {\r\n\t\t\t$('.address-list .address-tile').each(function () {\r\n\t\t\t\t$(this).removeClass('selected');\r\n\t\t\t\t$(this).removeClass('default');\r\n\t\t\t});\r\n\r\n\t\t\t$(this).addClass('selected');\r\n\r\n\t\t\tvar element = document.getElementById(evt.currentTarget.id);\r\n\t\t\tvar addressID = element.dataset.addressId;\r\n\t\t\t\r\n\t\t\tvar $data = new FormData();\r\n\t\t\t$data.append( window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n\t\t\t$data.append( 'addressID', addressID);\r\n\t\t\t\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: util.appendParamToURL(Urls.updateBillingAddressDetails, 'format', 'ajax'),\r\n\t\t\t\tprocessData: false,\r\n\t\t\t contentType: false,\r\n\t\t\t method: 'POST',\r\n\t\t\t data :$data,\r\n\t\t\t\tsuccess: function (result) {}\r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n\r\n\t$('.order-summary-footer form').on('submit', function () {\r\n\t\t$('#summary-place-order').prop('disabled', true).addClass('loading');\r\n\t\treturn true;\r\n\t});\r\n\t\r\n\t//update the checkobox with backend value\r\n\tif ($('input#same-as-shipping').length > 0 && $('#sameAsShippingAddress').val()!=\"true\") {\r\n\t\t$('input#same-as-shipping').prop('checked', true);\r\n\t\t$('input#same-as-shipping').trigger('change');\r\n\t}\r\n\t\r\n\t// if same as shipping is checked, re-select default address\r\n\t// or if nothing is selected, re-select default address\r\n\tif (($('input#same-as-shipping').length > 0 && $('input#same-as-shipping').is(\":checked\")) ||\r\n\t\t$('div.address-list div.address-tile.selected').length <= 0) {\r\n\t\t$(document).find('div.address-list div.address-tile').each(function (ind, evt) {\r\n\t\t\tif ($(this).hasClass('default') || $(this).hasClass('selected') || $(this).hasClass('address-default')) {\r\n\t\t\t\t$(this).removeClass('selected');\r\n\t\t\t\t$(this).removeClass('default');\r\n\r\n\t\t\t\t$(this).trigger('click');\r\n\t\t\t}\r\n\t\t});\r\n\t} else if ($('input#same-as-shipping').length == 0 && $('div.address-list div.address-tile.selected').length > 0) {\r\n\t\t// if no physical product to ship, re-select tile to properly assign billing address\r\n\t\tvar reSelectTile = $('div.address-list div.address-tile.selected');\r\n\t\treSelectTile.removeClass('selected');\r\n\t\treSelectTile.removeClass('default');\r\n\t\treSelectTile.trigger('click');\r\n\t}\r\n\r\n\t// trigger click event for selected by default cc (to manually trigger cc code)\r\n\tvar selectedCC = $('div.payment-method div.creditcard-tile.selected');\r\n\tif (selectedCC) {\r\n\t\tselectedCC.removeClass('selected').trigger('click');\r\n\t}\r\n\r\n\t// maximize order checkout summary dropdown\r\n\tutil.maximizeCheckoutSummary();\r\n\r\n\t// trigger only for non-registered users\r\n\tif (window.User.isCustomerAuthenticated == false) {\r\n\t\t$('input[name$=\"_creditCard_cvn\"], input[name$=\"_creditCard_owner\"]').on('change', function () {\r\n\t\t\t$('select[name$=\"_creditCard_expiration_month\"]').trigger('change');\r\n\t\t\t$('select[name$=\"_creditCard_expiration_month\"]').trigger('change');\r\n\t\t});\r\n\t}\r\n\r\n\t// Review step Screen offset\r\n\tif (window.innerWidth <= 768) {\r\n\t\tvar reviewButton = $('.primary-content .review').find('#summary-place-order');\r\n\t\tif (reviewButton.length > 0) {\r\n\t\t\tvar element = $('.primary-content .review');\r\n\t\t\tvar offset = element.offset();\r\n\t\t\tvar offsetTop = offset.top;\r\n\t\t\t$('html, body').scrollTop(offsetTop - 200);\r\n\t\t}\r\n\t}\r\n}\n},{\"../../ajax\":1,\"../../giftcard\":17,\"../../modal\":27,\"../../pages/summarysection\":71,\"../../util\":93,\"../../validator\":95,\"../product/index\":52,\"./card-validation\":37,\"./formPrepare\":38}],37:[function(require,module,exports){\n'use strict';\r\n\r\n// https://gist.github.com/ShirtlessKirk/2134376\r\n\r\nvar luhnCheck = (function (arr) {\r\n\treturn function (ccNum) {\r\n\t\tvar len = ccNum.length;\r\n\t\tvar bit = 1;\r\n\t\tvar sum = 0;\r\n\t\tvar val;\r\n\r\n\t\twhile (len) {\r\n\t\t\tval = parseInt(ccNum.charAt(--len), 10);\r\n\t\t\tsum += (bit ^= 1) ? arr[val] : val;\r\n\t\t}\r\n\r\n\t\treturn sum && sum % 10 === 0;\r\n\t};\r\n}([0, 2, 4, 6, 8, 1, 3, 5, 7, 9]));\r\n\r\nvar cvvCheck = function (cvv) {\r\n\treturn /^[0-9]{3,4}$/.test(cvv);\r\n};\r\n\r\nvar initCardExpiry = function () {\r\n\tvar ccSave = $('#CreditCardForm #applyBtn');\r\n\tccSave.on('click', function (e) {\r\n\t\tvalidateCardExpiry(this, true, false);\r\n\t});\r\n\t$(\".billing-continue-container .continue\").on('click', function (e) {\r\n\t\tvalidateCardExpiry(this, true, false);\r\n\t});\r\n\r\n\t$('.month-field .ui-selectmenu-button, .year-field .ui-selectmenu-button, .card-expiry.month, .card-expiry.year').on('blur', function () {\r\n\t\tvalidateCardExpiry(this, false, true);\r\n\t});\r\n\r\n};\r\n\r\nvar validateCardExpiry = function (el, checkEmpty, flagOnBlur) {\r\n\t// need to declare specifically in order not to confuse with other forms with similar inputs\r\n\tvar $this = $(el);\r\n\tvar selectedValue;\r\n\tif($(el).hasClass('card-expiry')) {\r\n\t\tselectedValue = $(el).val();\r\n\t} else {\r\n\t\tselectedValue = $this.siblings('select').val();\r\n\t}\r\n\tvar $month = $this.closest('form').find('.card-expiry.month');\r\n\tvar $year = $this.closest('form').find('.card-expiry.year');\r\n\tvar hasError = false;\r\n\r\n\tvar now = new Date();\r\n\tvar nowMonth = now.getMonth() + 1;\r\n\tvar nowYear = now.getFullYear();\r\n\r\n\tif (flagOnBlur && selectedValue == \"\") {\r\n\t\tvar customyearRow = $this.parents().siblings('label');\r\n\t\tcustomyearRow.next('.error-placement').remove();\r\n\t\t$('<div class=\"error-placement\"><i class=\"error-icon error-icon-dropdown\"></i><span class=\"error\">' + Resources.INVALID_CARDEXPIRY + '</span></div>').insertAfter(customyearRow);\r\n\t\tcustomyearRow.parent().find('span.ui-selectmenu-button, select').addClass('dropdownerror');\r\n\t\thasError = true;\r\n\t} else {\r\n\t\t$this.removeClass('dropdownerror');\r\n\t\t$this.parents().siblings('.error-placement').remove();\r\n\t}\r\n\t// validate only on form submit\r\n\tif (checkEmpty && ($month.length > 0 || $year.length > 0) && (!$month.val() || !$year.val())) {\r\n\t\tvar customyearRow = $('.month-field label');\r\n\t\tcustomyearRow.next('.error-placement').remove();\r\n\t\t$('<div class=\"error-placement\"><i class=\"error-icon error-icon-dropdown\"></i><span class=\"error\">' + Resources.INVALID_CARDEXPIRY + '</span></div>').insertAfter(customyearRow);\r\n\t\tcustomyearRow.parent().find('span.ui-selectmenu-button, select').addClass('dropdownerror');\r\n\t\thasError = true;\r\n\r\n\t\t// validate only if month and year has value, otherwise, ignore\r\n\t} else if ($month.val() && $year.val() && (($month.val() < nowMonth && $year.val() <= nowYear) || ($month.val() > nowMonth && $year.val() < nowYear))) {\r\n\t\tvar customyearRow = $('.month-field label');\r\n\t\tcustomyearRow.next('.error-placement').remove();\r\n\t\t$('<div class=\"error-placement\"><i class=\"error-icon error-icon-dropdown\"></i><span class=\"error\">' + Resources.INVALID_CARDEXPIRY + '</span></div>').insertAfter(customyearRow);\r\n\t\t$('.expiration-date span.ui-selectmenu-button, .expiration-date select').addClass('dropdownerror');\r\n\t\thasError = true;\r\n\t}\r\n\r\n\t// highlight inputs if expiry has error \r\n\tif (hasError) {\r\n\t\t$this.not('#applyBtn').addClass('dropdownerror');\r\n\t\tif ($('.add-cc-button-wrap').length > 0) {\r\n\t\t\t$('.add-cc-button-wrap #applyBtn').attr('disabled', 'true');\r\n\t\t}\r\n\t\tif ($('.billing-address-section').length > 0) {\r\n\t\t\t$('.billing-address-section .continue').attr('disabled', 'true');\r\n\t\t}\r\n\t} else {\r\n\t\thasError = false;\r\n\t\t$month.next().removeClass('dropdownerror');\r\n\t\t$year.next().removeClass('dropdownerror');\r\n\t\t$month.parents().siblings('.error-placement').remove();\r\n\t\t$year.parents().siblings('.error-placement').remove();\r\n\t\tif ($('.add-cc-button-wrap').length > 0) { //for popup on registered\r\n\t\t\tif($('.pt_account').length > 0) {\r\n\t\t\t\tif($('#CreditCardForm .error-placement').length == 0) {\r\n\t\t\t\t\t$('.add-cc-button-wrap #applyBtn').prop('disabled', false);\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\t$('.add-cc-button-wrap #applyBtn').prop('disabled', false);\r\n\t\t\t}\r\n\t\t}\r\n\t\tif ($('.billing-address-section').length > 0) { //for page form guest user and unsaved card registered\r\n\t\t\tif ($('.select-billing-address').hasClass('hidden')) {\r\n\t\t\t\t$('.billing-address-section .continue').prop('disabled', false);\r\n\t\t\t}\t\r\n\t\t}\r\n\t}\r\n};\r\n\r\nexports.init = function () {\r\n\tinitCardExpiry();\r\n}\n},{}],38:[function(require,module,exports){\n'use strict';\r\n\r\nvar _ = require('lodash'),\r\n\tutil = require('../../util');\r\n\r\nvar hasEmptyRequired = function () {\r\n\t// filter out only the visible fields\r\n\tvar requiredValues = this.$requiredInputs.filter(':visible').map(function () {\r\n\t\treturn $(this).val();\r\n\t});\r\n\treturn _(requiredValues).contains('');\r\n};\r\n\r\nvar validateForm = function () {\r\n\tvar _self = this;\r\n\t// only validate form when all required fields are filled to avoid\r\n\t// throwing errors on empty form\r\n\tif (!this.validator) {\r\n\t\treturn;\r\n\t}\r\n\r\n\t// wait for the form to show before validating.. this applies to modals\r\n\tthis.timer = setInterval(function () {\r\n\t\tif (_self.$form.is(':visible')) {\r\n\t\t\tif (_self.$form.find('span.error, .error-form:visible').length == 0) { //!_self.hasEmptyRequired() &&\r\n\t\t\t\t_self.$continue.prop('disabled', false);\r\n\t\t\t} else {\r\n\t\t\t\t_self.$continue.prop('disabled', true);\r\n\t\t\t}\r\n\t\t\tclearInterval(_self.timer);\r\n\t\t}\r\n\t}, 100);\r\n\r\n};\r\n\r\nvar validateEl = function (e) {\r\n\tif ($(e.target).val() === '') {\r\n\t\tthis.$continue.prop('disabled', true);\r\n\t} else {\r\n\t\t// enable continue button on last required field that is valid\r\n\t\t// only validate single field\r\n\t\tif (!this.hasEmptyRequired()) {\r\n\t\t\t//this.$continue.removeAttr('disabled');\r\n\t\t} else {\r\n\t\t\tthis.$continue.prop('disabled', true);\r\n\t\t}\r\n\t}\r\n};\r\n\r\nvar checkValue = function (repopulateRequiredFields, e) {\r\n\tvar $el = $(e.target);\r\n\tvar attr = $el.attr('clear-on-error');\r\n\r\n\t// check for new required fields (e.g. changing US -> CH in address)\r\n\tif (repopulateRequiredFields) {\r\n\t\tthis.$requiredInputs = this.$form.find('input.required');\r\n\t}\r\n\r\n\t// remove any error message residue from previous validation\r\n\t$el.parents('.form-row').find('.error-placement').remove();\r\n\r\n\tif (this.validator.element($el) &&\r\n\t\tthis.$form.find('span.error').length == 0) {\r\n\t\tthis.$continue.prop('disabled', false);\r\n\t} else {\r\n\t\tthis.$continue.prop('disabled', true);\r\n\r\n\t\t// clear the value if input has error\r\n\t\tif (typeof attr !== typeof undefined && attr !== false) $el.val('');\r\n\t}\r\n};\r\n\r\nvar submitForm = function (e) {\r\n\tthis.$form.find('input').trigger('blur');\r\n\tthis.$form.find('select').trigger('blur');\r\n\tthis.$form.find('.ui-selectmenu-button').trigger('blur');\r\n\r\n\tif (this.validator.numberOfInvalids() > 0 || this.$form.data('submitting') == true || $(\".state .required option:selected\").text() == Resources.SELECT_STATE_OPTION || this.$form.find(':input[class$=\"error\"]').length > 0) {\r\n\t\tvar $errInputWrapper = this.$form.find(':input[class$=\"error\"]:first').parents('.form-row');\r\n\t\tif(this.$form.parents('.sb-content').length != 0) {\r\n\t\t\tvar $dialogContentWrapper = this.$form.parents('.sb-content');\r\n\t\t\tif(!util.checkInDialogView($dialogContentWrapper, $errInputWrapper, false)) {\r\n\t\t\t\t$('.sb-content').animate({\r\n\t\t\t\t\tscrollTop: $errInputWrapper.offset().top - $dialogContentWrapper.offset().top + $dialogContentWrapper.scrollTop() \r\n\t\t\t\t}, 500 );\r\n\t\t\t} \r\n\t\t} else {\r\n\t\t\tif (!util.isInViewport($errInputWrapper)) {\r\n\t\t\t\t$(\"body,html\").animate({\r\n\t\t\t\t\tscrollTop: $errInputWrapper.offset().top - ($('.checkout-header-container').length !==0 ? 0 : $('.header-wrapper').height())\r\n\t\t\t\t}, 500 );\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\te.preventDefault();\r\n\t\te.stopPropagation();\r\n\t\treturn;\r\n\t}\r\n\r\n\t// adding this to prevent multiple submission of forms\r\n\tif (this.$form.attr('multiple-submission') === 'false') {\r\n\t\tthis.$form.data('submitting', true);\r\n\t}\r\n};\r\n\r\nvar init = function (opts, settings) {\r\n\tif (!opts.formSelector || !opts.continueSelector) {\r\n\t\tthrow new Error('Missing form and continue action selectors.');\r\n\t}\r\n\tthis.$form = $(opts.formSelector);\r\n\tthis.$continue = $(opts.continueSelector);\r\n\tthis.validator = settings ? this.$form.validate(settings) : this.$form.validate();\r\n\tthis.$allInputs = $('input, textarea', this.$form);\r\n\tthis.$allSelect = $('select:not(.dob, .birthmonth, .card-expiry.month, .card-expiry.year)', this.$form);\r\n\tthis.$requiredInputs = this.$form.find('input.required');\r\n\t// this.validateForm();\r\n\r\n\t// start listening\r\n\t//this.$requiredInputs.on('change', $.proxy(this.validateEl, this));\r\n\tthis.$allInputs.on('blur', $.proxy(this.checkValue, this, false));\r\n\tthis.$allSelect.on('blur', $.proxy(this.checkValue, this, true));\r\n\tthis.$continue.on('click', $.proxy(this.submitForm, this));\r\n\t// [life-hack:5079] needed to trigger onclick since blur prevents the form from submitting\r\n\t/*if (this.$continue.attr('mousesubmit') === 'true') {\r\n\t\tthis.$continue.on('mousedown', $.proxy(function (e) {\r\n\t\t\tthis.$continue.trigger('click');\r\n\t\t}, this));\r\n\t}*/\r\n};\r\n\r\nvar formPrepare = function () {\r\n\treturn {\r\n\t\t$form: null,\r\n\t\t$continue: null,\r\n\t\t$allInputs: null,\r\n\t\t$allSelect: null,\r\n\t\t$requiredInputs: null,\r\n\t\tvalidator: null,\r\n\t\tinit: init,\r\n\t\ttimer: null,\r\n\t\thasEmptyRequired: hasEmptyRequired,\r\n\t\tcheckValue: checkValue,\r\n\t\tvalidateForm: validateForm,\r\n\t\tsubmitForm: submitForm,\r\n\t\tvalidateEl: validateEl\r\n\t}\r\n}\r\n\r\nmodule.exports = formPrepare;\n},{\"../../util\":93,\"lodash\":137}],39:[function(require,module,exports){\n'use strict';\r\n\r\nvar address = require('./address'),\r\n\tbilling = require('./billing'),\r\n\tmultiship = require('./multiship'),\r\n\tshipping = require('./shipping');\r\n\r\n/**\r\n * @function Initializes the page events depending on the checkout stage (shipping/billing)\r\n */\r\nexports.init = function () {\r\n\taddress.init();\r\n\tif ($('.checkout-shipping').length > 0) {\r\n\t\tshipping.init();\r\n\t} else if ($('.checkout-multi-shipping').length > 0) {\r\n\t\tmultiship.init();\r\n\t} else {\r\n\t\tbilling.init();\r\n\t}\r\n\r\n\t//if on the order review page and there are products that are not available diable the submit order button\r\n\tif ($('.order-summary-footer').length > 0) {\r\n\t\tif ($('.notavailable').length > 0) {\r\n\t\t\t$('.order-summary-footer .submit-order .button-fancy-large').attr('disabled', 'disabled');\r\n\t\t}\r\n\t}\r\n};\n},{\"./address\":35,\"./billing\":36,\"./multiship\":41,\"./shipping\":42}],40:[function(require,module,exports){\n'use strict';\r\n\r\nvar validator = require('../../validator');\r\n\r\n/**\r\n * @function\r\n * @description Toggle between guest and account checkout\r\n */\r\nfunction toggleCheckoutMethod() {\r\n\t$('.checkout-toggle-link').on('click', function() {\r\n\t\t$('.checkoutlogin').toggleClass('account');\r\n\t});\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Enable/disable button depending if input has value and mandatory field\r\n */\r\nfunction enableDisableSubmitButton(el) {\r\n\tvar $saveBtn = $(el).closest('form').find('button[type=\"submit\"]');\r\n\tvar hasError = $saveBtn.closest('form').find('span.error');\r\n\tif(hasError.length) {\r\n\t\treturn true\r\n\t} else {\r\n\t\treturn false;\r\n\t}\r\n}\r\n\r\nfunction checkoutButtonEnableDisable() {\r\n\t//Guest Checkout\r\n\tif($('.guest-checkout').length) {\r\n\t\tvar form = $('form[id=\"guest-login\"]'),\r\n\t\t\temailButton1 = $('.guest-checkout button'),\r\n\t\t\temailInput1 = $('.guest-checkout input[type=\"email\"]'),\r\n\t\t\tsetDefaultCheckbox1 = $('input[id$=\"_termsandconditions\"]');\r\n\r\n\t\t\t$(emailInput1).on('blur', function() {\r\n\t\t\t\tvar validator = form.validate();\r\n\t\t\t\tvar validFlag = validator.element($(this));\r\n\t\t\t\temailButton1.prop('disabled', $(form).find('.error-placement').length > 0 ? true : false);\r\n\t\t\t});\r\n\t}\r\n\r\n\t//Account Checkout\r\n\tif($('.account-checkout').length) {\r\n\t\tvar emailButton2 = $('.account-checkout .login-account button'),\r\n\t\t\temailInput2 = $('.account-checkout .login-account input[type=\"email\"]'),\r\n\t\t\tpassword = $('.account-checkout .login-account input[type=\"password\"]');\r\n\t\t$(emailInput2, password).on('blur focus', function() {\r\n\t\t\tvar email_regx = validator.regex.email;\r\n\t\t\tif (email_regx.test(emailInput2.val())) {\r\n\t\t\t\tif(!password.val().length || enableDisableSubmitButton(emailButton2)) {\r\n\t\t\t\t\temailButton2.prop('disabled', 'disabled');\r\n\t\t\t\t} else {\r\n\t\t\t\t\temailButton2.prop('disabled', false);\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\temailButton2.prop('disabled', 'disabled');\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\t//Existing Account Checkout\r\n\tif($('.existing-account-login').length) {\r\n\t\tvar emailButton3 = $('.existing-account-login button#login'),\r\n\t\t\temailButton4 = $('.existing-account-login button#guestcheckout'),\r\n\t\t\tpassword3 = $('.existing-account-login input[type=\"password\"]');\r\n\t\t$(password3).on('blur', function() {\r\n\t\t\tif (!password3.val().length) {\r\n\t\t\t\temailButton3.prop('disabled', 'disabled');\r\n\t\t\t} else {\r\n\t\t\t\temailButton3.prop('disabled', false);\r\n\t\t\t}\r\n\t\t\tenableDisableSubmitButton(emailButton3);\r\n\t\t\temailButton4.prop('disabled', false);\r\n\t\t});\r\n\t\r\n\t\tif (!password3.val().length) {\r\n\t\t\temailButton3.prop('disabled', 'disabled');\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunction checkoutModeDropdownToggle(){\r\n\t$('input[type=\"radio\"]').on(\"click\",function(){\r\n var inputValue = $(this).attr(\"value\");\r\n var targetBox = $(\".\" + inputValue);\r\n $(\".login-box\").not(targetBox).hide();\r\n $(targetBox).show();\r\n\t});\r\n}\r\n\r\nfunction checkoutLoginShowPassword(){\r\n\t$('.show-password').on(\"click\",function(){\r\n var passwordInput = $(\".input-field.password input\") ;\r\n var inputType = passwordInput.attr(\"type\");\r\n\t\tvar shwowPasswordCheckbox = $(\".show-password\")[0].checked;\r\n\t\tif(shwowPasswordCheckbox && inputType === \"password\"){\r\n\t\t\tpasswordInput.attr(\"type\",\"text\")\r\n\t\t}\r\n\t\telse{\r\n\t\t\tpasswordInput.attr(\"type\",\"password\")\r\n\t\t}\r\n });\r\n}\r\n\r\nexports.init = function () {\r\n\ttoggleCheckoutMethod();\r\n\tcheckoutButtonEnableDisable();\r\n\tcheckoutModeDropdownToggle();\r\n\tcheckoutLoginShowPassword();\r\n};\r\n\n},{\"../../validator\":95}],41:[function(require,module,exports){\n'use strict';\r\n\r\nvar address = require('./address'),\r\n\tformPrepare = require('./formPrepare'),\r\n\tutil = require('../../util'),\r\n\tvalidator = require('../../validator');\r\n\r\n/**\r\n * @function\r\n * @description Initializes gift message box for multiship shipping, the message box starts off as hidden and this will display it if the radio button is checked to yes, also added event handler to listen for when a radio button is pressed to display the message box\r\n */\r\nfunction initMultiGiftMessageBox() {\r\n\t$.each($('.item-list'), function () {\r\n\t\tvar $this = $(this);\r\n\t\tvar $giftMessage = $this.find('.gift-message-text');\r\n\r\n\t\t//handle initial load\r\n\t\t$giftMessage.toggleClass('hidden', $('input[name$=\"_isGift\"]:checked', this).val() !== 'true');\r\n\r\n\t\t//set event listeners\r\n\t\t$this.on('change', function () {\r\n\t\t\t$giftMessage.toggleClass('hidden', $('input[name$=\"_isGift\"]:checked', this).val() !== 'true');\r\n\t\t});\r\n\t});\r\n}\r\n\r\n\r\n/**\r\n * @function\r\n * @description capture add edit adddress form events\r\n */\r\nfunction addEditAddress(target) {\r\n\tvar $addressForm = $('form[name$=\"multishipping_editAddress\"]'),\r\n\t\t$addressDropdown = $addressForm.find('select[name$=_addressList]'),\r\n\t\t$addressList = $addressForm.find('.address-list'),\r\n\t\tadd = true,\r\n\t\toriginalUUID,\r\n\t\tresetOptionValue = false,\r\n\t\tselectedAddressUUID = $(target).parent().siblings('.select-address').val();\r\n\r\n\t$addressDropdown.on('change', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tvar selectedAddress = $addressList.find('select').val();\r\n\t\tif (selectedAddress !== 'newAddress') {\r\n\t\t\tselectedAddress = $.grep($addressList.data('addresses'), function (add) {\r\n\t\t\t\treturn add.UUID === selectedAddress;\r\n\t\t\t})[0];\r\n\t\t\tadd = false;\r\n\t\t\tresetOptionValue = false;\r\n\t\t\t// proceed to fill the form with the selected address\r\n\t\t\tutil.fillAddressFields(selectedAddress, $addressForm);\r\n\t\t} else if (selectedAddress === 'newAddress') {\r\n\t\t\tadd = true;\r\n\t\t\tresetOptionValue = true;\r\n\t\t\t$addressForm.find('.input-text, .input-select').val('');\r\n\t\t} else {\r\n\t\t\t//reset the form if the value of the option is not a UUID\r\n\t\t\t$addressForm.find('.input-text, .input-select').val('');\r\n\t\t}\r\n\t});\r\n\r\n\t$addressForm.on('submit', function (e) {\r\n\t\te.preventDefault();\r\n\t\tif (!$addressForm.valid()) {\r\n\t\t\treturn false;\r\n\t\t}\r\n\r\n\t\t$.getJSON(Urls.addEditAddress, $addressForm.serialize(), function (response) {\r\n\t\t\tif (!response.success) {\r\n\t\t\t\t$('#multiaddresserror').html(Resources.COULD_NOT_SAVE_ADDRESS);\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\t$('#multiaddresserror').toggleClass('hidden', response.success);\r\n\r\n\t\t\tvar address = response.address,\r\n\t\t\t\t$shippingAddress = $(target).closest('.shippingaddress'),\r\n\t\t\t\t$select = $shippingAddress.find('.select-address'),\r\n\t\t\t\t$selected = $select.find('option:selected'),\r\n\t\t\t\tnewOption = '<option value=\"' + address.UUID + '\">' +\r\n\t\t\t\t((address.ID) ? '(' + address.ID + ')' : address.firstName + ' ' + address.lastName) + ', ' +\r\n\t\t\t\taddress.address1 + ', ' + address.city + ', ' + address.stateCode + ', ' + address.postalCode +\r\n\t\t\t\t'</option>';\r\n\r\n\t\t\tif (address.UUID !== originalUUID) {\r\n\t\t\t\tresetOptionValue = true;\r\n\t\t\t}\r\n\r\n\t\t\tif (add) {\r\n\t\t\t\t$('.shippingaddress select').removeClass('no-option').append(newOption);\r\n\t\t\t\t$('.no-address').hide();\r\n\t\t\t} else {\r\n\t\t\t\t$('.shippingaddress select').find('option[value=\"' + address.UUID + '\"]').html(newOption);\r\n\t\t\t}\r\n\t\t\t// if there's no previously selected option, select it\r\n\t\t\tif ($selected.length === 0 || $selected.val() === '' || resetOptionValue) {\r\n\t\t\t\t$select.find('option[value=\"' + address.UUID + '\"]').prop('selected', 'selected').trigger('change');\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\r\n\t//preserve the uuid of the option for the hop up form\r\n\tif (selectedAddressUUID) {\r\n\t\t//update the form with selected address\r\n\t\t$addressList.find('option').each(function () {\r\n\t\t\t//check the values of the options\r\n\t\t\tif ($(this).attr('value') === selectedAddressUUID) {\r\n\t\t\t\t$(this).prop('selected', 'selected');\r\n\t\t\t\t$addressDropdown.trigger('change');\r\n\t\t\t}\r\n\t\t});\r\n\t\toriginalUUID = selectedAddressUUID;\r\n\t}\r\n\r\n\tvalidator.init();\r\n}\r\n\r\n/**\r\n * @function\r\n * @description shows gift message box in multiship, and if the page is the multi shipping address page it will call initmultishipshipaddress() to initialize the form\r\n */\r\nexports.init = function () {\r\n\tinitMultiGiftMessageBox();\r\n\tif ($('.cart-row .shippingaddress .select-address').length > 0) {\r\n\t\tvalidator.initForm('form[id$=\"multishipping_addressSelection\"]');\r\n\t}\r\n};\n},{\"../../util\":93,\"../../validator\":95,\"./address\":35,\"./formPrepare\":38}],42:[function(require,module,exports){\n'use strict';\r\n\r\nvar ajax = require('../../ajax'),\r\n\tprogress = require('../../progress'),\r\n\ttooltip = require('../../tooltip'),\r\n\tutil = require('../../util'),\r\n\tvalidator = require('../../validator'),\r\n\t//addressVerificationSvc = require('../../qas'),\r\n\tsummarysection = require('../../pages/summarysection'),\r\n\tindex = require('../product/index'),\r\n\tcustomModal = require('../../modal');\r\n\r\nvar $cache, shippingMethods;\r\n\r\nfunction initCache() {\r\n\tvar $formEle = $('form[id$=\"_shippingAddress\"]');\r\n\t$cache = {\r\n\t\taddrForm: {\r\n\t\t\taddress1: $formEle.find('input[name$=\"_address1\"]'),\r\n\t\t\taddress2: $formEle.find('input[name$=\"_address2\"]'),\r\n\t\t\tcountryCode: $formEle.find('select[id$=\"_country\"]'),\r\n\t\t\tstateCode: $formEle.find('select[id$=\"_state\"]'),\r\n\t\t\tpostalCode: $formEle.find('input[name$=\"_postal\"]'),\r\n\t\t\tcity: $formEle.find('input[name$=\"_city\"]')\r\n\t\t}\r\n\t};\r\n}\r\n\r\n//address modal close\r\nfunction addressModalClose() {\r\n\t$(document).on(\"click\", \".edit-add-address .cancel-button\", function() {\r\n\t\t$('.edit-add-address .modal-close').trigger('click');\r\n\t})\r\n}\r\n\r\nfunction initEvents() {\r\n\taddressModalClose();\r\n\t$(document)\r\n\t\t// create address link\r\n\t\t.on(\"click\", \".address-create\", function(evt) {\r\n\t\t\t$('.ajax-loader').show();\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: Urls.checkoutAddAddress,\r\n\t\t\t\tdataType: 'html',\r\n\t\t\t\tsuccess: function(response)\r\n\t\t\t\t{\r\n\t\t\t\t\tif(response.indexOf('header-wrapper') === -1) {\r\n\t\t\t\t\t\tindex = require('../product/index');\r\n\t\t\t\t\t\tcustomModal.createCustomModal('edit-add-address');\r\n\t\t\t\t\t\t$('.edit-add-address').find('.modal-body').html(response);\r\n\t\t\t\t\t\tindex.bodyPositionFixed('edit-add-address');\r\n\t\t\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t\t\taddressModalClose();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}).always(function(data) {\r\n\t\t\t\t$('select').selectmenu();\r\n\t\t\t\t$('.edit-add-address .modal-body').scrollBox();\r\n\t\t\t\tvalidator.initStateValidation();\r\n\t\t\t\tvalidator.initForm('form[id=\"EditAddressForm\"]');\r\n\r\n\t\t\t\t//Remove state field error element\r\n\t\t\t\tsetTimeout(function () {\r\n\t\t\t\t\t$('.state .error-placement').remove();\r\n\t\t\t\t\t$('.state span.ui-selectmenu-button').removeClass('dropdownerror');\r\n\t\t\t\t}, 500);\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// edit address link\r\n\t\t.on(\"click\", \".address-edit\", function(evt) {\r\n\t\t\tvar $this = $(this);\r\n\t\t\tvar addressID = $this.data('addressId');\r\n\r\n\t\t\t$('.ajax-loader').show();\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: Urls.checkoutEditAddress + encodeURIComponent(addressID),\r\n\t\t\t\tdataType: 'html',\r\n\t\t\t\tsuccess: function(response)\r\n\t\t\t\t{\r\n\t\t\t\t\tif(response.indexOf('header-wrapper') === -1) {\r\n\t\t\t\t\t\tindex = require('../product/index');\r\n\t\t\t\t\t\tcustomModal.createCustomModal('edit-add-address');\r\n\t\t\t\t\t\t$('.edit-add-address').find('.modal-body').html(response);\r\n\t\t\t\t\t\tindex.bodyPositionFixed('edit-add-address');\r\n\t\t\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\t\t\taddressModalClose();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}).always(function(data) {\r\n\t\t\t\t$('select').selectmenu();\r\n\t\t\t\tvalidator.initStateValidation();\r\n\t\t\t\tvalidator.initForm('form[id=\"EditAddressForm\"]');\r\n\t\t\t\t\r\n\t\t\t\tvar setDefaultCheckbox = $('input[id$=\"_setdefault\"]');\r\n\t\t\t\tif (setDefaultCheckbox.prop('checked')) {\r\n\t\t\t\t\tsetDefaultCheckbox.attr('disabled', 'true');\r\n\t\t\t\t}\r\n\r\n\t\t\t\t$('.edit-add-address .modal-body').scrollBox();\r\n\t\t\t});\r\n\t\t})\r\n\r\n\t\t// authenticated user address change\r\n\t\t.on('click', '.address-list .address-tile', function(evt) {\r\n\t\t\tif ($(this).is('.selected, .default') || evt.target.nodeName == 'A') {\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\r\n\t\t\t$('.address-list .address-tile').each(function() {\r\n\t\t\t\t$(this).removeClass('selected');\r\n\t\t\t\t$(this).removeClass('default');\r\n\t\t\t});\r\n\r\n\t\t\t$(this).addClass('selected');\r\n\r\n\t\t\tvar element = document.getElementById(evt.currentTarget.id);\r\n\t\t\tvar addressID = element.dataset.addressId;\r\n\r\n\t\t\t// update address; on success update shipping method list\r\n\t\t\tvar $data = new FormData();\r\n\t\t\t$data.append( window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n\t\t\t$data.append( 'addressID', addressID);\r\n\t\t\t$.ajax({\r\n\t \t\turl: util.appendParamToURL(Urls.updateAddressDetails, 'format', 'ajax'),\r\n\t \t\tdata: $data,\r\n\t \t\tprocessData: false,\r\n\t \t\tcontentType: false,\r\n\t \t\tmethod: 'POST',\r\n\t\t\t success : function(response) {\r\n\t\t\t \tupdateShippingMethodList();\r\n\t\t\t }\r\n\t\t\t});\r\n\t\t});\r\n\r\n\t// guest user address change\r\n\tvar timer = null;\r\n\t$('form[id$=\"_shippingAddress\"]').on('change', 'input[name$=\"_addressFields_address1\"], input[name$=\"_addressFields_address2\"], select[name$=\"_addressFields_states_state\"], input[name$=\"_addressFields_city\"], input[name$=\"_addressFields_postal\"]', function() {\r\n\t\tif (!validateAddrForm()) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tif (timer) {\r\n\t\t\twindow.clearTimeout(timer);\r\n\t\t}\r\n\r\n\t\ttimer = window.setTimeout(function() {\r\n\t\t\t$.post(Urls.setShippingAddressDetails, $('form[id$=\"_singleshipping_shippingAddress\"]').serialize(), function(result) {\r\n\t\t\t\tupdateShippingMethodList();\r\n\t\t\t});\r\n\t\t}, 200);\r\n\t});\r\n\r\n\t$('input[name$=\"_shippingAddress_isGift\"]').on('click', giftMessageBox);\r\n\t$('input[name$=\"_cart_isGift\"]').on('click', function() {\r\n\t\tgiftMessageBox();\r\n\t\t//Update Order Summary\r\n\t\t$('.ajax-loader').show();\r\n\t\t$.ajax({\r\n\t\t\turl: Urls.updateGiftWrap,\r\n\t\t\tdataType: 'html',\r\n\t\t\tsuccess: function(response) {\r\n\t\t\t\t$('.order-estimation-details').html(response);\r\n\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t}\r\n\t\t})\r\n\t});\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Initializes gift message box, if shipment is gift\r\n */\r\nfunction giftMessageBox() {\r\n\t// show gift message box, if shipment is gift\r\n\t$('.gift-container .input-textarea').val('').trigger('blur').trigger('keyup');\r\n\t$('.gift-message-text').toggleClass('hidden', $('input[name$=\"_shippingAddress_isGift\"]:checked').val() !== 'true');\r\n\t$('.complimentary-gift-container').toggleClass('d-none', $('input[name$=\"_cart_isGift\"]:checked').val() !== 'true');\r\n}\r\n\r\n/**\r\n * @function\r\n * @description updates the order summary based on a possibly recalculated basket after a shipping promotion has been applied\r\n */\r\nfunction updateSummary() {\r\n\tvar $summary = $('#secondary.summary');\r\n\tvar couponError;\r\n\r\n\tif ($('.cart-coupon-code .error').length) {\r\n\t\tcouponError = $('.cart-coupon-code .error').clone();\r\n\t}\r\n\r\n\t// indicate progress\r\n\tprogress.show($summary);\r\n\r\n\t// load the updated summary area\r\n\t$summary.load(Urls.summaryRefreshURL, function() {\r\n\t\t// hide edit shipping method link\r\n\t\t$summary.fadeIn('fast');\r\n\r\n\t\t// checkout checkout minicart on right side event handling\r\n\t\taddSummaryScrollbar();\r\n\r\n\t\t$summary.find('.checkout-mini-cart .minishipment .header a').hide();\r\n\t\t$summary.find('.order-totals-table .order-shipping .label a').hide();\r\n\t\t$('.cart-coupon-code').append(couponError);\r\n\t\tutil.maximizeCheckoutSummary();\r\n\r\n\t});\r\n}\r\n\r\nfunction getAddressFromTile() {\r\n\tvar $selectedAddress = $(\".address-tile.selected address\");\r\n\r\n\treturn {\r\n\t\taddress1: $selectedAddress.data(\"address-one\"),\r\n\t\taddress2: $selectedAddress.data(\"address-two\") || \"\",\r\n\t\tcountryCode: $selectedAddress.data(\"country-code\"),\r\n\t\tstateCode: $selectedAddress.data(\"state-code\"),\r\n\t\tpostalCode: $selectedAddress.data(\"postal-code\"),\r\n\t\tcity: $selectedAddress.data(\"city\")\r\n\t};\r\n}\r\n\r\nfunction getAddressFromForm() {\r\n\treturn {\r\n\t\taddress1: $cache.addrForm.address1.val(),\r\n\t\taddress2: $cache.addrForm.address2.val(),\r\n\t\tcountryCode: $cache.addrForm.countryCode.val(),\r\n\t\tstateCode: $cache.addrForm.stateCode.val(),\r\n\t\tpostalCode: $cache.addrForm.postalCode.val(),\r\n\t\tcity: $cache.addrForm.city.val()\r\n\t};\r\n}\r\n/**\r\n * @function\r\n * @description Helper method which constructs a URL for an AJAX request using the\r\n * entered address information as URL request parameters.\r\n */\r\nfunction getShippingMethodURL(url, extraParams) {\r\n\tvar params = User.isCustomerAuthenticated ? getAddressFromTile() : getAddressFromForm();\r\n\treturn util.appendParamsToUrl(url, $.extend(params, extraParams));\r\n}\r\n\r\n/**\r\n * @function\r\n * @description selects a shipping method for the default shipment and updates the summary section on the right hand side\r\n * @param\r\n */\r\nfunction selectShippingMethod(shippingMethodID) {\r\n\t// nothing entered\r\n\tif (!shippingMethodID) {\r\n\t\treturn;\r\n\t}\r\n\t// attempt to set shipping method\r\n\tvar url = getShippingMethodURL(Urls.selectShippingMethodsList, {\r\n\t\tshippingMethodID: shippingMethodID\r\n\t});\r\n\t$.post(\r\n\t\turl,\r\n\t\t{'shippingMethodID' : shippingMethodID,\r\n\t\t 'csrf' : window.User.CSRFTokenValue},\r\n\t\tfunction(data) {\r\n\t\t\tupdateSummary();\r\n\t\t\tif (!data || !data.shippingMethodID) {\r\n\t\t\t\twindow.alert('Couldn\\'t select shipping method.');\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t\t// display promotion in UI and update the summary section,\r\n\t\t\t// if some promotions were applied\r\n\t\t\t$('.shippingpromotions').empty();\r\n\t\t},\"json\");\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Make an AJAX request to the server to retrieve the list of applicable shipping methods\r\n * based on the merchandise in the cart and the currently entered shipping address\r\n * (the address may be only partially entered). If the list of applicable shipping methods\r\n * has changed because new address information has been entered, then issue another AJAX\r\n * request which updates the currently selected shipping method (if needed) and also updates\r\n * the UI.\r\n */\r\nfunction updateShippingMethodList() {\r\n\tvar $shippingMethodList = $('#shipping-method-list');\r\n\tif (!$shippingMethodList || $shippingMethodList.length === 0) {\r\n\t\treturn;\r\n\t}\r\n\tvar url = getShippingMethodURL(Urls.shippingMethodsJSON);\r\n\tajax.getJson({\r\n\t\turl: url,\r\n\t\tcallback: function(data) {\r\n\t\t\tif (!data) {\r\n\t\t\t\twindow.alert('Couldn\\'t get list of applicable shipping methods.');\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\r\n\t\t\t// shipping methods remain unchanged; update summary as selected method may/may not change\r\n\t\t\tif (shippingMethods && shippingMethods.toString() === data.toString()) {\r\n\t\t\t\tupdateSummary();\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\r\n\t\t\t// We need to update the UI. The list has changed.\r\n\t\t\t// Cache the array of returned shipping methods.\r\n\t\t\tshippingMethods = data;\r\n\t\t\t// indicate progress\r\n\t\t\tprogress.show($shippingMethodList);\r\n\r\n\t\t\t// load the shipping method form\r\n\t\t\tvar smlUrl = getShippingMethodURL(Urls.shippingMethodsList);\r\n\t\t\t$shippingMethodList.load(smlUrl, function() {\r\n\t\t\t\t$shippingMethodList.fadeIn('fast');\r\n\t\t\t\t// rebind the radio buttons onclick function to a handler.\r\n\t\t\t\t$shippingMethodList.find('[name$=\"_shippingMethodID\"]').on('click', function() {\r\n\t\t\t\t\tselectShippingMethod($(this).val());\r\n\t\t\t\t});\r\n\r\n\t\t\t\t// update the summary\r\n\t\t\t\tupdateSummary();\r\n\t\t\t\tprogress.hide();\r\n\t\t\t\ttooltip.init();\r\n\t\t\t\t//if nothing is selected in the shipping methods select the first one\r\n\t\t\t\tif ($shippingMethodList.find('.input-radio:checked').length === 0) {\r\n\t\t\t\t\t$shippingMethodList.find('.input-radio:first').prop('checked', 'checked');\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction validateAddrForm() {\r\n\tvar addr = getAddressFromForm();\r\n\treturn addr.address1 && addr.city && addr.postalCode && addr.stateCode && addr.countryCode;\r\n}\r\n\r\nexports.init = function() {\r\n\tinitCache();\r\n\tinitEvents();\r\n\tsummarysection.init();\r\n\t//addressVerificationSvc.init();\r\n\r\n\tvalidator.initStateValidation();\r\n\tif (window.User.isCustomerAuthenticated == false) {\r\n\t\t$('.checkout-shipping').find('.set-default-cb').hide();\r\n\t}\r\n\r\n\tvalidator.initForm('form[name$=\"shippingAddress_save\"]');\r\n\r\n\r\n\tgiftMessageBox();\r\n\tupdateShippingMethodList();\r\n\r\n\t$(document).find('div.address-list div.address-tile').each(function() {\r\n\t\tif ($(this).hasClass('default') || $(this).hasClass('selected') || $(this).hasClass('address-default')) {\r\n\t\t\t$(this).removeClass('selected');\r\n\t\t\t$(this).removeClass('default');\r\n\r\n\t\t\t$(this).trigger('click');\r\n\t\t}\r\n\t});\r\n};\r\n\r\nexports.updateShippingMethodList = updateShippingMethodList;\n},{\"../../ajax\":1,\"../../modal\":27,\"../../pages/summarysection\":71,\"../../progress\":78,\"../../tooltip\":92,\"../../util\":93,\"../../validator\":95,\"../product/index\":52}],43:[function(require,module,exports){\n'use strict';\r\n\r\nvar addProductToCart = require('./product/addToCart'),\r\n\tajax = require('../ajax'),\r\n\tpage = require('../page'),\r\n\tproductTile = require('../product-tile'),\r\n\tquickview = require('../quickview');\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Binds the click events to the remove-link and quick-view button\r\n */\r\nfunction initializeEvents() {\r\n\t$('#compare-table').on('click', '.remove-link', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tajax.getJson({\r\n\t\t\t\turl: this.href,\r\n\t\t\t\tcallback: function () {\r\n\t\t\t\t\tpage.refresh();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t})\r\n\t\t.on('click', '.open-quick-view', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tvar url = $(this).closest('.product').find('.thumb-link').attr('href');\r\n\t\t\tquickview.show({\r\n\t\t\t\turl: url,\r\n\t\t\t\tsource: 'quickview'\r\n\t\t\t});\r\n\t\t});\r\n\r\n\t$('#compare-category-list').on('change', function () {\r\n\t\t$(this).closest('form').submit();\r\n\t});\r\n}\r\n\r\nexports.init = function () {\r\n\tproductTile.init();\r\n\tinitializeEvents();\r\n\taddProductToCart();\r\n};\n},{\"../ajax\":1,\"../page\":30,\"../product-tile\":77,\"../quickview\":79,\"./product/addToCart\":48}],44:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('../util'),\r\n\tcurrentLayout = require('../detect-layout'),\r\n\tproductTile = require('../product-tile'),\r\n\taddToCart = require('./product/addToCart'),\r\n\trecommendations = require('./product/recommendations'),\r\n\tsocialShareIcons = require('./product/socialShareIcons');\r\n\r\nvar currLayout = currentLayout.init();\r\n\r\nfunction initializeEvents() {\r\n\t$(document)\r\n\r\n\t\t// mobile navigation\r\n\t\t.on('change', '.promotion-nav-select select', function (e) {\r\n\t\t\tvar newUrl = $(this).find(\"option:selected\").val();\r\n\r\n\t\t\tif (newUrl) {\r\n\t\t\t\twindow.location.href = newUrl;\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t// concierge form events\r\n\tvar conciergeForm = $('form[id$=\"_beautyconsultant\"]');\r\n\tif (conciergeForm.length > 0) {\r\n\t\t// secure concierge access\r\n\t\t/*if (location && location.protocol === 'http:') {\r\n\t\t window.location.href = Urls.secureConciergeForm;\r\n\t\t}*/\r\n\r\n\t\tvar successShown = false;\r\n\t\tconciergeForm.on('click', 'button#sendBtn', function (e) {\r\n\t\t\te.preventDefault();\r\n\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: util.appendParamToURL(Urls.customerServiceSubmit, 'source', 'concierge'),\r\n\t\t\t\tdata: conciergeForm.serialize(),\r\n\t\t\t\tmethod: 'POST'\r\n\t\t\t}).done(function (response) {\r\n\t\t\t\tvar conciergeModal = $('#concierge-modal');\r\n\t\t\t\tif (response && response.success && conciergeModal.length > 0) {\r\n\t\t\t\t\t// show success modal\r\n\t\t\t\t\tsuccessShown = true;\r\n\t\t\t\t\tvar popup = new Foundation.Reveal(conciergeModal);\r\n\t\t\t\t\t//Window height minus 80px, which sets the modal to fit inside the device's screen\r\n\t\t\t\t\tvar windowHeight = window.innerHeight - 130;\r\n\r\n\t\t\t\t\tpopup.$element.children('.modal-body').css('max-height', windowHeight);\r\n\t\t\t\t\tpopup.open();\r\n\r\n\t\t\t\t\t// trigger ga\r\n\t\t\t\t\twindow.history.pushState(\"\", \"\", Urls.conciergeForm);\r\n\t\t\t\t\t$(document).trigger(\"askanexpert\");\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t});\r\n\r\n\t\t$(document).on('click', '.reveal-overlay', function () {\r\n\t\t\t// trigger redirect when concierge overlay is closed\r\n\t\t\tif (successShown && $(this).css('display') == 'none') {\r\n\t\t\t\tsuccessShown = false;\r\n\t\t\t\twindow.location.href = Urls.secureConciergeForm;\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\r\n\t$('.article-navigation .icon-downCarrot').on('click', function () {\r\n\t\t$(this).parents('.article-navigation').toggleClass('article-open');\r\n\t})\r\n\r\n\tif (currLayout == 'desktop') {\r\n\t\tif ($('.pt_content.pt_article').length && $('.product-content .product-tile').length) {\r\n\t\t\t$('.product-content .product-tile').height($('.article-content.bottom').innerHeight())\r\n\t\t}\r\n\t}\r\n\r\n\t//Article content featured carousel\r\n\tif ($('.article-carousel-slick').length > 0) {\r\n\t\t$('.article-carousel-slick').slick({\r\n\t\t\tarrows: true,\r\n\t\t\tdots: true,\r\n\t\t\tinfinite: false\r\n\t\t});\r\n\t}\r\n\r\n\tif ($('.pt_article [data-attr=\"slide\"]') && $('.pt_article [data-attr=\"slide\"]').length > 1) {\r\n\t\t$(window).on('load resize orientationchange', function () {\r\n\t\t\tvar $carousel = $('.article-hero-component .slick-slider');\r\n\r\n\t\t\tif (!$carousel.hasClass('slick-initialized')) {\r\n\t\t\t\t$('.pt_article [data-attr=\"slide\"]').each(function () {\r\n\t\t\t\t\t$carousel.append($(this).html());\r\n\t\t\t\t});\r\n\t\t\t\t$carousel.slick({\r\n\t\t\t\t\teasing: 'ease',\r\n\t\t\t\t\tarrows: false,\r\n\t\t\t\t\tslidesToShow: 1.14,\r\n\t\t\t\t\tcenterMode: true,\r\n\t\t\t\t\tcenterPadding: '1px',\r\n\t\t\t\t\tinfinite: false\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\t$(document).on('click', '.articles-view-more', function (e) {\r\n\t\te.preventDefault();\r\n\t\t$('.ajax-loader').show();\r\n\t\tvar gridUrl = $(this).attr('data-grid-url');\r\n\t\t$.ajax({\r\n\t\t\ttype: 'GET',\r\n\t\t\tdataType: 'html',\r\n\t\t\turl: gridUrl,\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\t$('.ajax-loader').hide();\r\n\t\t\t\tvar delimiter = $('.article-bottom').offset().top;\r\n\t\t\t\t$('.article-bottom').replaceWith(response);\r\n\t\t\t\t$('html, body').animate({\r\n\t\t\t\t\tscrollTop: delimiter\r\n\t\t\t\t}, 500, 'linear');\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\tproductTile.init();\r\n\r\n\taddToCart();\r\n\r\n\tsocialShareIcons();\r\n\trecommendations();\r\n}\r\n\r\nmodule.exports.init = function () {\r\n\tinitializeEvents();\r\n};\n},{\"../detect-layout\":13,\"../product-tile\":77,\"../util\":93,\"./product/addToCart\":48,\"./product/recommendations\":54,\"./product/socialShareIcons\":55}],45:[function(require,module,exports){\n'use strict';\r\n\r\nexports.init = function () {\r\n\t(function() {\r\n\t\tvar order = [],\r\n\t\t\torderValue=[],\r\n\t\t\tcheckBoxSelectionLimit = 2,$util = require('../util'),\r\n\t\t\t$layout = require('../detect-layout'),\r\n\t\t\t$currentLayout = $layout.init(),\r\n\t\t\t$skinToneSlider = $('.skin-tone-wrapper .question-body.carousel'),\r\n\t\t\t$selectedSkinToneSlickIndex = '',\r\n\t\t\t$normalCarousel = $('.content-wrapper .question-body.carousel'),\r\n\t\t\t$currentQuestion = $('input.current-question').val();\r\n\r\n\t\t/*\r\n\t\t * function definition\r\n\t\t * Question's options image height handler.\r\n\t\t */\r\n\t\tfunction updateOptionsHeight() {\r\n\t\t\tvar $maxHeight = '', $contentImages = $('.content-wrapper .img-wrapper');\r\n\t\t\tif($contentImages.length > 0) {\r\n\t\t\t\t$contentImages.removeAttr('style');\r\n\t\t\t\t$maxHeight = Math.max.apply(null, $contentImages.map(function () {\r\n\t\t\t\t\treturn $(this).width();\r\n\t\t\t\t}).get());\r\n\t\t\t\t$contentImages.css('min-height', Math.floor($maxHeight + ($maxHeight / 2)));\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * function definition\r\n\t\t * Header visibility handler on window scroll and load.\r\n\t\t */\r\n\t\tfunction updateHeaderVisibility() {\r\n\t\t\tif($('.pt_foundation').length > 0 && $(window).scrollTop() == 0) {\r\n\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\tif (!$('html').hasClass('nav-open') && \r\n\t\t\t\t\t\t!$('html').hasClass('sticky-header-search') && \r\n\t\t\t\t\t\t!$('.has-sub-menu').hasClass('hover') &&\r\n\t\t\t\t\t\t!$('.utility-nav li').hasClass('hovered') &&\r\n\t\t\t\t\t\t!$('.header-wrapper').hasClass('hovered')) {\r\n\t\t\t\t\t\tif ($(window).scrollTop() == 0) {\r\n\t\t\t\t\t\t\t$('.pt_foundation').addClass('sticky-header');\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}, 3000);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * function definition\r\n\t\t * Retain question1 selected answer in the client-side storage.\r\n\t\t */\r\n\t\tfunction retainSelectedSkinTone() {\r\n\t\t\tvar $selectedSkinToneIndex = localStorage.getItem('question' + $currentQuestion);\r\n\t\t\tif ($selectedSkinToneIndex !== null) {\r\n\t\t\t\t$skinToneSlider.slick('slickGoTo', $selectedSkinToneIndex);\r\n\t\t\t\t$('.slick-slide[data-slick-index=' + $selectedSkinToneIndex + '] .single-radio').addClass('selected');\r\n\t\t\t\t$('input.selected-answer').val($('.slick-slide[data-slick-index=' + $selectedSkinToneIndex + '] .single-radio .js-answer-option').val());\r\n\t\t\t\t$('.js-foundation-finder-next').attr('disabled', false);\r\n\t\t\t\tlocalStorage.removeItem('question' + $currentQuestion);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * function definition\r\n\t\t * Retain question5 selected answer on page back and remove it.\r\n\t\t */\r\n\t\tfunction retainSelectedBenefit() {\r\n\t\t\tvar $answers = [],\r\n\t\t\t\t$selectedId = localStorage.getItem('question' + $currentQuestion);\r\n\t\t\tif ($selectedId !== null) {\r\n\t\t\t\t$('.foundation-finder-wrapper .js-answer-option:checked').prop('checked', false);\r\n\t\t\t\t$answers = $selectedId.split(',');\r\n\t\t\t\tfor (var $i = 0; $i <= $answers.length; ++$i) {\r\n\t\t\t\t\t$('#' + $answers[$i]).trigger('click');\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tlocalStorage.removeItem('question' + $currentQuestion);\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * function definition\r\n\t\t * Store selected answer in the client-side storage.\r\n\t\t */\r\n\t\tfunction storeSelectedValuesIE() {\r\n\t\t\tlocalStorage.setItem('question' + $currentQuestion, $('.foundation-finder-wrapper .js-answer-option:checked + label').attr('for'));\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * function definition\r\n\t\t * Retain selected answer on page back.\r\n\t\t */\r\n\t\tfunction retainSelectedValuesIE() {\r\n\t\t\tvar $selectedAnswer = localStorage.getItem('question' + $currentQuestion);\r\n\t\t\tif ($selectedAnswer !== null) {\r\n\t\t\t\t$('label[for=' + $selectedAnswer + ']').trigger('click');\r\n\t\t\t\tlocalStorage.removeItem('question' + $currentQuestion);\r\n\r\n\t\t\t\t$('.foundation-finder-wrapper .js-answer-option:checked').addClass('checked');\r\n\t\t\t\t$('.js-foundation-finder-next').attr('disabled', false);\r\n\t\t\t\t$('input.selected-answer').val($('.foundation-finder-wrapper .js-answer-option:checked').val());\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * function definition\r\n\t\t * Retain scroll position to top of the page. Hence, last scroll position will be '0' on browser back.\r\n\t\t */\r\n\t\tfunction backToPageTop() {\r\n\t\t\t// hide body to prevent the flicker effect when window scroll to top.\r\n\t\t\t$('body').hide();\r\n\t\t\t$(window).scrollTop(0);\r\n\t\t}\r\n\r\n\t\t$(document).on({\r\n\t\t\tbeforeChange: updateOptionsHeight\r\n\t\t}, '.content-wrapper .carousel')\r\n\t\t/*\r\n\t\t * Click event : Radio button selection.\r\n\t\t */\r\n\t\t.on('click', '.skin-tone-wrapper .single-radio', function() {\r\n\t\t\t$skinToneSlider.find('.single-radio').removeClass('selected');\r\n\t\t\t$(this).addClass('selected');\r\n\t\t\t$('input.selected-answer').val($skinToneSlider.find('.single-radio.selected .js-answer-option').val());\r\n\t\t\t$('.js-foundation-finder-next').attr('disabled', false);\r\n\t\t\t$selectedSkinToneSlickIndex = $(this).closest('.slick-slide').data('slick-index');\r\n\t\t})\r\n\t\t/*\r\n\t\t * Click event : Radio and Checkbox\r\n\t\t * Toggle radio checked/unchecked radio.\r\n\t\t * Unchecked checkbox : when checkbox selection limit exceed.\r\n\t\t */\r\n\t\t.on('click', '.foundation-finder-wrapper .js-answer-option', function() {\r\n\t\t\tif ($(this).is(':radio')) {\r\n\t\t\t\tif ($(this).hasClass('checked')) {\r\n\t\t\t\t\t$(this).prop('checked', false);\r\n\t\t\t\t}\r\n\t\t\t\t$(this).closest('.single-radio').siblings().find('.js-answer-option').removeClass('checked');\r\n\t\t\t\t$(this).toggleClass('checked');\r\n\t\r\n\t\t\t\t$('input.selected-answer').val($(this).val());\r\n\t\r\n\t\t\t\tif($('.js-answer-option:checked').length > 0) {\r\n\t\t\t\t\t$('.js-foundation-finder-next').attr('disabled', false);\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$('.js-foundation-finder-next').attr('disabled', true);\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\tif($(this).closest('.question-body').find('.js-answer-option:checked').length > checkBoxSelectionLimit) {\r\n\t\t\t\t\tthis.checked = false;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t})\r\n\t\t/*\r\n\t\t * Click event : Checkbox\r\n\t\t * Prevent to slect checkbox when exceed \"checkBoxSelectionLimit\".\r\n\t\t * Display numeric selection order.\r\n\t\t */\r\n\t\t.on('change', '.multi-checkbox .js-answer-option', function () {\r\n\t\t\tvar idx = order.indexOf(this);\r\n\t\t\tif (idx !== -1) {\r\n\t\t\t\torder.splice(idx, 1);\r\n\t\t\t}\r\n\t\t\tif (this.checked && $('.foundation-finder-wrapper .js-answer-option:checked').length <= checkBoxSelectionLimit) {\r\n\t\t\t\torder.push(this);\r\n\t\t\t}\r\n\t\t\tif($('.foundation-finder-wrapper .js-answer-option:checked').length >= checkBoxSelectionLimit) {\r\n\t\t\t\t$('.multi-checkbox').addClass('unselectable');\r\n\t\t\t} else {\r\n\t\t\t\t$('.multi-checkbox').removeClass('unselectable');\r\n\t\t\t}\r\n\t\t\tvar map = $.map(order, function(e) {\r\n\t\t\t\treturn $(e).closest('.multi-checkbox');\r\n\t\t\t});\r\n\t\t\tif (map.length === 0) {\r\n\t\t\t\torderValue = [];\r\n\t\t\t\t$('.multi-checkbox .selection-order').html('').attr('order', '').hide();\r\n\t\t\t\t$('.js-foundation-finder-finish.mandatory').attr('disabled', true);\r\n\t\t\t} else {\r\n\t\t\t\torderValue = [];\r\n\t\t\t\t$('.multi-checkbox .selection-order').html('').attr('order', '').hide();\r\n\t\t\t\tfor(var i = 1, $selectedOptions = map.length; i <= $selectedOptions; i++) {\r\n\t\t\t\t\tif(map[i - 1] !== undefined) {\r\n\t\t\t\t\t\tmap[i - 1].find('.selection-order').html('0' + i).attr('order', i).css('display', 'inline-block');\r\n\t\t\t\t\t\torderValue.push(map[i - 1].find('.js-answer-option').val());\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\t$('.js-foundation-finder-finish.mandatory').attr('disabled', false);\r\n\t\t\t}\r\n\r\n\t\t\t$('input.selected-answer').val(orderValue);\r\n\t\t});\r\n\r\n\t\t/*\r\n\t\t * click event : Next button\r\n\t\t * Create and store selected value in the client-side storage.\r\n\t\t * Append selected answer in the URL and redirect to the result page.\r\n\t\t */\r\n\t\t$('.js-foundation-finder-next').on('click', function() {\r\n\t\t\tif($currentQuestion == 1) {\r\n\t\t\t\tlocalStorage.setItem('question' + $currentQuestion, $('.single-radio.selected').closest('.slick-slide').data('slick-index'));\r\n\t\t\t} else if((document.documentMode || /Edge/.test(navigator.userAgent)) && ($currentQuestion == 2 || $currentQuestion == 3 || $currentQuestion == 4)) {\r\n\t\t\t\tstoreSelectedValuesIE();\r\n\t\t\t}\r\n\t\t\tbackToPageTop();\r\n\t\t\twindow.location.href = $util.appendParamToURL(window.location.href, 'q' + $('input.current-question').val(), $('input.selected-answer').val());\r\n\t\t});\r\n\r\n\t\t/*\r\n\t\t * click event : Finish button\r\n\t\t * Create and store selected value in the client-side storage.\r\n\t\t * Append selected answer in the URL and redirect to the result page.\r\n\t\t */\r\n\t\t$('.js-foundation-finder-finish').on('click', function() {\r\n\t\t\tvar $index = 1,\r\n\t\t\t\t$selectedBenefit = $('.multi-checkbox .js-answer-option:checked').length,\r\n\t\t\t\t$selectedAnswers = window.location.href.split('?')[1],\r\n\t\t\t\t$finishUrl = $('#foundation-finder-form').attr('action') + '?' + $selectedAnswers,\r\n\t\t\t\t$selectedBenefitOrder = [];\r\n\t\t\t\r\n\t\t\twhile($index <= $selectedBenefit) {\r\n\t\t\t\t$selectedBenefitOrder.push($('.selection-order[order=' + $index + ']').closest('label').attr('for'));\r\n\t\t\t\t$index++;\r\n\t\t\t}\r\n\r\n\t\t\tlocalStorage.setItem('question' + $currentQuestion, $selectedBenefitOrder.join());\r\n\r\n\t\t\tbackToPageTop();\r\n\t\t\twindow.location.href = $util.appendParamToURL($finishUrl, 'q' + $('input.current-question').val(), $('input.selected-answer').val());\r\n\t\t});\r\n\t\r\n\t\t/*\r\n\t\t * if-else Statement\r\n\t\t * Retain form data on browser back.\r\n\t\t */\r\n\t\tif($('.foundation-finder-wrapper .js-answer-option:checked').length > 0) {\r\n\t\t\tif($('.single-radio').length > 0) {\r\n\t\t\t\t$('.foundation-finder-wrapper .js-answer-option:checked').addClass('checked');\r\n\t\t\t\t$('.js-foundation-finder-next').attr('disabled', false);\r\n\t\t\t\t$('input.selected-answer').val($('.foundation-finder-wrapper .js-answer-option:checked').val());\r\n\t\t\t} else {\r\n\t\t\t\tretainSelectedBenefit();\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * if-else Statement\r\n\t\t * Execute on IE and Edge browser, as form data lost on IE/Edge browser back if dynamically created by script.\r\n\t\t */\r\n\t\tif((document.documentMode || /Edge/.test(navigator.userAgent)) && ($currentQuestion == 2 || $currentQuestion == 3 || $currentQuestion == 4)) {\r\n\t\t\tretainSelectedValuesIE();\r\n\t\t} else if((document.documentMode || /Edge/.test(navigator.userAgent)) && $currentQuestion == 5) {\r\n\t\t\tsetTimeout(function() {\r\n\t\t\t\tretainSelectedBenefit();\r\n\t\t\t}, 500);\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * Slick Initialization : question1\r\n\t\t */\r\n\t\tif($skinToneSlider.length > 0 && !$skinToneSlider.hasClass('slick-initialized')) {\r\n\t\t\t$skinToneSlider.slick({\r\n\t\t\t\tdots: false,\r\n\t\t\t\tinfinite: true,\r\n\t\t\t\tslidesToShow: 5,\r\n\t\t\t\tslidesToScroll: 5,\r\n\t\t\t\tresponsive: [{\r\n\t\t\t\t\tbreakpoint: 769,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 3,\r\n\t\t\t\t\t\tslidesToScroll: 3\r\n\t\t\t\t\t}\r\n\t\t\t\t}]\r\n\t\t\t});\r\n\t\t\tretainSelectedSkinTone();\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * Slick Initialization : question2 to question5\r\n\t\t */\r\n\t\tif($normalCarousel.length > 0 && !$normalCarousel.hasClass('slick-initialized')) {\r\n\t\t\t$normalCarousel.slick({\r\n\t\t\t\tdots: false,\r\n\t\t\t\tslidesToShow: 5,\r\n\t\t\t\tinfinite: false,\r\n\t\t\t\tresponsive: [{\r\n\t\t\t\t\tbreakpoint: 769,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 2\r\n\t\t\t\t\t}\r\n\t\t\t\t}]\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * mouse pointer hovers over the header. Execute on desktop.\r\n\t\t * Adding a class when the user interacts with any of the header components.\r\n\t\t * Function \"updateHeaderVisibility\" dependent on this class.\r\n\t\t */\r\n\t\t$('.header-wrapper').on('mouseover', function() {\r\n\t\t\tif(!('ontouchstart' in document.documentElement) && $currentLayout == 'desktop') {\r\n\t\t\t\t$(this).addClass('hovered');\r\n\t\t\t}\r\n\t\t});\r\n\t\t$('.header-wrapper').on('mouseleave', function() {\r\n\t\t\t$(this).removeClass('hovered');\r\n\t\t});\r\n\r\n\t\tupdateOptionsHeight();\r\n\r\n\t\t$(window).on('scroll load', function() {\r\n\t\t\tupdateHeaderVisibility();\r\n\t\t}).on('orientationchange', function() {\r\n\t\t\t/*\r\n\t\t\t * js-skinToneOnResize controls the flicker effect on the carousel.\r\n\t\t\t * Slick will scroll to the slide where the selected slide belongs(only on touch devices).\r\n\t\t\t * setTimeOut will scroll to the selected slide after slick resize triggered.\r\n\t\t\t */\r\n\t\t\tif(('ontouchstart' in document.documentElement) && $selectedSkinToneSlickIndex !== '') {\r\n\t\t\t\t$('.skin-tone-wrapper .question-body.carousel').addClass('js-skinToneOnResize');\r\n\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\twindow.console.log($selectedSkinToneSlickIndex);\r\n\t\t\t\t\t$('.skin-tone-wrapper .question-body.carousel').slick('slickGoTo', $selectedSkinToneSlickIndex).removeClass('js-skinToneOnResize');\r\n\t\t\t\t}, 1000);\r\n\t\t\t}\r\n\r\n\t\t\t$('.content-wrapper .img-wrapper').removeAttr('style');\r\n\t\t\tsetTimeout(function() {\r\n\t\t\t\tupdateOptionsHeight();\r\n\t\t\t}, 500);\r\n\t\t});\r\n\t})();\r\n};\n},{\"../detect-layout\":13,\"../util\":93}],46:[function(require,module,exports){\n'use strict';\r\n\r\nvar analytics = require('../analytics');\r\n\r\nfunction onlineQuizInitialize() {\r\n\r\n\t$('.quiz-wrapper').slick({\r\n\t\tfade: true,\r\n\t\tdraggable: false,\r\n\t\tautoplay: false,\r\n\t\tarrows: false,\r\n\t\tdots: false,\r\n\t\tinfinite: false,\r\n\t\tcssEase: 'ease-in-out',\r\n\t\tadaptiveHeight: true,\r\n\t\ttouchMove: false,\r\n\t\tswipe: false\r\n\t}).on('beforeChange', function(event, slick, currentSlide, nextSlide){\r\n\t\tif(nextSlide > 0){\r\n\t\t\t$('.quiz-cta.cta-prev').addClass('show-prev');\r\n\t\t} else {\r\n\t\t\t$('.quiz-cta.cta-prev').removeClass('show-prev');\r\n\t\t}\r\n\t\tif(nextSlide < (slick.slideCount - 1)){\r\n\t\t\t$('.quiz-cta.cta-next').addClass('show-next');\r\n\t\t} else {\r\n\t\t\t$('.quiz-cta.cta-next').removeClass('show-next');\r\n\t\t}\r\n\t}).on('afterChange', function(slick, currentSlide){\r\n\t\tcheckValidation();\r\n\t\tif ($('.quiz-wrapper .slick-slide').hasClass(\"slick-active\")) {\r\n\t\t\t$('html,body').animate({ scrollTop: 0}, 1500);\r\n\t\t}\r\n\t});\r\n\t$(document).on('click', '.quiz-cta .prev-label', function(event){\r\n\t\tevent.preventDefault();\r\n\t\t$('.quiz-wrapper').slick('slickPrev');\t\t\r\n\t})\r\n\t.on('click', '.quiz-cta .next-label', function(event){\r\n\t\tevent.preventDefault();\r\n\t\t$('.quiz-wrapper').slick('slickNext');\r\n\t\tregisterClick('next');\r\n\t});\r\n\r\n\tif($( \".slider-question\" ).length > 0){\r\n\t\t$('.slider-wrapper').each(function(){\r\n\t\t\tvar sliderValues = $(this).data('values');\r\n\t\t\tvar $this = $(this);\r\n\t\t\t$(this).find(\".slider-question\" ).slider({\r\n\t\t\t\tmin: sliderValues[0],\r\n\t\t\t\tvalue: sliderValues[1],\r\n\t\t\t\tmax: sliderValues[2],\r\n\t\t\t\tcreate: function() {\r\n\t\t\t\t\t$(this).next('.selected-age').find('input').val($( this ).slider( \"value\" ));\r\n\t\t\t\t\tcheckValidation();\r\n\t\t\t\t},\r\n\t\t\t\tslide: function(event,ui) {\r\n\t\t\t\t\t$(this).next('.selected-age').find('input').val(ui.value).trigger('change');\r\n\t\t\t\t\tcheckValidation();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t\t\r\n\t\t\t$(this).find('.age-value').on('change keypress keyup keydown',function() {\r\n\t\t\t\tvar selectedValue = parseInt($(this).val());\t\r\n\t\t\t\t$this.find('.error-wrapper span').removeClass('show-error');\r\n\t\t\t\tif (/\\D/g.test(this.value)){\r\n\t\t\t\t\t// Filter non-digits from input value.\r\n\t\t\t\t\tthis.value = this.value.replace(/\\D/g, '');\r\n\t\t\t\t}\r\n\t\t\t\tif(selectedValue < sliderValues[0]){\r\n\t\t\t\t\t$this.find('.error-wrapper .min-error').addClass('show-error');\r\n\t\t\t\t\t$(this).addClass('show-error');\r\n\t\t\t\t} else if (selectedValue > sliderValues[3]){\r\n\t\t\t\t\t$this.find('.error-wrapper .max-error').addClass('show-error');\r\n\t\t\t\t\t$(this).addClass('show-error');\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$this.find(\".slider-question\" ).slider( \"option\", \"value\", selectedValue);\r\n\t\t\t\t\t$(this).removeClass('show-error');\r\n\t\t\t\t}\r\n\t\t\t\tcheckValidation();\r\n\t\t\t});\r\n\t\t});\r\n\t}\r\n\r\n\t$(document).on('change', '.answer-section input[type=checkbox], .answer-section input[type=radio]', function(){\r\n\t\tvar $this = $(this);\r\n\t\tvar $element = function(attr){\r\n\t\t\treturn $this.attr(attr);\r\n\t\t};\r\n\t\tvar selectedData = $this.closest('.form-row').data('select');\r\n\t\tvar loadvariation = '';\r\n\t\t\r\n\t\tif(selectedData === 'noneOfAbove' ){\r\n\t\t\tif($this.prop(\"checked\") && $element('type') === 'checkbox'){\r\n\t\t\t\t$(this).closest('.answer-option').find('input[type=checkbox]').not(this).prop('checked', '').prop('disabled', 'disabled');\r\n\t\t\t\t$('#'+$element('name')+'-images').find('.overlay-image').remove();\r\n\t\t\t\t$(this).prop('checked', 'checked');\r\n\t\t\t} else {\r\n\t\t\t\t$(this).closest('.answer-option').find('input[type=checkbox]').prop('disabled', '');\r\n\t\t\t\t$('#'+$element('name')+'-images').find('.overlay-image').remove();\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\tif($this.prop( \"checked\" )){\r\n\t\t\t\tif($element('type') === 'checkbox'){\r\n\t\t\t\t\tvar answerLimit = $this.closest('.answer-option').data('limit');\r\n\t\t\t\t\tif($('input[name='+$element('name')+']:checked').length === answerLimit){\r\n\t\t\t\t\t\t$('input[name='+$element('name')+']:not(:checked)').prop('disabled', 'disabled');\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tif($element('type') === 'radio'){\r\n\t\t\t\t\t$('#'+$element('name')+'-images').find('.overlay-image').not('.fade-overlay').remove();\r\n\t\t\t\t\t$('#'+$element('name')+'-images').find('.fade-overlay').removeClass('fade-overlay');\r\n\t\t\t\t}\r\n\t\t\t\tif($this.closest('.answer-option').data('loadvariation') === 'yes' && $element('id') === $element('name')+'-answer2'){\r\n\t\t\t\t\tloadvariation = 'no-transparent';\r\n\t\t\t\t\t$('#'+$element('name')+'-images .overlay-boolean').removeClass('overlay-boolean');\r\n\t\t\t\t}\r\n\t\t\t\tif(selectedData !== ''){\r\n\t\t\t\t\tif($('#'+$element('name')+'-images').find('.overlay-boolean').length === 0){\r\n\t\t\t\t\t\t$('#'+$element('name')+'-images').append('<div class=\"overlay-image '+$element('id')+ ' ' +loadvariation+'\"><img src=\"'+selectedData+'\" alt=\"\" /></div>');\r\n\t\t\t\t\t}\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$('#'+$element('name')+'-images').find('.overlay-image').remove();\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\t$('input[name='+$element('name')+']').prop('disabled', '');\r\n\t\t\t\t$('#'+$element('name')+'-images').find('.'+$element('id')).remove();\r\n\t\t\t}\r\n\t\t}\r\n\t\tcheckValidation();\r\n\t});\r\n\t\r\n\tif($('.answer-section input[type=checkbox]:checked').length > 0){\r\n\t\t$('.answer-section input[type=checkbox]:checked').eq(0).trigger('change');\t\r\n\t}\r\n}\r\n\r\nfunction checkValidation(){\r\n\tvar currentQuestion = $('.slick-slide.slick-current');\r\n\tvar queType = currentQuestion.find('.question-slide').data('quetype');\r\n\t\r\n\tvar enableCTA = false;\r\n\tif(queType === \"slider\"){\r\n\t\tif(currentQuestion.find('.age-value').val() !== '' && currentQuestion.find('.show-error').length === 0){\r\n\t\t\tenableCTA = true;\r\n\t\t}\r\n\t} else {\r\n\t\tif(currentQuestion.find('.answer-section input:checked').length > 0){\r\n\t\t\tenableCTA = true;\r\n\t\t}\r\n\t}\r\n\tif (enableCTA) {\r\n\t\t$('.quiz-cta.cta-next').removeClass('inactive');\r\n\t} else {\r\n\t\t$('.quiz-cta.cta-next').addClass('inactive');\r\n\t}\r\n\tupdateAnswers();\r\n}\r\n\r\nvar savedAnswers = {};\r\n\r\nfunction updateAnswers(){\r\n\tvar currentQuestion = $('.slick-slide.slick-current');\r\n\tvar queType = currentQuestion.find('.question-slide').data('quetype');\r\n\tvar queParam = currentQuestion.find('.question-slide').data('queparam');\r\n\tvar quenum = currentQuestion.find('.question-slide').data('quenum');\r\n\tvar selectedAnswers = '';\r\n\tif(queType === \"multiSelect\"){\r\n\t\tselectedAnswers = [];\r\n\t\tcurrentQuestion.find('.answer-section input:checked').each(function(){\r\n\t\t\tselectedAnswers.push($(this).val());\r\n\t\t});\r\n\t}\r\n\tif(queType === \"singleSelect\" || queType === \"boolean\"){\r\n\t\tselectedAnswers = currentQuestion.find('.answer-section input:checked').val();\r\n\t}\r\n\tif(queType === \"slider\"){\r\n\t\tselectedAnswers = currentQuestion.find('.age-value').val();\r\n\t}\r\n\tif(queParam !== '' && queParam !== null && queType !== \"multiSelect\"){\r\n\t\tselectedAnswers = [selectedAnswers];\r\n\t}\r\n\r\n\tif(queParam === '' || queParam === null){\r\n\t\tsavedAnswers['q'+quenum] = selectedAnswers;\r\n\t} else {\r\n\t\tsavedAnswers['q'+quenum] = {};\r\n\t\tsavedAnswers['q'+quenum][queParam] = selectedAnswers;\r\n\t}\r\n\t$('#saved-answers').val(JSON.stringify(savedAnswers));\r\n\tif (typeof(Storage) !== \"undefined\") {\r\n\t\tlocalStorage.setItem(\"savedAnswers\", JSON.stringify(savedAnswers));\r\n\t}\r\n};\r\nfunction toggleSectionContent() {\r\n\t$(document).on('click', '[data-toggle=\"section-toggle\"]', function () {\r\n\t\t$(this).toggleClass('active');\r\n\t\t$($(this).data('target')).slideToggle( \"slow\");\r\n\t\treturn false;\r\n\t});\r\n}\r\nfunction paintTriangle() {\r\n\tvar radiance, resilience, smoothness;\r\n\tvar width = 247;\r\n\tvar height = 213;\r\n\tvar triangleSvg = $('.magic-triangle svg');\r\n\tvar center = { x: width / 2, y: 143 };\r\n\r\n\tradiance = $('.magic-triangle').data('radiance');\r\n\tresilience = $('.magic-triangle').data('resilience');\r\n\tsmoothness = $('.magic-triangle').data('smoothness');\r\n\r\n\tvar radiancePoint = {\r\n\t\tx: center.x,\r\n\t\ty: center.y * (1 - radiance / 100),\r\n\t};\r\n\r\n\tvar resiliencePoint = {\r\n\t\tx: center.x - center.x * (resilience / 100),\r\n\t\ty: center.y + (height - center.y) * (resilience / 100),\r\n\t};\r\n\r\n\tvar smoothnessPoint = {\r\n\t\tx: center.x + (width - center.x) * (smoothness / 100),\r\n\t\ty: center.y + (height - center.y) * (smoothness / 100),\r\n\t};\r\n\r\n\t$(triangleSvg).find('polygon').addClass('load-polygon').attr('points',radiancePoint.x +','+ radiancePoint.y+' '+ resiliencePoint.x +','+resiliencePoint.y +' '+ smoothnessPoint.x+','+smoothnessPoint.y)\r\n}\r\nfunction initOnlineQuizCarousel(){\r\n\t$(document).on('init', '.tile-size-carousel', function(){\r\n\t\tif($(this).hasClass('slick-initialized')){\r\n\t\t\tvar that = $(this);\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tthat.slick('slickSetOption', {\r\n\t\t\t\t\tresponsive: [\r\n\t\t\t\t\t\t { breakpoint: 1300, settings: { slidesToShow: 3, slidesToScroll: 3 } },\r\n\t\t\t\t\t\t { breakpoint: 769, settings: { slidesToShow: 3, slidesToScroll: 3 } },\r\n\t\t\t\t\t\t { breakpoint: 601, settings: { slidesToShow: 3, slidesToScroll: 3 } },\r\n\t\t\t\t\t\t { breakpoint: 451, settings: { slidesToShow: 3, slidesToScroll: 3 } },\r\n\t\t\t\t\t\t { breakpoint: 321, settings: { slidesToShow: 3, slidesToScroll: 3 } }\r\n\t\t\t\t\t ]\r\n\t\t\t\t }, true);\r\n\t\t\t},1);\r\n\t\t}\r\n\t});\r\n\t\r\n\t$(document).on('init', '.tile-color-carousel', function(){\r\n\t\tif($(this).hasClass('slick-initialized')){\r\n\t\t\tvar that = $(this);\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tthat.slick('slickSetOption', {\r\n\t\t\t\t\tresponsive: [\r\n\t\t\t\t\t\t { breakpoint: 1300, settings: { slidesToShow: 5, slidesToScroll: 5 } },\r\n\t\t\t\t\t\t { breakpoint: 769, settings: { slidesToShow: 5, slidesToScroll: 5 } },\r\n\t\t\t\t\t\t { breakpoint: 601, settings: { slidesToShow: 6, slidesToScroll: 6 } },\r\n\t\t\t\t\t\t { breakpoint: 451, settings: { slidesToShow: 6, slidesToScroll: 6 } },\r\n\t\t\t\t\t\t { breakpoint: 321, settings: { slidesToShow: 5, slidesToScroll: 5 } }\r\n\t\t\t\t\t ]\r\n\t\t\t\t }, true);\r\n\t\t\t},1);\r\n\t\t}\r\n\t});\r\n}\r\nfunction showLoaderPages() {\r\n\tsetTimeout(function() {\r\n\t\t$('.camelia-loader1').fadeOut(500);\r\n\t}, 1000);\r\n\tsetTimeout(function() {\r\n\t\t$('.camelia-loader2').fadeOut(500,function(){\r\n\t\t\tpaintTriangle();\r\n\t\t});\r\n\t}, 2500);\r\n}\r\n\r\n\r\nfunction registerPageView(onlineQuizPage) {\r\n\tanalytics.onlinequiz.pageview(onlineQuizPage);\r\n};\r\n\r\nfunction registerClick(event) {\r\n\tvar onlineQuizModal = $('.quiz-wrapper'),\r\n\t\tonlineQuizContent = onlineQuizModal.find('.slick-slide.slick-current .question-slide');\r\n\tvar nextQueNumber = onlineQuizContent.data('quenum');\r\n\tvar data = {};\r\n\tdata.nextQuestionNumber = nextQueNumber;\r\n\tdata.event = \"consultationBack\";\r\n\r\n\tif (event === 'next') {\r\n\t\tdata.event = \"nextQuestionOnlineQuiz\";\r\n\t}\r\n\t\r\n\tanalytics.onlinequiz.click(data);\r\n};\r\n$(window).on('load', function () {\r\n\tif($('.camelia-loader1').length > 0 && $('.quiz-result-container').length > 0 ) {\r\n\t\tshowLoaderPages();\r\n\t}\r\n});\r\nexports.init = function () {\r\n\tif ($('.quiz-wrapper').length > 0) {\r\n\t\tonlineQuizInitialize();\r\n\r\n\t\t//Trigger GTM page Load event for quiz page\r\n\t\tregisterPageView('quiz');\r\n\t}\r\n\tif ($('.quiz-result-container').length > 0) {\r\n\t\ttoggleSectionContent();\r\n\t\tinitOnlineQuizCarousel();\r\n\r\n\t\t//Trigger GTM page Load event for result page\r\n\t\tregisterPageView('result');\r\n\r\n\t}\r\n};\n},{\"../analytics\":2}],47:[function(require,module,exports){\n'use strict';\r\n\r\nvar recommendations = require('./product/recommendations');\r\n\r\nexports.init = function () {\r\n\tif ($('.pt_order-confirmation').length) {\r\n\t\trecommendations();\r\n\t\t$(document).on('blur', '.pt_order-confirmation input.create-password',function() {\r\n\t\t\tvar fieldErrorWrapper = $(this).parents('div.password-label'),\r\n\t\t\t\tform = $('.checkout-registration-form'),\r\n\t\t\t\tvalidator = form.validate(),\r\n\t\t\t\tvalidFlag = validator.element($(this));\r\n\t\t\t\tif(!validFlag) {\r\n\t\t\t\t\tfieldErrorWrapper.addClass('error');\r\n\t\t\t\t} else {\r\n\t\t\t\t\tfieldErrorWrapper.removeClass('error');\r\n\t\t\t\t}\r\n\t\t});\r\n\t} else {\r\n\t\treturn;\r\n\t}\r\n\t\r\n\t//Show password method call\r\n\t$(\".showpassword\").click(function() {\r\n\t\tshowPassword();\r\n\t});\r\n\t\r\n\tfunction showPassword() {\r\n\t\tvar showString = $('.pt_order-confirmation .create-password ').attr(\"type\");\r\n\t\tif (showString === \"password\") {\r\n\t\t\t$('.pt_order-confirmation .create-password').attr(\"type\", \"text\");\r\n\t\t\t$('.passowrd-checkbox').addClass(\"checked\");\r\n\t\t} else {\r\n\t\t\t$('.pt_order-confirmation .create-password').attr(\"type\", \"password\");\r\n\t\t\t$('.passowrd-checkbox').removeClass(\"checked\");\r\n\t\t}\r\n\t}\r\n};\n},{\"./product/recommendations\":54}],48:[function(require,module,exports){\n'use strict';\r\n\r\nvar minicart = require('../../minicart'),\r\n\tcustomModal = require('../../modal'),\r\n\tpage = require('../../page'),\r\n\tutil = require('../../util'),\r\n\tPromise = require('promise'),\r\n\tsamples = require('../../samples'),\r\n\t_ = require('lodash');\r\n\r\n/**\r\n * @description set addToCart error message\r\n * @param {String} msg\r\n */\r\nvar timer;\r\nvar setAddToCartError = function (msg) {\r\n\tvar $errEle = $(\"#product-content #a2c-error\");\r\n\tvar $errEleSticky = $(\"#product-content-sticky #a2c-error\");\r\n\r\n\t$errEle.html(msg).slideDown('fast'); \r\n \r\n\r\n\t$errEleSticky.html(msg).slideDown('fast', function () {\r\n\t\tsetTimeout(function () {\r\n\t\t\t$errEleSticky.slideUp(500);\r\n\t\t}, 2000);\r\n\t});\r\n};\r\n\r\n/**\r\n * @description Make the AJAX request to add an item to cart\r\n * @param {Element} form The form element that contains the item quantity and ID data\r\n * @returns {Promise}\r\n */\r\nvar addItemToCart = function (form, quickView) {\r\n\tvar $form = $(form);\r\n\tvar $quickView = $(quickView);\r\n\tvar url = Urls.addProduct;\r\n\t\r\n\tif ($quickView.length > 0) {\r\n\t\turl = util.appendParamToURL(url, 'page', 'cart');\r\n\t} \r\n\treturn Promise.resolve($.ajax({\r\n\t\ttype: 'POST',\r\n\t\turl: util.ajaxUrl(url),\r\n\t\tdata: $form.serialize()\r\n\t})).then(function (response) {\r\n\t\t// handle error in the response\r\n\t\tif (response.error) {\r\n\t\t\tif (response.error === \"Basket Limit Exceed\") {\r\n\t\t\t\tvar url = util.appendParamToURL(Urls.basketLimitExceed, 'format', 'ajax');\r\n\t\t\t\t$.ajax({\r\n\t\t\t\t\turl: url,\r\n\t\t\t\t\tdataType: 'html',\r\n\t\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\t\tcustomModal.createCustomModal('addProduct-error-modal');\r\n\t\t\t\t\t\t$('.addProduct-error-modal').find('.modal-body').html(response).scrollBox();\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t\tthrow new Error(response.error);\r\n\t\t\t\treturn false;\r\n\t\t\t} else {\r\n\t\t\t\tsetAddToCartError(response.error);\r\n\t\t\t\tthrow new Error(response.error);\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\t$(\"#product-content #a2c-error\").hide(); \r\n\t\t}\r\n\r\n\t\treturn response;\r\n\t});\r\n};\r\n\r\n/**\r\n * @description Handler to handle the add to cart event\r\n */\r\nvar addToCart = function (e) {\r\n\te.preventDefault();\r\n\tvar $form = $(this).closest('form');\r\n\tvar $quickView = $('.quickview-modal');\r\n\t$quickView.find('.modal-close').first().trigger('click');\r\n\tvar addToCartButton = $form.find('.add-to-cart');\r\n\t\r\n\taddItemToCart($form, $quickView).then(function (response) {\r\n\t\tvar $uuid = $form.find('input[name=\"uuid\"]');\r\n\t\tif ($uuid.length > 0 && $uuid.val().length > 0) {\r\n\t\t\tcartShow(response);\r\n\t\t} else {\r\n\t\t\t// do not close quickview if adding individual item that is part of product set\r\n\t\t\t// @TODO should notify the user some other way that the add action has completed successfully\r\n\r\n\t\t\t$('.stick-buy-container').removeClass('open');\r\n\t\t\t$('.sticky-buy-link').removeClass('active');\r\n\t\t\t$(document).trigger(\"gtadd-to-cart\");\r\n\t\t\tminicart.show(response,addToCartButton,addToCartButton);\r\n\t\t}\r\n\t}.bind(this));\r\n};\r\n\r\n/**\r\n * @description Handler to handle the add all items to cart event\r\n */\r\nvar addAllTo = function (e) {\r\n\te.preventDefault();\r\n\t$('.product-tile-inner #a2c-error').hide();\r\n\tvar pidData = $('#pids').val();\r\n\tminicart.addAllProducts(pidData, e.data.to);\r\n};\r\n\r\n// Accepts jQuery selector of n elements containing data attr storing pid\r\n// Returns formatted pid data required for addAllProducts request (ex. 'pidA:1,pidB:1,pidN:1')\r\n// To fetch qty, searches for qty dropdown or defaults to 1\r\nfunction formatPidDataFromEles($selector) {\r\n\treturn $selector.toArray().map(function (ele) {\r\n\t\tvar $ele = $(ele),\r\n\t\t\tpid = $ele.data('pid'),\r\n\t\t\tqty = $ele.find('select[name=\"Quantity\"]').length ? $ele.find('select[name=\"Quantity\"]').val() : 1;\r\n\r\n\t\treturn pid + \":\" + qty;\r\n\t}).join(',');\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Binds the click event to a given target for the add-to-cart handling\r\n */\r\nmodule.exports = function () {\r\n\t$('.add-to-cart[disabled]').attr('title', $('.availability-msg').text());\r\n\t$('#add-all-to-cart').on('click', {\r\n\t\tto: 'Cart'\r\n\t}, addAllTo);\r\n\t$('.product-form-actions .product-set-wishlist').on('click', {\r\n\t\tto: 'Wishlist'\r\n\t}, addAllTo);\r\n};\r\n\r\n\r\n$(document).on('click', 'button.addToBag', function() {\r\n\tif($('button.addToBag').hasClass('disable')) {\r\n\t\t$('.addtobag-modal').toggleClass('active');\r\n\t\tif($('.addtobag-modal').hasClass('active')) {\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\t$('.addtobag-modal').removeClass('active');\r\n\t\t\t}, 3000);\r\n\t\t}\t\r\n\t}\r\n\telse {\r\n\t\t\taddToBagClick();\r\n\t}\r\n});\r\n\r\n\r\n/**\r\n * duplicated add-to-cart from export above - endorse for re-factoring\r\n * reason for duplication : sometimes add to bag/cart script won't trigger/execute\r\n */\r\n$(document).on('click', '.product-detail .add-to-cart', addToCart);\r\n$(document).on('click', '#product-content-sticky .add-to-cart', addToCart);\r\n$(document).on('click', 'button.sample-bonus-add-to-cart', addSamplesToCart);\r\n$(document).on('click', '.bonus-sample-selection .product-tile-wrapper', sampleTileSelect);\r\n$(document).on('click', '.bonus-sample-selection .icon-more-info', openShortDescription);\r\n$(document).on('click', '.bonus-sample-selection .icon-sample-close', closeShortDescription);\r\n$(document).on('click', '.reveal.sample-selection .close-button', function (e) {\r\n\tscrollToTop(e);\r\n});\r\n$(\"form.multi-select-form\").on('submit', function (e) {\r\n\te.preventDefault();\r\n\r\n\tvar pidData = formatPidDataFromEles($(this).find('button.multiselect[value=\"selected\"]'));\r\n\tminicart.addAllProducts(pidData, 'Cart');\r\n});\r\n\r\nfunction openShortDescription(e) {\r\n\te.preventDefault();\r\n\te.stopPropagation();\r\n\t$(this).parent().parent().addClass('info-open');\r\n}\r\n\r\nfunction closeShortDescription(e) {\r\n\te.preventDefault();\r\n\te.stopPropagation();\r\n\t$(this).parent().parent().removeClass('info-open');\r\n}\r\n\r\n\r\nfunction sampleTileSelect(e) {\r\n\te.preventDefault();\r\n\tvar $this = $(this);\r\n\tvar $btn = $this.find('button.multiselect');\r\n\tvar $multiSelectForm = $this.parents('form');\r\n\tvar $thresholdInput = $multiSelectForm.find('input[name=\"pids\"]');\r\n\tvar moreInfoOpen = $this.hasClass('info-open');\r\n\r\n\tvar selectedCount = $multiSelectForm.find('button[value=\"selected\"]').length;\r\n\tvar limitCount = $thresholdInput.data('limit');\r\n\r\n\tif ($('#samples-bonus-error')) {\r\n\t\t$('#samples-bonus-error').html(null);\r\n\t}\r\n\r\n\t// do checking to compare if limit is met\r\n\tvar btnIsSelected = $btn.val() == 'selected';\r\n\r\n\tif ( (btnIsSelected || selectedCount < limitCount)) {\r\n\t\t// toggle val/text\r\n\t\t$btn.toggleClass('remove');\r\n\t\t$btn.val(btnIsSelected ? 'selectable' : 'selected');\r\n\t\t$btn.html(btnIsSelected ? $btn.data('select') : $btn.data('selected'));\r\n\t} else if ($('#samples-bonus-error') && !moreInfoOpen) { // cap reached, report error\r\n\t\t$('#samples-bonus-error').html($('input[name=\"pids\"]').data('error'));\r\n\r\n\t\t$('.modal-body').animate({\r\n\t\t\tscrollTop: 0\r\n\t\t}, 200);\r\n\t}\r\n\r\n\tvar selectedProductList = [];\r\n\tvar enableAddToBag = true;\r\n\r\n\t// fetch all items that are selected\r\n\t$multiSelectForm.find('button[value=\"selected\"]').each(function (index, item) {\r\n\t\tselectedProductList.push($(item).data('pid'));\r\n\t\tenableAddToBag = true;\r\n\t});\r\n\r\n\t// store all selected products to hidden input\r\n\t$thresholdInput.val(selectedProductList);\r\n\r\n\t// enable \"Add to Bag\" button\r\n\tvar cartButton = $thresholdInput.data('button');\r\n\tif (enableAddToBag) {\r\n\t\t$('button.' + cartButton).prop('disabled', false);\r\n\t} else {\r\n\t\t$('button.' + cartButton).attr('disabled', 'true');\r\n\t}\r\n\r\n\t// update selected counter\r\n\tvar selectedCount = parseInt(selectedProductList.length);\r\n\tvar selectedLimit = parseInt($thresholdInput.data('count'));\r\n\tif (selectedCount > 0) {\r\n\t\tif ($('.sample-bonus-add-to-cart').hasClass('add-button')) {\r\n\t\t\t$(\"span.sample-bonus-count\").html(' [' + (selectedCount <= selectedLimit ? selectedCount : selectedLimit) + ']');\r\n\t\t}\r\n\t} else {\r\n\t\t$(\"span.sample-bonus-count\").html('');\r\n\t\tif ($('.sample-bonus-add-to-cart').hasClass('add-button')) {\r\n\t\t\t$('button.' + cartButton).attr('disabled', 'true');\r\n\t\t}\r\n\t}\r\n\t\r\n\t// Apply opacity on non selected tiles after selection limit reached\r\n\tif (selectedCount === limitCount) {\r\n\t\t$('.sample.multiselect:not(.remove)').parentsUntil('.product-tile-wrapper').parent().addClass('opacity');\r\n\t\t$('.bonus.multiselect:not(.remove)').parentsUntil('.product-tile-wrapper').parent().addClass('opacity');\r\n\t\t$('.selection-limit').removeClass('hide');\r\n\t\t$('.update-selection').addClass('hide');\r\n\t} else {\r\n\t\t$('#bonus-sample-selection .product-tile-wrapper').removeClass('opacity');\r\n\t\t$('.selection-limit').addClass('hide');\r\n\t\t$('.update-selection').removeClass('hide').find('span').text(limitCount-selectedCount);\r\n\t}\r\n\t\r\n\t//Handling of checkbox state\r\n\tif ($this.find('.multiselect').hasClass('remove')) {\r\n\t\t$this.find('.multiselect.remove').siblings('.icon-checks').addClass('checked');\r\n\t} else {\r\n\t\t$this.find('.multiselect').siblings('.icon-checks').removeClass('checked');\r\n\t}\r\n}\r\nfunction addToBagModal() {\r\n\tif($('button.addToBag').hasClass('disable')) {\r\n\t\t$('.addtobag-modal').toggleClass('active');\r\n\t}\r\n}\r\n\r\nfunction addToBagClick() {\r\n\t\tvar webcamMode = $('#webcam-status').attr('mode');\r\n\t\tvar data = new FormData();\r\n\t\tvar pids;\r\n\t\tdata.append( window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n\t\t\r\n\t\tif(webcamMode == 'multi'){\r\n\t\t\tvar productIds = [];\r\n\t\t\tvar multisplit1 = $('#multisplit').attr('screen-1');\r\n\t\t\tvar multisplit2 = $('#multisplit').attr('screen-2');\r\n\t\t\tvar multisplit3 = $('#multisplit').attr('screen-3');\r\n\t\t\tvar multisplit4 = $('#multisplit').attr('screen-4');\r\n\t\t\t((multisplit1!=\"\") && typeof(multisplit1) !== undefined) ? productIds.push(multisplit1+\":1\") : '';\r\n\t\t\t((multisplit2!=\"\") && typeof(multisplit2) !== undefined) ? productIds.push(multisplit2+\":1\") : '';\r\n\t\t\t((multisplit3!=\"\") && typeof(multisplit3) !== undefined) ? productIds.push(multisplit3+\":1\") : '';\r\n\t\t\t((multisplit4!=\"\") && typeof(multisplit4) !== undefined) ? productIds.push(multisplit4+\":1\") : '';\r\n\t\t\tpids = productIds.join();\r\n\t\t}\r\n\t\telse{\r\n\t\t\tpids = $(\"#pid\").val()+\":1\";\r\n\t\t}\r\n\t\tvar bagCount = minicart.addAllProducts(pids, 'virtual-tryon');\r\n}\r\nfunction addSamplesToCart(e) {\r\n\te.preventDefault();\r\n\r\n\tvar url = util.toAbsoluteUrl($(this).data('action'));\r\n\tvar $form = $(this).parents('form');\r\n\t\r\n\r\n\t$('.sample-selection .ajax-loader').show();\r\n\t$.ajax({\r\n\t\turl: util.appendParamToURL(url, 'format', 'ajax'),\r\n\t\tdata: $form.serialize(),\r\n\t\tmethod: 'POST'\r\n\t}).done(function (response) {\r\n\t\tif (response.error === \"CSRF Token Mismatch\") {\r\n\t\t\twindow.location.reload();\r\n\t\t}\r\n\t\telse if (response.error === \"Basket Limit Exceed\") {\r\n\t\t\tvar errMsg = $('.addSamples-response').html();\r\n\t\t\t$('#samples-bonus-error').html(errMsg);\r\n\t\t}\r\n\t\telse if ($('.sample-bonus-add-to-cart').data('redirect')) {\r\n\t\t\t$('#bonus-sample-selection .modal-close').trigger('click');\r\n\t\t\tminicart.show(response);\r\n\t\t\tif (window.pageContext.ns === 'cart') {\r\n\t\t\t\t$.ajax({\r\n\t\t\t\t\ttype: 'GET',\r\n\t\t\t\t\turl: util.ajaxUrl(Urls.cartShow, 'format', 'ajax'),\r\n\t\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\t\t$('#primary').html(response);\r\n\t\t\t\t\t\trequire('../../pages/cart').init();\r\n\t\t\t\t\t},\r\n\t\t\t\t\terror: function () {\r\n\t\t\t\t\t\tpage.refresh();\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\tvar $div = $('<div>').html(response);\r\n\t\t\tif ($div.find('.added-to-cart-products').length) {\r\n\t\t\t\tminicart.show(response);\r\n\t\t\t}\r\n\t\t\tif ($('.sample-bonus-add-to-cart')) {\r\n\t\t\t\t$('#bonus-sample-selection .modal-close').trigger('click');\r\n\t\t\t}\r\n\t\t}\r\n\t\t$('.sample-selection .ajax-loader').hide();\r\n\t});\r\n}\r\n\r\nfunction cartShow (response) {\r\n\t$('#primary').html(response);\r\n\tif ($('.cart-empty').length){\r\n\t\t$(window).scrollTop(0);\r\n\t} else {\r\n\t\t$(window).trigger('scroll');\r\n\t}\r\n\t$('.overlay').remove();\r\n\t$.ajax({\r\n\t\ttype: 'GET',\r\n\t\turl: Urls.showMinicart,\r\n\t\tsuccess: function (minCartData) {\r\n\t\t\t$('.header-container .minicart-link').html(minCartData);\r\n\t\t\tvar cart = require('../cart');\r\n\t\t\tcart.init();\r\n\t\t},\r\n\t\terror: function () {\r\n\t\t\tpage.refresh();\r\n\t\t}\r\n\t});\r\n}\n},{\"../../minicart\":26,\"../../modal\":27,\"../../page\":30,\"../../pages/cart\":33,\"../../samples\":82,\"../../util\":93,\"../cart\":33,\"lodash\":137,\"promise\":141}],49:[function(require,module,exports){\n'use strict';\r\n\r\nvar ajax = require('../../ajax'),\r\n\tutil = require('../../util');\r\n\r\nvar updateContainer = function (data) {\r\n\tvar $availabilityMsg = $('#pdpMain .availability .availability-msg');\r\n\tvar message; // this should be lexically scoped, when `let` is supported (ES6)\r\n\tif (!data) {\r\n\t\t$availabilityMsg.html(Resources.ITEM_STATUS_NOTAVAILABLE);\r\n\t\treturn;\r\n\t}\r\n\t$availabilityMsg.empty();\r\n\t// Look through levels ... if msg is not empty, then create span el\r\n\tif (data.levels.IN_STOCK > 0) {\r\n\t\tif (data.levels.PREORDER === 0 && data.levels.BACKORDER === 0 && data.levels.NOT_AVAILABLE === 0) {\r\n\t\t\t// Just in stock\r\n\t\t\tmessage = Resources.IN_STOCK;\r\n\t\t} else {\r\n\t\t\t// In stock with conditions ...\r\n\t\t\tmessage = data.inStockMsg;\r\n\t\t}\r\n\t\t$availabilityMsg.append('<p class=\"in-stock-msg\">' + message + '</p>');\r\n\t}\r\n\tif (data.levels.PREORDER > 0) {\r\n\t\tif (data.levels.IN_STOCK === 0 && data.levels.BACKORDER === 0 && data.levels.NOT_AVAILABLE === 0) {\r\n\t\t\tmessage = Resources.PREORDER;\r\n\t\t} else {\r\n\t\t\tmessage = data.preOrderMsg;\r\n\t\t}\r\n\t\t$availabilityMsg.append('<p class=\"preorder-msg\">' + message + '</p>');\r\n\t}\r\n\tif (data.levels.BACKORDER > 0) {\r\n\t\tif (data.levels.IN_STOCK === 0 && data.levels.PREORDER === 0 && data.levels.NOT_AVAILABLE === 0) {\r\n\t\t\tmessage = Resources.BACKORDER;\r\n\t\t} else {\r\n\t\t\tmessage = data.backOrderMsg;\r\n\t\t}\r\n\t\t$availabilityMsg.append('<p class=\"backorder-msg\">' + message + '</p>');\r\n\t}\r\n\tif (data.inStockDate !== '') {\r\n\t\t$availabilityMsg.append('<p class=\"in-stock-date-msg\">' + String.format(Resources.IN_STOCK_DATE, data.inStockDate) + '</p>');\r\n\t}\r\n\tif (data.levels.NOT_AVAILABLE > 0) {\r\n\t\tif (data.levels.PREORDER === 0 && data.levels.BACKORDER === 0 && data.levels.IN_STOCK === 0) {\r\n\t\t\tmessage = Resources.NOT_AVAILABLE;\r\n\t\t} else {\r\n\t\t\tmessage = Resources.REMAIN_NOT_AVAILABLE;\r\n\t\t}\r\n\t\t$availabilityMsg.append('<p class=\"not-available-msg\">' + message + '</p>');\r\n\t}\r\n};\r\n\r\nvar getAvailability = function () {\r\n\tajax.getJson({\r\n\t\turl: util.appendParamsToUrl(Urls.getAvailability, {\r\n\t\t\tpid: $('#pid').val(),\r\n\t\t\tQuantity: $(this).val()\r\n\t\t}),\r\n\t\tcallback: updateContainer\r\n\t});\r\n};\r\n\r\nmodule.exports = function () {\r\n\t$('#pdpMain').on('change', '.pdpForm input[name=\"Quantity\"]', getAvailability);\r\n};\n},{\"../../ajax\":1,\"../../util\":93}],50:[function(require,module,exports){\n\r\nfunction initializeEvents() {\r\n\t$('.video-carousel').slick({\r\n\t\tdots: true,\r\n\t\tinfinite: false,\r\n\t\tslidesToShow: 3,\r\n\t\tslidesToScroll: 1,\r\n\t\tresponsive: [\r\n\t\t\t{\r\n\t\t\tbreakpoint: 480,\r\n\t\t\tsettings: 'unslick'\r\n\t\t\t}\r\n\t\t]\r\n\t});\r\n}\r\n\r\nmodule.exports = {\r\n\tinit: function () {\r\n\t\tinitializeEvents();\r\n\t}\r\n};\n},{}],51:[function(require,module,exports){\n'use strict';\r\nvar customModal = require('../../modal');\r\nvar util = require('../../util');\r\nvar qs = require('qs');\r\nvar url = require('url');\r\nvar _ = require('lodash');\r\nvar currentLayout = require('../../detect-layout');\r\nvar zoom = require('../../pinch-zoom');\r\nvar dragscroll = require('../../dragscroll');\r\nvar imagesLoaded = require('imagesloaded');\r\nvar SessionAttributes = window.SessionAttributes;\r\n\r\nvar checkLayout = currentLayout.init(),\r\n\tisTouchDevice = ('ontouchstart' in document.documentElement);\r\n\r\nif(isTouchDevice) {\t\r\n\tif (localStorage.getItem(\"pinchImageSessionCount\") === null && localStorage.getItem(\"pageSessionID\") === null) {\r\n\t\tlocalStorage.setItem('pinchImageSessionCount', 0);\r\n\t\tlocalStorage.setItem('pageSessionID', SessionAttributes.SESSION_ID);\r\n\t}\r\n\t\r\n\tif( localStorage.getItem(\"pageSessionID\") !== SessionAttributes.SESSION_ID) {\r\n\t\tlocalStorage.setItem('pinchImageSessionCount', 0);\r\n\t\tlocalStorage.setItem('pageSessionID', SessionAttributes.SESSION_ID);\r\n\t}\r\n}\r\n\r\nfunction getProductImageURL(viewType) {\r\n\tvar pid = $(\"span[itemprop='productID']\").data(\"pid\");\r\n\treturn util.appendParamsToUrl(Urls.getProductImages, {\r\n\t\t\"pid\": pid,\r\n\t\t\"sz\": viewType\r\n\t});\r\n}\r\n\r\nfunction lazyLoadThumbnails(activeThumbnail, intialThumbnail) {\r\n\tvar viewType = \"thumbnail\";\r\n\tvar thumbnailProductImageURL = getProductImageURL(viewType);\r\n\r\n\t$.get(thumbnailProductImageURL).done(function (res) {\r\n\t\t$(\"#thumbnails\").html(res);\r\n\t\tcustomModal.modal();\r\n\r\n\t\tvar thumbnailImageCount = $('#thumbnails li').length;\r\n\t\tif (thumbnailImageCount <= 1) {\r\n\t\t\t$('.pdp-product-thumbnail-slider').addClass('pdp-product-thumbnail-slider-single');\r\n\t\t\treturn false;\r\n\t\t} else {\r\n\t\t\tinitThumbnailCarousel(activeThumbnail, intialThumbnail);\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction initThumbnailCarousel(activeThumbnail, intialThumbnail) {\r\n\tvar activeIndex = activeThumbnail,\r\n\t\ttotalIndex = $('.pdp-product-thumbnail-slider > div').length;\r\n\r\n\tif(activeIndex >= totalIndex) {\r\n\t\tactiveIndex = 0;\r\n\t}\r\n\r\n\t$('#thumbnails ul').slick({\r\n\t\tdots: true,\r\n\t\tinfinite: false,\r\n\t\tarrows: false,\r\n\t\tslidesToShow: 1,\r\n\t\tslidesToScroll: 1,\r\n\t\tinitialSlide: activeIndex,\r\n accessibility: false,\r\n\t\tdraggable: false\r\n\t});\r\n\r\n\tvar settings = {\r\n\t\tdots:false,\r\n\t\tarrows:true,\r\n\t\tinfinite:false,\r\n\t\tslidesToShow:4,\r\n\t\tslidesToScroll:1,\r\n\t\tfocusOnSelect:true,\r\n\t\tvertical:false,\r\n\t\tverticalSwiping:false,\r\n\t\taccessibility:false,\r\n\t\tnextArrow:'<button class=\"icon slick-next slick-arrow\"><i class=\"icon-product-gallery-next\"></i></button>',\r\n\t\tprevArrow:'<button class=\"icon slick-prev slick-arrow\"><i class=\"icon-product-gallery-prev\"></i></button>'\r\n\t}\r\n\r\n\tif(totalIndex > 4) {\r\n\t\tif(intialThumbnail !== undefined) {\r\n\t\t\tsettings.initialSlide = intialThumbnail;\r\n\t\t}\r\n\t} else {\r\n\t\tsettings.slidesToShow = totalIndex;\r\n\t}\r\n\t\r\n\t$('.pdp-product-thumbnail-slider').slick(settings);\r\n\t\r\n\tstopAutoScrollProductThumbsSlider();\r\n\r\n\t$('.pdp-product-thumbnail-slider .slick-slide[data-slick-index|= 0]').addClass(\"clicked-slide\")\r\n\t\r\n\t// Active last selected thumbnail.\r\n\tif(activeIndex !== undefined || activeIndex < totalIndex) {\r\n\t\t$('ul.product-images').slick('refresh');\r\n\t\t$('.pdp-product-thumbnail-slider').slick('refresh');\r\n\t\t$('.pdp-product-thumbnail-slider .slick-slide[data-slick-index|= ' + activeIndex + ']').addClass('clicked-slide');\r\n\t}\r\n\r\n\tif(activeIndex == (totalIndex - 1)) {\r\n\t\tsetTimeout(function () {\r\n\t\t\t$('.pdp-product-thumbnail-slider .slick-slide[data-slick-index|= ' + activeIndex + ']').trigger('click');\r\n\t\t}, 500);\r\n\t}\r\n\r\n}\r\n\r\n$(window).on('resize orientationchange', function () {\r\n\tstopAutoScrollProductThumbsSlider();\r\n});\r\n\r\n$(document).on(\"click\",\".pdp-product-thumbnail-slider .slick-active\",function(){\r\n\tvar currentSlide = $(this).attr(\"data-slick-index\");\r\n\t$('ul.product-images').slick('slickGoTo', currentSlide);\r\n\t$('.pdp-product-thumbnail-slider .slick-slide').removeClass('clicked-slide');\r\n\t$('.pdp-product-thumbnail-slider .slick-slide[data-slick-index|= '+ currentSlide +']').addClass(\"clicked-slide\")\r\n});\r\n\r\n$(document).on('click', '.zoom-up-icon', function (event) {\r\n\t$(this).closest('.product-thumbnails').find('.product-images').find('.slick-active.slick-current').find('.productthumbnail ').trigger('click')\r\n});\r\n\r\n\r\nfunction stopAutoScrollProductThumbsSlider() {\r\n\tif (window.innerWidth > 1023 && ($(\".pdp-product-thumbnail-slider .slick-slide\").length <= 4)) {\r\n\t\t$(\".pdp-product-thumbnail-slider .slick-track\").addClass(\"no-transform\");\r\n\t}\r\n}\r\n\r\n/**\r\n * @description Sets the main image attributes and the href for the surrounding <a> tag\r\n * @param {Object} atts Object with url, alt, title and hires properties\r\n */\r\nfunction setMainImage(atts) {\r\n\t$('#pdpMain .primary-image').attr({\r\n\t\tsrc: atts.url,\r\n\t\talt: atts.alt,\r\n\t\ttitle: atts.title\r\n\t});\r\n}\r\n\r\n/* Refresh PDP Main Image Slider */\r\nfunction refreshPDPImageSlider(activeThumbnail, intialThumbnail) {\r\n\t$(document).on('click', '.close-try-it-on, .try-it-on.exitEnabled', function () {\r\n\t\tlazyLoadThumbnails(activeThumbnail, intialThumbnail);\r\n\t});\r\n}\r\n/* @module image\r\n * @description this module handles the primary image viewer on PDP\r\n **/\r\n\r\n/**\r\n * @description by default, this function sets up zoom and event handler for thumbnail click\r\n **/\r\nmodule.exports = function (activeThumbnail, ajaxFlag, intialThumbnail) {\r\n\tlazyLoadThumbnails(activeThumbnail, intialThumbnail);\r\n\tif (SitePreferences.GIARAN_ENABLED) {\r\n\t\trefreshPDPImageSlider(activeThumbnail, intialThumbnail);\r\n\t}\r\n\t\r\n\tif(isTouchDevice) {\r\n\t\tvar timer,\r\n\t\tpinchImageShowInterval = SitePreferences.PINCH_ZOOM_IMAGE_TIMEOUT * 1000,\r\n\t\tpinchZoomUtils = function(pinchImageDisplayCount) {\r\n\t\t\tif($('.pinch-img').is(\":visible\")) {\r\n\t\t\t\t$(document).on('touchstart click','.zoom-img, .pinch-img', function(){\r\n\t\t\t\t\t$('.pinch-img').hide();\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t\tif(pinchImageShowInterval > 0 && pinchImageDisplayCount < 2) {\r\n\t\t\t\tlocalStorage.setItem('pinchImageSessionCount', pinchImageDisplayCount + 1);\r\n\t\t\t}\r\n\t\t\twindow.clearTimeout(timer);\r\n\t\t\ttimer = window.setTimeout(function(){\r\n\t\t\t\t$('.pinch-img').hide();\r\n\t\t\t}, pinchImageShowInterval);\r\n\t\t}\r\n\t}\r\n\t\r\n\t//Extract image type ex: jpg\r\n\tfunction checkImageType(url) {\r\n\t\tif (url.match(/\\?./)) {\r\n\t\t\treturn(url.substr((url.lastIndexOf('.') + 1)).split('?')[0]);\r\n\t\t} else {\r\n\t\t\treturn(url.substr((url.lastIndexOf('.') + 1)));\r\n\t\t}\r\n\t}\r\n\t\r\n\t// bind zoom event handler\r\n\t$('#thumbnails').on('click', '.productthumbnail', function (evt) {\r\n\t\tevt.preventDefault();\r\n\t\tvar viewType = \"zoom\",\r\n\t\t\tzoomImageUrl = null,\r\n\t\t\timageTypeFlag = false,\r\n\t\t\timageExtention = '';\r\n\r\n\t\tif ($('.productthumbnail').length > 1) {\r\n\t\t\tzoomImageUrl = $('#thumbnails .slick-current .productthumbnail').data('zoomimg');\r\n\t\t} else {\r\n\t\t\t// for only one thumbnail, select that one image\r\n\t\t\tzoomImageUrl = $($('.productthumbnail')[0]).data('zoomimg');\r\n\t\t}\r\n\r\n\t\t$('.zoomProductImage .modal-body').html('<img class=\"zoom-img\" src=\"' + zoomImageUrl + '\">');\r\n\t\t\r\n\t\timageExtention = checkImageType(zoomImageUrl).toLowerCase();\r\n\t\tif(imageExtention === 'jpg' || imageExtention === 'jpeg' || imageExtention === 'png') {\r\n\t\t\timageTypeFlag = true;\r\n\t\t}\r\n\r\n\t\tif (isTouchDevice) {\r\n\t\t\tvar pinchImageDisplayCount = parseInt(localStorage.getItem('pinchImageSessionCount')),\r\n\t\t\tpinchImage = (pinchImageShowInterval > 0 && pinchImageDisplayCount < 2 && imageTypeFlag) ? '<img class=\"pinch-img\" src=\"'+Urls.pinchZoomImage+'\">' : '';\r\n\t\t\timagesLoaded('.pinch-zoom .zoom-img').on('done', function () {\r\n\t\t\t\t$('.zoomProductImage .modal-body').append(pinchImage);\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\tvar widthModal_zoom = window.innerWidth;\r\n\t\tif (widthModal_zoom <= 1024 && isTouchDevice) {\r\n\t\t\tzoomTouch(pinchImageDisplayCount, imageTypeFlag);\r\n\t\t} else {\r\n\t\t\t$('.zoom-img').on('load', function () {\r\n\t\t\t\tvar outerContent = $('#zoomProductImage .modal-body');\r\n\t\t\t\tvar innerContent = $('#zoomProductImage .modal-body>img');\r\n\t\t\t\touterContent.scrollLeft((innerContent.width() - outerContent.width()) / 2);\r\n\t\t\t\touterContent.scrollTop((innerContent.height() - outerContent.height()) / 2);\r\n\t\t\t\t/* Reset dragscroll after ajax call */\r\n\t\t\t\tif(ajaxFlag !== undefined && ajaxFlag === true) {\r\n\t\t\t\t\tdragscroll.reset();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n\t\r\n\tfunction zoomTouch(pinchImageDisplayCount, imageTypeFlag) {\r\n\t\tvar pdp_modal = $('#zoomProductImage').css('display') == 'none'\r\n\t\tif (screen.width > window.innerWidth) {\r\n\t\t\tscreen.width = '100%';\r\n\t\t}\r\n\t\tif (imageTypeFlag) {\r\n\t\t\tvar myel = document.querySelector('div.pinch-zoom');\r\n\t\t\tif (myel !== undefined) {\r\n\t\t\t\tnew zoom.default(myel, {});\r\n\t\t\t}\r\n\t\t\tif(pinchImageShowInterval > 0 && pinchImageDisplayCount < 2 ) {\r\n\t\t\t\timagesLoaded('.pinch-zoom .zoom-img, .pinch-zoom .pinch-img').on('done', function () {\r\n\t\t\t\t\tpinchZoomUtils(pinchImageDisplayCount);\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\t$(document).on('click', '.zoom-img', function (e) {\r\n\t\tif (window.innerWidth >= 1024 && !isTouchDevice) {\r\n\t\t\tdragscroll.reset();\r\n\t\t}\r\n\t}).on('click', '#zoomProductImage .modal-close, #zoomProductImage .modal-close-outer', function () {\r\n\t\tif (window.innerWidth <= 1024 && isTouchDevice) {\r\n\t\t\t$('.pinch-zoom').removeAttr('style');\r\n\t\t\tvar innerHtml = $('.pinch-zoom-container').contents();\r\n\t\t\t$('.pinch-zoom-container').replaceWith(innerHtml);\r\n\t\t}\r\n\t});\r\n\r\n\t// handle product thumbnail click event\r\n\t$('#thumbnails').on('click', '.productthumbnail', function () {\r\n\t\tvar $that = $(this);\r\n\t\tif (!$that.hasClass(\"selected\")) {\r\n\t\t\t$(document).trigger(\"clickproductthumbnail\"); \r\n\t\t}\r\n\r\n\t\t$('#thumbnails').find('.productthumbnail.selected').removeClass('selected');\r\n\t\t$that.addClass('selected');\r\n\t\tsetMainImage($that.data('lgimg'));\r\n\t});\r\n};\r\n\r\n\r\nmodule.exports.setMainImage = setMainImage;\r\nmodule.exports.lazyLoadThumbnails = lazyLoadThumbnails;\r\n\r\n\n},{\"../../detect-layout\":13,\"../../dragscroll\":15,\"../../modal\":27,\"../../pinch-zoom\":75,\"../../util\":93,\"imagesloaded\":133,\"lodash\":137,\"qs\":150,\"url\":161}],52:[function(require,module,exports){\n'use strict';\r\n\r\nvar productStoreInventory = require('../../storeinventory/product'),\r\n\tutil = require('../../util'),\r\n\taddToCart = require('./addToCart'),\r\n\tproductTile = require('../../product-tile'),\r\n\tavailability = require('./availability'),\r\n\timage = require('./image'),\r\n\thowToSection = require('./howToSection'),\r\n\tproductSet = require('./productSet'),\r\n\trecommendations = require('./recommendations'),\r\n\tsocialShareIcons = require('./socialShareIcons'),\r\n\tvariant = require('./variant'),\r\n\tcustomModal = require('../../modal'),\r\n\tcurrentLayout = require('../../detect-layout');\r\n\r\n\r\nvar currLayout = currentLayout.init();\r\n\r\n/**\r\n * @description Initialize product detail page with reviews, recommendation and product navigation.\r\n */\r\nfunction initializeDom() {\r\n\trecommendations();\r\n\tscreenResizeHandler();\r\n}\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Screen Resize Handler.\r\n */\r\nfunction screenResizeHandler() {\r\n\t$(window).on('resize orientationchange', function () {\r\n\t\trecommendations();\r\n\t});\r\n}\r\n\r\nfunction ellipsifySocialContentDesc(str, charlength) {\r\n\tif (str.length > charlength) {\r\n\t\treturn (str.substring(0, charlength));\r\n\t} else {\r\n\t\treturn str;\r\n\t}\r\n}\r\n\r\nvar showSocialPostDetailModal = function (target) {\r\n\t// render content to modal by url\r\n\tvar url = util.appendParamToURL($(target).attr('href'), 'format', 'ajax');\r\n\r\n\tcurrLayout = currentLayout.init();\r\n\r\n\t$.ajax({\r\n\t\turl: url,\r\n\t\tdataType: 'html',\r\n\t\tsuccess: function (response) {\r\n\t\t\tcustomModal.createCustomModal('social-media-post-detail-modal');\r\n\t\t\t$('.social-media-post-detail-modal').find('.modal-body').html(response);\r\n\t\t}\r\n\t}).always(function (data) {\r\n\t\tif (currLayout === 'mobile') {\r\n\t\t\tif (window.innerHeight > window.innerWidth) {\r\n\t\t\t\t$('.social-post-detail-content .post-detail-image').css('height', $('.social-media-post-detail-modal').find('.modal-body').width());\r\n\t\t\t\t$('.social-post-detail-content .post-detail-content').css('height', $('.social-media-post-detail-modal').find('.modal-body').height() - $('.social-media-post-detail-modal').find('.modal-body').width());\r\n\t\t\t}\r\n\t\t\tif (window.innerHeight < window.innerWidth) {\r\n\t\t\t\t$('.social-post-detail-content .post-detail-image').css('height', window.innerHeight * 0.5);\r\n\t\t\t\t$('.social-post-detail-content .post-detail-content').css('height', window.innerHeight * 0.3);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tif (currLayout === 'desktop') {\r\n\t\t\t$('.social-post-detail-content .post-detail-image').css('height', $('.social-post-detail-content .post-detail-image').width());\r\n\t\t\t$('.social-post-detail-content .post-detail-content').css('height', $('.social-post-detail-content .post-detail-image').width());\r\n\t\t}\r\n\t\t$('.social-post-detail-content .sb-container').scrollBox();\r\n\t});\r\n}\r\n\r\n\r\n/**\r\n * @description Initialize event handlers on product detail page\r\n */\r\nfunction initializeEvents() {\r\n\tvar $pdpMain = $('#pdpMain');\r\n\tlistenToVariantchange();\r\n\taddToCart();\r\n\tavailability();\r\n\tvariant();\r\n\timage();\r\n\thowToSection.init();\r\n\tproductSet();\r\n\tsocialShareIcons();\r\n\tproductTile.init();\r\n\tif (SitePreferences.STORE_PICKUP) {\r\n\t\tproductStoreInventory.init();\r\n\t}\r\n\r\n\tif(!util.isTouchScreen()) {\r\n\t\t$('.swatchanchor[title]').each(function() {\r\n\t\t\t$(this).attr('title', util.capitalizeFirstLetters($(this).attr('title')));\r\n\t\t});\r\n\t}\r\n\r\n\t// Add to Wishlist and Add to Gift Registry links behaviors\r\n\t$pdpMain.on('click', '[data-action=\"wishlist\"], [data-action=\"gift-registry\"]', function () {\r\n\t\tvar data = util.getQueryStringParams($('.pdpForm').serialize());\r\n\t\tif (data.cartAction) {\r\n\t\t\tdelete data.cartAction;\r\n\t\t}\r\n\t\tvar url = util.appendParamsToUrl(this.href, data);\r\n\t\tthis.setAttribute('href', url);\r\n\t});\r\n\r\n\t// product options\r\n\t$pdpMain.on('change', '.product-options select', function () {\r\n\t\tvar salesPrice = $pdpMain.find('.product-add-to-cart .price-sales');\r\n\t\tvar selectedItem = $(this).children().filter(':selected').first();\r\n\t\tsalesPrice.text(selectedItem.data('combined'));\r\n\t});\r\n\r\n\t// prevent default behavior of thumbnail link and add this Button\r\n\t$pdpMain.on('click', '.thumbnail-link, .unselectable a', function (e) {\r\n\t\te.preventDefault();\r\n\t});\r\n\r\n\t$pdpMain.on('click', '.keyingredients-modal .modal-close, .keyingredients-modal .modal-close-outer', function (e) {\r\n\t\te.preventDefault();\r\n\t\t$('html').removeClass('ingredient-modal');\r\n\t});\r\n\r\n\tif ($('.product-set-actions').length) {\r\n\t\tvar $productForms = $('.product-set-list').find('form').toArray();\r\n\t\tvar pids = $productForms.map(function (formEle) {\r\n\t\t\treturn $(formEle).data('pid');\r\n\t\t}).join(',');\r\n\r\n\t\t$.post(util.appendParamsToUrl(Urls.wishlistIsSavedForLater, {\r\n\t\t\tpid: pids\r\n\t\t}), function (data) {\r\n\t\t\tif (data === 'false') {\r\n\t\t\t\t$('.product-form-actions .product-set-wishlist').removeClass('d-none');\r\n\t\t\t\t$('.product-form-actions .remove-product-set-from-wishlist').addClass('d-none');\r\n\t\t\t} else {\r\n\t\t\t\t$('.product-form-actions .product-set-wishlist').addClass('d-none');\r\n\t\t\t\t$('.product-form-actions .remove-product-set-from-wishlist').removeClass('d-none');\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\t$('.remove-product-set-from-wishlist').on('click', function (e) {\r\n\t\t\te.preventDefault();\r\n\r\n\t\t\t$.post(util.appendParamsToUrl(Urls.wishlistRemoveAll, {\r\n\t\t\t\tpid: pids\r\n\t\t\t}), function () {\r\n\t\t\t\twindow.location.href = window.location.href;\r\n\t\t\t})\r\n\t\t});\r\n\t}\r\n\r\n\t$('.size-chart-link a').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\tdialog.open({\r\n\t\t\turl: $(e.target).attr('href')\r\n\t\t});\r\n\t});\r\n\r\n\t$('.accordion-toggle').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar $toggleFor = $(this).attr('href');\r\n\t\tvar $toggleHeight = $('.accordion-toggle').outerHeight();\r\n\t\tvar $stickyHeader = $('.sticky-header').outerHeight();\r\n\t\tvar totalOffset = $toggleHeight + $stickyHeader;\r\n\r\n\t\tif ($(this).hasClass('is-open')) {\r\n\t\t\t$(this).removeClass('is-open');\r\n\t\t\t$($toggleFor).removeClass('is-open').slideUp();\r\n\t\t\treturn false;\r\n\t\t} else {\r\n\t\t\tvar accordionToggle = $('.accordion-toggle.is-open');\r\n\t\t\tvar accordionContent = $('.pdp-content-section.is-open');\r\n\r\n\t\t\t$(this).toggleClass('is-open');\r\n\t\t\t$($toggleFor).toggleClass('is-open').slideDown(function () {\r\n\t\t\t\t$('html, body').animate({\r\n\t\t\t\t\tscrollTop: $(this).offset().top - totalOffset\r\n\t\t\t\t}, 400);\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\tif ($(this).attr('id') == 'rec-toggle') {\r\n\t\t\t$('.carousel-recommendations.slick-slider').slick('refresh');\r\n\t\t}\r\n\t});\r\n\r\n\t/**\r\n\t * @description Social Media integration Section\r\n\t **/\r\n\tif ($('.pdp-social-media-section').length > 0) {\r\n\t\t$('.post-descriptor p').each(function () {\r\n\t\t\t$(this).html(ellipsifySocialContentDesc($(this).html(), 83));\r\n\t\t});\r\n\r\n\t\t$('.media-post-slot .copy').each(function () {\r\n\t\t\t$(this).html(ellipsifySocialContentDesc($(this).html(), 100));\r\n\t\t})\r\n\r\n\t\t\r\n\t}\r\n\r\n\tif ($('.pdp-main .product-description .shortDescPart2').length) {\r\n\t\t$(document).on('click', '.pdp-desc-read-more', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tvar $pdpDescReadmore = $('.product-description .read-more-wrapper');\r\n\t\t\t$('.pdp-main .product-description .shortDescPart2').toggleClass('visually-hidden');\r\n\t\t\t$('.pdp-main .product-description .product-desc-dots').toggle();\r\n\t\t\tif (!($pdpDescReadmore.hasClass('less'))) {\r\n\t\t\t\t$pdpDescReadmore.find('a').html(Resources.LESS_DESC);\r\n\t\t\t\t$pdpDescReadmore.addClass('less');\r\n\t\t\t} else {\r\n\t\t\t\t$pdpDescReadmore.find('a').html(Resources.MORE_DESC);\r\n\t\t\t\t$pdpDescReadmore.removeClass('less');\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\t$('.product-tile-regimen .product-brand-name-block').on('click touchstart', function () {\r\n\t\t$('.product-tile-regimen').removeClass('product-regimen-device');\r\n\t});\r\n\r\n\t$('.product-tile-regimen .product-image').on('click touchstart', function () {\r\n\t\t$('.product-tile-regimen').removeClass('product-regimen-device');\r\n\t\t$(this).parent().addClass('product-regimen-device');\r\n\t});\r\n\t\r\n\t/* Get 360 images urls */\r\n\tfunction get360ImageURL() {\r\n\t\tvar pid = $(\"span[itemprop='productID']\").data(\"pid\");\r\n\t\treturn util.appendParamsToUrl(Urls.get360ProductImages, {\r\n\t\t\t\"pid\": pid\r\n\t\t});\r\n\t}\r\n\r\n\t/* Init 360 view modal */\r\n\t$('.product-detail').on('click', '.360-img', function (evt) {\r\n\t\t$('.loader-img-360').addClass('show');\r\n\t\tvar product360ImagesURL = get360ImageURL();\r\n\t\t$.get(product360ImagesURL).done(function (res) {\r\n\t\t\tvar imagesURL = res;\r\n\t\t\tvar data = $('.spritespin').spritespin({\r\n\t\t\t\tsource: JSON.parse(res),\r\n\t\t\t\tsense: -1,\r\n\t\t\t\tresponsive: true,\r\n\t\t\t\tloop: false,\r\n\t\t\t\tanimate: false,\r\n\t\t\t\tframe: 0,\r\n\t\t\t\tonLoad: function() {\r\n\t\t\t\t\t$('.loader-img-360').removeClass('show');\r\n\t\t\t\t}\r\n\t\t\t}).data(\"spritespin\");\r\n\t\t\t$('.view-360-modal .modal-close, .view-360-modal .modal-close-outer').on('click', function () {\r\n\t\t\t\t$('.spritespin').spritespin(\"destroy\");\r\n\t\t\t\t// remove any HTML and Style leftovers\r\n\t\t\t\t$('.spritespin').attr(\"style\", \"\").html(\"\");\r\n\t\t\t});\r\n\t\t});\r\n\t});\r\n\r\n}\r\n\r\n$(document).on('click', '.js-social-post-detail-link', function (e) {\r\n\te.preventDefault();\r\n\tshowSocialPostDetailModal($(this));\r\n});\r\n\r\n$(document).on('click', '.keyingredients .view-all', function (e) {\r\n\te.preventDefault();\r\n\tvar $this = $(this);\r\n\tvar $fullIngredientList = $('.keyingredients-full');\r\n\tvar pid = $('#pid').val();\r\n\tvar masterid = $('.product-number span').data('masterid');\r\n\tvar params = {\r\n\t\t\t\"pid\": pid,\r\n\t\t\t\"masterid\": masterid,\r\n\t\t\t\"format\": \"ajax\"\r\n\t};\r\n\t$.get(util.appendParamsToUrl(Urls.getProductIngredients, params)).done(function (content) {\r\n\t\tcustomModal.createCustomModal('keyingredients-modal');\r\n\r\n\t\tvar ingredientModalSibling = $('.keyingredients-content:first').parent();\r\n\r\n\t\t$('.keyingredients-modal').insertAfter(ingredientModalSibling);\r\n\t\t$('.keyingredients-modal').find('.modal-body').html(content);\r\n\t\t$('.keyingredients-modal .modal-body').scrollBox();\r\n\t\t$('html').addClass('ingredient-modal');\r\n\t});\r\n});\r\n\r\n\r\n\r\n$(document).on('click','.pdp-desc-read-more',function(e){\r\n\tvar scrollSection = $(this).attr('href');\r\n\tif (scrollSection !== undefined && scrollSection !== null) {\r\n\t\te.preventDefault();\r\n\t\tvar scrollElement = $(scrollSection);\r\n\t\tscrollSmoothlyToSection(scrollElement,100,800);\r\n\t}\r\n}); \r\n\r\n$(document).on('click','.sample-selection-link',function(e){ \r\n\te.preventDefault();\r\n\tvar scrollSection = $(this).attr('href');\r\n var spacing = 100;\r\n var scrollElement;\r\n\tif (currentLayout.init() === 'desktop') {\r\n spacing = 0;\r\n var scrollElement = $(scrollSection); \r\n }else{\r\n var scrollElement = $(scrollSection + \" .text-wrapper\");\r\n }\r\n\tif (scrollSection !== undefined && scrollSection !== null) {\r\n\t\tscrollSmoothlyToSection(scrollElement,spacing,800); \r\n\t} \r\n}); \r\n\r\nfunction bodyPositionFixed(id) {\r\n\tif (navigator.userAgent.match(/(iPhone|iPad)/)) {\r\n\t\tvar windowScrollPosition = $(window).scrollTop();\r\n\t\t$('body').addClass('body-fixed');\r\n\t\t$('.' + id + ' .modal-close, .' + id + ' .modal-close-outer').off('click').on('click', function () {\r\n\t\t\t$('.' + id).remove();\r\n\t\t\t$('body').removeClass('body-fixed');\r\n\t\t\t$('html').removeClass('modal-open');\r\n\t\t\t$(window).scrollTop(windowScrollPosition);\r\n\t\t});\r\n\t}\r\n}\r\n\r\nfunction handleARMenu() {\r\n\t$(document).on('click', '#triggerBtn, .arButtons button, .close-try-it-on', function () {\r\n\t\t$('.arTryOnBtnWrapper').toggleClass('openMenu');\r\n\t\t$('.viewMode').addClass('open');\r\n\t\t$('.arButtons').removeClass('hide');\r\n\t\t$('.try-on-video, .tryiton-controlers').toggleClass('arOpenMenu');\r\n\t});\r\n\t$(document).on('click', '.try-it-on', function () {\r\n\t\t$('.arTryOnBtnWrapper').removeClass('openMenu');\r\n\t\t$('.try-on-video, .tryiton-controlers').removeClass('arOpenMenu');\r\n\t});\r\n\t$(document).on('click', '.viewMode', function () {\r\n\t\t$(this).toggleClass('open'); \r\n\t\t$('.arButtons').toggleClass('hide');\r\n\t});\r\n}\r\n/*Function to scroll smoothly to a section\r\n@param scrollElement : element's jQuery reference to be scrolled to\r\n@param extraoffset : scroll less than the top offset\r\n@param scrollTime : Time allocated for scroll\r\n*/\r\nfunction scrollSmoothlyToSection(scrollElement,extraoffset,scrollTime) {\r\n\tvar scrollDuration = 1000;\r\n\tif(scrollTime!==undefined && scrollTime!==null){\r\n\t\tscrollDuration = scrollTime;\r\n\t}\r\n\r\n\tif (scrollElement.length !== 0) {\r\n\t\tvar scrollHeight = $(scrollElement).offset().top;\r\n\t\tif(extraoffset!==undefined && extraoffset!==null && !isNaN(extraoffset)){\r\n\t\t\tscrollHeight = scrollHeight - extraoffset;\r\n\t\t}\r\n\t\t$([document.documentElement, document.body]).animate({\r\n\t\t\tscrollTop: scrollHeight\r\n\t\t}, scrollDuration);\r\n\t}\r\n}\r\n\r\nvar product = {\r\n\tinitializeEvents: initializeEvents,\r\n\tbodyPositionFixed: bodyPositionFixed,\r\n\tinit: function () {\r\n\t\tinitializeDom();\r\n\t\tinitializeEvents();\r\n\t\tif (SitePreferences.GIARAN_ENABLED) {\r\n\t\t\t//Giaran Live Camera js\r\n\t\t\tvar liveCameraGiaran = require('../../../../../int_giaran/cartridge/static/default/js/liveCamera.js');\r\n\t\t\thandleARMenu();\r\n\t\t}\r\n\t}\r\n\r\n};\r\n\r\nfunction listenToVariantchange(){\r\n\t$('body').on('variation-changed',function () {\r\n\t\tif(!util.isTouchScreen()) {\r\n\t\t\t$('.swatchanchor[title]').each(function() {\r\n\t\t\t\t$(this).attr('title', util.capitalizeFirstLetters($(this).attr('title')));\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\tif(window.lastScrollPosition!==undefined) {\r\n\t\t\tif($('ul#pdp-swatches.swatches.color:visible').length>0) {\r\n\t\t\t\t$('ul#pdp-swatches.swatches.color:visible')[0].scrollLeft = window.lastScrollPosition;\r\n\t\t\t}\r\n\t\t\tif($('ul#pdp-swatches.swatches.size:visible').length>0) {\r\n\t\t\t\t$('ul#pdp-swatches.swatches.size:visible')[0].scrollLeft = window.lastScrollPosition;\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n}\r\n\r\nmodule.exports = product;\n},{\"../../../../../int_giaran/cartridge/static/default/js/liveCamera.js\":97,\"../../detect-layout\":13,\"../../modal\":27,\"../../product-tile\":77,\"../../storeinventory/product\":90,\"../../util\":93,\"./addToCart\":48,\"./availability\":49,\"./howToSection\":50,\"./image\":51,\"./productSet\":53,\"./recommendations\":54,\"./socialShareIcons\":55,\"./variant\":56}],53:[function(require,module,exports){\n'use strict';\r\n\r\nvar ajax = require('../../ajax'),\r\n\ttooltip = require('../../tooltip'),\r\n\tutil = require('../../util');\r\n\r\nmodule.exports = function () {\r\n\tvar $addToCart = $('.add-to-cart'),\r\n\t\t$addAllToCart = $('#add-all-to-cart'),\r\n\t\t$productSetList = $('#product-set-list');\r\n\r\n\tvar updateAddToCartButtons = function () {\r\n\t\tif ($productSetList.find('.add-to-cart[disabled]').length > 0) {\r\n\t\t\t$addAllToCart.attr('disabled', 'disabled');\r\n\t\t\t// product set does not have an add-to-cart button, but product bundle does\r\n\t\t\t$addToCart.attr('disabled', 'disabled');\r\n\t\t} else {\r\n\t\t\t$addAllToCart.prop('disabled', false);\r\n\t\t\t$addToCart.prop('disabled', false);\r\n\t\t}\r\n\t};\r\n\r\n\tif ($productSetList.length > 0) {\r\n\t\tupdateAddToCartButtons();\r\n\t}\r\n\t// click on swatch for product set\r\n\t$productSetList.on('click', '.product-set-item .swatchanchor', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar url = Urls.getSetItem + this.search;\r\n\t\tvar $container = $(this).closest('.product-set-item');\r\n\t\tvar qty = $container.find('form input[name=\"Quantity\"]').first().val();\r\n\r\n\t\tajax.load({\r\n\t\t\turl: util.appendParamToURL(url, 'Quantity', isNaN(qty) ? '1' : qty),\r\n\t\t\ttarget: $container,\r\n\t\t\tcallback: function () {\r\n\t\t\t\tupdateAddToCartButtons();\r\n\t\t\t\ttooltip.init();\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\r\n\t$productSetList.on('change', '.product-set-item .variation-select', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tvar $selectedVariantOption = $(this).find(\"option:selected\");\r\n\t\tif ($selectedVariantOption.length === 0 || !$selectedVariantOption.val()) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar url = Urls.getSetItem + \"?\" + util.getQueryString($selectedVariantOption.val());\r\n\t\tvar $container = $(this).closest('.product-set-item');\r\n\t\tvar qty = $container.find('select[name=\"Quantity\"] option:selected').val();\r\n\r\n\t\tajax.load({\r\n\t\t\turl: util.appendParamToURL(url, 'Quantity', isNaN(qty) ? '1' : qty),\r\n\t\t\ttarget: $container,\r\n\t\t\tcallback: function () {\r\n\t\t\t\tupdateAddToCartButtons();\r\n\t\t\t\ttooltip.init();\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\tif (screen.width > 640) {\r\n\t\t$(window).on('load', function () {\r\n\t\t\t$('#pdpMain').find('#BVRRSummaryContainer .bv-rating-stars-container').off().on('click', function (e) {\r\n\t\t\t\te.preventDefault();\r\n\t\t\t\te.stopPropagation();\r\n\t\t\t\t$(\".tabs-title:nth-child(1)\").removeClass(\"is-active\");\r\n\t\t\t\t$(\".tabs-title:nth-child(2)\").addClass(\"is-active\");\r\n\t\t\t\t$(\"#questions\").removeClass(\"is-active\");\r\n\t\t\t\t$(\"#reviews\").addClass(\"is-active\").stop(true, true);\r\n\t\t\t\t$('html, body').stop(true, true).animate({\r\n\t\t\t\t\tscrollTop: $(\"#bazaarvoice-tabs\").offset().top - 150\r\n\t\t\t\t}, 1000);\r\n\t\t\t});\r\n\t\t});\r\n\t}\r\n};\r\n\r\n$(document).on('click', '.bv-popup-in .bv-read-review', function () {\r\n\t$(\".tabs-title:nth-child(1)\").removeClass(\"is-active\");\r\n\t$(\".tabs-title:nth-child(2)\").addClass(\"is-active\");\r\n\t$(\"#questions\").removeClass(\"is-active\");\r\n\t$(\"#reviews\").addClass(\"is-active\");\r\n\te.preventDefault();\r\n\te.stopPropagation();\r\n\t$('html, body').stop(true, true).animate({\r\n\t\tscrollTop: $(\"#bazaarvoice-tabs\").offset().top - 150\r\n\t}, 1000);\r\n});\n},{\"../../ajax\":1,\"../../tooltip\":92,\"../../util\":93}],54:[function(require,module,exports){\n'use strict';\r\n\r\nvar currentLayout = require('../../detect-layout'),\r\n\tcustomModal = require('../../modal'),\r\n\tcurrLayout = currentLayout.init(),\r\n\tutil = require('../../util');\r\n\r\n/**\r\n * @function\r\n * @description Function to allow an event to fire after all images are loaded\r\n */\r\nvar imagesLoaded = function (element) {\r\n\tvar $imgs = element.find('img[src!=\"\"]');\r\n\tif (!$imgs.length) { return $.Deferred().resolve().promise(); }\r\n\r\n\tvar dfds = [];\r\n\t$imgs.each(function () {\r\n\t\tvar dfd = $.Deferred();\r\n\t\tdfds.push(dfd);\r\n\t\tvar img = new Image();\r\n\t\timg.onload = function () { dfd.resolve(); }\r\n\t\timg.onerror = function () { dfd.resolve(); }\r\n\t\timg.src = this.src;\r\n\t});\r\n\r\n\treturn $.when.apply($, dfds);\r\n}\r\n\r\n/**\r\n* @description Homepage instgram modal handler\r\n**/\r\nvar instaModal = function (element) {\r\n\tvar instaModalBody,\r\n\t\turl = util.appendParamToURL($(element).attr('href'), 'format', 'ajax');\r\n\r\n\t$.ajax({\r\n\t\turl: url,\r\n\t\tdataType: 'html',\r\n\t\tsuccess: function (response) {\r\n\t\t\tcustomModal.createCustomModal('insta-modal');\r\n\t\t\tinstaModalBody = $('.insta-modal .modal-body');\r\n\t\t\tinstaModalBody.html(response);\r\n\r\n\t\t\tinstaModalBody.html(response).imagesLoaded().then(function () {\r\n\t\t\t\tinstaModalBody.scrollBox(); // apply scroll after all images are loaded successfully, It applies correct height to the scroll element.\r\n\t\t\t}).fail(function () {\r\n\t\t\t\tinstaModalBody.scrollBox(); // apply scroll if any one of the images fails to load\r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n}\r\n\r\n/**\r\n * @description Creates product recommendation carousel using Slick carousel\r\n **/\r\nmodule.exports = function () {\r\n\tvar $rvcarousel = $('.recently-viewed .carousel-recommendations').not('.slick-initialized');\r\n\tvar $instacarousel = $('.js-insta .carousel-recommendations').not('.slick-initialized');\r\n\tvar $socialMediaCarousel = $('.pdp-social-media-section .carousel-recommendations').not('.slick-initialized');\r\n\tvar $interruptcarousel = $('.ar-tryon-interrupt .carousel-recommendations').not('.slick-initialized');\r\n\tvar $slideCount = '01';\r\n\r\n\tif ($rvcarousel && $rvcarousel.length && $rvcarousel.children().length) {\r\n\t\t initializeSlick($rvcarousel, $slideCount, 4, 3, 4);\r\n\t}\r\n\tif ($instacarousel && $instacarousel.length && $instacarousel.children().length) {\r\n\t\tinitializeSlick($instacarousel, $slideCount, 4, 2, 0);\r\n\t}\r\n\tif ($socialMediaCarousel && $socialMediaCarousel.length && $socialMediaCarousel.children().length) {\r\n\t\tinitializeSlick($socialMediaCarousel, $slideCount, 1, 1, 0);\r\n\t}\r\n\tif ($interruptcarousel && $interruptcarousel.length && $interruptcarousel.children().length) {\r\n\t\tinitializeSlick($interruptcarousel, $slideCount, 5, 3, 4);\r\n\t}\r\n\tif (!$rvcarousel || !$instacarousel || !$socialMediaCarousel || !$interruptcarousel) {\r\n\t\treturn;\r\n\t}\r\n\r\n\t$(document).on('click', '.insta-modal-anchor', function (e) {\r\n\t\te.preventDefault();\r\n\t\tinstaModal(this);\r\n\t});\r\n};\r\n\r\nif ($(\".carousel-recommendations\").length > 0 && $(\".js-insta .carousel-recommendations\").children('li').length > 0) {\r\n\tvar count = $('.js-insta .carousel-recommendations>li').length;\r\n\tif (count >= 17) {\r\n\t\t$(\".js-insta .carousel-recommendations\").children('li').slice(16).detach();\r\n\t}\r\n}\r\n\r\nfunction initializeSlick($carousel, $slideCount, maxItems, minItems, avgItems) {\r\n\tvar $screenSize = window.innerWidth,\r\n\t\t$layout = 'mobile';\r\n\tif (avgItems === 0) {\r\n\t\tif ($screenSize > 768) {\r\n\t\t\t$layout = 'desktop';\r\n\t\t}\r\n\t} else {\r\n\t\tif ($screenSize >= 768 && $screenSize <= 1024) {\r\n\t\t\t$layout = 'tablet';\r\n\t\t} else if ($screenSize >= 1025) {\r\n\t\t\t$layout = 'desktop';\r\n\t\t}\r\n\t}\r\n\r\n\t$carousel.on('init.slick', function (event, slick) {\r\n\t\tvar $getSlickParentDiv = (slick.$dots) ? slick.$dots.parents('.rv-section') : slick.$slider.parents('.rv-section');\r\n\t\tvar $carouselCounter = $getSlickParentDiv.find('.slick-counter');\r\n\t\tif (($layout == 'desktop' && slick.slideCount > maxItems) || ($layout == 'tablet' && slick.slideCount > avgItems) || ($layout == 'mobile' && slick.slideCount > minItems)) {\r\n\t\t\t$carouselCounter.append('<span>' + $slideCount + '</span><span>' + (slick.$dots.children().length < 10 ? \"0\" : \"\") + slick.$dots.children().length + '</span>');\r\n\t\t}\r\n\t\tif ($carousel.hasClass('social-carousel')) {\r\n\t\t\t$('.social-carousel .slick-slide:not(\".slick-active\")').find('.social-slide').addClass('active-slide-animation');\r\n\t\t}\r\n\t});\r\n\r\n\tvar slickSettings;\r\n\tif ($carousel.hasClass('insta-carousel')) {\r\n\t\tslickSettings = {\r\n\t\t\tinfinite: false,\r\n\t\t\teasing: 'ease',\r\n\t\t\tdots: true,\r\n\t\t\tarrows: false,\r\n\t\t\tslidesToShow: maxItems,\r\n\t\t\tslidesToScroll: maxItems,\r\n\t\t\trows: 1,\r\n\t\t\tadaptiveHeight: true,\r\n\t\t\tresponsive: [{\r\n\t\t\t\tbreakpoint: 769,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: minItems,\r\n\t\t\t\t\tslidesToScroll: minItems,\r\n\t\t\t\t\trows: 2\r\n\t\t\t\t}\r\n\t\t\t}]\r\n\t\t}\r\n\t} else if ($carousel.hasClass('social-carousel')) {\r\n\t\tslickSettings = {\r\n\t\t\tinfinite: false,\r\n\t\t\teasing: 'ease',\r\n\t\t\tdots: true,\r\n\t\t\tarrows: false,\r\n\t\t\tslidesToShow: maxItems,\r\n\t\t\tslidesToScroll: maxItems,\r\n\t\t\tslide: 'div',\r\n\t\t\tadaptiveHeight: true,\r\n\t\t\tspeed: 400,\r\n\t\t\twaitForAnimate: true,\r\n\t\t\tresponsive: [{\r\n\t\t\t\tbreakpoint: 769,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: minItems,\r\n\t\t\t\t\tslidesToScroll: minItems\r\n\t\t\t\t}\r\n\t\t\t}]\r\n\t\t}\r\n\t} else if ($carousel.hasClass('interrupt-ar')) {\r\n\t\tslickSettings = {\r\n\t\t\tinfinite: false,\r\n\t\t\teasing: 'ease',\r\n\t\t\tdots: true,\r\n\t\t\tarrows: false,\r\n\t\t\tslidesToShow: maxItems,\r\n\t\t\tslidesToScroll: maxItems,\r\n\t\t\tslide: 'div',\r\n\t\t\tadaptiveHeight: true,\r\n\t\t\tspeed: 400,\r\n\t\t\twaitForAnimate: true,\r\n\t\t\tresponsive: [{\r\n\t\t\t\tbreakpoint: 769,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: minItems,\r\n\t\t\t\t\tslidesToScroll: minItems\r\n\t\t\t\t}\r\n\t\t\t}]\r\n\t\t}\r\n\t}\r\n\telse {\r\n\t\tslickSettings = {\r\n\t\t\tinfinite: false,\r\n\t\t\teasing: 'ease',\r\n\t\t\tdots: true,\r\n\t\t\tarrows: false,\r\n\t\t\tslidesToShow: maxItems,\r\n\t\t\tslidesToScroll: maxItems,\r\n\t\t\tslide: 'div',\r\n\t\t\tadaptiveHeight: true,\r\n\t\t\tresponsive: [{\r\n\t\t\t\tbreakpoint: 1025,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: avgItems,\r\n\t\t\t\t\tslidesToScroll: avgItems\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\tbreakpoint: 768,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: minItems,\r\n\t\t\t\t\tslidesToScroll: minItems\r\n\t\t\t\t}\r\n\t\t\t}]\r\n\t\t}\r\n\t}\r\n\r\n\t$carousel.slick(slickSettings).on('afterChange', function (event, slick, currentSlide) {\r\n\t\tif (slick.$dots) {\r\n\t\t\tvar $currSlideFrame = parseInt(slick.$dots.find('.slick-active').index());\r\n\t\t\tvar $carouselCounter = slick.$dots.parents('.rv-section').find('.slick-counter');\r\n\t\t\tif (dragEle) {\r\n\t\t\t\tdragEle.setValue($currSlideFrame / (slick.$dots.children().length - 1))\r\n\t\t\t}\r\n\t\t\t$slideCount = $currSlideFrame + 1;\r\n\t\t\tif (($layout == 'desktop' && $slick.slideCount > maxItems) || ($layout == 'tablet' && $slick.slideCount > avgItems) || ($layout == 'mobile' && $slick.slideCount > minItems)) {\r\n\t\t\t\t$carouselCounter.html('<span>' + ($slideCount < 10 ? \"0\" : \"\") + $slideCount + '</span><span>' + (slick.$dots.children().length < 10 ? \"0\" : \"\") + slick.$dots.children().length + '</span>');\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n\r\n\tvar $slick = $carousel.slick(\"getSlick\");\r\n\r\n\tif (($layout == 'desktop' && $slick.slideCount > maxItems) || ($layout == 'tablet' && $slick.slideCount > avgItems) || ($layout == 'mobile' && $slick.slideCount > minItems)) {\r\n\t\tvar slideCounts = $slick.$dots.children().length;\r\n\t\tvar $dragdealer = $slick.$slider.parent('.rv-section').find('.dragdealer .handle');\r\n\t\t$dragdealer.width((100 / slideCounts) + '%');\r\n\t\tvar $dragInstance;\r\n\t\tif ($carousel.hasClass('insta-carousel')) {\r\n\t\t\t$dragInstance = 'insta-dragable-slider';\r\n\t\t} else if ($carousel.hasClass('social-carousel')) {\r\n\t\t\t$dragInstance = 'social-dragable-slider';\r\n\t\t\tvar pevX = 0;\r\n\t\t} else if ($carousel.hasClass('interrupt-ar')) {\r\n\t\t\t$dragInstance = 'interrupt-dragable-slider';\r\n\t\t\tvar pevX = 0;\r\n\t\t}\r\n\t\telse {\r\n\t\t\t$dragInstance = 'dragable-slider';\r\n\t\t}\r\n\r\n\t\tvar dragEle = new Dragdealer($dragInstance, {\r\n\t\t\tdisabled: false,\r\n\t\t\tsteps: slideCounts,\r\n\t\t\tspeed: 0.5,\r\n\t\t\trequestAnimationFrame: true,\r\n\t\t\tcallback: function (x, y) {\r\n\t\t\t\tcurrLayout = currentLayout.init();\r\n\t\t\t\tvar slickTiggerItems = $slick.$dots.children();\r\n\t\t\t\tvar x = x * (slickTiggerItems.length - 1);\r\n\t\t\t\tif (currLayout == 'desktop' && $carousel.hasClass('social-carousel') && !(x === pevX)) {\r\n\t\t\t\t\t$('.social-carousel .slick-slide').eq(pevX).find('.social-slide').addClass('active-slide-animation');\r\n\t\t\t\t\tsetTimeout(function () {\r\n\t\t\t\t\t\tif (!(slickTiggerItems.eq(x).hasClass('slick-active'))) {\r\n\t\t\t\t\t\t\tslickTiggerItems.eq(x).trigger('click');\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}, 300);\r\n\t\t\t\t\tsetTimeout(function () {\r\n\t\t\t\t\t\t$('.social-carousel .slick-slide').eq(x).find('.social-slide').removeClass('active-slide-animation');\r\n\t\t\t\t\t}, 600);\r\n\t\t\t\t\tpevX = x;\r\n\t\t\t\t} else {\r\n\t\t\t\t\tif (!(slickTiggerItems.eq(x).hasClass('slick-active'))) {\r\n\t\t\t\t\t\tslickTiggerItems.eq(x).trigger('click');\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\t} else {\r\n\t\t$slick.$slider.parent('.rv-section').find('.dragdealer').hide();\r\n\t}\r\n}\n},{\"../../detect-layout\":13,\"../../modal\":27,\"../../util\":93}],55:[function(require,module,exports){\nmodule.exports = function socialShareIcons() {\r\n\tif (/Mobi/.test(navigator.userAgent)) {\r\n\t\t$(document).on('touchstart', '.social-modal-close-outer', function() {\r\n\t\t\t$('.socialsharing').toggleClass('active');\r\n\t\t});\r\n\t\t$(document).on('touchstart', '.social-share-trigger', function() {\r\n\t\t\t\t$('.socialsharing').toggleClass('active');\r\n\t\t});\r\n\t}else{\r\n\t\t$(document).on('click', '.social-modal-close-outer', function() {\r\n\t\t\t$('.socialsharing').toggleClass('active');\r\n\t\t});\r\n\t\t$(document).on('click', '.social-share-trigger', function() {\r\n\t\t\t\t$('.socialsharing').toggleClass('active');\r\n\t\t});\r\n\t}\r\n};\n},{}],56:[function(require,module,exports){\n'use strict';\r\n\r\nvar ajax = require('../../ajax'),\r\n\timage = require('./image'),\r\n\tprogress = require('../../progress'),\r\n\tproductStoreInventory = require('../../storeinventory/product'),\r\n\tsocialShareIcons = require('./socialShareIcons'),\r\n\tutil = require('../../util'),\r\n\trecommendations = require('./recommendations'),\r\n\timagesLoaded = require('imagesloaded'),\r\n\tcustomModal = require('../../modal');\r\n\r\nfunction pdpMobileSwatchesCarousel() {\r\n\tif ($(window).width() <= 640) {\r\n\t\t$('.swatches.color').slick({\r\n\t\t\tarrows: true,\r\n\t\t\tcenterMode: false,\r\n\t\t\tcenterPadding: '16px',\r\n\t\t\tslidesToShow: 5,\r\n\t\t\tslidesToScroll: 5\r\n\t\t});\r\n\r\n\t\t// get the selected variant\r\n\t\tvar selectedVariant = $('.swatches.color li.selected');\r\n\r\n\t\t// know it's index\r\n\t\tvar indexOfSelected = selectedVariant.attr('data-slick-index');\r\n\r\n\t\t// automatically slide to variant upon page load\r\n\t\t$('.swatches.color').slick('slickGoTo', indexOfSelected, false);\r\n\t}\r\n}\r\n\r\nfunction initARTryOnSwatchSlider() {\r\n\tif (SitePreferences.GIARAN_ENABLED) {\r\n\t\t$('.owl-carousel.virtual-try-on-swatches').owlCarousel({\r\n\t\t\tcenter: true,\r\n\t\t\tloop: false,\r\n\t\t\tmargin: 15,\r\n\t\t\tdots: false,\r\n\t\t\tnav: false,\r\n\t\t\tautoWidth: false,\r\n\t\t\titems: 8,\r\n\t\t\tonTranslated: onTranslatedCarousel,\r\n\t\t\tresponsive: {\r\n\t\t\t\t320: {\r\n\t\t\t\t\tstagePadding: 3\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\tvar selectedSwatchIndex = $('.owl-carousel.virtual-try-on-swatches .swatch-item.selected').parents('.owl-item').index();\r\n\t\t$('.owl-carousel.virtual-try-on-swatches').trigger('to.owl.carousel', [selectedSwatchIndex, 0]);\r\n\r\n\t}\r\n}\r\n\r\nfunction onTranslatedCarousel() {\r\n\tif(!$('.virtual-try-on-swatches .owl-item.center .swatch-item').hasClass('selected')) {\r\n\t\t$('#product-tryiton-container').addClass('variation-change');\r\n\t\t$('.virtual-try-on-swatches .owl-item.center a').trigger('click');\r\n\t\tsetTimeout(function() {\r\n\t\t\tif($('#product-tryiton-container').hasClass('variation-change')) {\r\n\t\t\t\t$('#product-tryiton-container').removeClass('variation-change')\r\n\t\t\t}\r\n\t\t}, 10000);\r\n\t}\r\n}\r\n\r\nfunction updateRecentlyViewed(){\r\n\tvar pid = $(\"span[itemprop='productID']\").data(\"pid\");\r\n\tvar params = {\r\n\t\t\t\"pid\": pid,\r\n\t\t\t'showpricing': true,\r\n\t\t\t'showproductname':true,\r\n\t\t\t'showbrandname':true,\r\n\t\t\t'removewrapper':true\r\n\t};\r\n\t\r\n\t$.ajax({\r\n\t\turl: util.appendParamsToUrl(Urls.recentHitTile, params),\r\n\t\tsuccess: function(response) {\r\n\t\t\t$('.grid-tile.recommendation-item.rv-item').first().html(response);\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction updateContent(href) {\r\n\tvar $pdpForm = $('.pdpForm'),\r\n\t\tqty = $pdpForm.find('select[name=\"Quantity\"] option:selected').val(),\r\n\t\tactiveThumbnail = $('#thumbnails .slick-current').attr('data-slick-index'),\r\n\t\tintialThumbnail = $('.pdp-product-thumbnail-slider .slick-active').eq('0').attr('data-slick-index'),\r\n\t\trepleCycle = $('select#replencycle option:selected').length > 0 ? $('select#replencycle option:selected').val() : '0';\r\n\r\n\t//Giaran variation change call\r\n\tvar webcam = $('#webcam-status').attr('value');\r\n\tvar status = (webcam == 1);\r\n\r\n\tvar params = {\r\n\t\trepleCycle : repleCycle,\r\n\t\tQuantity: isNaN(qty) ? '1' : qty,\r\n\t\tformat: 'ajax',\r\n\t\tproductlistid: $pdpForm.find('input[name=\"productlistid\"]').first().val()\r\n\t};\r\n\tholdSwatchPosition();\r\n\t\r\n\tif(status == true) {\r\n\t\tif ($('#webcam-status').attr('mode') === 'multi') {\r\n\t\t\t$('#product-tryiton-container').addClass('variation-change');\r\n\t\t}\r\n\t\tgiaranapp.turnoffcamera();\r\n\t}\r\n\t$('.pdp-loader').show();\r\n\t\r\n\tajax.load({\r\n\t\turl: util.appendParamsToUrl(href, params),\r\n\t\ttarget: $('#product-content'),\r\n\t\tcallback: function () {\r\n\t\t\t\r\n\t\t\tif (SitePreferences.STORE_PICKUP) {\r\n\t\t\t\tproductStoreInventory.init();\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tvar stickyElememt = $('#product-content').find('.sticky-buy-section');\r\n\t\t\tvar stickyContent = stickyElememt.html();\r\n\t\t\tvar ajaxFlag = true;\r\n\t\t\tstickyElememt.html('');\r\n\t\t\tupdateContentSticky(stickyContent);\r\n\t\t\timage(activeThumbnail, ajaxFlag, intialThumbnail);\r\n\t\t\t// $(document).trigger(\"gtvariationchange\");\r\n\t\t\tsocialShareIcons();\r\n\t\t\trecommendations();\r\n\t\t\tapplyTransparentGradient();\r\n\t\t\tapplyTransparentGradientOnScroll();\r\n\t\t\tif (SitePreferences.COOKIE_RECENTLY_VIEW) {\r\n\t\t\t\tupdateRecentlyViewed();\r\n\t\t\t}\r\n\r\n\t\t\tif ($('#pdp-top-quantity').length) {\r\n\t\t\t\t$('select').selectmenu({\r\n\t\t\t\t\twidth: false,\r\n\t\t\t\t\tposition: {\r\n\t\t\t\t\t\tmy: \"left top\",\r\n\t\t\t\t\t\tat: \"left bottom\",\r\n\t\t\t\t\t\tcollision: \"flip flip\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\tclasses: {\r\n\t\t\t\t\t\t\"ui-selectmenu-menu\": \"qv-select\"\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t\t$(\"#pdp-top-quantity-menu\").parent().addClass(\"pdp-qty-width\");\r\n\t\t\t\tsyncQtyDropdownValue($('.quantity-dropdown'));\r\n\t\t\t}\r\n\r\n\t\t\tif(status == true){\r\n\t\t\t\tgiaranapp.onSwatchChange();\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tupdateStickyBuySwatchDropdown();\r\n\t\t\tupdateReplanishCycle();\r\n\t\t\timagesLoaded('.product-thumbnails .productthumbnail').on('done', function () {\r\n\t\t\t\t$('.fade-circle').removeClass('hidden');\r\n\t\t\t});\r\n\r\n\t\t\t$('.pdp-loader').hide();\r\n\r\n\t\t\tinitARTryOnSwatchSlider();\r\n\t\t\t\r\n\t\t\t$('body').trigger('variation-changed');\r\n\t\t\tmobileDropdownSetSpan();\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction updateContentSticky(stickContent) {\r\n\tvar $pdpForm = $('.pdpForm');\r\n\tvar qty = $('#product-content-sticky').find('select[name=\"Quantity\"] option:selected').val();\r\n\r\n\t$('#product-content-sticky').html(stickContent);\r\n\r\n\tif (SitePreferences.STORE_PICKUP) {\r\n\t\tproductStoreInventory.init();\r\n\t}\r\n\t$('select').selectmenu({\r\n\t\twidth: false,\r\n\t\tposition: {\r\n\t\t\tmy: \"left top\",\r\n\t\t\tat: \"left bottom\",\r\n\t\t\tcollision: \"flip flip\"\r\n\t\t},\r\n\t\tclasses: {\r\n\t\t\t\"ui-selectmenu-menu\": \"qv-select\"\r\n\t\t}\r\n\t});\r\n\t$(\"#pdp-top-quantity-menu\").parent().addClass(\"pdp-qty-width\");\r\n\tsyncQtyDropdownValue($('.quantity-dropdown'));\r\n\tsocialShareIcons();\r\n\tupdateStickyBuySwatchDropdown();\r\n}\r\n\r\nfunction updateSetContent($ele, href) {\r\n\tvar $productSetItemCtnr = $ele.parents(\".product-set-item\"),\r\n\t\tqty = $productSetItemCtnr.find('form select[name=\"Quantity\"]').val();\r\n\r\n\tprogress.show($productSetItemCtnr);\r\n\r\n\t$.get(util.appendParamsToUrl(href, {\r\n\t\tQuantity: isNaN(qty) ? '1' : qty,\r\n\t\tformat: \"ajax\",\r\n\t\tsetproduct: true\r\n\t})).success(function (html) {\r\n\t\t$productSetItemCtnr.html(html);\r\n\t\timage();\r\n\t\tsocialShareIcons();\r\n\t});\r\n}\r\n\r\n/**\r\n * @description update sticky buy swatch dropdown\r\n **/\r\nfunction updateStickyBuySwatchDropdown() {\r\n\tvar $swatchsDropdown = $('.stick-buy-container .swatches-dropdown'),\r\n\t\t$selectedSwatch = $('.stick-buy-container #pdp-swatches li.selected .swatchanchor');\r\n\t$swatchsDropdown.html($selectedSwatch.html());\r\n\t$swatchsDropdown.off().on('click', function () {\r\n\t\t$(this).toggleClass('active');\r\n\t\t$(this).siblings('#pdp-swatches').toggleClass('active').css('width', $swatchsDropdown.innerWidth());\r\n\t});\r\n}\r\n\r\nfunction syncQtyDropdownValue($dropdownElem) {\r\n\t$dropdownElem.on('selectmenuchange change', function () {\r\n\t\t$dropdownElem.val($(this).val());\r\n\t\t$dropdownElem.selectmenu().selectmenu('refresh');\r\n\t});\r\n}\r\n\r\nfunction updateQuantityOnChange() {\r\n\tvar $quantityDropdown = $('.quantity-dropdown')\r\n\t$quantityDropdown.selectmenu({\r\n\t\twidth: false,\r\n\t\tposition: {\r\n\t\t\tmy: \"left top\",\r\n\t\t\tat: \"left bottom\",\r\n\t\t\tcollision: \"flip flip\"\r\n\t\t},\r\n\t\tclasses: {\r\n\t\t\t\"ui-selectmenu-menu\": \"qv-select\"\r\n\t\t}\r\n\t});\r\n\tsyncQtyDropdownValue($quantityDropdown);\r\n}\r\n\r\nfunction updateReplanishCycle() {\r\n\t//On Change Select in PDP\r\n\t$('.replenishmentCycle').on('selectmenuchange change', function () {\r\n\t\tvar footerURL = window.location.href;\r\n\t\tvar selection = $(this).val();\r\n\r\n\t\tif (window.User.isCustomerAuthenticated == false && selection != 0) {\r\n\t\t\t$('.replenishmentCycle').val('0');\r\n\t\t\t$('.replenishmentCycle').selectmenu('refresh');\r\n\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: Urls.replenishmentLogin,\r\n\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\tif($('.replenishment-onchange').length > 0) {\r\n\t\t\t\t\t\tif ($('.quickview-modal').length > 0) {\r\n\t\t\t\t\t\t\tcustomModal.createCustomModal('replenishment-onchange-modal quickview-replenishment');\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tcustomModal.createCustomModal('replenishment-onchange-modal');\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\t$('.replenishment-onchange-modal .modal-body').html(response).scrollBox();\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t$('.modal-btn-signin').on('click', function () {\r\n\t\t\t\t\t\tvar urlLink = util.appendParamToURL(Urls.showLogin, 'original', footerURL);\r\n\t\t\t\t\t\twindow.location = urlLink;\r\n\t\t\t\t\t});\r\n\r\n\t\t\t\t\t$('.modal-btn-register').on('click', function () {\r\n\t\t\t\t\t\tvar urlLink = util.appendParamToURL(Urls.showCreateAccount, 'original', footerURL);\r\n\t\t\t\t\t\twindow.location = urlLink;\r\n\t\t\t\t\t});\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t} else {\r\n\t\t\tvar $dropdownElem = $('.replenishmentCycle');\r\n\t\t\t$dropdownElem.val(selection);\r\n\t\t\t$(\"input[name='replenishmentCycle']\").val(selection);\r\n\t\t\t$dropdownElem.selectmenu().selectmenu('refresh');\r\n\t\t}\r\n\t});\r\n}\r\n\r\n/**\r\n * @description\r\n * Apply transparent gradient at the right side of the color and the size variant(PDP & Quickview).\r\n * Trigger on document ready, window resize and window orientationchange.\r\n **/\r\nfunction applyTransparentGradient() {\r\n\tif($('.product-info #pdp-swatches').length > 0){\r\n\t\tif(Math.round($('.product-info #pdp-swatches').get(0).scrollWidth) <= Math.round($('.product-info #pdp-swatches').outerWidth())) {\r\n\t\t\t$(\".transparent-gradient\").hide();\r\n\t\t} else {\r\n\t\t\t$(\".transparent-gradient\").show();\r\n\t\t}\r\n\t}\r\n}\r\n\r\n/**\r\n * @description\r\n * Apply transparent gradient at the right side of the color and the size variant on scroll of pdp-swatches(PDP & Quickview).\r\n **/\r\nfunction applyTransparentGradientOnScroll() {\r\n\t$('.product-info #pdp-swatches').bind('scroll', function() {\r\n\t\tif (Math.round($(this).scrollLeft() + $(this).innerWidth(),20) >= Math.round($(this)[0].scrollWidth, 20)) {\r\n\t\t\t$(\".transparent-gradient\").hide();\r\n\t\t}\r\n\t\telse {\r\n\t\t\t$(\".transparent-gradient\").show();\r\n\t\t}\r\n\t})\r\n}\r\nfunction holdSwatchPosition(){\r\n\tif($('ul#pdp-swatches.swatches.color:visible').length>0){\r\n\t\twindow.lastScrollPosition = $('ul#pdp-swatches.swatches.color:visible')[0].scrollLeft;\r\n\t}\r\n\tif($('ul#pdp-swatches.swatches.size:visible').length>0){\r\n\t\twindow.lastScrollPosition = $('ul#pdp-swatches.swatches.size:visible')[0].scrollLeft;\r\n\t}\r\n}\r\n\r\nfunction mobileDropdownSetSpan(){\r\n\t$('#pdp-swatches.swatches li').each(function(index,li){\r\n\t\tif(li.classList.contains('selected')){\r\n\t\t\tlet title = $(li).find('a').attr('title');\r\n\t\t\tconst arrowDown = `<div class=\"drop-icon\"><svg width=\"7\" height=\"5\" viewBox=\"0 0 7 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n\t\t\t\t\t\t<path d=\"M0 0.75L3.5 4.25L7 0.75H0Z\" fill=\"#414141\"/></svg></div>`;\r\n\t\t\tconst arrowDownDesktop=`<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n\t\t\t<path d=\"M3.75 6L9 11.25L14.25 6H3.75Z\" fill=\"black\"/>\r\n\t\t\t</svg>`;\r\n\t\t\t$('.sticky-cart-mobile #sc-dropdown.dropdown_list span.dropdown').html(title.trim()+arrowDown);\r\n\t\t\t$('.sticky-cart-desktop #sc-dropdown.dropdown_list span.dropdown').html(title.trim()+arrowDownDesktop);\r\n\t\t}\r\n\t})\r\n}\r\n\r\nmodule.exports = function () {\r\n\tvar $pdpMain = $('#pdpMain');\r\n\tvar $pdpSticky = $('.stick-buy-container');\r\n\r\n\t$pdpMain.on('click', '.product-detail .swatchanchor', function (e) {\r\n\t\te.preventDefault();\r\n\t\tupdateContent(this.href);\r\n\t\t$(\"#webcam-status\").attr(\"clicked\" , 1);\r\n\t}).on('change', '#product-content .variation-select', function () {\r\n\t\tvar listItem = $('#pdp-swatches li[data-selectedcolor=\"'+ $(this).val() +'\"]');\r\n\t\tvar link = listItem.find('a.swatchanchor')[0];\r\n\t\tvar href = $(link).attr('href');\r\n\r\n\t\tvar $selectedVariantOption = $(this).find(\"option:selected\");\r\n\t\tif ($selectedVariantOption.length === 0 || !$selectedVariantOption.val()) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tupdateContent(href);\r\n\t});\r\n\r\n\t$pdpMain.on(\"selectmenuchange\", \"#product-content .variation-select\", function (event, ui) {\r\n\t\tvar listItem = $('#pdp-swatches li[data-selectedcolor=\"'+ $(this).val() +'\"]');\r\n\t\tvar link = listItem.find('a.swatchanchor')[0];\r\n\t\tvar href = $(link).attr('href');\r\n\t\tvar $selectedVariantOption = $(this).find(\"option:selected\");\r\n\t\tif ($selectedVariantOption.length === 0 || !$selectedVariantOption.val()) {\r\n\t\t\treturn;\r\n\t\t}\t\r\n\t\tupdateContent(href);\r\n\t});\r\n\r\n\t$pdpSticky.on('click', '#product-content-sticky .swatchanchor', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tupdateContent(this.href);\r\n\t});\r\n\r\n\t$pdpSticky.on(\"selectmenuchange\", \"#product-content-sticky .variation-select\", function (event, ui) {\r\n\t\tvar listItem = $('#pdp-swatches li[data-selectedcolor=\"'+ $(this).val() +'\"]');\r\n\t\tvar link = listItem.find('a.swatchanchor')[0];\r\n\t\tvar href = $(link).attr('href');\r\n\r\n\t\tvar $selectedVariantOption = $(this).find(\"option:selected\");\r\n\t\tif ($selectedVariantOption.length === 0 || !$selectedVariantOption.val()) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tupdateContent(href);\r\n\r\n\t});\r\n\r\n\t$pdpMain.on('click', '#product-set .swatchanchor', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tupdateSetContent($(this), $(this).attr(\"href\"));\r\n\t}).on('change', '#product-set .variation-select', function () {\r\n\t\tvar img = $(this).closest('ul').find('#pdp-swatches .swatchanchor:has(img[alt=\"' + $(this).val() + '\"])');\r\n\t\tvar href = img.closest('a').attr('href');\r\n\t\tupdateSetContent($(this), href);\r\n\t});\r\n\r\n\t\r\n\t$('.variant-dropdown').on('click', function () {\r\n\t\tif ($(this).find('.ui-selectmenu-button').hasClass('ui-selectmenu-button-open')) {\r\n\t\t\t$('.replenishment').addClass('fade-replenish');\r\n\t\t} else {\r\n\t\t\t$('.replenishment').removeClass('fade-replenish');\r\n\t\t}\r\n\t})\r\n\r\n\t$(\"#va-color-button\").on(\"focusout\",function(){\r\n\t\tif($('.replenishment').hasClass('fade-replenish') && !$('#va-color-button').hasClass('ui-selectmenu-button-open')){\r\n\t\t$('.replenishment').removeClass('fade-replenish');\r\n\t} \r\n\t});\r\n\t\r\n\t$(window).on('resize orientationchange', function () {\r\n\t\tapplyTransparentGradient();\r\n\t});\r\n\r\n\tupdateStickyBuySwatchDropdown();\r\n\tupdateQuantityOnChange();\r\n\tupdateReplanishCycle();\r\n\tinitARTryOnSwatchSlider();\r\n\tapplyTransparentGradient();\r\n\tapplyTransparentGradientOnScroll();\r\n\tmobileDropdownSetSpan();\r\n};\r\n\n},{\"../../ajax\":1,\"../../modal\":27,\"../../progress\":78,\"../../storeinventory/product\":90,\"../../util\":93,\"./image\":51,\"./recommendations\":54,\"./socialShareIcons\":55,\"imagesloaded\":133}],57:[function(require,module,exports){\n'use strict';\r\nvar util = require('../util');\r\n\r\nvar $cache;\r\n\r\nfunction initializeCache() {\r\n\t$cache = {};\r\n\t$cache['errorMsg'] = $('#promotion-landing-container .landing-error');\r\n}\r\n\r\nfunction initializeEvents() {\r\n\t$(document)\r\n\t\t.on('submit', '#PromoLandingForm', function (e) {\r\n\t\t\tvar httpParams = util.getQueryStringParams(util.getQueryString(window.location.href));\r\n\t\t\t$('<input type=\"hidden\" name=\"promoid\" value=\"' + httpParams[\"promoid\"] + '\" />').appendTo(e.target);\r\n\t\t})\r\n\r\n\t\t.on('focus', '#PromoLandingForm input', function () {\r\n\t\t\t$cache.errorMsg.hide();\r\n\t\t});\r\n}\r\n\r\nmodule.exports.init = function () {\r\n\tinitializeCache();\r\n\tinitializeEvents();\r\n\r\n\tif (window.location.href.indexOf('error') > -1) {\r\n\t\t$cache.errorMsg.show();\r\n\t}\r\n\tif (window.couponCode) {\r\n\t\t$(\"#promo-code\").text(window.couponCode);\r\n\t}\r\n};\n},{\"../util\":93}],58:[function(require,module,exports){\n'use strict';\r\n\r\nvar addProductToCart = require('./product/addToCart'),\r\n\tajax = require('../ajax'),\r\n\tlogin = require('../login'),\r\n\tquickview = require('../quickview'),\r\n\tutil = require('../util');\r\n\r\n/**\r\n * @function\r\n * @description Loads address details to a given address and fills the address form\r\n * @param {String} addressID The ID of the address to which data will be loaded\r\n */\r\nfunction populateForm(addressID, $form) {\r\n\t// load address details\r\n\tvar url = Urls.giftRegAdd + addressID;\r\n\tajax.getJson({\r\n\t\turl: url,\r\n\t\tcallback: function (data) {\r\n\t\t\tif (!data || !data.address) {\r\n\t\t\t\twindow.alert(Resources.REG_ADDR_ERROR);\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t\t// fill the form\r\n\t\t\t$form.find('[name$=\"_addressid\"]').val(data.address.ID);\r\n\t\t\t$form.find('[name$=\"_firstname\"]').val(data.address.firstName);\r\n\t\t\t$form.find('[name$=\"_lastname\"]').val(data.address.lastName);\r\n\t\t\t$form.find('[name$=\"_address1\"]').val(data.address.address1);\r\n\t\t\t$form.find('[name$=\"_address2\"]').val(data.address.address2);\r\n\t\t\t$form.find('[name$=\"_city\"]').val(data.address.city);\r\n\t\t\t$form.find('[name$=\"_country\"]').val(data.address.countryCode).trigger('change');\r\n\t\t\t$form.find('[name$=\"_postal\"]').val(data.address.postalCode);\r\n\t\t\t$form.find('[name$=\"_state\"]').val(data.address.stateCode);\r\n\t\t\t$form.find('[name$=\"_phone\"]').val(data.address.phone);\r\n\t\t\t// $form.parent('form').validate().form();\r\n\t\t}\r\n\t});\r\n}\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Initializes events for the gift registration\r\n */\r\nfunction initializeEvents() {\r\n\tvar $eventAddressForm = $('form[name$=\"_giftregistry\"]'),\r\n\t\t$beforeAddress = $eventAddressForm.find('fieldset[name=\"address-before\"]'),\r\n\t\t$afterAddress = $eventAddressForm.find('fieldset[name=\"address-after\"]');\r\n\r\n\t$('.usepreevent').on('click', function () {\r\n\t\t// filter out storefront toolkit\r\n\t\t$(':input', $beforeAddress).not('[id^=\"ext\"]').not('select[name$=\"_addressBeforeList\"]').each(function () {\r\n\t\t\tvar fieldName = $(this).attr('name'),\r\n\t\t\t\t$afterField = $afterAddress.find('[name=\"' + fieldName.replace('Before', 'After') + '\"]');\r\n\t\t\t$afterField.val($(this).val()).trigger('change');\r\n\t\t});\r\n\t});\r\n\t$eventAddressForm.on('change', 'select[name$=\"_addressBeforeList\"]', function () {\r\n\t\t\tvar addressID = $(this).val();\r\n\t\t\tif (addressID.length === 0) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\tpopulateForm(addressID, $beforeAddress);\r\n\t\t})\r\n\t\t.on('change', 'select[name$=\"_addressAfterList\"]', function () {\r\n\t\t\tvar addressID = $(this).val();\r\n\t\t\tif (addressID.length === 0) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\tpopulateForm(addressID, $afterAddress);\r\n\t\t});\r\n\r\n\t$('.item-list').on('click', '.item-edit-details a', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar productListID = $('input[name=productListID]').val();\r\n\t\tquickview.show({\r\n\t\t\turl: e.target.href,\r\n\t\t\tsource: 'giftregistry',\r\n\t\t\tproductlistid: productListID\r\n\t\t});\r\n\t});\r\n}\r\n\r\nexports.init = function () {\r\n\tinitializeEvents();\r\n\taddProductToCart();\r\n\tlogin.init();\r\n\tutil.setDeleteConfirmation('.item-list', String.format(Resources.CONFIRM_DELETE, Resources.TITLE_GIFTREGISTRY));\r\n};\n},{\"../ajax\":1,\"../login\":25,\"../quickview\":79,\"../util\":93,\"./product/addToCart\":48}],59:[function(require,module,exports){\n'use strict';\r\n\r\nvar compareWidget = require('../compare-widget'),\r\n\tproductTile = require('../product-tile'),\r\n\taddToCart = require('./product/addToCart'),\r\n\tprogress = require('../progress'),\r\n\tvideo = require(\"../video\"),\r\n\tutil = require('../util'),\r\n\trecommendations = require('./product/recommendations'),\r\n\tcurrentLayout = require('../detect-layout'),\r\n\torderReplenish = require('../order-replenishment');\r\n\r\nvar currLayout = currentLayout.init();\r\n\r\nfunction copyBottomResultHitsToTop() {\r\n\tif ($('.search-folder-content-list').length == 0) {\r\n\t\t$(\"#results-hits-top\").html($(\"#results-hits-bottom .results-hits\").html());\r\n\t}\r\n}\r\n\r\n//GSG-1382 - Add structured data (ItemList) - PLP\r\n\r\n$('.product-listing').ready(function(){\r\n\tlet data={\r\n\t\t\"@context\":\"https://schema.org\",\r\n\t\t\"@type\":\"ItemList\",\r\n\t\t\"itemListElement\":[]\r\n\t }\r\n\r\n\tlet itemListElement=[];\r\n\tArray.from($('#search-result-items .product-grid .thumb-link')).forEach((item,index)=>{\r\n\t\tconst urlObj=new URL(item.href);\r\n\t\turlObj.search='';\r\n\t\titemListElement.push({\r\n\t\t\t\"@type\":\"ListItem\",\r\n\t\t\t\"position\":index+1,\r\n\t\t\t\"url\":urlObj.toString()\r\n\t\t})\r\n\t})\r\n\tdata[\"itemListElement\"]=itemListElement;\r\n\tlet scriptTag=document.createElement('script');\r\n\tscriptTag.type='application/ld+json';\r\n\tscriptTag.innerHTML=JSON.stringify(data)\r\n\tdocument.getElementsByTagName('head')[0].appendChild(scriptTag);\r\n})\r\n\r\n//PLP wishlist heart icon\r\nfunction wishListElem() {\r\n\t$('.plp-wishlist-icon').off().on('click', function () {\r\n\t\tvar ajaxUrl;\r\n\t\tvar _this = $(this);\r\n\t\tvar currProductID = _this.attr('data-element-pid');\r\n\t\tvar productInwishlist = _this.attr('data-item-in-wishlist');\r\n\t\tvar data = {\r\n\t\t\tpid: currProductID\r\n\t\t};\r\n\r\n\t\tif (_this.hasClass(\"plp-active-wishlist\")) {\r\n\t\t\tajaxUrl = _this.attr('data-ajax-remove');\r\n\t\t\t_this.removeClass(\"plp-active-wishlist\");\r\n\t\t} else {\r\n\t\t\tajaxUrl = _this.attr('data-ajax-add');\r\n\t\t\t_this.addClass(\"plp-active-wishlist\");\r\n\t\t}\r\n\r\n\t\t$.ajax({\r\n\t\t\t\ttype: 'GET',\r\n\t\t\t\turl: ajaxUrl,\r\n\t\t\t\tdata: data\r\n\t\t\t})\r\n\t\t\t.done(function (response) {});\r\n\t});\r\n}\r\n\r\nfunction productCarouselelem() {\r\n\t$('#product-list-page-carousel').slick({\r\n\t\tdots: false,\r\n\t\tinfinite: false,\r\n\t\tspeed: 300,\r\n\t\tslidesToShow: 1,\r\n\t\tslidesToScroll: 1,\r\n\t\tresponsive: [{\r\n\t\t\t\tbreakpoint: 1024,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: 1,\r\n\t\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\t\tinfinite: true,\r\n\t\t\t\t\tdots: false\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\tbreakpoint: 600,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: 1,\r\n\t\t\t\t\tslidesToScroll: 1\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\tbreakpoint: 480,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: 1,\r\n\t\t\t\t\tslidesToScroll: 1\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t// You can unslick at a given breakpoint now by adding:\r\n\t\t\t// settings: \"unslick\"\r\n\t\t\t// instead of a settings object\r\n\t\t]\r\n\t});\r\n}\r\n\r\nfunction viewMoreClick(e) {\r\n\te.preventDefault();\r\n\t// getting the hidden div, which is the placeholder for the next page\r\n\tvar loadingPlaceHolder = $('.infinite-scroll-placeholder[data-loading-state=\"unloaded\"]');\r\n\t// get url hidden in DOM\r\n\tvar gridUrl = loadingPlaceHolder.attr('data-grid-url');\r\n\r\n\tif (loadingPlaceHolder.length === 1) {\r\n\t\t// switch state to 'loading'\r\n\t\t// - switches state, so the above selector is only matching once\r\n\t\t// - shows loading indicator\r\n\t\tloadingPlaceHolder.attr('data-loading-state', 'loading');\r\n\t\tloadingPlaceHolder.addClass('infinite-scroll-loading');\r\n\r\n\t\t$('.ajax-loader.page-loader').show();\r\n\r\n\t\t// named wrapper function, which can either be called, if cache is hit, or ajax repsonse is received\r\n\t\tvar fillEndlessScrollChunk = function (html) {\r\n\t\t\tloadingPlaceHolder.removeClass('infinite-scroll-loading');\r\n\t\t\tloadingPlaceHolder.attr('data-loading-state', 'loaded');\r\n\t\t\t$('#results-hits-bottom').remove();\r\n\t\t\tif ($('.tutorial-listing').length > 0) {\r\n\t\t\t\t$('div.search-result-content .folder-content-list').append(html);\r\n\t\t\t} else if ($('.ordereplenishments').length > 0) {\r\n\t\t\t\t$('.ordereplenishments .replenishment-items').append(html);\r\n\t\t\t} else if ($('.order-history-wrap').length > 0) {\r\n\t\t\t\t$('div.order-history-results').append(html);\r\n\t\t\t} else {\r\n\t\t\t\t$('div.search-result-content').append(html);\r\n\t\t\t}\r\n\r\n\t\t\t// move all product tiles up to search grid to prevent arbitrary breaklines\r\n\t\t\t$(\".tiles-container .tile-wrapper\").appendTo(\"#search-result-items\");\r\n\r\n\t\t\t// If category bottom image configured then append bottom-empty li at last position(Exclusive Page)\r\n\t\t\tif ($('.renderbottommotiveimage').length) {\r\n\t\t\t\t$('.renderbottommotiveimage').appendTo(\"#search-result-items\");\r\n\t\t\t}\r\n\t\t\tviewMorePosition();\r\n\r\n\t\t\t//Remove when there is duplicate/empty search-result-items\r\n\t\t\t$('#search-result-items.page-element').remove();\r\n\r\n\t\t\t$('img.product-image-initial').off().on('mouseenter mouseleave', function () {\r\n\t\t\t\t$(this).attr({\r\n\t\t\t\t\tsrc: $(this).attr('data-alt-src'),\r\n\t\t\t\t\t'data-alt-src': $(this).attr('src')\r\n\t\t\t\t});\r\n\t\t\t});\r\n\t\t\t// PLP wishlist heart icon\r\n\t\t\twishListElem();\r\n\t\t\t// rebind the View More event\r\n\t\t\t$(\"#view-more\").off().on(\"click\", viewMoreClick);\r\n\t\t\ttileSelectSizeInit();\r\n\t\t\tif ($('.ordereplenishments').length > 0) {\r\n\t\t\t\torderReplenish.init();\r\n\t\t\t}\r\n\t\t\t$(\"select\").selectmenu().selectmenu('refresh', true);\r\n\t\t\t$('.ajax-loader.page-loader').hide();\r\n\t\t};\r\n\r\n\t\t// old condition for caching was `'sessionStorage' in window && sessionStorage[\"scroll-cache_\" + gridUrl]`\r\n\t\t// it was removed to temporarily address RAP-2649\r\n\r\n\t\t$.ajax({\r\n\t\t\ttype: 'GET',\r\n\t\t\tdataType: 'html',\r\n\t\t\turl: gridUrl,\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\t// put response into cache\r\n\t\t\t\ttry {\r\n\t\t\t\t\tsessionStorage['scroll-cache_' + gridUrl] = response;\r\n\t\t\t\t} catch (e) {\r\n\t\t\t\t\t// nothing to catch in case of out of memory of session storage\r\n\t\t\t\t\t// it will fall back to load via ajax\r\n\t\t\t\t}\r\n\t\t\t\t// update UI\r\n\t\t\t\t$(\".pagination-buttons\").remove();\r\n\t\t\t\tif ($('.search-folder-content-list').length == 0) {\r\n\t\t\t\t\t$(\".results-hits\").remove();\r\n\t\t\t\t}\r\n\t\t\t\tfillEndlessScrollChunk(response);\r\n\t\t\t\tcopyBottomResultHitsToTop();\r\n\t\t\t\tproductTile.init();\r\n\t\t\t\tproductTile.initCarouselSwatches();\r\n\t\t\t\tellipsifyContentDescInt();\r\n\t\t\t\t$(document).trigger(\"plpviewmore\");\r\n\t\t\t\tvideo.initialize();\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n}\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description replaces breadcrumbs, lefthand nav and product listing with ajax and puts a loading indicator over the product listing\r\n */\r\nfunction updateProductListing(url, stickFilter) {\r\n\tvar isFilterOverlayOpen = false,\r\n\t\topenDropdownIndex = $('.filter-dropdowns .dropdown.open').index(),\r\n\t\tfilterDropdownScrollPosition = $('.filter-dropdown-wrapper').scrollTop();\r\n\r\n\t$('.ajax-loader.page-loader').show();\r\n\tprogress.show($('.search-result-content'));\r\n\tif($('.filter-contents').hasClass('active')) {\r\n\t\tisFilterOverlayOpen = true;\r\n\t}\r\n\r\n\t$('#main').load(util.appendParamToURL(url, 'format', 'ajax'), function () {\r\n\t\tif(isFilterOverlayOpen) {\r\n\t\t\t$(this).find('.filter-contents').addClass('active non-transition');\r\n\t\t}\r\n\t\tif(openDropdownIndex > 0) {\r\n\t\t\t$('.filter-dropdowns .dropdown').eq(openDropdownIndex - 1).addClass('open');\r\n\t\t}\r\n\t\t$('.filter-dropdown-wrapper').scrollTo(filterDropdownScrollPosition);\r\n\t\tcompareWidget.init();\r\n\t\tproductTile.init();\r\n\t\tproductTile.initCarouselSwatches();\r\n\t\tprogress.hide();\r\n\t\thistory.pushState(undefined, '', url);\r\n\t\t//reinitialize the functions\r\n\t\tinitializeEvents();\r\n\t\t// PLP wishlist heart icon\r\n\t\twishListElem();\r\n\t\t$('img.product-image-initial').off().on('mouseenter mouseleave', function () {\r\n\t\t\t$(this).attr({\r\n\t\t\t\tsrc: $(this).attr('data-alt-src'),\r\n\t\t\t\t'data-alt-src': $(this).attr('src')\r\n\t\t\t});\r\n\t\t});\r\n\t\tproductCarouselelem();\r\n\t\tif (stickFilter) {\r\n\t\t\tif ($(\".shop-by-btn\").length) {\r\n\t\t\t\t$(\".shop-by-btn\").trigger('click');\r\n\t\t\t}\r\n\t\t}\r\n\t\ttileSelectSizeInit();\r\n\t\trecommendations();\r\n\t\t/*$(\".shop-by-btn\").trigger('click');*/\r\n\t\t$(\"select\").selectmenu().selectmenu('refresh', true);\r\n\t\tsortByDropdown();\r\n\t\tcategoryCarousel();\r\n\t\tcatShopByCollectionMenuInit();\r\n\t\tsimpleSearchClearFunc();\r\n\t\tsimpleSearchStickyFunc();\r\n\t\tviewMorePosition();\r\n\t\tvideo.initialize();\r\n\t\tgroupingSelector();\r\n\t\tbindFilterSortRefinement();\r\n\t\tif ($(\".tutorial-listing\").length > 0) {\r\n\t\t\tdestroyCarouselTutorial();\r\n\t\t\tcreateCarouselTutorial();\r\n\t\t\tupdateFolderDescriptionOnChange();\r\n\t\t}\r\n\t\t$('.product-tiles-holder').addClass('is-visible');\r\n\t\t$('.ajax-loader.page-loader').hide();\r\n\r\n\t\tconst filterOptions = document.querySelectorAll('.dropdown .filter-option');\r\n\t\tif(filterOptions) {\r\n\t\t\tfilterOptions.forEach(filterOption => {\r\n\t\t\t\tconst optionSelect = filterOption.classList.contains('selected'); \r\n\t\t\t\tif (optionSelect) { \r\n\t\t\t\t\t$('.clear-all-filter-dup').removeClass('invisible'); \r\n\t\t\t\t} \r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction destroyCarouselTutorial() {\r\n\tif ($('.tutorial-carousel-slick').hasClass('slick-initialized')) {\r\n\t\t$('.tutorial-carousel-slick').slick('destroy');\r\n\t}\r\n}\r\n\r\nfunction createCarouselTutorial() {\r\n\tif ($('.tutorial-carousel-slick').length > 0) {\r\n\t\t$('.tutorial-carousel-slick').slick({\r\n\t\t\tarrows: true,\r\n\t\t\tdots: true,\r\n\t\t\tinfinite: false\r\n\t\t});\r\n\t}\r\n}\r\n\r\nfunction sortByDropdown() {\r\n\tvar gridSortHeader = $('#grid-sort-header');\r\n\tif (gridSortHeader.length > 0) {\r\n\t\tif (window.innerWidth < 769) {\r\n\t\t\tgridSortHeader.selectmenu({\r\n\t\t\t\tclasses: {\r\n\t\t\t\t\t\"ui-selectmenu-menu\": \"sort-by-selectmenu\"\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t} else {\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tgridSortHeader.selectmenu('destroy').selectmenu({\r\n\t\t\t\t\tposition: {\r\n\t\t\t\t\t\tmy: 'right top',\r\n\t\t\t\t\t\tat: 'right+26 bottom',\r\n\t\t\t\t\t\tcollision: \"flip\"\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t}, 0);\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunction excludeCompoundAttributeRefinements(refineUrl) {\r\n\tvar newUrl = refineUrl;\r\n\r\n\tvar params = util.getQueryStringParams(refineUrl);\r\n\tObject.keys(params).forEach(function (paramName) {\r\n\t\tif (paramName.indexOf('prefv') === -1) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar splitParam = params[paramName].split(\"|\");\r\n\t\tnewUrl = util.updateQueryStringParam(newUrl, paramName, splitParam[splitParam.length - 1]);\r\n\t});\r\n\r\n\treturn newUrl;\r\n}\r\n\r\n\r\nif (!$('#shop-by-dropdown').hasClass('is-open')) {\r\n\t$('body').removeClass(\"sticky-body\");\r\n}\r\n\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Initializes events for the following elements:<br/>\r\n * <p>refinement blocks</p>\r\n * <p>updating grid: refinements, pagination, breadcrumb</p>\r\n * <p>item click</p>\r\n * <p>sorting changes</p>\r\n */\r\nfunction initializeEvents() {\r\n\tvar $main = $('#main');\r\n\t// compare checked\r\n\t$main.on('click', 'input[type=\"checkbox\"].compare-check', function () {\r\n\t\tvar cb = $(this);\r\n\t\tvar tile = cb.closest('.product-tile');\r\n\r\n\t\tvar func = this.checked ? compareWidget.addProduct : compareWidget.removeProduct;\r\n\t\tvar itemImg = tile.find('.product-image a img').first();\r\n\t\tfunc({\r\n\t\t\titemid: tile.data('itemid'),\r\n\t\t\tuuid: tile[0].id,\r\n\t\t\timg: itemImg,\r\n\t\t\tcb: cb\r\n\t\t});\r\n\r\n\t});\r\n\r\n\t// handle events for updating grid\r\n\t$main.on('click', '.refinements a, .pagination a, .breadcrumb-refinement-value a', function (e) {\r\n\t\t// don't intercept for category and folder refinements, as well as unselectable\r\n\t\tif ($(this).parents('.category-refinement').length > 0 || $(this).parents('.folder-refinement').length > 0 || $(this).parent().hasClass('unselectable')) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\te.preventDefault();\r\n\t\tupdateProductListing(this.href);\r\n\t});\r\n\r\n\tsortByDropdown();\r\n\r\n\r\n\t$main.on('change', '.items-per-page select', function () {\r\n\t\tvar refineUrl = $(this).find('option:selected').val();\r\n\t\tif (refineUrl === 'INFINITE_SCROLL') {\r\n\t\t\t$('html').addClass('infinite-scroll').removeClass('disable-infinite-scroll');\r\n\t\t} else {\r\n\t\t\t$('html').addClass('disable-infinite-scroll').removeClass('infinite-scroll');\r\n\t\t\tupdateProductListing(refineUrl);\r\n\t\t}\r\n\t});\r\n\r\n\t$main.on('change', '.items-per-page select', function () {\r\n\t\tvar refineUrl = $(this).find('option:selected').val();\r\n\t\t$('html').addClass('disable-infinite-scroll').removeClass('infinite-scroll');\r\n\t\tupdateProductListing(refineUrl);\r\n\t});\r\n\r\n\t$('.category-tab-links select').on('change', function (e) {\r\n\t\tvar $selected = $(this).find(\":selected\");\r\n\t\tvar link = $selected.attr('href');\r\n\r\n\t\tif (link) {\r\n\t\t\twindow.location.href = link;\r\n\t\t}\r\n\t});\r\n\r\n\t$(\".close-shop-by\").on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\t$(\".shop-by-btn\").trigger(\"click\");\r\n\t});\r\n\r\n\t$(\".dropdown-panel-button\").on('click', function () {\r\n\t\t$(\".dropdown-pane\").removeClass(\"is-open\");\r\n\t\t$('body').removeClass(\"sticky-body\");\r\n\t\t$(\".mega-menu-logo-container\").show();\r\n\t\t$(\".scroll-top-wrapper\").show();\r\n\t});\r\n\r\n\t$(\".shop-by-btn\").on('click', function () {\r\n\t\t$(\".plp-product-grid-category\").addClass(\"small-flyout\");\r\n\t\tif (screen.width <= 767) {\r\n\t\t\t$(\".mega-menu-logo-container\").hide();\r\n\t\t\t$(\".scroll-top-wrapper\").hide();\r\n\t\t}\r\n\t\t$('body').addClass(\"sticky-body\");\r\n\t});\r\n\r\n\t$(\".close-shop-by\").on('click', function () {\r\n\t\t$(\".dropdown-pane\").removeClass(\"is-open\");\r\n\t\t$(\".shop-by-btn\").removeClass(\"hover\");\r\n\t\t$(\".plp-product-grid-category\").removeClass(\"small-flyout\");\r\n\t\t$(\".mega-menu-logo-container\").show();\r\n\t\t$(\".scroll-top-wrapper\").show();\r\n\t\t$('body').removeClass(\"sticky-body\");\r\n\t});\r\n\r\n\tcatShopByCollectionMenuInit();\r\n}\r\n\r\n\r\n$('a.plp-menu-anchor').on('click', function () {\r\n\tvar _this = $(this);\r\n\tif (!_this.parent().hasClass('is-active')) {\r\n\t\t_this.closest('.dropdown-pane').find('.is-active .accordion-title').trigger('click');\r\n\t}\r\n});\r\n\r\nfunction bindFilterSortRefinement() {\r\n\tvar windowScrollPosition;\r\n\t// handle sorting change\r\n\t$('#grid-sort-header').on(\"selectmenuchange change\", function (event) {\r\n\t\tevent.preventDefault();\r\n\t\t$('.ajax-loader.page-loader').show();\r\n\t\tupdateProductListing($(this).find('option:selected').val());\r\n\t});\r\n\r\n\t//handle refinement change\r\n\t$('.filter .filter-option:not(.disabled)').on('click', function() {\r\n\t\tif($(this).hasClass('selected')) {\r\n\t\t\tupdateProductListing($(this).data('url'));\r\n\t\t} else {\r\n\t\t\tupdateProductListing($(this).data('refineurl'));\r\n\t\t}\r\n\t});\r\n\r\n\t$('.filter-link').on('click', function() {\r\n\t\twindowScrollPosition = $(window).scrollTop();\r\n\t\t$('.filter-contents').addClass('active');\r\n\t\t// Scroll to the top to remove the flicker effect before the body scrolls off using CSS by nav-open class.\r\n\t\t$(window).scrollTop(0);\r\n\t\t$('html').addClass('filter-open');\r\n\t});\r\n\r\n\t$('.filter-close').on('click', function() {\r\n\t\t$('.filter-dropdown-wrapper').scrollTo('0');\r\n\t\t$('.filter-contents').removeClass('active non-transition');\r\n\t\t$('.filter-dropdowns .dropdown').removeClass('open');\r\n\t\t$('html').removeClass('filter-open');\r\n\t\t$(window).scrollTop(windowScrollPosition);\r\n\t});\r\n\r\n\t$('.filter-dropdowns .dropdown').on('click', function(e) {\r\n\t\tif(!$(e.target).hasClass('filter-option') && !$(e.target).hasClass('filter-check-mark')) {\r\n\t\t\t$(this).toggleClass('open')\r\n\t\t\t//.siblings().removeClass('open');\r\n\t\t}\r\n\t});\r\n\r\n\t$('.selected-refinements .refinement:not(.disabled)').on('click', function() {\r\n\t\tupdateProductListing($(this).data('relaxurl'));\r\n\t});\r\n\r\n\t// $(document).mouseup(function(e) {\r\n\t// var activeDropdown = $('.filter-dropdowns .dropdown.open');\r\n\t// if ((window.innerWidth > 768) && !activeDropdown.is(e.target) && activeDropdown.has(e.target).length === 0) {\r\n\t// \tactiveDropdown.removeClass('open');\r\n\t// }\r\n\t// });\r\n\r\n\tif($('.selected-refinement-url').text() > 0) {\r\n\t\t$('.filter-link').addClass('filter-applied').attr('data-filtercount', $('.selected-refinement-url').text());\r\n\t} else {\r\n\t\t$('.filter-link').removeClass('filter-applied');\r\n\t}\r\n\r\n\tvar filterDropdowns = $('.filter-options-wrapper');\r\n\tfor(var i = 0; i < filterDropdowns.length; i++) {\r\n\t\tif($(filterDropdowns[i]).find('.selected').length > 0) {\r\n\t\t\t$(filterDropdowns[i]).siblings('.filter-heading').addClass('bold');\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunction catShopByCollectionMenuInit() {\r\n\t$(\"#clp-collection-select\").selectmenu({\r\n\t\t//Add class to Dropdown Set for css targeting\r\n\t\twidth: false,\r\n\t\tposition: {\r\n\t\t\tmy: \"left top\",\r\n\t\t\tat: \"left bottom-2\",\r\n\t\t\tcollision: \"flip flip\"\r\n\t\t},\r\n\t\tclasses: {\r\n\t\t\t\"ui-selectmenu-menu\": \"catShopByCollection\"\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction tileSelectSizeInit() {\r\n\t$(\".product-swatches select\").selectmenu({\r\n\t\t//Add class to Dropdown Set for css targeting\r\n\t\twidth: false,\r\n\t\tposition: {\r\n\t\t\tmy: \"left top\",\r\n\t\t\tat: \"left bottom\",\r\n\t\t\tcollision: \"flip flip\"\r\n\t\t},\r\n\t\tclasses: {\r\n\t\t\t\"ui-selectmenu-menu\": \"pdp-color-select\"\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction simpleSearchClearFunc() {\r\n\tvar $resetLink = $('.search-form-wrapper button[type=\"reset\"]'),\r\n\t\t$submitButton = $('.search-form-wrapper button[type=\"submit\"]'),\r\n\t\t$searchForm = $('form[name=\"searchPageSimpleSearch\"]'),\r\n\t\t$searchInput = $('form[name=\"searchPageSimpleSearch\"] input[type=\"text\"]');\r\n\t$searchInput.on('input', function (e) {\r\n\t\tif ($(this).val().trim() == '') {\r\n\t\t\t$resetLink.hide();\r\n\t\t} else {\r\n\t\t\t$resetLink.show();\r\n\t\t}\r\n\t});\r\n\t$resetLink.on('click', function () {\r\n\t\t$searchInput.val('');\r\n\t\t$resetLink.hide();\r\n\t\t$submitButton.prop('disabled', true);\r\n\t\t$searchInput.trigger('focus');\r\n\t\treturn false;\r\n\t});\r\n\t\r\n\t$submitButton.on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\t$searchInput.val($searchInput.val().trim());\r\n\t\t$searchForm.submit();\r\n\t}.bind(this));\r\n}\r\n\r\nfunction simpleSearchStickyFunc() {\r\n\t// Cache selectors outside callback for performance. \r\n\tif ($('.product-search-form-page').length > 0) {\r\n\t\tvar $window = $(window),\r\n\t\t\t$stickyEl = $('.product-search-form-page'),\r\n\t\t\telTop = $stickyEl.offset().top;\r\n\t\tif (currLayout == 'mobile') {\r\n\t\t\t$window.on('scroll', function () {\r\n\t\t\t\tif ($window.scrollTop() > 10 && $(\".search-results\").length == 1) {\r\n\t\t\t\t\t$stickyEl.addClass('sticky');\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$stickyEl.removeClass('sticky');\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t} else {\r\n\t\t\tif ($stickyEl.hasClass('sticky')) {\r\n\t\t\t\t$stickyEl.removeClass('sticky');\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n//Listen for orientation changes\r\n$(window).on('resize orientationchange', function () {\r\n\tsimpleSearchStickyFunc();\r\n}, false);\r\n\r\nfunction viewMorePosition() {\r\n\tif ($('.renderbottommotiveimage').length > 0 && $('.pagination-buttons').length > 0) {\r\n\t\tif (!$('.exclusive-items + .pagination-buttons').length > 0) {\r\n\t\t\t$('.pagination-buttons').insertAfter(\".exclusive-items\");\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunction ellipsifyContentDesc(str, charlength) {\r\n\tif (str.length > charlength) {\r\n\t\treturn (str.substring(0, charlength) + \"...\");\r\n\t} else {\r\n\t\treturn str;\r\n\t}\r\n}\r\n\r\nfunction ellipsifyContentDescInt() {\r\n\tif (('.search-folder-content-list .tutorial-detail-link').length > 0) {\r\n\t\t$('.search-folder-content-list .content-description').each(function (index) {\r\n\t\t\t$(this).html(ellipsifyContentDesc($(this).html(), 62));\r\n\t\t});\r\n\t}\r\n}\r\n\r\nexports.init = function () {\r\n\tvideo.init(function () {\r\n\t\tinitializeEvents();\r\n\t});\r\n\r\n\tcompareWidget.init();\r\n\r\n\t$(document).on(\"click\", \"#view-more\", viewMoreClick);\r\n\t$(document).on(\"click\", \".wishlist .button.articles-view-more\", viewMoreContent);\r\n\tproductTile.init();\r\n\tinitializeEvents();\r\n\tbindFilterSortRefinement();\r\n\t// content navigation title link\r\n\t$('.nav.content-navigation .accordion-title span').on('click', function () {\r\n\t\twindow.location = $(this).data('url');\r\n\t});\r\n\r\n\t// content navigation dropdown redirect\r\n\t$('.nav.content-navigation select').on('change', function () {\r\n\t\twindow.location = $(this).val();\r\n\t});\r\n\r\n\tvar $accordionToggle = $('.refinements .accordion-arrow');\r\n\r\n\t$accordionToggle.on('click', function (evt) {\r\n\t\tevt.preventDefault();\r\n\r\n\t\t$(this).next($('#category-level-2')).slideToggle();\r\n\r\n\t\t$(this).parent($('li')).toggleClass('expanded');\r\n\t});\r\n\r\n\t//Tutorial content featured carousel\r\n\tif ($('.tutorial-carousel-slick').length > 0) {\r\n\t\t$('.tutorial-carousel-slick').slick({\r\n\t\t\tarrows: true,\r\n\t\t\tdots: true,\r\n\t\t\tinfinite: false\r\n\t\t});\r\n\t}\r\n\r\n\r\n\trecommendations();\r\n\tgroupingSelector();\r\n\tcategoryCarousel();\r\n\taddToCart();\r\n\tsimpleSearchClearFunc();\r\n\tsimpleSearchStickyFunc();\r\n\tviewMorePosition();\r\n\tellipsifyContentDescInt();\r\n\tupdateFolderDescriptionOnChange();\r\n\r\n\tconst filterOptions = document.querySelectorAll('.dropdown .filter-option');\r\n\t\tif(filterOptions) {\r\n\t\t\tfilterOptions.forEach(filterOption => {\r\n\t\t\t\tconst optionSelect = filterOption.classList.contains('selected'); \r\n\t\t\t\tif (optionSelect) { \r\n\t\t\t\t\t$('.clear-all-filter-dup').removeClass('invisible'); \r\n\t\t\t\t} \r\n\t\t\t});\r\n\t\t}\r\n\r\n};\r\nexports.viewMore = function () {\r\n\t$(\"#view-more\").off();\r\n\t$(\"#view-more-content\").off();\r\n\t$(document).on(\"click\", \"#view-more\", viewMoreClick);\r\n\t$(document).on(\"click\", \".wishlist .button.articles-view-more\", viewMoreContent);\r\n};\r\n\r\nfunction updateFolderDescriptionOnChange() {\r\n\tif ($('.tutorial-select').length > 0) {\r\n\t\tvar $tutorialdropdown = $('.tutorial-select');\r\n\t\t$tutorialdropdown.on('selectmenuchange', function (event, ui) {\r\n\t\t\ttutorialSelector(ui.item.value);\r\n\t\t});\r\n\t\t$tutorialdropdown.on('change', function() {\r\n\t\t\ttutorialSelector($(this).val());\r\n\t\t\t$(this).selectmenu('refresh');\r\n\t\t});\r\n\t}\r\n}\r\n\r\nfunction tutorialSelector(uiItem) {\r\n\t$('.tutorial-desc').html($(this).find(':selected').data('description'));\r\n\tif(!(uiItem == '')) {\r\n\t\twindow.location = uiItem;\r\n\t}\r\n} \r\n\r\nfunction groupingSelector() {\r\n\t$(\"#grouping-cat\").selectmenu('refresh');\r\n\t$(\"#grouping-cat-sibling\").selectmenu('refresh');\r\n\t$(\"#grouping-cat\").on(\"selectmenuchange\", function (event, ui) {\r\n\t\tupdateGroupingSubcat(ui.item.value);\t\r\n\t});\r\n\t$( \"#grouping-cat\" ).on( \"change\", function() {\r\n\t\tupdateGroupingSubcat($(this).val());\r\n\t});\r\n\t$(document).on(\"selectmenuchange\", \"#grouping-subcat, #grouping-cat-sibling\", function (event, ui) {\r\n\t\tupdateGroupingSubcat(ui.item.value);\r\n\t});\r\n\t$( document ).on( \"change\", \"#grouping-subcat, #grouping-cat-sibling\", function() {\r\n\t \tupdateGroupingSubcat($(this).val());\r\n\t});\r\n}\r\n\r\nfunction updateGroupingSubcat(itemValue){\r\n\tif(!(itemValue == '')) {\r\n\t\twindow.location = itemValue;\r\n\t}\r\n}\r\n\r\nfunction categoryCarousel() {\r\n\tif ($('#category-hero').children().length > 1) {\r\n\t\t$('#category-hero').slick({\r\n\t\t\tarrows: true,\r\n\t\t\tdots: true\r\n\t\t});\r\n\t}\r\n}\r\n\r\nfunction viewMoreContent() {\r\n\t$('.wishlist .ajax-loader').show();\r\n\tvar gridUrl = $(this).attr('data-grid-url');\r\n\t$.ajax({\r\n\t\ttype: 'GET',\r\n\t\tdataType: 'html',\r\n\t\turl: gridUrl,\r\n\t\tsuccess: function (response) {\r\n\t\t\t$('.wishlist .ajax-loader').hide();\r\n\t\t\t$('.wishlist .article-bottom').replaceWith(response)\r\n\t\t}\r\n\t});\r\n}\r\n\r\n\n},{\"../compare-widget\":8,\"../detect-layout\":13,\"../order-replenishment\":29,\"../product-tile\":77,\"../progress\":78,\"../util\":93,\"../video\":96,\"./product/addToCart\":48,\"./product/recommendations\":54}],60:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('../../util');\r\nvar shipping = require('./shipping');\r\n\r\n/**\r\n * @function\r\n * @description Selects the first address from the list of addresses\r\n */\r\nexports.init = function () {\r\n var $form = $('.address');\r\n // select address from list\r\n $('select[name$=\"_addressList\"]', $form).on('change', function () {\r\n var selected = $(this).children(':selected').first();\r\n var selectedAddress = $(selected).data('address');\r\n if (!selectedAddress) { return; }\r\n util.fillAddressFields(selectedAddress, $form);\r\n shipping.updateShippingMethodList();\r\n // re-validate the form\r\n $form.validate().form();\r\n });\r\n};\r\n\n},{\"../../util\":93,\"./shipping\":66}],61:[function(require,module,exports){\n'use strict';\r\n/**\r\n * We have created SPC JS file for handling all Singlepage checkout AJAX events along with required events\r\n * and we have followed the Site Genesis coding standard to complete the Single pageCheckout Flow.\r\n * we have used abbreviated from single page checkout short name is SPC.\r\n * a) we are using $.get method to render the form HTML structure dynamically into DIV.\r\n * b) $.post method is used to send the data to server for all single page checkout form submit functionality.\r\n * c) On AJAX event success call added the HTML content to DIV of specific column.\r\n * List of important function to achieve billing functionality for single page checkout.\r\n * 1) initBillingColumnCache()\r\n * 2) updatePaymentMethod()- Existing payment method\r\n * 3) creditCardTypeDetector() - Detecting the credit card type.\r\n * 4) updateBillingColumn() - Updating the billing column\r\n * 5) spcBillingColumnEvents() - All events for Billing payment column\r\n * 6) selectDefaultSavedCreditCard() - displaying default credit card\r\n * 7) spcAddPromoCouponCode() - Adding promotion coupon code on order summary column\r\n * */\r\nvar ajax = require('../../ajax'),\r\n giftcard = require('../../giftcard'),\r\n util = require('../../util'),\r\n modal = require('../../modal').global,\r\n cardValidation = require('./card-validation'),\r\n validator = require('../../validator-opc'),\r\n spccybcustom = require('./spccybcustom'),\r\n analytics = require('../../analytics');\r\n\r\nvar $cache = {};\r\nvar SessionAttributesStep = window.SessionAttributes;\r\n\r\nfunction initBillingColumnCache() {\r\n $cache.checkoutForm = $(\".checkout-billing\");\r\n $cache.selectedCardIdInput = $cache.checkoutForm.find('input[name$=\"_selectedCardID\"]');\r\n $cache.billingcol = $('#spcBilling.spc-billing .spc-column');\r\n $cache.summarycol = $('#spcSummary.spc-summary .spc-column');\r\n $cache.billingSubmitBtn = $('#dwfrm_billing_save');\r\n $cache.summarySubmitBtn = $('.spcSummaryPageSubmitBtn');\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Changes the payment method form depending on the passed paymentMethodID\r\n * @param {String} paymentMethodID the ID of the payment method, to which the payment method form should be changed to\r\n */\r\nfunction updatePaymentMethod(paymentMethodID) {\r\n var $paymentMethods = $('.payment-method');\r\n //$paymentMethods.removeClass('payment-method-expanded');\r\n\r\n var dataMethod = paymentMethodID;\r\n if (paymentMethodID == 'SA_SILENTPOST') {\r\n dataMethod = 'CREDIT_CARD';\r\n }\r\n\r\n var $selectedPaymentMethod = $paymentMethods.filter('[data-method=\"' + dataMethod + '\"]');\r\n if ($selectedPaymentMethod.length === 0) {\r\n $selectedPaymentMethod = $('[data-method=\"Custom\"]');\r\n }\r\n\r\n\r\n if (paymentMethodID == \"VISA_CHECKOUT\") {\r\n $(\".continue-place-order\").hide();\r\n $(\".visacheckoutbutton\").show();\r\n } else if (paymentMethodID == \"PAYPAL\" || paymentMethodID == \"PAYPAL_CREDIT\") {\r\n $(\"#billingAgreementCheckbox\").attr('checked', false);\r\n $(\".continue-place-order\").hide();\r\n } else if (paymentMethodID == \"AFTERPAY_PBI\") {\r\n if ($(\"#dwfrm_billing\").length > 0) {\r\n $(\"#dwfrm_billing\").validate().resetForm();\r\n if ($(\"#dwfrm_billing\").validate().numberOfInvalids() > 0) {\r\n $(\"#dwfrm_billing\").validate().invalid = {};\r\n }\r\n $('select[name*=\"dwfrm_billing_paymentMethods_creditCard\"],input[name*=\"dwfrm_billing_paymentMethods_creditCard\"]').addClass(\"ignore\");\r\n }\r\n } else if (paymentMethodID == \"CREDIT_CARD\") {\r\n $('select[name*=\"dwfrm_billing_paymentMethods_creditCard\"],input[name*=\"dwfrm_billing_paymentMethods_creditCard\"]').removeClass(\"ignore\");\r\n if ($(\"#dwfrm_billing\").length > 0)\r\n $(\"#dwfrm_billing\").validate().resetForm();\r\n } else {\r\n $(\".continue-place-order\").show();\r\n $(\".visacheckoutbutton\").hide();\r\n }\r\n\r\n\r\n if (paymentMethodID == \"CREDIT_CARD\" || paymentMethodID == \"SA_SILENTPOST\") {\r\n $(\".spsavecard\").show();\r\n } else if ((paymentMethodID == \"SA_REDIRECT\" || paymentMethodID == \"SA_IFRAME\") && SitePreferences.TOKENIZATION_ENABLED) {\r\n $(\".spsavecard\").show();\r\n } else {\r\n $(\".spsavecard\").hide();\r\n }\r\n\r\n //$selectedPaymentMethod.addClass('payment-method-expanded');\r\n\r\n // ensure checkbox of payment method is checked\r\n $('input[name$=\"_selectedPaymentMethodID\"]').removeAttr('checked');\r\n var afterpaydisable = $(\".afterpay-payment-method-wrapper .afterpay-payment-method\").hasClass('afterpaydisabled');\r\n $('input[value=' + paymentMethodID + ']').prop('checked', 'checked');\r\n\r\n if(paymentMethodID == \"AFTERPAY_PBI\" && afterpaydisable){\r\n \t$('input[value=' + paymentMethodID + ']').prop('checked', false);\r\n \t$('input[value=\"CREDIT_CARD\"]').prop('checked', true);\r\n\r\n }\r\n //$('input[name$=\"_selectedPaymentMethodID\"]').val(paymentMethodID);\r\n\r\n}\r\n/**\r\n * By this function is detecting the credit card type(Eg:- Visa,JCB,Union Pay, American express card etc...).\r\n * This event fires on focus out event of card number field.\r\n * */\r\nfunction creditCardTypeDetector(options) {\r\n // the regular expressions check for possible matches as you type, hence the OR operators based on the number of chars\r\n // Visa\r\n var visa_regex = new RegExp('^4[0-9]{0,15}$'),\r\n\r\n // MasterCard\r\n mastercard_regex = new RegExp('^5$|^5[1-5][0-9]{0,14}$'),\r\n\r\n // American Express\r\n amex_regex = new RegExp('^3$|^3[47][0-9]{0,13}$'),\r\n\r\n //Discover\r\n discover_regex = new RegExp('^6[05]$|^601[1]?$|^65[0-9][0-9]?$|^6(?:011|5[0-9]{2})[0-9]{0,12}$'),\r\n\r\n //JCB\r\n unionpay_regex = new RegExp('^62[0-9]{0,14}$|^645[0-9]{0,13}$|^65[0-9]{0,14}$');\r\n\r\n $(document).on('focusout', '.spc-billing .cc-number input', function(e) {\r\n var cur_val = $(this).val();\r\n\r\n var piCardType = '';\r\n var $ccNumberContain = $(this).parents('.cc-number');\r\n\r\n // get rid of spaces and dashes before using the regular expression\r\n cur_val = cur_val.replace(/ /g, '').replace(/-/g, '');\r\n\r\n var $creditCard = $('[data-method=\"CREDIT_CARD\"]');\r\n\r\n // checks per each, as their could be multiple hits\r\n if (cur_val.match(visa_regex)) {\r\n piCardType = 'visa';\r\n $ccNumberContain.addClass('is_visa');\r\n $creditCard.find('input[name$=\"_type\"]').val(\"Visa\").trigger('change');\r\n } else {\r\n $ccNumberContain.removeClass('is_visa');\r\n }\r\n\r\n if (cur_val.match(mastercard_regex)) {\r\n piCardType = 'mastercard';\r\n $ccNumberContain.addClass('is_mastercard');\r\n $creditCard.find('input[name$=\"_type\"]').val(\"MasterCard\").trigger('change');\r\n } else {\r\n $ccNumberContain.removeClass('is_mastercard');\r\n }\r\n\r\n if (cur_val.match(amex_regex)) {\r\n piCardType = 'amex';\r\n $ccNumberContain.addClass('is_amex').closest('.floating-fields').addClass('is_amex');\r\n $creditCard.find('input[name$=\"_type\"]').val(\"Amex\").trigger('change');\r\n } else {\r\n $ccNumberContain.removeClass('is_amex').closest('.floating-fields').removeClass('is_amex');\r\n }\r\n\r\n if (cur_val.match(discover_regex)) {\r\n piCardType = 'discover';\r\n $ccNumberContain.addClass('is_discover');\r\n $creditCard.find('input[name$=\"_type\"]').val(\"Discover\").trigger('change');\r\n } else {\r\n $ccNumberContain.removeClass('is_discover');\r\n }\r\n\r\n if (cur_val.match(unionpay_regex)) {\r\n piCardType = 'unionpay';\r\n $ccNumberContain.addClass('is_unionpay');\r\n $creditCard.find('input[name$=\"_type\"]').val(\"Union\").trigger('change');\r\n } else {\r\n $ccNumberContain.removeClass('is_unionpay');\r\n }\r\n\r\n // if nothing is a hit we add a class to fade them all out\r\n if (cur_val != '' && !cur_val.match(visa_regex) && !cur_val.match(mastercard_regex) &&\r\n !cur_val.match(amex_regex) && !cur_val.match(discover_regex) && !cur_val.match(unionpay_regex)) {\r\n \tif ($('.payment-summary-container').length > 0) {\r\n \t\tvar paymentCtnr = $('.payment-summary-container').find('.cc-number');\r\n if (paymentCtnr.hasClass('is_visa')){\r\n \t$ccNumberContain.addClass('is_visa');\r\n } else if (paymentCtnr.hasClass('is_mastercard')) {\r\n \t$ccNumberContain.addClass('is_mastercard');\r\n } else if (paymentCtnr.hasClass('is_amex')) {\r\n \t$ccNumberContain.addClass('is_amex').closest('.floating-fields').addClass('is_amex');\r\n } else if (paymentCtnr.hasClass('is_discover')) {\r\n \t$ccNumberContain.addClass('is_discover');\r\n } else if (paymentCtnr.hasClass('is_unionpay')) {\r\n \t$ccNumberContain.addClass('is_unionpay');\r\n }\r\n \t} else {\r\n \t\t$ccNumberContain.addClass('is_nothing');\r\n \t}\r\n } else {\r\n $ccNumberContain.removeClass('is_nothing');\r\n }\r\n\r\n if ($('.cvn').length > 0) {\r\n var setCVVCardLength = util.setCheckoutPaymentCardCVVLength(piCardType);\r\n var cvnMaxLength = setCVVCardLength.maxLength;\r\n var cvnMinLength = setCVVCardLength.minLength;\r\n $('.cvn').attr('minlength', cvnMinLength);\r\n $('.cvn').attr('maxlength', cvnMaxLength);\r\n }\r\n });\r\n\r\n};\r\n/**\r\n * Below function for Giftcertificate Modal Balance Checking functionality.\r\n * spcModalCheckAnotherCard :- Handled the functionality for adding another card checking button on modal form.\r\n * spcGCModalBalanceCheck :- It handles the balance checking for Gift card Modal form.\r\n * spcApplyGiftCertModal :- It is used for to Apply Gift card to basket from Gift Card Modal form.\r\n ***/\r\nfunction spcModalCheckAnotherCard($giftCode, $giftPin) {\r\n var $balance = $('div#gift-card-balance-form .balance');\r\n var $error = $('div#gift-card-balance-form .balance-error');\r\n\r\n $balance.html('');\r\n $error.html('');\r\n $giftCode.val(null).prop('disabled', false);\r\n $giftPin.val(null).prop('disabled', false);\r\n\r\n $('button.checkBalanceGiftCertModal').removeClass('hide');\r\n $('button.gcModalCheckAnotherCard').addClass('hide');\r\n $('button.applyGiftCertModal').addClass('hide');\r\n}\r\n\r\nfunction spcGCModalBalanceCheck($giftCode, $giftPin) {\r\n var $balance = $('div#gift-card-balance-form .balance');\r\n var $error = $('div#gift-card-balance-form .balance-error');\r\n\r\n $error.html('');\r\n $balance.html('');\r\n if ($giftCode.val().length === 0) {\r\n $error.html(Resources.GIFT_CARD_CODE_INVALID);\r\n return;\r\n } else if ($giftCode.val().length !== 0 && $giftPin.val().length === 0) {\r\n $error.html(Resources.GIFT_CARD_PIN_INVALID);\r\n return;\r\n } else if ($giftCode.val().length === 0 && $giftPin.val().length === 0) {\r\n $error.html(Resources.GIFT_CARD_CODE_PIN_INVALID);\r\n return;\r\n }\r\n\r\n giftcard.checkBalance($giftCode.val(), $giftPin.val(), function(data) {\r\n if (data && data.error) {\r\n return $error.html(data.error);\r\n }\r\n\r\n if (!data || !data.giftCertificate) {\r\n $error.html(Resources.GIFT_CARD_CODE_PIN_INVALID);\r\n return;\r\n }\r\n\r\n if (!data || !data.giftCertificate) {\r\n $balance.html(Resources.GIFT_CERT_INVALID).removeClass('success').addClass('error');\r\n return;\r\n }\r\n\r\n $balance.html(Resources.GIFT_CERT_CURRENT_BALANCE + ' ' + data.giftCertificate.balance);\r\n\r\n $giftCode.attr('disabled', \"true\");\r\n $giftPin.attr('disabled', \"true\");\r\n $('button.checkBalanceGiftCertModal').addClass('hide');\r\n $('button.gcModalCheckAnotherCard').removeClass('hide');\r\n $('button.applyGiftCertModal').removeClass('hide');\r\n });\r\n};\r\n\r\nfunction spcApplyGiftCertModal($giftCode, $giftPin) {\r\n var $error = $('div#gift-card-balance-form .balance-error');\r\n $error.html('');\r\n if ($giftCode.val().length === 0) {\r\n $error.html(Resources.GIFT_CARD_CODE_INVALID);\r\n return;\r\n }\r\n\r\n var url = util.appendParamsToUrl(Urls.spcApplyGiftcertificate, {\r\n giftCertCode: $giftCode.val(),\r\n giftCertPIN: $giftPin.val(),\r\n format: 'ajax'\r\n });\r\n $.getJSON(url, function(data) {\r\n var fail = false;\r\n var msg = '';\r\n if (!data) {\r\n msg = Resources.BAD_RESPONSE;\r\n fail = true;\r\n } else if (!data.success) {\r\n msg = data.message;\r\n fail = true;\r\n }\r\n if (fail) {\r\n $error.html(msg);\r\n return;\r\n } else {\r\n clearGiftCertForm();\r\n $('.close-button').trigger('click');\r\n //$(document).foundation();\r\n updateBillingColumn();\r\n return false;\r\n }\r\n });\r\n};\r\n/**\r\n * Initializing the Billing Column Credit Card form for Payment.\r\n * */\r\nfunction initCreditCardForm() {\r\n if ($('.spcCheckoutSteps').val() != 4) {\r\n $cache.checkoutForm.find('input[name$=\"_selectedCardID\"]').val('');\r\n $cache.checkoutForm.find('input[name*=\"_number\"]').val('');\r\n $cache.checkoutForm.find('select[name*=\"_month\"]').val('').trigger(\"change\");\r\n $cache.checkoutForm.find('select[name*=\"_year\"]').val('').trigger(\"change\");\r\n $cache.checkoutForm.find('input[name*=\"_owner\"]').val('');\r\n }\r\n\r\n var $ccContainer = $cache.checkoutForm.find(\".payment-method\").filter(function() {\r\n return $(this).data(\"method\") == \"CREDIT_CARD\";\r\n });\r\n\r\n $ccContainer.find('input[name*=\"_number\"]').on('change', function(e) {\r\n $cache.checkoutForm.find('input[name$=\"_selectedCardID\"]').val('');\r\n });\r\n $ccContainer.find('input[name$=\"_owner\"]').on('change', function(e) {\r\n $cache.checkoutForm.find('input[name$=\"_selectedCardID\"]').val('');\r\n });\r\n\r\n $ccContainer.find('select[name*=\"expiration\"]').on('change', function(e) {\r\n $cache.checkoutForm.find('input[name$=\"_selectedCardID\"]').val('');\r\n\r\n var selectedPaymentMethodID = $('input[name$=\"_selectedPaymentMethodID\"]:checked').val();\r\n var cardNumber = $cache.checkoutForm.find('input[name*=\"_number\"]').val();\r\n if (cardNumber.indexOf('****') != -1 && selectedPaymentMethodID == 'SA_SILENTPOST') {\r\n $cache.checkoutForm.find('input[name*=\"_number\"]').val('');\r\n }\r\n });\r\n}\r\n/**\r\n * Setting the default selected credit card ID for Register users.\r\n * */\r\nfunction setSelectedCardID(uuid) {\r\n $cache.selectedCardIdInput.val(uuid);\r\n}\r\n/**\r\n * We are handling the disability functionality for Billing Edit address\r\n * section. Disabled the Country field for register user on Edit event of billing address form.\r\n * */\r\nfunction enableCountryField(status) {\r\n var countryField = $('select[id$=\"billing_billingAddress_addressFields_country\"]');\r\n if (status) {\r\n countryField.prop('disabled', false);\r\n } else {\r\n countryField.prop('disabled', true);\r\n }\r\n}\r\n/**\r\n * Added events for Credit Card CVN field.\r\n * */\r\nfunction addCVNEvent() {\r\n $('input[name$=\"creditCard_cvn\"]').on('keydown', function(e) {\r\n if (e.key.toString().match(/[\\d]/) ||\r\n $.inArray(e.keyCode, [8, 9, 13, 46, 33, 34, 35, 36, 37, 38, 39, 40]) >= 0) {\r\n // do nothing\r\n } else {\r\n e.preventDefault();\r\n e.stopPropagation();\r\n return;\r\n }\r\n });\r\n}\r\n/**\r\n * Initializing the Gift Card functionality for Billing column Gift card payment methods.\r\n * */\r\nfunction initGiftCardBalance() {\r\n var $checkoutForm = $('.checkout-billing');\r\n var $addGiftCert = $('#spcAddGiftCert');\r\n var $giftCertCode = $('input[name$=\"_giftCertCode\"]');\r\n var $giftCertPin = $('input[name$=\"_giftCertPIN\"]');\r\n\r\n $addGiftCert.off();\r\n $addGiftCert.on('click', function(e) {\r\n e.preventDefault();\r\n var code = $giftCertCode.val();\r\n var pin = $giftCertPin.val();\r\n var $error = $checkoutForm.find('.spc-apply-error');\r\n\r\n // clear all errors\r\n $(this).closest('form').find('span.error').remove();\r\n\r\n $error.html('');\r\n if (code.length === 0) {\r\n $error.html(Resources.GIFT_CARD_CODE_INVALID);\r\n return;\r\n } else if (code.length !== 0 && pin.length === 0) {\r\n $error.html(Resources.GIFT_CARD_PIN_INVALID);\r\n return;\r\n } else if (code.length === 0 && pin.length === 0) {\r\n $error.html(Resources.GIFT_CARD_CODE_PIN_INVALID);\r\n return;\r\n }\r\n\r\n var url = util.appendParamsToUrl(Urls.spcApplyGiftcertificate, {\r\n giftCertCode: code,\r\n giftCertPIN: pin,\r\n format: 'ajax'\r\n });\r\n $.getJSON(url, function(data) {\r\n var fail = false;\r\n var msg = '';\r\n if (!data) {\r\n msg = Resources.BAD_RESPONSE;\r\n fail = true;\r\n } else if (!data.success) {\r\n msg = data.message;\r\n fail = true;\r\n }\r\n if (fail) {\r\n $error.html(msg);\r\n return;\r\n } else {\r\n updateBillingColumn();\r\n //$(document).foundation();\r\n }\r\n });\r\n });\r\n\r\n $giftCertCode.off();\r\n $giftCertCode.on('keydown', function(e) {\r\n if (e.which === 13) {\r\n e.preventDefault();\r\n $addGiftCert.trigger(\"click\");\r\n }\r\n });\r\n}\r\n\r\n//Removes 'PO Box shipping is not available' caption from address1 field if preference is true\r\nfunction removePOBoxCaption() {\r\n if (SitePreferences.ENABLE_POBOX_ADDRESS) {\r\n var $addressOne = $('input[name$=\"_address1\"]');\r\n $addressOne.closest(\".form-row\").find(\".form-caption\").text('');\r\n \tvar $addressTwo = $('input[name$=\"_address2\"]');\r\n \t$addressTwo.closest(\".form-row\").find(\".form-caption\").text('');\r\n }\r\n}\r\n\r\n/**\r\n * On the basis of country(US , China...etc) we are displaying the form field.\r\n * */\r\nfunction toggleBillingAddressFields(visible) {\r\n if (visible == true) {\r\n $('.spc-billing .country-dependent').each(function() {\r\n $(this).show();\r\n });\r\n } else {\r\n $('.spc-billing .country-dependent').each(function() {\r\n $(this).hide();\r\n });\r\n }\r\n\r\n $('.set-default-cb').hide();\r\n}\r\n/**\r\n * We are replacing the Billing column HTML structure on success of AJAX event call.\r\n * To avoid the page refresh we are replacing the HTML structure of Billing column section.\r\n * We have used this function(updateBillingColumn) for these are the AJAX events (Giftcertificate, Add new credit card\r\n * and the edit billing address)\r\n * */\r\nfunction updateBillingColumn(params) {\r\n let billingColURL = Urls.billing;\r\n if (params !== null && params !== undefined && params.OnlyGCInCart == 'true') {\r\n \tbillingColURL = util.appendParamToURL(billingColURL, 'onlyGCInCart', params.OnlyGCInCart);\r\n }\r\n $.get(billingColURL, function(data) {\r\n $cache.billingcol.html(data);\r\n //$(document).foundation();\r\n spccybcustom.init();\r\n cardValidation.init();\r\n removeSelectedUserSavedPamentMethods();\r\n settingDefaultPaymentMethodOnAjaxLoad();\r\n $(\"#dwfrm_billing\").validate().destroy()\r\n validator.initForm('form[id=\"dwfrm_billing\"]');\r\n return false;\r\n });\r\n}\r\n/**\r\n * Below function will avoid rendering 2 forms to be visible at the same time on Billing column edit address.\r\n */\r\nfunction hideShowBillingAddressForm(currentevt, action) {\r\n $('.address-tile').show();\r\n if (currentevt && action == 'add') {\r\n $('.billing-edit-form-ajax').html('');\r\n currentevt.hide();\r\n } else if (currentevt && action == 'edit') {\r\n $('.billing-edit-form-ajax').removeClass('edit-spcbilling-address-ajax');\r\n currentevt.closest('.address-tile').hide();\r\n $('.spc-billing .spc-billing-address-create').hide();\r\n $('.spc-billing-address-form-ajax, .billing-edit-form-ajax').html('');\r\n } else {\r\n $('.billing-edit-form-ajax').removeClass('edit-spcbilling-address-ajax');\r\n $('.spc-billing-address-form-ajax, .billing-edit-form-ajax').html('');\r\n $('.spc-billing .spc-billing-address-create').hide();\r\n }\r\n}\r\n/**\r\n * Handling hide and show functionality for error message on form.\r\n * */\r\nfunction showORHideSubmitErrorFunction(show, msg) {\r\n if (show == true) {\r\n $('.spcbilling-submit-error').html(msg);\r\n $('.spcbilling-submit-error').removeClass('hide').show();\r\n } else {\r\n $('.spcbilling-submit-error').html('');\r\n $('.spcbilling-submit-error').hide();\r\n }\r\n}\r\n/**\r\n * Removing the selected credit card of Register user.\r\n * */\r\nfunction removeSelectedUserSavedPamentMethods() {\r\n $(document).find('div.payment-method div.creditcard-tile.selected').removeClass('selected').trigger('click');\r\n}\r\n/**\r\n * Handling the different Action event for Credit Card form\r\n * */\r\nfunction hideShowBillingCreditCardForm() {\r\n $('.spc-credit-card-create-ajax-form').html('');\r\n $(\".spc-credit-card-create\").show();\r\n}\r\n/**\r\n * Hiding shipping column Address form\r\n * */\r\nfunction hideShippingColumnAddressForm(){\r\n $('.address-form-ajax, .edit-form-ajax').html('');\r\n $('.spc-shipping .address-create-spc').show();\r\n}\r\n\r\n/**\r\n * Toggle the same as shipping address section on Billing column.\r\n * */\r\nfunction toggleUnCheckShippingingAddressFields(billingAddressSec, visible) {\r\n if (visible == true) {\r\n billingAddressSec.find('.country-dependent').each(function() {\r\n $(this).show();\r\n });\r\n } else {\r\n billingAddressSec.find('.country-dependent').each(function() {\r\n $(this).hide();\r\n });\r\n }\r\n\r\n $('.set-default-cb').hide();\r\n}\r\n/**\r\n * Setting the selected credit card ID for Register users.\r\n * */\r\nfunction closeAllOpenFormOnBillingSection() {\r\n if ($('.subtitle.SPCCardForm-continer-close').length > 0) {\r\n $('.subtitle.SPCCardForm-continer-close').trigger('click');\r\n }\r\n if ($('.close-gift-form').length > 0) {\r\n $('.close-gift-form').trigger('click');\r\n }\r\n hideShowBillingAddressForm();\r\n}\r\n/**\r\n * Clearing the Gift certificate form Input field value and error message.\r\n * */\r\nfunction clearGiftCertForm(formType) {\r\n if (formType == 'gcform') {\r\n $('.checkout-billing').find('.spc-apply-error').html('');\r\n $('.checkout-billing').find('.spcGiftCertID .spc-gc-alphanumeric').val('');\r\n $('.checkout-billing').find('.spcGiftCertPin .spc-gc-alphanumeric').val('');\r\n } else {\r\n $('.modal-content .gift-card-number').find('.alphanumeric').val('');\r\n $('.modal-content .gift-card-pin').find('.alphanumeric').val('');\r\n }\r\n\r\n}\r\n/**\r\n * Focusing the page on top DIV section of Single page Checkout flow on javascript\r\n * Event call functionality(Eg:- click, submit, etc...).\r\n * */\r\nfunction scrollToTopSection() {\r\n $('.scroll-top-inner').trigger('click');\r\n}\r\n/**\r\n * We are updating the order total on TOP div section\r\n * in Order Review Column.\r\n * */\r\nfunction updateOrderTotalSec() {\r\n if ($('.review-total-amt').length > 0) {\r\n $('.review-total-amt').html($('.order-value').text());\r\n }\r\n}\r\n/**\r\n * Edit button in the payment summary\r\n */\r\nfunction editPaymentSummary() {\r\n\t$(document).on('click', '.edit-btn.payment-summary-edit', function(e) {\r\n\t\tutil.singlePageNextCheckoutStep(3);\r\n\t\t$('html, body').stop( true, true ).animate({\r\n\t scrollTop: $(\".SPCBillingPageSec\").offset().top\r\n\t }, 1000);\r\n\t});\r\n}\r\n/**\r\n * We are hiding the unnecessary error message on Single Page Checkout\r\n * Review Column.\r\n * */\r\nfunction hidingCouponCodeErrorMsgDIV() {\r\n var i = 0;\r\n $('.spc-applycoupon-error').each(function() {\r\n i = ++i;\r\n if (i > 1) {\r\n $(this).remove();\r\n }\r\n });\r\n}\r\n/**\r\n * Below function for adding coupon code at Summary section on SinglePageCheckout flow.\r\n * */\r\nfunction spcAddPromoCouponCode() {\r\n var spcStep = $('.spcCheckoutSteps').val();\r\n spcStep = (spcStep !== undefined && spcStep > 1) ? spcStep : 1;\r\n\r\n $(document).on('click', '#add-coupon', function(e) {\r\n e.preventDefault();\r\n var formaction = Urls.spcApplyCouponCode;\r\n var formSer = $('form[id=\"CheckoutAddPromocode\"]');\r\n var formData = formSer.serialize();\r\n $.post(formaction, formData)\r\n .done(function(data) {\r\n //$(document).foundation();\r\n if (data.success == false) {\r\n spcStep = data.steps;\r\n util.setSpcCheckoutSteps(spcStep);\r\n util.singlePageNextCheckoutStep(spcStep);\r\n hidingCouponCodeErrorMsgDIV();\r\n $('.spc-applycoupon-error').html(data.message);\r\n $('.promocode-input').val('');\r\n $('#add-coupon').prop('disabled', $('input[name$=\"couponCode\"]').val() == \"\" ? true : false);\r\n $('.order-totals-table .field-button-container').addClass('error');\r\n \r\n } else if (data.success == true) { //shipping section is not complete\r\n spcStep = data.steps;\r\n $('.spc-applycoupon-error').html('');\r\n $('.order-totals-table .field-button-container').removeClass('error');\r\n $(this).val('');\r\n util.setSpcCheckoutSteps(spcStep);\r\n util.singlePageNextCheckoutStep(spcStep);\r\n updateOrderTotalSec();\r\n $.ajax({\r\n \turl : Urls.spcUpdateShippingMethodList,\r\n \tsuccess : function (response){\r\n \t\t$('.shipping-method-list').html(response);\t\r\n \t}\r\n });\r\n require('./shipping').ShippingUpdateSummary('couponApplied');\r\n scrollToTopSection();\r\n }\r\n\r\n return false;\r\n });\r\n });\r\n \r\n $(document).on('click', '.promoRemovebutton', function(e) {\r\n e.preventDefault();\r\n var formaction = Urls.removePromoCode;\r\n var formSer = $('form[class=\"remove-container-form\"]');\r\n var formData = formSer.serialize() + '&' + $(this).attr('name') +'='+(encodeURIComponent($(this).val()) || $(this).attr('name'));\r\n $.post(formaction, formData)\r\n .done(function(data) {\r\n if (data.success == true) { //shipping section is not complete\r\n spcStep = data.steps;\r\n $('.order-totals-table .field-button-container').removeClass('error');\r\n $('.spc-applycoupon-error').html('');\r\n $(this).val('');\r\n util.setSpcCheckoutSteps(spcStep);\r\n util.singlePageNextCheckoutStep(spcStep);\r\n updateOrderTotalSec();\r\n $.ajax({\r\n \turl : Urls.spcUpdateShippingMethodList,\r\n \tsuccess : function (response){\r\n \t\t$('.shipping-method-list').html(response);\t\r\n \t}\r\n });\r\n require('./shipping').ShippingUpdateSummary();\r\n scrollToTopSection();\r\n }\r\n\r\n return false;\r\n });\r\n });\r\n}\r\n/**\r\n * SinglePageCheckout Billing Form Submit section.\r\n *\r\n * */\r\nfunction spcBillingColumnEvents() {\r\n /**\r\n * Below function for register user save card payment methods and on click of Payment methods text filed\r\n * checked the validation.\r\n * */\r\n $(document).on('keyup blur focusout keypress', '.spc-billing input.regcustpclCVN12', function(e) {\r\n \t\tvar cardCvnLength = $(this).val().length;\r\n var cvnMinLen = $(this).attr('data-min-length');\r\n var cvnMaxLen = $(this).attr('data-max-length');\r\n if (cardCvnLength < cvnMinLen || cardCvnLength > cvnMaxLen) {\r\n util.displayCVNErrorMessage('show');\r\n $('.spcBillingContinueBtn').attr('disabled',true);\r\n require('./shipping').showCommonErrorForForm(true, $('.spcBillingContinueBtn'));\r\n } else if (cardCvnLength == cvnMinLen || cardCvnLength == cvnMaxLen) {\r\n util.displayCVNErrorMessage();\r\n $('.spcBillingContinueBtn').removeAttr('disabled');\r\n require('./shipping').showCommonErrorForForm(false, $('.spcBillingContinueBtn'));\r\n } else {\r\n util.displayCVNErrorMessage();\r\n $('.spcBillingContinueBtn').removeAttr('disabled');\r\n require('./shipping').showCommonErrorForForm(false, $('.spcBillingContinueBtn'));\r\n }\r\n })\r\n //checkout steps\r\n .on('click', '.button-checkoutstep', function() {\r\n \tvar currentValue = $(this);\r\n $('.checkout-progress-container .step').addClass('section-overlay').removeClass('active');\r\n $('.onepage-checkout-container').removeClass('order-review-summary');\r\n if($(this).hasClass('review-summary')){\r\n $('#spcSummary').removeClass('section-overlay').addClass('active');\r\n } else {\r\n $(this).closest('.step').removeClass('section-overlay').addClass('active');\r\n }\r\n var billingAddressSummery = true;\r\n $('.spc-billing .mini-address-location').each(function(){\r\n if($(this).html().trim() !== ''){\r\n billingAddressSummery = false;\r\n return false;\r\n }\r\n })\r\n\r\n if(billingAddressSummery || $('.spc-billing .summary-section-top .payment-details').html().trim() === ''){\r\n $('.spc-billing').removeClass('inprogress');\r\n var billingForm = $('form[id=\"dwfrm_singleshipping_shippingAddress\"]');\r\n var billingFormData = billingForm.serialize() + \"&dwfrm_singleshipping_shippingAddress_save=Continue\";\r\n $.post(Urls.spcSingleShipping, billingFormData)\r\n .done(function(data) {\r\n $('.spc-billing .spc-column').html(data);\r\n });\r\n }\r\n if($('.spc-billing .guest-billing-address .mini-address-location.new-billing-summery').length > 0){\r\n if(!$('#shipping-address-checked').is(\":checked\") && $('.spc-billing .guest-billing-address .mini-address-location.new-billing-summery').html().trim() === '' && $('.spc-billing .summary-section-top .payment-details').html().trim() !== ''){\r\n $('#shipping-address-checked').trigger('click'); \r\n }\r\n }\r\n $('.inprogress .button-checkoutstep').show();\r\n $(this).hide();\r\n require('./shipping').scrollActiveSection();\r\n })\r\n //giftcard form closing section\r\n .on('mousedown click', '.spc-billing .close-gift-form', function(e) {\r\n var $giftCardForm = $('.gift-card-form');\r\n var $giftCardCheckLink = $('.check-gift-card.checkGiftCardBalanceLink');\r\n $giftCardForm.addClass('hide').addClass('rolledup');\r\n $giftCardCheckLink.addClass('hide');\r\n clearGiftCertForm('gcform');\r\n $('.gift-card-form-toggle').removeClass('hide');\r\n })\r\n //Expanding gift-card-form-toggle\r\n .on('mousedown click', '.spc-billing .gift-card-form-toggle', function(e) { //click on Add GiftCard link\r\n \te.stopPropagation();\r\n \te.preventDefault();\r\n var $giftCardForm = $('.gift-card-form');\r\n var $giftCardCheckLink = $('.check-gift-card.checkGiftCardBalanceLink');\r\n\r\n $giftCardForm.removeClass('hide').removeClass('rolledup');\r\n $giftCardCheckLink.removeClass('hide');\r\n $(this).addClass('hide');\r\n initGiftCardBalance();\r\n\r\n $('.gift-card-form input[name$=\"_giftCertCode\"], .gift-card-form input[name$=\"_giftCertPIN\"]').on('blur', function(e) {\r\n var $this = $(this);\r\n $this.siblings('span.error').remove();\r\n $this.removeClass('error');\r\n $('#spcAddGiftCert').prop('disabled', false);\r\n $('.gift-card-form .apply-error').html('');\r\n\r\n if ($this.val() && !$this.val().trim().match(/^[a-z0-9]+$/i)) {\r\n $('<span class=\"error\">' + $this.attr('data-required-text') + '</span>').insertBefore($this);\r\n $this.addClass('error');\r\n }\r\n\r\n if ($('.gift-card-form span.error').length > 0) {\r\n $('#spcAddGiftCert').prop('disabled', true);\r\n }\r\n });\r\n clearGiftCertForm('gcform');\r\n })\r\n /**\r\n * Below function for Same as shipping address check box field on Billing Column address section.\r\n * */\r\n .on('change', '.spc-billing .spc-billing-address .same-shippingaddress input#shipping-address-checked', function(evt) {\r\n var sameascheckbox = $(this);\r\n var billingAdrsSec = $('.spc-billing .spc-billing-address');\r\n\r\n if (sameascheckbox.is(\":checked\")) {\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_firstName').val($('#dwfrm_billing_billingAddress_addressFields_firstName').attr('data-firstname'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_lastName').val($('#dwfrm_billing_billingAddress_addressFields_lastName').attr('data-lastname'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_address1').val($('#dwfrm_billing_billingAddress_addressFields_address1').attr('data-address1'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_address2').val($('#dwfrm_billing_billingAddress_addressFields_address2').attr('data-address2'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_city').val($('#dwfrm_billing_billingAddress_addressFields_city').attr('data-city'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_city').val($('#dwfrm_billing_billingAddress_addressFields_city').attr('data-city'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_postal').val($('#dwfrm_billing_billingAddress_addressFields_postal').attr('data-postal'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_country').val($('#dwfrm_billing_billingAddress_addressFields_country').attr('data-country'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_states_state').val($('#dwfrm_billing_billingAddress_addressFields_states_state').attr('data-state'));\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_phone').val($('#dwfrm_billing_billingAddress_addressFields_phone').attr('data-phone'));\r\n sameascheckbox.val('true');\r\n var currentEvent = evt.currentTarget;\r\n hideShowBillingAddressForm($(currentEvent), 'edit');\r\n //billingAdrsSec.find(\".flag-show-hide\").fadeIn();\r\n toggleUnCheckShippingingAddressFields(billingAdrsSec, true);\r\n\r\n // for logged-in users with address, reselect default shipping address\r\n // if customer chooses to use the shipping address as their billing address\r\n var selectedShipping = $('div.address-tile.address-default');\r\n if (selectedShipping) {\r\n selectedShipping.removeClass('selected');\r\n selectedShipping.removeClass('default');\r\n selectedShipping.trigger(\"click\");\r\n }\r\n billingAdrsSec.find('.saved-addresses.select-billing-address').addClass('hide');\r\n billingAdrsSec.find('.saved-addresses.default-billing-address').removeClass('hide');\r\n } else {\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_address1').val('');\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_address2').val('');\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_city').val('');\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_postal').val('');\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_phone').val('');\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_postcode').val('');\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_province').val('');\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_states_state').val('');\r\n\r\n //billingAdrsSec.find(\".flag-show-hide\").fadeOut(); //this is related with selection of country field and displaying the fields w.r.t. country\r\n\r\n billingAdrsSec.find('#dwfrm_billing_billingAddress_addressFields_country').val('');\r\n sameascheckbox.val('false');\r\n billingAdrsSec.find('.saved-addresses.default-billing-address:not(.guest-billing-address)').addClass('hide');\r\n billingAdrsSec.find('.saved-addresses.select-billing-address').removeClass('hide');\r\n toggleUnCheckShippingingAddressFields(billingAdrsSec, false);\r\n validator.initForm('form[id=\"dwfrm_billing\"]');\r\n }\r\n }).on('change', '.spc-billing .newsletter-signup-check .addtoemaillist', function(evt) {\r\n \tif ($(this).is(\":checked\")) {\r\n \t\t$('.spc-billing .newsletter-signup-check .newsletter-signup-consent-text').show();\r\n \t} else {\r\n \t\t$('.spc-billing .newsletter-signup-check .newsletter-signup-consent-text').hide();\r\n \t}\r\n\r\n }).on('click', '.spc-billing .spc-show-allsaved-cards', function(evt) {\r\n \tevt.stopPropagation();\r\n \t/**\r\n * On click of Show-All-Saved-Credit-Cards link then it will display all related cards to user.\r\n * */\r\n $('.spc-billing .creditcard-tile').removeClass('hide');\r\n $(this).addClass('hide');\r\n $(this).closest('.spc-selectable-pament-options').find('.hide-saved-card').removeClass('hide');\r\n }).on('click', '.hide-saved-card' , function(){\r\n\t\t\t var container = $(this).closest('.spc-selectable-pament-options');\r\n\t\t\t $(container).find('.spc-show-allsaved-cards').removeClass('hide');\r\n\t\t\t $(container).find('.creditcard-tile.selected').removeClass('hide');\r\n\t\t\t $(this).addClass('hide');\r\n\t\t })\r\n /**\r\n * Add Credit Card Section for Register USER.\r\n * */\r\n .on('click', '.spc-billing .spc-credit-card-create', function(evt) {\r\n evt.stopPropagation();\r\n evt.stopImmediatePropagation();\r\n var currentEvent = evt.currentTarget;\r\n var formInsertDiv = $(\".spc-credit-card-create-ajax-form\");\r\n if(!$('.spc-credit-card-create').next('.payment-method-expandable').hasClass('expanded')){\r\n $.get(util.appendParamToURL(Urls.spcShowCreditCardForm, 'format', 'ajax'), function(data) {\r\n formInsertDiv.html(data);\r\n formInsertDiv.addClass('spc-billing-creditcard-form');\r\n validator.initForm('form[id=\"SPCCreditCardForm\"]');\r\n cardValidation.init();\r\n $('.spc-billing select').selectmenu();\r\n if($('.spc-billing .creditcard-tile').length > 0){\r\n deselectSavedCard(); \r\n deselectSavedCard(); \r\n deselectSavedCard(); \r\n }\r\n $('.payment-method-expandable').slideUp().removeClass('expanded');\r\n $('.spc-credit-card-create').next('.payment-method-expandable').slideDown().addClass('expanded');\r\n $('.spc-credit-card-create').find('.payment-method-radio').prop('checked',true);\r\n $('.payment-list .saved-card-edit, .spc-billing .payment-container').removeClass('selected active');\r\n $('.spc-credit-card-create').closest('.payment-container').addClass('active');\r\n $('#dwfrm_billing .payment-section').removeClass('payment-method-error');\r\n enableDisableErrorContinue();\r\n $('.spcBillingContinueBtn').attr('disabled',true);\r\n });\r\n }\r\n })\r\n /**\r\n * Add Credit Card Section form events.\r\n * */\r\n .on('click', 'button.spcCreditCardCreateBtn', function(e) {\r\n e.preventDefault();\r\n var form = $('form[id=\"SPCCreditCardForm\"]');\r\n var formaction = Urls.spcPaymentInstrumentSubmit;\r\n form.validate();\r\n if (!$('#SPCCreditCardForm').valid()) {\r\n util.formFieldFocusOnError(form);\r\n return false;\r\n }\r\n var formData = form.serialize() + \"&format=ajax&dwfrm_paymentinstruments_creditcards_create=Apply\";\r\n $.post(formaction, formData)\r\n .done(function(data) {\r\n if (data.success == true) {\r\n $('.spcbillingCC-submit-error').hide();\r\n hideShowBillingCreditCardForm();\r\n updateBillingColumn(data);\r\n } else {\r\n $('.spcbillingCC-submit-error').removeClass('hide').show().html(data.InvalidErr);\r\n return false;\r\n }\r\n });\r\n return false;\r\n })\r\n //Close the New Credit Card section\r\n .on('click', '.spc-billing .SPCCardForm-continer-close', function(evt) {\r\n hideShowBillingCreditCardForm();\r\n })\r\n .on('click', '.spc-billing .spc-billing-address-create', function(evt) {\r\n evt.stopPropagation();\r\n var currentEvent = evt.currentTarget;\r\n hideShowBillingAddressForm($(currentEvent), 'add');\r\n var formInsertDiv = $(\".spc-billing-address-form-ajax\");\r\n $(this).addClass('view-billing-form');\r\n\r\n if ($(this).hasClass('view-billing-form')) {\r\n $('.spc-billing-address-create').hide();\r\n $('.spc-billing-address-form-ajax').show();\r\n }\r\n\r\n $.get(util.appendParamToURL(Urls.checkoutSPCAddBillingAddress, 'format', 'ajax'), function(data) {\r\n formInsertDiv.html(data);\r\n formInsertDiv.addClass('spc-billing-address-form');\r\n var submitHandler = function() {\r\n var form = $('form[id=\"SPCBillingEditAddressForm\"]');\r\n var formSer = form.serialize() + \"&format=ajax&from=billing\";\r\n $.post(Urls.addUpdateAddress, formSer)\r\n .done(function(data) {\r\n $cache.billingcol.html(data);\r\n });\r\n\r\n return false;\r\n };\r\n\r\n validator.initForm('form[id=\"SPCBillingEditAddressForm\"]', submitHandler);\r\n //addressVerificationSvc.init();\r\n removePOBoxCaption();\r\n });\r\n })\r\n // edit billing address link\r\n .on(\"click\", \".spc-billing .address-tile .spc-billingaddress-edit\", function(evt) {\r\n var currentEvent = evt.currentTarget;\r\n var element = document.getElementById(evt.currentTarget.id);\r\n var addressID = element.dataset.addressId;\r\n var addressCode = element.dataset.addressCode;\r\n var url = Urls.spcEditBillingAddress + addressID;\r\n var formInsertDiv = $('.spc-billing-address-form-ajax-' + addressID);\r\n $.get(url, function(data) {\r\n \thideShowBillingAddressForm($(currentEvent), 'edit');\r\n formInsertDiv.html(data);\r\n formInsertDiv.addClass('edit-spcbilling-address-ajax');\r\n enableCountryField(false);\r\n var submitHandler = function() {\r\n var form = $('form[id=\"SPCBillingEditAddressForm\"]');\r\n var formSer = form.serialize() + \"&format=ajax&from=billing&dwfrm_profile_address_edit=Apply\";\r\n $.post(Urls.addUpdateAddress, formSer)\r\n .done(function(data) {\r\n $cache.billingcol.html(data);\r\n removeSelectedUserSavedPamentMethods();\r\n spccybcustom.init();\r\n });\r\n return false;\r\n };\r\n\r\n validator.initForm('form[id=\"SPCBillingEditAddressForm\"]', submitHandler);\r\n removePOBoxCaption();\r\n var setDefaultCheckbox = $('input[id$=\"_setdefault\"]');\r\n if (setDefaultCheckbox.prop('checked')) {\r\n setDefaultCheckbox.attr('disabled', 'true');\r\n }\r\n\r\n $('.set-default-cb').hide();\r\n });\r\n\r\n })\r\n .on('click', '.back-button, .sp-add-address-title, .spc-editbillingaddress-title', function(evt) {\r\n hideShowBillingAddressForm();\r\n })\r\n .on('click', '.edit_address_form .back-button, .addbillingaddress-title', function(evt) {\r\n $('.spc-billing .spc-billing-address-create').removeClass('view-billing-form');\r\n $('.spc-billing-address-form-ajax').hide();\r\n $('.spc-billing-address-create').hide();\r\n })\r\n .on('click', '.spc-billing .address-list .address-tile', function(evt) {\r\n if ($(this).is('.selected, .default') || evt.target.nodeName == 'A') {\r\n return false;\r\n } else {\r\n $('.address-list .address-tile').each(function() {\r\n $(this).removeClass('selected');\r\n $(this).removeClass('default');\r\n });\r\n\r\n $(this).addClass('selected');\r\n\r\n var element = document.getElementById(evt.currentTarget.id);\r\n if (element) {\r\n var addressID = element.dataset.addressId;\r\n\r\n var $data = new FormData();\r\n $data.append( window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n $data.append( 'addressID', addressID);\r\n \r\n $.ajax({\r\n url: util.appendParamToURL(Urls.updateBillingAddressDetails, 'format', 'ajax'),\r\n processData: false,\r\n contentType: false,\r\n method: 'POST',\r\n data :$data,\r\n success: function (result) {}\r\n });\r\n }\r\n\r\n }\r\n })\r\n /**\r\n * Add Credit Card Section for Register USER.\r\n * */\r\n .on(\"click\", \".spc-billing .payment-method-header\", function(evt) {\r\n if(!$(this).next('.payment-method-expandable').hasClass('expanded')){\r\n if($('.spc-billing .creditcard-tile').length > 0){\r\n deselectSavedCard(); \r\n }\r\n $('.spc-billing select').selectmenu();\r\n $(this).toggleClass('spc-cc-expanded');\r\n $('.payment-method-expandable').slideUp().removeClass('expanded');\r\n $(this).next('.payment-method-expandable').slideDown().addClass('expanded');\r\n var radio = $(this).find('.payment-method-radio');\r\n radio.prop('checked',true);\r\n $('.payment-list .saved-card-edit, .spc-billing .payment-container').removeClass('selected active');\r\n $(this).closest('.payment-container').addClass('active');\r\n $('#dwfrm_billing .payment-section').removeClass('payment-method-error');\r\n $('.spc-credit-card-create-ajax-form').html('');\r\n enableDisableErrorContinue();\r\n cardValidation.init();\r\n validator.init();\r\n evt.stopImmediatePropagation();\r\n return false; \r\n }\r\n })\r\n /**\r\n * Function for removing the applied gift certificate from Cart.\r\n * */\r\n .on('click', '.spc-billing .spcRemoveGC.remove', function(e) {\r\n e.preventDefault();\r\n var code = $(this).attr('data-gccode');\r\n var $error = $(this).parents('.appliedGCToCart').children('.spc-remove-apply-error');\r\n $error.html('');\r\n\r\n if (code.length === 0 || code == undefined) {\r\n $error.html(Resources.GIFT_CARD_CODE_INVALID);\r\n return;\r\n }\r\n\r\n var url = util.appendParamsToUrl(Urls.spcRemoveAppliedGC, {\r\n giftCertificateID: code,\r\n format: 'ajax'\r\n });\r\n\r\n $.getJSON(url, function(data) {\r\n if (data.success) {\r\n $error.html('');\r\n updateBillingColumn();\r\n } else if (!data.success) {\r\n $error.html(data.message);\r\n } else {\r\n $error.html(Resources.BAD_RESPONSE);\r\n }\r\n return false;\r\n });\r\n })\r\n /**\r\n * Open the modal popup form to provide the balance check option\r\n * on modal popup.\r\n * */\r\n .on('click', '.spc-billing .checkGiftCardBalanceLink', function(evt) {\r\n modal.events.onOpen(function() {\r\n validator.initForm('form[id$=\"spcGCModalForm\"]');\r\n $('.gift-card-number .input-text.spcModalGCNum').val(null);\r\n $('.gift-card-pin .input-text.spcModalGCPINNum').val(null);\r\n });\r\n modal.restoreDefaultClass();\r\n modal.renderByUrl(Urls.spcBalanceCheckModalForm);\r\n modal.addCustomClass('gift-card-balance-modal spcGiftCardBalanceModal');\r\n })\r\n /**\r\n * Checking Gift Card balance for GC card on Modal Popup form\r\n * */\r\n .on('click', '.checkBalanceGiftCertModal', function(e) {\r\n e.preventDefault();\r\n var $giftCode = $('.gift-card-number .input-text.spcModalGCNum');\r\n var $giftPin = $('.gift-card-pin .input-text.spcModalGCPINNum');\r\n spcGCModalBalanceCheck($giftCode, $giftPin);\r\n return false;\r\n })\r\n /**\r\n * Checking Gift Card balance for another card on Modal Popup form.\r\n * */\r\n .on('click', '.gcModalCheckAnotherCard', function(evt) {\r\n var $giftCode = $('.gift-card-number .input-text.spcModalGCNum');\r\n var $giftPin = $('.gift-card-pin .input-text.spcModalGCPINNum');\r\n spcModalCheckAnotherCard($giftCode, $giftPin);\r\n return false;\r\n })\r\n /**\r\n * Below function for adding Gift Certificate form Giftcard Modal Popup functionality.\r\n * */\r\n .on('click', '.applyGiftCertModal', function(evt) {\r\n evt.preventDefault();\r\n var $error = $('div#gift-card-balance-form .balance-error');\r\n $error.html('');\r\n var $giftCode = $('.gift-card-number .input-text.spcModalGCNum');\r\n var $giftPin = $('.gift-card-pin .input-text.spcModalGCPINNum');\r\n if ($giftCode.val() !== undefined && $giftPin.val() !== undefined) {\r\n spcApplyGiftCertModal($giftCode, $giftPin);\r\n } else {\r\n $error.html(Resources.GIFT_CARD_CODE_INVALID);\r\n }\r\n return false;\r\n })\r\n /**\r\n * Below function for adding click action to edit button for\r\n * Order-Summary column section on SinglePageCheckout flow.\r\n * */\r\n .on('click', '.spc-summary .spc-mini-cart-link-cart', function() {\r\n var btnHrefAttr = $(this).attr('href');\r\n btnHrefAttr = (btnHrefAttr !== undefined && btnHrefAttr !== '') ? btnHrefAttr : Urls.cartShow;\r\n window.location = btnHrefAttr;\r\n })\r\n /**\r\n * Below function triggering place order CTA.\r\n * */\r\n .on('click', '#review-place-order-button', function() {\r\n $('#summary-place-order').trigger('click');\r\n });\r\n} //spcBillingColumnEvents\r\n/**\r\n * Iterating the Saved User credit cards and on Payment section page load we are selecting or focusing\r\n * the card for register user only.\r\n * */\r\nfunction selectDefaultSavedCreditCard() {\r\n //select credit card tile for register user\r\n $(document).on('click', '.spc-billing .creditcard-tile:not(.saved-card-edit)', function(evt) {\r\n var $this = $(this);\r\n var piCardTypeVal = $this.find('.creditcard-tile-inner .cc-number').attr('data-cctype');\r\n piCardTypeVal = (piCardTypeVal != undefined && piCardTypeVal != '' && piCardTypeVal != null) ? piCardTypeVal : '';\r\n var setCVVCardLength = util.setCheckoutPaymentCardCVVLength(piCardTypeVal);\r\n var cvnMaxLength = (setCVVCardLength != undefined) ? setCVVCardLength.maxLength : 4;\r\n var cvnMinLength = (setCVVCardLength != undefined) ? setCVVCardLength.minLength : 3;\r\n var ccEdit = $this.find('.credit-card-edit');\r\n var fauxCVNInput = '<div class=\"cvn-input\"></div>';\r\n var CVNInput = '<input class=\"input-text regcustpclCVN regcustpclCVNSPC\" type=\"text\" id=\"dwfrm_billing_paymentMethods_creditCard_cvn\" name=\"dwfrm_billing_paymentMethods_creditCard_cvn\" value=\"\" data-min-length=\"' + cvnMinLength + '\" data-max-length=\"' + cvnMaxLength + '\" maxlength=\"' + cvnMaxLength + '\" minlength=\"' + cvnMinLength + '\" aria-invalid=\"false\" data-regex-pattern=\"/^\\d{' + cvnMinLength + ',' + cvnMaxLength + '}$/\">';\r\n\r\n if (evt.target == ccEdit[0]) {\r\n return;\r\n }\r\n\r\n if ($(this).is('.selected, .default')) {\r\n return false;\r\n } else {\r\n $('.creditcard-tile').each(function() {\r\n $(this).removeClass('selected');\r\n $(this).removeClass('default');\r\n $(this).find('.saved-cvn').addClass('disabled').removeClass('error').find('.error-placement').remove();\r\n $(this).find('.saved-cvn input').replaceWith(fauxCVNInput);\r\n $(this).removeClass('saved-card-edit');\r\n });\r\n\r\n if (!$('show-allsaved-cards').hasClass('hide')) {\r\n \t\t$(this).closest('.spc-selectable-pament-options').find('.hide-saved-card').addClass('hide');\r\n \t}\r\n $this.addClass('selected').removeClass('hide');\r\n $this.find('.cvn-input').removeClass('disabled');\r\n $this.find('.saved-cvn .cvn-input').replaceWith(CVNInput);\r\n $this.addClass('saved-card-edit');\r\n $this.find('.saved-cvn input').trigger(\"focus\");\r\n\r\n //collapse other payment method on card tile select\r\n if($('.payment-method-radio:checked').val() !== undefined){\r\n $('.payment-method-radio:checked').prop('checked', false);\r\n $('.payment-method-expandable').slideUp().removeClass('expanded');\r\n $('.payment-list .saved-card-edit, .spc-billing .payment-container').removeClass('selected active');\r\n }\r\n \r\n $('.creditcard-tile .cvnvalidationerror').removeClass('errorshow').addClass('errorhide');\r\n $('.creditcard-tile .cvnvalidationerror.errorhide').html('');\r\n $('.creditcard-tile').each(function() {\r\n if ($(this).hasClass('selected')) {\r\n $('.creditcard-tile.selected .cvnvalidationerror').removeClass('errorhide').addClass('errorshow');\r\n }\r\n });\r\n\r\n var element = document.getElementById(evt.currentTarget.id);\r\n\r\n var creditcardPosition = element.dataset.creditcardPosition;\r\n\r\n var url = util.appendParamsToUrl(Urls.checkoutCreditCardSelection, {\r\n position: creditcardPosition,\r\n });\r\n $.ajax({\r\n url: url,\r\n type: 'GET',\r\n success: function(result) {}\r\n });\r\n\r\n $(\"#dwfrm_billing\").validate().resetForm();\r\n $('.spc-credit-card-create-ajax-form').html('');\r\n enableDisableErrorContinue();\r\n setSelectedCardID($this.data(\"uuid\"));\r\n addCVNEvent();\r\n }\r\n\r\n });\r\n cardValidation.init();\r\n initCreditCardForm();\r\n validator.init();\r\n validator.initForm('form[id$=\"billing\"]');\r\n //trigger click event for selected by default cc on Page load of payment section(to manually trigger cc code)\r\n var selectedCC = $('div.payment-method div.creditcard-tile.selected');\r\n if (selectedCC && SessionAttributesStep.SPC_CHKOUTSTEPS > 2) {\r\n selectedCC.removeClass('selected').trigger(\"click\");\r\n }\r\n}\r\n\r\nfunction spcBillingColumnContinueToAfterPay() {\r\n\t$(document).on('mousedown click', '#afterpay-checkout-logo', function(e) {\r\n\t e.preventDefault();\r\n\t if($(this).parent().hasClass('afterpaydisabled')){\r\n\t \treturn false;\r\n\t }\r\n\t hideShowBillingCreditCardForm();\r\n\t hideShippingColumnAddressForm();\r\n\t updatePaymentMethod('AFTERPAY_PBI');\r\n\t var form = $(this).closest('form');\r\n\t var formID = form.attr('id');\r\n\t var formaction = Urls.spcBillingSubmit;\r\n\t $('#' + formID).attr('action', formaction).trigger(\"submit\");\r\n\t});\r\n}\r\n/**\r\n * This function(spcBillingColumnContinueToSubmitBtn) is responsible for submitting the events for Single page checkout Billing column\r\n * section. Once it is successfully submitted then we will render on OrderReview column.\r\n * We have handle the form submit functionality through AJAX event.\r\n * */\r\nfunction spcBillingColumnContinueToSubmitBtn() {\r\n $(document).on('click', '#dwfrm_billing_save.spcBillingContinueBtn', function(e) {\r\n e.preventDefault();\r\n var form = $(this).closest('form');\r\n var formID = form.attr('id');\r\n var formaction = Urls.spcBillingSubmit;\r\n var formSer = $('form[id=\"' + formID + '\"]');\r\n var formData = formSer.serialize();\r\n closeAllOpenFormOnBillingSection();\r\n\r\n if($('.spc-billing .creditcard-tile.saved-card-edit').length === 0){\r\n if($('.payment-method-radio:checked').val() === undefined) {\r\n $('#dwfrm_billing .payment-section').addClass('payment-method-error');\r\n $('.spcBillingContinueBtn').attr('disabled',true);\r\n require('./shipping').showCommonErrorForForm(true, $(this));\r\n setTimeout(function(){\r\n $('html, body').scrollTo($('#dwfrm_billing .payment-method-error').find('.payment-error-message'),{offset:0, duration:1000});\r\n }, 2000);\r\n return false;\r\n }\r\n } \r\n \r\n if($('.payment-method-radio:checked').val() === 'NEW_CARD'){\r\n if (!form.find('form').valid()) {\r\n $('.spcBillingContinueBtn').attr('disabled',true);\r\n require('./shipping').showCommonErrorForForm(true, form);\r\n require('./shipping').scrollToErrorField(form.find('form'));\r\n return false;\r\n }\r\n }\r\n \r\n if ($('input[name=dwfrm_billing_paymentMethods_selectedPaymentMethodID]:checked').val() == 'CREDIT_CARD' &&\r\n ($('.spcCustomerPCLDetails').length > 0 || $('.creditcard-form-container').length > 0)) {\r\n form.validate();\r\n formData = formSer.serialize();\r\n var cardCVNMinLen = $('.creditcard-tile.selected input.regcustpclCVN').attr('data-min-length');\r\n var cardCVNMaxLen = $('.creditcard-tile.selected input.regcustpclCVN').attr('data-max-length');\r\n cardCVNMinLen = (cardCVNMinLen !== undefined && cardCVNMinLen !== '') ? cardCVNMinLen : 0;\r\n cardCVNMaxLen = (cardCVNMaxLen !== undefined && cardCVNMaxLen !== '') ? cardCVNMaxLen : 0;\r\n require('./shipping').showCommonErrorForForm(false, $(this));\r\n \r\n if (!form.valid()) {\r\n util.formFieldFocusOnError(form);\r\n $('.spcBillingContinueBtn').attr('disabled',true);\r\n require('./shipping').showCommonErrorForForm(true, $(this));\r\n require('./shipping').scrollToErrorField($(this));\r\n return false;\r\n }\r\n\r\n if ($('#dwfrm_billing_paymentMethods_creditCard_cvn').is(':visible') == true) {\r\n var cvnobj = $('#dwfrm_billing_paymentMethods_creditCard_cvn').val();\r\n let cvnObjLen = (cvnobj !== '' && cvnobj !== undefined && cvnobj != null) ? cvnobj.length : 0;\r\n if ((cvnObjLen == 0 && cvnobj == '') || cvnObjLen < cardCVNMinLen || cvnObjLen > cardCVNMaxLen && $('input.regcustpclCVN').length > 0) {\r\n $('#dwfrm_billing_paymentMethods_creditCard_cvn').trigger(\"focus\");\r\n util.displayCVNErrorMessage('show');\r\n return false;\r\n } else {\r\n \tutil.displayCVNErrorMessage();\r\n $.post(formaction, formData)\r\n .done(function(data) {\r\n if (data.success == false) {\r\n showORHideSubmitErrorFunction(true, data.BillingError);\r\n var currentPos = $('.spcbilling-payment-sec').offset().top;\r\n require('./card-validation').scrollToPos(currentPos);\r\n } else {\r\n showORHideSubmitErrorFunction(false, '');\r\n util.setSpcCheckoutSteps(4);\r\n require('./shipping').showCommonErrorForForm(false, $('.spcBillingContinueBtn'));\r\n $cache.summarycol.html(data);\r\n $cache.billingcol.find('.payment-details').html($(data).find('.payment-details').html());\r\n updateBillingSummary();\r\n util.singlePageNextCheckoutStep(4);\r\n if ($('.spc-orderconfirmation-div').hasClass('guest-user') || $('.spc-orderconfirmation-div').hasClass('login-user')) {\r\n \tmaskCardNumber();\r\n }\r\n require('./shipping').scrollActiveSection();\r\n }\r\n // calling GA event for next checkout step [Review]\r\n //analytics.initSPCReviewEvent();\r\n });\r\n return false;\r\n }\r\n } else {\r\n showORHideSubmitErrorFunction(true, Resources.SPC_INVALID_PAYMENTINF);\r\n removeSelectedUserSavedPamentMethods();\r\n if ($('.sub-title.spc-cc-title.spc-cc-section').length > 0) {\r\n $('.sub-title.spc-cc-title.spc-cc-section').trigger('click');\r\n if (!form.valid()) {\r\n util.formFieldFocusOnError(form);\r\n return false;\r\n }\r\n }\r\n scrollToTopSection();\r\n return false;\r\n }\r\n\r\n } else {\r\n if (!form.valid()) {\r\n util.formFieldFocusOnError(form);\r\n $('.spcBillingContinueBtn').attr('disabled',true);\r\n require('./shipping').showCommonErrorForForm(true, $(this));\r\n require('./shipping').scrollToErrorField($(this));\r\n return false;\r\n }\r\n $.post(formaction, formData)\r\n .done(function(data) {\r\n util.setSpcCheckoutSteps(4);\r\n util.singlePageNextCheckoutStep(4);\r\n $cache.summarycol.html(data);\r\n require('./shipping').showCommonErrorForForm(false, $('.spcBillingContinueBtn'));\r\n if ($('.spc-orderconfirmation-div').hasClass('guest-user')) {\r\n \tmaskCardNumber();\r\n }\r\n $cache.billingcol.find('.payment-details').html($(data).find('.payment-details').html());\r\n updateBillingSummary();\r\n require('./shipping').scrollActiveSection();\r\n });\r\n //Calling GA tagging event\r\n //analytics.initSPCReviewEvent();\r\n return false;\r\n }\r\n });\r\n}\r\n/**\r\n * Card Number Converted as MASK number(*********7891) for entered\r\n * card number on text field by customer.\r\n * */\r\nfunction maskCardNumber() {\r\n\tif ($('.form-row.cc-number input').val() != undefined) {\r\n\t var cardNumber = $('.form-row.cc-number input'),\r\n\t\t cardValue = cardNumber.val(),\r\n\t\t cardLength = cardValue.length,\r\n\t\t editLength = cardLength - 4,\r\n\t\t hiddenValue = '*',\r\n\t\t slice1 = cardValue.slice(0,editLength-1),\r\n\t\t slice2 = cardValue.slice(editLength,cardLength),\r\n\t\t hiddenValueFix = '',\r\n\t\t maskCard='';\r\n\t for(var i=0;i<editLength;i++) {\r\n\t\t hiddenValueFix = hiddenValueFix + hiddenValue;\r\n\t }\r\n\t maskCard = hiddenValueFix + slice2;\r\n\t cardNumber.val(maskCard);\r\n }\r\n}\r\n/**\r\n * Setting the default Billing Address same as shipping address\r\n * for that current session checkout flow in order to place order.\r\n * */\r\nfunction setBillingAdrsSameAaShippingAddressCheckbox() {\r\n\t// if same as shipping is checked, re-select default address\r\n // or if nothing is selected, re-select default address\r\n if (($('input#shipping-address-checked').length > 0 && $('input#shipping-address-checked').is(\":checked\")) ||\r\n $('div.address-list div.address-tile.selected').length <= 0) {\r\n $(document).find('.spc-billing div.address-list div.address-tile').each(function(ind, evt) {\r\n if ($(this).hasClass('default') || $(this).hasClass('selected') || $(this).hasClass('address-default')) {\r\n $(this).removeClass('selected');\r\n $(this).removeClass('default');\r\n\r\n $(this).trigger(\"click\");\r\n }\r\n });\r\n } else if ($('input#shipping-address-checked').length == 0 && $('div.address-list div.address-tile.selected').length > 0) {\r\n // if no physical product to ship, re-select tile to properly assign billing address\r\n var reSelectTile = $('.spc-billing div.address-list div.address-tile.selected');\r\n //commented the below line to retain back address selection upon continue from shipping to billing section.\r\n //reSelectTile.removeClass('selected');\r\n reSelectTile.removeClass('default');\r\n reSelectTile.trigger(\"click\");\r\n }\r\n}\r\n/**\r\n * Set User's shipping default submitted address to be setting\r\n * as default billing address on Billing column.\r\n * We have set by getting the SAMEASSHIPPING forms submitted value on\r\n * Billing Continue submit(Continue To Review) of SFCC form framework.\r\n * */\r\nfunction setDefaultBillingColCheckbox() {\r\n\tlet $sameAsShippingAdrs = $('.spc-summary .SPCSummaryPageSec #secondary .spcBillColSameAsShippingAddress');\r\n\tlet $sameAsShippingAddressChk = $('.spc-billing .spc-billing-address .same-shippingaddress input#shipping-address-checked');\r\n\tif ($sameAsShippingAdrs.length > 0) {\r\n\t\tlet billingAddresSameAsShippingadrs = $sameAsShippingAdrs.attr('data-sameasshipping-address');\r\n\t if (billingAddresSameAsShippingadrs !== undefined && billingAddresSameAsShippingadrs == 'true') {\r\n\t \t$sameAsShippingAddressChk.prop('checked', true);\r\n\t $sameAsShippingAddressChk.trigger('change');\r\n\t } else {\r\n\t \t$sameAsShippingAddressChk.prop('checked', false);\r\n\t }\r\n\t}\r\n\r\n\t// trigger only for non-registered users\r\n if (window.User.isCustomerAuthenticated == false) {\r\n $('input[name$=\"_creditCard_cvn\"], input[name$=\"_creditCard_owner\"]').on('change', function() {\r\n $('select[name$=\"_creditCard_expiration_month\"]').trigger('change');\r\n $('select[name$=\"_creditCard_expiration_month\"]').trigger('change');\r\n });\r\n }\r\n\r\n $('.set-default-cb').hide();\r\n}\r\n/**\r\n * As we have multiple payment methods on our Global core we are setting\r\n * the payment methods on Page load or on ajax call page load.\r\n * */\r\nfunction settingDefaultPaymentMethodOnAjaxLoad() {\r\n\tvar $selectPaymentMethod = $(document).find('.selectable-payment-method-options');\r\n var selectedPaymentMethod = $selectPaymentMethod.find(':checked').val();\r\n\t // default payment method to 'CREDIT_CARD'\r\n //updatePaymentMethod('CREDIT_CARD');\r\n /*$selectPaymentMethod.on('click', function() {\r\n \tupdatePaymentMethod($(this).data('method'));\r\n });*/\r\n}\r\n\r\nfunction deselectSavedCard(){\r\n var fauxCVNInput = '<div class=\"cvn-input\"></div>';\r\n $('.creditcard-tile').each(function() {\r\n $(this).removeClass('selected');\r\n $(this).removeClass('default');\r\n $(this).find('.saved-cvn').addClass('disabled').removeClass('error').find('.error-placement').remove();\r\n $(this).find('.saved-cvn input').replaceWith(fauxCVNInput);\r\n $(this).removeClass('saved-card-edit');\r\n });\r\n $(\"#dwfrm_billing\").validate().resetForm();\r\n\r\n $('.creditcard-tile .cvnvalidationerror').removeClass('errorshow').addClass('errorhide');\r\n $('.creditcard-tile .cvnvalidationerror.errorhide').html('');\r\n}\r\n\r\n/**\r\n * Loading Billing column data on Shipping column when user submit's the shipping form\r\n * successfully on ContinueToPayment Button click action by user.\r\n * */\r\nfunction initializeBillingColumnData() {\r\n\tselectDefaultSavedCreditCard();\r\n\tsetBillingAdrsSameAaShippingAddressCheckbox();\r\n\tsetDefaultBillingColCheckbox();\r\n\tsettingDefaultPaymentMethodOnAjaxLoad();\r\n}\r\n\r\nfunction newsletterConsentCheck() {\r\n\tif ($('.spc-billing .newsletter-signup-check .addtoemaillist').is(\":checked\")) {\r\n\t\t$('.spc-billing .newsletter-signup-check .newsletter-signup-consent-text').show();\r\n\t} else {\r\n\t\t$('.spc-billing .newsletter-signup-check .newsletter-signup-consent-text').hide();\r\n\t}\r\n}\r\n\r\nfunction updateBillingSummary(){\r\n if($('.billing-new-address-form').length > 0 && !$('#shipping-address-checked').prop(\"checked\")){\r\n var guestBillingName = $('#dwfrm_billing_billingAddress_addressFields_firstName').val() + ' ' + $('#dwfrm_billing_billingAddress_addressFields_lastName').val();\r\n $('.default-billing-address').find('.address-summary .mini-address-name').text(guestBillingName);\r\n var guestBillingAddress = '<div>'+$('#dwfrm_billing_billingAddress_addressFields_address1').val()+'</div>';\r\n guestBillingAddress += '<div>'+$('#dwfrm_billing_billingAddress_addressFields_address2').val()+'</div>';\r\n guestBillingAddress += '<div>'+$('#dwfrm_billing_billingAddress_addressFields_city').val() + '</div>';\r\n guestBillingAddress += '<div>'+$('#dwfrm_billing_billingAddress_addressFields_states_state').val() +'</div>';\r\n guestBillingAddress += '<div>'+$('#dwfrm_billing_billingAddress_addressFields_postal').val()+'</div>';\r\n guestBillingAddress += '<div class=\"phone\">'+$('#dwfrm_billing_billingAddress_addressFields_phone').val()+'</div>';\r\n $('.default-billing-address.address-summary-wrapper').removeClass('hide').find('.address-summary .mini-address-location').html(guestBillingAddress) \r\n } else {\r\n $('.default-billing-address.address-summary-wrapper').addClass('hide');\r\n }\r\n}\r\n\r\nfunction enableDisableErrorContinue(){\r\n if($('#dwfrm_billing').find('.error-placement').length > 0){\r\n $('.spcBillingContinueBtn').attr('disabled',true);\r\n require('./shipping').showCommonErrorForForm(true, $('#dwfrm_billing'));\r\n } else {\r\n $('.spcBillingContinueBtn').attr('disabled',false);\r\n require('./shipping').showCommonErrorForForm(false, $('#dwfrm_billing')); \r\n }\r\n}\r\n\r\n/**\r\n * @function\r\n * @description loads billing address, Gift Certificates, Coupon and Payment methods\r\n */\r\nexports.init = function() {\r\n if ($('.spc-container').length > 0) {\r\n \teditPaymentSummary();\r\n initBillingColumnCache();\r\n cardValidation.init();\r\n initCreditCardForm();\r\n initGiftCardBalance();\r\n newsletterConsentCheck();\r\n\r\n var $selectPaymentMethod = $(document).find('.selectable-payment-method-options');\r\n var selectedPaymentMethod = $selectPaymentMethod.find(':checked').val();\r\n validator.initForm('form[id$=\"billing\"]');\r\n removePOBoxCaption();\r\n selectDefaultSavedCreditCard();\r\n spcBillingColumnEvents();\r\n spcBillingColumnContinueToSubmitBtn();\r\n spcBillingColumnContinueToAfterPay();\r\n\r\n $(document).on('change', '.spc-billing #dwfrm_billing_billingAddress_addressFields_country, .spc-billing #dwfrm_billingaddress_country', function() {\r\n var selectContry = $(this).val();\r\n if (selectContry == '') {\r\n toggleBillingAddressFields();\r\n } else if (selectContry == 'us') {\r\n toggleBillingAddressFields(true);\r\n $('.spc-billing .us-fields').show();\r\n $('.spc-billing .us-fields input').each(function() {\r\n $(this).addClass('required');\r\n });\r\n\r\n $('.spc-billing .cn-fields').hide();\r\n $('.spc-billing .cn-fields input').each(function() {\r\n $(this).removeClass('required');\r\n });\r\n } else {\r\n toggleBillingAddressFields(true);\r\n $(\".spc-billing .cn-fields\").show().css({\r\n \"display\": \"flex\"\r\n });\r\n $('.spc-billing .cn-fields input').each(function() {\r\n $(this).addClass('required');\r\n });\r\n\r\n $('.spc-billing .us-fields').hide();\r\n $('.spc-billing .us-fields input').each(function() {\r\n $(this).removeClass('required');\r\n });\r\n }\r\n });\r\n\r\n settingDefaultPaymentMethodOnAjaxLoad();\r\n creditCardTypeDetector();\r\n\r\n $('.order-summary-footer form').on(\"submit\", function() {\r\n $('#summary-place-order').prop('disabled', true).addClass('loading');\r\n return true;\r\n });\r\n setBillingAdrsSameAaShippingAddressCheckbox();\r\n setDefaultBillingColCheckbox();\r\n\r\n // maximize order checkout summary dropdown\r\n util.maximizeCheckoutSummary();\r\n\r\n //util.renderGoogleInvRecaptcha(\"billingrecaptcha\", \"#dwfrm_billing_save\", \"dwfrm_billing\");\r\n \r\n }\r\n $(document).on('click','.spcSummaryPageSubmitBtn', function() {\r\n \t$(this).addClass('loading');\r\n \t$('#spcSummaryPageForm').on(\"submit\", function() {\r\n \t\t $('#summary-place-order').prop('disabled', true).addClass('loading');\r\n \t\t return true;\r\n \t});\r\n });\r\n if ($('.SPCSummaryPageSec').find('.error-form').length>0) {\r\n \t$('.spcSummaryPageSubmitBtn').prop('disabled', false);\r\n\t\t$('.spcSummaryPageSubmitBtn').removeClass('loading');\r\n if ($('.spc-summary').length > 0 && $('.spc-billing').length > 0) {\r\n $('.spc-billing').find('.number').trigger('focusout');\r\n }\r\n\t}\r\n\r\n if($('.spc-container').length > 0) {\r\n\t if ($(window).width() < 640){\r\n\t\t $(window).on('load',function(){\r\n\t\t \t$('html, body').animate({\r\n\t\t \t\tscrollTop: $('.checkout-progress-container .step.active').offset().top\r\n\t\t \t}, 800);\r\n\t\t });\r\n\t }\r\n }\r\n \r\n $(document).on('change','.order-review-consent .termsandconditions', function() {\r\n \tif(this.checked) {\r\n \t\t$('.spc-termconditions-error').hide();\r\n \t\t$('.order-review-consent .termsandconditions').removeClass('error');\r\n \t}\r\n });\r\n\r\n // Review Order Details\r\n $(document).on('click','.spcReviewSummaryContinueBtn', function(e) {\r\n \tvar termsChecked = $('.order-review-consent .termsandconditions').is(':checked'); \r\n e.preventDefault();\r\n if (termsChecked) {\r\n \t$('.onepage-checkout-container').addClass('order-review-summary');\r\n \t$('.button-checkoutstep.review-summary').show();\r\n \trequire('./shipping').scrollActiveSection();\r\n } else {\r\n \t$('.spc-termconditions-error').show();\r\n \t$('.order-review-consent .termsandconditions').addClass('error');\r\n }\r\n return false;\r\n });\r\n}\r\nexports.SPCAddPromoCouponCode = spcAddPromoCouponCode;\r\nexports.spcSelectDefaultSavedCreditCard = selectDefaultSavedCreditCard;\r\nexports.loadBillingColData = initializeBillingColumnData;\n},{\"../../ajax\":1,\"../../analytics\":2,\"../../giftcard\":17,\"../../modal\":27,\"../../util\":93,\"../../validator-opc\":94,\"./card-validation\":62,\"./shipping\":66,\"./spccybcustom\":68}],62:[function(require,module,exports){\n'use strict';\r\n\r\n// https://gist.github.com/ShirtlessKirk/2134376\r\n\r\nvar luhnCheck = (function (arr) {\r\n return function (ccNum) {\r\n var len = ccNum.length;\r\n var bit = 1;\r\n var sum = 0;\r\n var val;\r\n\r\n while (len) {\r\n val = parseInt(ccNum.charAt(--len), 10);\r\n sum += (bit ^= 1) ? arr[val] : val;\r\n }\r\n\r\n return sum && sum % 10 === 0;\r\n };\r\n}([0, 2, 4, 6, 8, 1, 3, 5, 7, 9]));\r\n\r\nvar cvvCheck = function (cvv) {\r\n return /^[0-9]{3,4}$/.test(cvv); \r\n};\r\n\r\nvar initCardExpiry = function(){\r\n\tvar ccSave = $('#CreditCardForm #applyBtn');\r\n\tccSave.on('click', function(e){\r\n\t\tvalidateCardExpiry(this, true);\r\n\t});\r\n\t\r\n\t$('.card-expiry.month, .card-expiry.year').on('change blur', function(){\r\n\t\tvalidateCardExpiry(this);\r\n\t});\r\n};\r\n\r\nvar validateCardExpiry = function(el, checkEmpty){\r\n\t// need to declare specifically in order not to confuse with other forms with similar inputs\r\n\tvar $this = $(el);\r\n\tvar $month = $this.closest('form').find('.card-expiry.month');\r\n\tvar $year = $this.closest('form').find('.card-expiry.year');\r\n\tvar $submit = $this.closest('form').find('button[type=\"submit\"]');\r\n\tvar hasError = false;\r\n\t\r\n\tvar now = new Date();\r\n\tvar nowMonth = now.getMonth() + 1; \r\n\tvar nowYear = now.getFullYear();\r\n\t\r\n\t$month.parents('.form-row').find('.error-placement').remove();\r\n\t$year.parents('.form-row').find('.error-placement').remove(); //-- Ade CG-4\r\n\t$month.parents('.form-row').removeClass('error');\r\n\t$year.parents('.form-row').removeClass('error');\r\n\t$submit.prop('disabled', false);\r\n\t\r\n\t// validate only on form submit\r\n\t/*if(checkEmpty && (!$month.val() || !$year.val())){\r\n\t\t$('<span class=\"error\">' + Resources.INVALID_CARDEXPIRY + '</span>').insertBefore($month);\r\n\t\thasError = true;*/\r\n\tif(checkEmpty) {\r\n\t\tif (!$month.val()){\r\n\t\t\t$('<div class=\"error-placement error-added\"><span class=\"error\" id=\"errormonth\">' + Resources.INVALID_CARDEXPIRY + '</span></div>').insertAfter($($month).parent('.select-parent')).show();\r\n\t\t\thasError = true;\r\n\t\t}\r\n\t\tif (!$year.val()){\r\n\t\t\t$('<div class=\"error-placement error-added\"><span class=\"error\" id=\"erroryear\">' + Resources.INVALID_CARDEXPIRY + '</span></div>').insertAfter($($year).parent('.select-parent')).show();\r\n\t\t\thasError = true;\r\n\t\t}\r\n\t// validate only if month and year has value, otherwise, ignore\r\n\t} else if($month.val() && $year.val()){\r\n\t\tif ($year.val() < nowYear) {\r\n\t\t\t$('<div class=\"error-placement error-added\"><span class=\"error\" id=\"erroryear\">' + Resources.VALIDATE_CARDEXPIRY + '</span></div>').insertAfter($($year).parent('.select-parent')).show();\r\n\t\t\thasError = true;\r\n\t\t} else if ($month.val() < nowMonth && $year.val() == nowYear) {\r\n\t\t\t$('<div class=\"error-placement error-added\"><span class=\"error\" id=\"errormonth\">' + Resources.VALIDATE_CARDEXPIRY + '</span></div>').insertAfter($($month).parent('.select-parent')).show();\r\n\t\t\thasError = true;\r\n\t\t}\r\n\t}\r\n\t\r\n\t// highlight inputs if expiry has error \r\n\tif(hasError){\r\n\t\t$month.parents('.form-row').addClass('error');\r\n\t\t$year.parents('.form-row').addClass('error');\r\n\t}\t\r\n};\r\n\r\nfunction scrollToPos(pos) {\r\n $('html, body').animate({\r\n scrollTop: pos\r\n }, 800);\r\n}\r\n\r\nexports.init = function () {\r\n\tinitCardExpiry();\r\n}\r\n\r\nexports.scrollToPos = scrollToPos;\n},{}],63:[function(require,module,exports){\n'use strict';\r\n\r\nvar _ = require('lodash');\r\n\r\nvar hasEmptyRequired = function () {\r\n // filter out only the visible fields\r\n var requiredValues = this.$requiredInputs.filter(':visible').map(function () {\r\n return $(this).val();\r\n });\r\n return _(requiredValues).contains('');\r\n};\r\n\r\nvar validateForm = function () {\r\n\tvar _self = this;\r\n // only validate form when all required fields are filled to avoid\r\n // throwing errors on empty form\r\n if (!this.validator) {\r\n return;\r\n }\r\n \r\n // wait for the form to show before validating.. this applies to modals\r\n this.timer = setInterval(function(){ \r\n \tif(_self.$form.is(':visible')) {\r\n \t\tif (_self.$form.find('span.error:visible, .error-form:visible').length == 0) { //!_self.hasEmptyRequired() &&\r\n \t\t\t_self.$continue.prop('disabled', false);\r\n \t\t} else {\r\n \t\t\t_self.$continue.prop('disabled', true);\r\n \t\t}\r\n \t\tclearInterval(_self.timer);\r\n \t}\r\n }, 100);\r\n \r\n};\r\n\r\nvar validateEl = function (e) {\r\n if ($(e.target).val() === '') {\r\n this.$continue.prop('disabled', true);\r\n } else {\r\n // enable continue button on last required field that is valid\r\n // only validate single field\r\n if (!this.hasEmptyRequired()) { \r\n this.$continue.prop('disabled', false);\r\n } else {\r\n this.$continue.prop('disabled', true);\r\n }\r\n }\r\n};\r\n\r\nvar checkValue = function(repopulateRequiredFields, e) {\r\n\tvar $el = $(e.target);\r\n\tvar attr = $el.attr('clear-on-error');\r\n\t\r\n\t// check for new required fields (e.g. changing US -> CH in address)\r\n\tif(repopulateRequiredFields){\r\n\t\tthis.$requiredInputs = this.$form.find('input.required');\r\n\t}\r\n\t\r\n\t// remove any error message residue from previous validation\r\n if (this.$form.find('.-error-pad').length == 0) {\r\n $el.siblings('span.error').remove();\r\n }\r\n\t\r\n if (this.validator.element($el) \r\n \t\t&& this.$form.find('span.error:visible').length == 0) {\r\n this.$continue.prop('disabled', false);\r\n } else {\r\n// this.$continue.prop('disabled', true);\r\n \r\n // clear the value if input has error\r\n if(typeof attr !== typeof undefined && attr !== false) $el.val('');\r\n }\r\n};\r\n\r\nvar submitForm = function(e) {\r\n this.$form.find('input').trigger(\"blur\");\r\n this.$form.find('select').trigger(\"blur\");\r\n\r\n if (this.$continue.hasClass('password-ignore')) {\r\n if ($(\".form-row.username .field-wrapper span.error\").length) {\r\n e.preventDefault();\r\n e.stopPropagation();\r\n return;\r\n }\r\n } else if(this.validator.numberOfInvalids() > 0 || this.$form.data('submitting') == true){\r\n// \tthis.$continue.prop('disabled', true);\r\n e.preventDefault();\r\n e.stopPropagation();\r\n return;\r\n }\r\n // Execute Google Recaptcha once validation is completed.\r\n var util = require('../../util');\r\n // if (util.getGoogleRecaptchaEnableStatus(this.$form.attr('id')) == true) { \t \r\n // util.callingGoogleReCaptchaOnFormSubmitORAJAXCall(e, this.$form.attr('id'));\r\n // } \r\n \r\n // adding this to prevent multiple submission of forms\r\n if(this.$form.attr('multiple-submission') === 'false'){\r\n \tthis.$form.data('submitting', true);\r\n }\r\n};\r\n\r\nvar init = function (opts, settings) {\r\n if (!opts.formSelector || !opts.continueSelector) {\r\n throw new Error('Missing form and continue action selectors.');\r\n }\r\n this.$form = $(opts.formSelector);\r\n this.$continue = $(opts.continueSelector); \r\n this.validator = settings? this.$form.validate(settings) : this.$form.validate();\r\n this.$allInputs = $('input, textarea', this.$form);\r\n this.$allSelect = $('select', this.$form);\r\n this.$requiredInputs = this.$form.find('input.required');\r\n// this.validateForm();\r\n \r\n // start listening\r\n// this.$requiredInputs.on('change', $.proxy(this.validateEl, this));\r\n //this.$allInputs.on('keyup', $.proxy(this.checkValue, this, false)); \r\n //this.$allSelect.on('blur', $.proxy(this.checkValue, this, true));\r\n /*Below code is for only Single page checkout handler*/\r\n if(SitePreferences.ENABLE_SINGLE_PAGE_CHECKOUT && SitePreferences.IS_QAS_AUTO_SUGGESTION_ENABLE && $('.spc-checkoutdiv.spcGuestUser .spc-shipping.active #dwfrm_singleshipping_shippingAddress').length > 0) {\r\n \t // start listening for only single page checkout\r\n this.$requiredInputs.on('change', $.proxy(this.validateEl, this));\r\n this.$requiredInputs.on('keydown', $.proxy(this.validateEl, this));\r\n this.$requiredInputs.on('keypress', $.proxy(this.validateEl, this));\r\n }\r\n this.$continue.on('click', $.proxy(this.submitForm, this));\r\n\t// [life-hack:5079] needed to trigger onclick since blur prevents the form from submitting\r\n if(this.$continue.attr('mousesubmit') === 'true'){\r\n \tthis.$continue.on('mousedown', $.proxy(function(e){ this.$continue.trigger(\"click\"); }, this));\r\n }\r\n};\r\n\r\nvar formPrepare = function(){\r\n\treturn {\r\n\t\t$form: null,\r\n\t\t$continue: null,\r\n\t\t$allInputs: null,\r\n\t\t$allSelect: null,\r\n\t\t$requiredInputs: null, \r\n\t\tvalidator: null,\r\n\t\tinit: init,\r\n\t\ttimer: null,\r\n\t\thasEmptyRequired: hasEmptyRequired,\r\n\t\tcheckValue: checkValue,\r\n\t\tvalidateForm: validateForm,\r\n\t\tsubmitForm: submitForm,\r\n\t\tvalidateEl: validateEl\r\n\t}\r\n}\r\n\r\nmodule.exports = formPrepare;\r\n\n},{\"../../util\":93,\"lodash\":137}],64:[function(require,module,exports){\n'use strict';\r\n\r\nvar address = require('./address'),\r\n billing = require('./billing'),\r\n multiship = require('./multiship'),\r\n ajax = require('../../ajax'),\r\n util = require('../../util'),\r\n shipping = require('./shipping');\r\n \r\n\r\n/**\r\n * @function Initializes the page events depending on the checkout stage (shipping/billing)\r\n */\r\nexports.init = function () {\r\n initTabs();\r\n address.init();\r\n shipping.init();\r\n billing.init();\r\n hideShowAddressTiles();\t \r\n billing.SPCAddPromoCouponCode();\r\n\tintilizeSelect();\r\n\t$( document ).ajaxComplete(function( event, xhr, settings ) {\r\n\t\tintilizeSelect();\r\n\t});\r\n};\r\n\r\n/*\r\n * This method sets an active class to the element once one of the tab is clicked.\r\n * */\r\nfunction initTabs(){\r\n\tif($('.spc-container').length > 0) {\r\n\t var spcStepsVal= (window.SessionAttributes.SPC_CHKOUTSTEPS >0)? window.SessionAttributes.SPC_CHKOUTSTEPS: 1;\r\n\t util.singlePageNextCheckoutStep(spcStepsVal);\r\n\t}\r\n}\r\n\r\nfunction hideShowAddressTiles(){\t\r\n\t$(document).on(\"click\", \".showmoreaddresses\", function(){\r\n\t\t var addresstype = '.spc-'+$(this).data('addresstype');\r\n\t\t $(addresstype + \" .address-tile\").removeClass(\"hide\");\r\n\t\t $(this).addClass(\"hide\");\r\n\t\t $(this).closest('.saved-addresses').find('.hide-saved-address').removeClass('hide');\r\n\t });\r\n\t $(document).on(\"click\", \".checkoutShippingAddress .hide-saved-address\", function(){\r\n\t\t var shippingform = $(this).closest('.checkoutShippingAddress');\r\n\t\t $(shippingform).find('.showmoreaddresses').removeClass('hide');\r\n\t\t $(shippingform).find('.address-tile').addClass('hide');\r\n\t\t $(shippingform).find('.address-tile.address-default, .address-tile.selected').removeClass('hide');\r\n\t\t if ($(shippingform).find('.address-tile.selected').length > 0 && !$(shippingform).find('.address-tile.selected').hasClass('address-default')) {\r\n\t\t\t $(shippingform).find('.address-tile.address-default').addClass('hide');\r\n\t\t }\r\n\t\t $('.address-list').html($('.sb-content').html())\r\n\t\t $(this).addClass('hide');\r\n\t });\r\n}\r\n\r\nfunction intilizeSelect(){\r\n\t$('.onepage-checkout-container select').selectmenu({\r\n\t\t//Add class to Dropdown Set for css targeting\r\n\t\twidth: false,\r\n\t\tposition: {\r\n\t\t\tmy: \"left top\",\r\n\t\t\tat: \"left bottom\",\r\n\t\t\tcollision: \"flip flip\"\r\n\t\t},\r\n\t\tchange: function( event, ui ) {\r\n\t\t\tvar currentSelect = event.target;\r\n\t\t\t$(currentSelect).trigger('blur');\r\n\t\t}\r\n\t});\r\n}\n},{\"../../ajax\":1,\"../../util\":93,\"./address\":60,\"./billing\":61,\"./multiship\":65,\"./shipping\":66}],65:[function(require,module,exports){\n'use strict';\r\n\r\nvar address = require('./address'),\r\n formPrepare = require('./formPrepare'),\r\n dialog = require('../../dialog'),\r\n util = require('../../util'),\r\n validator = require('../../validator-opc');\r\n\r\n/**\r\n * @function\r\n * @description Initializes gift message box for multiship shipping, the message box starts off as hidden and this will display it if the radio button is checked to yes, also added event handler to listen for when a radio button is pressed to display the message box\r\n */\r\nfunction initMultiGiftMessageBox() {\r\n $.each($('.item-list'), function () {\r\n var $this = $(this);\r\n var $giftMessage = $this.find('.gift-message-text');\r\n\r\n //handle initial load\r\n $giftMessage.toggleClass('hidden', $('input[name$=\"_isGift\"]:checked', this).val() !== 'true');\r\n\r\n //set event listeners\r\n $this.on('change', function () {\r\n $giftMessage.toggleClass('hidden', $('input[name$=\"_isGift\"]:checked', this).val() !== 'true');\r\n });\r\n });\r\n}\r\n\r\n\r\n/**\r\n * @function\r\n * @description capture add edit adddress form events\r\n */\r\nfunction addEditAddress(target) {\r\n var $addressForm = $('form[name$=\"multishipping_editAddress\"]'),\r\n $addressDropdown = $addressForm.find('select[name$=_addressList]'),\r\n $addressList = $addressForm.find('.address-list'),\r\n add = true,\r\n originalUUID,\r\n resetOptionValue = false,\r\n selectedAddressUUID = $(target).parent().siblings('.select-address').val();\r\n\r\n $addressDropdown.on('change', function (e) {\r\n e.preventDefault();\r\n\r\n var selectedAddress = $addressList.find('select').val();\r\n if (selectedAddress !== 'newAddress') {\r\n selectedAddress = $.grep($addressList.data('addresses'), function (add) {\r\n return add.UUID === selectedAddress;\r\n })[0];\r\n add = false;\r\n resetOptionValue = false;\r\n // proceed to fill the form with the selected address\r\n util.fillAddressFields(selectedAddress, $addressForm);\r\n } else if (selectedAddress === 'newAddress') {\r\n add = true;\r\n resetOptionValue = true;\r\n $addressForm.find('.input-text, .input-select').val('');\r\n } else {\r\n //reset the form if the value of the option is not a UUID\r\n $addressForm.find('.input-text, .input-select').val('');\r\n }\r\n });\r\n\r\n $addressForm.on('click', '.cancel', function (e) {\r\n e.preventDefault();\r\n dialog.close();\r\n });\r\n\r\n $addressForm.on('submit', function (e) {\r\n e.preventDefault();\r\n if (!$addressForm.valid()) {\r\n return false;\r\n }\r\n\r\n $.getJSON(Urls.addEditAddress, $addressForm.serialize(), function (response) {\r\n if (!response.success) {\r\n $('#multiaddresserror').html(Resources.COULD_NOT_SAVE_ADDRESS);\r\n return;\r\n }\r\n $('#multiaddresserror').toggleClass('hidden', response.success);\r\n\r\n var address = response.address,\r\n $shippingAddress = $(target).closest('.shippingaddress'),\r\n $select = $shippingAddress.find('.select-address'),\r\n $selected = $select.find('option:selected'),\r\n newOption = '<option value=\"' + address.UUID + '\">' +\r\n ((address.ID) ? '(' + address.ID + ')' : address.firstName + ' ' + address.lastName) + ', ' +\r\n address.address1 + ', ' + address.city + ', ' + address.stateCode + ', ' + address.postalCode +\r\n '</option>';\r\n dialog.close();\r\n\r\n if (address.UUID !== originalUUID) {\r\n resetOptionValue = true;\r\n }\r\n\r\n if (add) {\r\n $('.shippingaddress select').removeClass('no-option').append(newOption);\r\n $('.no-address').hide();\r\n } else {\r\n $('.shippingaddress select').find('option[value=\"' + address.UUID + '\"]').html(newOption);\r\n }\r\n // if there's no previously selected option, select it\r\n if ($selected.length === 0 || $selected.val() === '' || resetOptionValue) {\r\n $select.find('option[value=\"' + address.UUID + '\"]').prop('selected', 'selected').trigger('change');\r\n }\r\n });\r\n });\r\n\r\n //preserve the uuid of the option for the hop up form\r\n if (selectedAddressUUID) {\r\n //update the form with selected address\r\n $addressList.find('option').each(function () {\r\n //check the values of the options\r\n if ($(this).attr('value') === selectedAddressUUID) {\r\n $(this).prop('selected', 'selected');\r\n $addressDropdown.trigger('change');\r\n }\r\n });\r\n originalUUID = selectedAddressUUID;\r\n }\r\n\r\n validator.init();\r\n}\r\n\r\n/**\r\n * @function\r\n * @description shows gift message box in multiship, and if the page is the multi shipping address page it will call initmultishipshipaddress() to initialize the form\r\n */\r\nexports.init = function () {\r\n initMultiGiftMessageBox();\r\n if ($('.cart-row .shippingaddress .select-address').length > 0) {\r\n \tvalidator.initForm('form[id$=\"multishipping_addressSelection\"]');\r\n }\r\n $('.edit-address').on('click', 'span', function (e) {\r\n dialog.open({url: this.attributes.href.value, options: {open: function () {\r\n address.init();\r\n addEditAddress(e.target);\r\n }}});\r\n });\r\n};\r\n\n},{\"../../dialog\":14,\"../../util\":93,\"../../validator-opc\":94,\"./address\":60,\"./formPrepare\":63}],66:[function(require,module,exports){\n'use strict';\r\n/**\r\n * We have created SPC JS file for handling all shipping related functionality for Single page checkout flow by using AJAX call.\r\n * and we have followed Site Genesis coding standard to complete the Single page Checkout Flow.\r\n * we have used abbreviated from single page checkout short name is SPC.\r\n * a) we are using $.get method to render the form html structure dynamically into DIV.\r\n * b) $.post method is used to send the data server for all single page checkout form submit functionality. \r\n * c) On AJAX event success call added the HTMl content to DIV of specific column. \r\n * Some important useful functions are used to achieve the SHIPPING column functionality.\r\n * 1) initCache() - Initializing the cache for Shipping column\r\n * 2) removePOBoxCaption() - Removing PO Box shipping code if it is not available\r\n * 3) initEvents() - Initializing the events for Shipping column \r\n * 4) giftMessageBox() - for Gift message\r\n * 5) updateSummary() - Refreshing the Summary section\r\n * 6) shippingContinueToCheckoutEvent()- Handled the Shipping form submit functionality\r\n * 7) init() - to initiate the default events ot functions.\r\n * */\r\nvar ajax = require('../../ajax'),\r\n progress = require('../../progress'),\r\n tooltip = require('../../tooltip'),\r\n util = require('../../util'),\r\n validator = require('../../validator-opc'),\r\n modal = require('../../modal').global,\r\n billing = require('./billing'),\r\n addressVerificationSvc = require('./spc-qas'),\r\n spccybcustom = require('./spccybcustom'),\r\n analytics = require('../../analytics');\r\n\r\nvar $cache, shippingMethods;\r\n/**\r\n * Initialize the cache for shipping page.\r\n * */\r\nfunction initCache() {\r\n var $formEle = $('form[id$=\"_shippingAddress\"]');\r\n $cache = {\r\n addrForm: {\r\n address1: $formEle.find('input[name$=\"_address1\"]'),\r\n address2: $formEle.find('input[name$=\"_address2\"]'),\r\n countryCode: $formEle.find('select[id$=\"_country\"]'),\r\n stateCode: $formEle.find('select[id$=\"_state\"]'),\r\n postalCode: $formEle.find('input[name$=\"_postal\"]'),\r\n city: $formEle.find('input[name$=\"_city\"]')\r\n },\r\n main: $('#main'),\r\n primary: $('#primary'),\r\n secondary: $('#secondary'),\r\n shippingcol: $('.spc-shipping .spc-column'),\r\n billingcol: $('.spc-billing .spc-column')\r\n };\r\n};\r\n\r\n// Removes 'PO Box shipping is not available' caption from address1 field if preference is true\r\nfunction removePOBoxCaption() {\r\n if (SitePreferences.ENABLE_POBOX_ADDRESS) {\r\n var $addressOne = $('input[name$=\"_address1\"]');\r\n $addressOne.closest(\".form-row\").find(\".form-caption\").text('');\r\n \tvar $addressTwo = $('input[name$=\"_address2\"]');\r\n \t$addressTwo.closest(\".form-row\").find(\".form-caption\").text('');\r\n }\r\n}\r\n\r\n//var militaryStateCode = SitePreferences.MILITARY_ADDRESS_STATE_CODE;\r\n//var militaryStateCodeArray = militaryStateCode.replace(/ /g,'').split(',');\r\nfunction selectAddressDropdown(){\r\n\t\t$('form[id=\"EditAddressForm\"]').on('change','select[name$=\"_shippingaddress_states_state\"]',function(){\r\n\t\t\tcheckNewAddress($('form[id=\"EditAddressForm\"]'),$(this));\r\n\t\t});\r\n}\t\r\nfunction checkNewAddress($form,$this){\r\n\t\r\n\tif($this.hasClass('state') ){//&& militaryStateCode!== null){\r\n\t\tvar selectedVal = $this.children(\"option:selected\").val();\r\n\t\tif($.inArray( selectedVal )!== -1){//if($.inArray( selectedVal, militaryStateCodeArray )!== -1){\r\n\t\t\t$form.find('.spc-military-address-alert-message.hide').removeClass('hide');\r\n\t\t}else{\r\n\t\t\t$form.find('.spc-military-address-alert-message').not('.hide').addClass('hide');\r\n\t\t}\r\n\t}\r\n}\r\n// function checkMilitaryAddress(){\r\n// \tif(militaryStateCode !== null){\r\n// \t\tvar $selected = $('form[id$=\"_shippingAddress\"]').find('.address-tile.selected');\r\n// \t var selectedAddressStateCode = $selected.find('.mini-address-location address').data('state-code');\r\n// \t if($.inArray( selectedAddressStateCode, militaryStateCodeArray )!== -1){\r\n// \t \t$selected.find('.spc-military-address-alert-message.hide').removeClass('hide');\r\n// \t\t}else{\r\n// \t\t\t$('form[id$=\"_shippingAddress\"]').find('.spc-military-address-alert-message').not('.hide').addClass('hide');\r\n// \t\t}\r\n// \t}\r\n// }\r\n/**\r\n * We have written the function for shipping column related events.\r\n * Below function is for creating Address event and edit address section.\r\n * */\r\nfunction initEvents() {\r\n // create New address link\r\n $(document).on('click', '.spc-shipping.active .address-create-spc', function(evt) {\r\n evt.preventDefault();\r\n evt.stopPropagation();\r\n var currentEvent = evt.currentTarget;\r\n var formInsertDiv = $(\".address-form-ajax\");\r\n $.get(util.appendParamToURL(Urls.spcAddShippingAddress, 'format', 'ajax'), function(data) {\r\n hideshowaddressform($(currentEvent), 'add');\r\n $(currentEvent).parents('.saved-addresses').addClass('edit-address-active');\r\n formInsertDiv.html(data);\r\n initializeAddUpdateAddress();\r\n var submitHandler = function() {\r\n if ($('.spc-shipping.active .address-create-spc').length > 0 && $('.spc-billing.active').length == 0) {\r\n var form = $('form[id=\"EditAddressForm\"]');\r\n $.post(Urls.addUpdateAddress, form.serialize())\r\n .done(function(data) {\r\n $cache.shippingcol.html(data);\r\n iterateShippingAddressTile();\r\n shippingContinueToCheckoutEvent();\r\n displaySaveAddressMessage(); \r\n });\r\n return false;\r\n } else {\r\n return true;\r\n }\r\n };\r\n\r\n validator.initForm('form[id=\"EditAddressForm\"]', submitHandler);\r\n addressVerificationSvc.init();\r\n removePOBoxCaption();\r\n //util.autoSuggestionAddressField('spc');\r\n selectAddressDropdown();\r\n });\r\n \r\n }) // edit address link for register user\r\n .on('click', '.spc-shipping.active .address-tile .address-edit-spc', function(evt) {\r\n evt.preventDefault();\r\n evt.stopPropagation();\r\n var currentEvent = evt.currentTarget;\r\n var element = document.getElementById(evt.currentTarget.id);\r\n var addressID = element.dataset.addressId;\r\n var addressCode = element.dataset.addressCode;\r\n var url = Urls.spcEditShippingAddress + addressID;\r\n var $this = $(this);\r\n var addressID = $this.data('addressId');\r\n var formInsertDiv = $('.address-form-ajax-' + addressID);\r\n $('.edit-add-address').show();\r\n $.get(url, function(data) {\r\n hideshowaddressform($(currentEvent), 'edit');\r\n if($(currentEvent).closest('.saved-addresses').find('.showmoreaddresses').hasClass('hide')) {\r\n $(currentEvent).closest('.address-list').find('.address-tile').not(\".selected\").addClass('hide');\r\n }\r\n \t$(currentEvent).closest('.address-tile').hide();\r\n formInsertDiv.html(data);\r\n initializeAddUpdateAddress();\r\n var submitHandler = function() {\r\n if ($('.spc-shipping.active .address-tile .address-edit-spc').length > 0 && $('.spc-billing.active').length == 0) {\r\n var form = $('form[id=\"EditAddressForm\"]');\r\n $.post(Urls.addUpdateAddress, form.serialize())\r\n .done(function(data) { \r\n $cache.shippingcol.html(data);\r\n iterateShippingAddressTile();\r\n shippingContinueToCheckoutEvent();\r\n displaySaveAddressMessage();\r\n });\r\n return false;\r\n } else {\r\n \t\treturn true;\r\n \t}\r\n };\r\n\r\n validator.initForm('form[id=\"EditAddressForm\"]', submitHandler);\r\n addressVerificationSvc.init();\r\n removePOBoxCaption();\r\n //util.autoSuggestionAddressField('spc');\r\n var setDefaultCheckbox = $('input[id$=\"_setdefault\"]');\r\n if (setDefaultCheckbox.prop('checked')) {\r\n setDefaultCheckbox.attr('disabled', 'true');\r\n }\r\n selectAddressDropdown();\r\n checkNewAddress($('form[id=\"EditAddressForm\"]'),$('select[name$=\"_shippingaddress_states_state\"]'));\r\n });\r\n $('.checkoutShippingAddress .hide-saved-address').addClass(\"hide\");\r\n \r\n })\r\n .on('click', '.back-button, .sp-add-address-title', function(evt) {\r\n \thideshowaddressform('', 'back');\r\n \tif ($('.checkoutShippingAddress .address-tile.selected').length < 1) { \r\n \t$('.checkoutShippingAddress .address-tile.address-default').removeClass('hide');\r\n }\r\n })\r\n // authenticated user address change\r\n .on('click', '.spc-shipping .address-list .address-tile', function(evt) {\r\n if ($(this).is('.selected, .default') || evt.target.nodeName == 'A') {\r\n \tif ($(this).closest('.saved-addresses').find('.showmoreaddresses').hasClass('hide')) {\r\n \t$(this).closest('.address-list').find('.address-tile').not(\".selected\").addClass('hide');\r\n \t$(this).closest('.saved-addresses').find('.showmoreaddresses').removeClass('hide');\r\n } \r\n \treturn false;\r\n }\r\n $('.address-list .address-tile').each(function() {\r\n $(this).removeClass('selected');\r\n $(this).removeClass('default');\r\n $(this).find('.icon-checkmark').addClass('hide')\r\n });\r\n if ($(this).closest('.saved-addresses').find('.showmoreaddresses').hasClass('hide')) {\r\n \t$(this).closest('.address-list').find('.address-tile').addClass('hide');\r\n \t$(this).closest('.saved-addresses').find('.showmoreaddresses').removeClass('hide');\r\n } \r\n $(this).addClass('selected').removeClass('hide');\r\n $(this).find('.icon-checkmark').removeClass('hide');\r\n $(this).closest('.checkoutShippingAddress').find('.hide-saved-address').addClass('hide');\r\n \r\n var element = document.getElementById(evt.currentTarget.id);\r\n if (element) {\r\n // var addressID = element.dataset.addressId;\r\n // // update address; on success update shipping method list\r\n // $.get(Urls.updateAddressDetails, {\r\n // addressID: addressID\r\n // }, function(response) {\r\n // updateShippingMethodList();\r\n // });\r\n \r\n\t\t\t var addressID = element.dataset.addressId;\r\n var $data = new FormData();\r\n $data.append( window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n $data.append( 'addressID', addressID);\r\n $.ajax({\r\n url: util.appendParamToURL(Urls.updateAddressDetails, 'format', 'ajax'),\r\n data: $data,\r\n processData: false,\r\n contentType: false,\r\n method: 'POST',\r\n success : function(response) {\r\n updateShippingMethodList();\r\n }\r\n });\r\n\r\n }\r\n checkSelectedAddress();\r\n })\r\n /**\r\n * Accordion functionality goes on below\r\n * */\r\n .on('click', '.spc-shipping-default .sp-accordion-arrow', function(event) {\r\n event.preventDefault();\r\n if ($('.shipping-options-section').hasClass('show-shipping')) {\r\n $('.shipping-options-section').hide();\r\n $('.icon-chevron-thin-left.icon-chevron-right').css({\r\n 'transform': 'rotate(360deg)'\r\n });\r\n } else {\r\n $('.shipping-options-section').show();\r\n $('.icon-chevron-thin-left.icon-chevron-right').css({\r\n 'transform': 'rotate(90deg)'\r\n });\r\n }\r\n $('.shipping-options-section').toggleClass('show-shipping');\r\n });\r\n\r\n // guest user address change\r\n var timer = null;\r\n $('form[id$=\"_shippingAddress\"]').on('change', 'input[name$=\"_addressFields_address1\"], input[name$=\"_addressFields_address2\"], select[name$=\"_addressFields_states_state\"], input[name$=\"_addressFields_city\"], input[name$=\"_addressFields_postal\"]', function() {\r\n \tcheckNewAddress($('form[id$=\"_shippingAddress\"]'),$(this));\r\n \tif (!validateAddrForm()) {\r\n return;\r\n }\r\n\r\n if (timer) {\r\n window.clearTimeout(timer);\r\n }\r\n\r\n timer = window.setTimeout(function() {\r\n $.post(Urls.setShippingAddressDetails, $('form[id$=\"_singleshipping_shippingAddress\"]').serialize(), function(result) {\r\n updateShippingMethodList();\r\n });\r\n }, 200);\r\n });\r\n\r\n $('input[name$=\"_shippingAddress_isGift\"]').on('click', giftMessageBox);\r\n $('input[name$=\"_cart_isGift\"]').on('click', giftMessageBox);\r\n \r\n}\r\n\r\n/**\r\n * @function\r\n * @description Initializes gift message box, if shipment is gift\r\n */\r\nfunction giftMessageBox() {\r\n // show gift message box, if shipment is gift\r\n $('.gift-message-text').toggleClass('hidden', $('input[name$=\"_shippingAddress_isGift\"]:checked').val() !== 'true');\r\n $('.complimentary-gift-container').toggleClass('hidden, hide', $('input[name$=\"_cart_isGift\"]:checked').val() !== 'true');\r\n}\r\n\r\n/**\r\n * this will show shipping address save message \r\n */\r\nfunction displaySaveAddressMessage() {\r\n\t var i = $('.saved-address-message').removeClass('hide'),\r\n scrollTop = $('.spc-shipping').offset().top;\r\n $(\"html, body\").animate({ scrollTop:scrollTop }, \"slow\"); \r\n i.fadeIn();\r\n setTimeout(function(){ i.fadeOut(); }, 3000); \r\n}\r\n\r\n\r\n/**\r\n * this will avoid 2 forms to be visible at the same time.\r\n */\r\n\r\nfunction hideshowaddressform(currentevt, action) {\r\n\tvar $submit = $('#dwfrm_singleshipping_shippingAddress button[value=\"Continue\"]');\r\n //util.autoSuggestionAddressField('spc');\r\n if (currentevt && action == 'add') {\r\n $('.edit-form-ajax').html('');\r\n $('.address-tile').hide();\r\n $('.saved-addresses .showmoreaddresses, .saved-addresses .address-create-spc, .saved-addresses .hide-saved-address').addClass('hide');\r\n } else if (currentevt && action == 'edit') {\r\n $('.spc-shipping .saved-addresses').removeClass('edit-address-active')\r\n $('.address-form-ajax, .edit-form-ajax').html('');\r\n $('.address-tile').hide();\r\n $('.saved-addresses .showmoreaddresses, .saved-addresses .address-create-spc, .saved-addresses .hide-saved-address').addClass('hide');\r\n } else {\r\n $('.address-form-ajax, .edit-form-ajax').html('');\r\n $('.spc-shipping .saved-addresses').removeClass('edit-address-active');\r\n $('.saved-addresses .showmoreaddresses, .saved-addresses .address-create-spc').removeClass('hide');\r\n $submit.prop('disabled', false);\r\n showCommonError(false, $submit);\r\n }\r\n if (action == 'back' && $('.checkoutShippingAddress .address-tile').length > 1 && ($('#spcShipping .address-tile:not(.selected)').css('display') == 'block' || !$('#spcShipping .address-tile:not(.selected)').hasClass('hide'))) {\r\n \t$('.saved-addresses .showmoreaddresses').addClass('hide');\r\n \t$('.saved-addresses .hide-saved-address').removeClass('hide');\r\n }\r\n}\r\n\r\n/**\r\n * @function\r\n * @description updates the order summary based on a possibly recalculated basket after a shipping promotion has been applied\r\n */\r\nfunction updateSummary(action) {\r\n var $summary = $('#secondary.summary');\r\n var couponError;\r\n\r\n if ($('.cart-coupon-code .error').length) {\r\n couponError = $('.cart-coupon-code .error').clone();\r\n }\r\n\r\n var showmsg = \"none\";\r\n if ($('.cart-coupon-code .success').length > 0) {\r\n showmsg = \"show\";\r\n }\r\n\r\n // indicate progress\r\n progress.show($('.checkout-progress-container'));\r\n\r\n // load the updated summary area\r\n $summary.load(Urls.spcSummaryRefreshURL + \"?showmsg=\" + showmsg, function() {\r\n \tif (action && action==\"couponApplied\")\r\n \t\t analytics.couponAppliedEvent();\r\n // hide edit shipping method link\r\n $summary.fadeIn('fast');\r\n\r\n // checkout checkout minicart on right side event handling\r\n addSummaryScrollbar();\r\n\r\n $summary.find('.checkout-mini-cart .minishipment .header a').hide();\r\n $summary.find('.order-totals-table .order-shipping .label a').hide();\r\n $('.cart-coupon-code').append(couponError);\r\n util.maximizeCheckoutSummary();\r\n if ($('.review-total-amt').length > 0) {\r\n $('.review-total-amt').html($('.order-value').text());\r\n }\r\n\r\n //$(\".checkout-mini-cart .accordion\").foundation();\r\n $(\".shipping-options-section\").hide();\r\n progress.hide();\r\n });\r\n}\r\n/**\r\n * Return Selected Address from Shipping Address tile.\r\n * */\r\nfunction getAddressFromTile() {\r\n var $selectedAddress = $(\".address-tile.selected address\");\r\n\r\n return {\r\n address1: $selectedAddress.data(\"address-one\"),\r\n address2: $selectedAddress.data(\"address-two\") || \"\",\r\n countryCode: $selectedAddress.data(\"country-code\"),\r\n stateCode: $selectedAddress.data(\"state-code\"),\r\n postalCode: $selectedAddress.data(\"postal-code\"),\r\n city: $selectedAddress.data(\"city\")\r\n };\r\n}\r\n/**\r\n * Get address form details from Dom Element\r\n * */\r\nfunction getAddressFromForm() {\r\n return {\r\n address1: $cache.addrForm.address1.val(),\r\n address2: $cache.addrForm.address2.val(),\r\n countryCode: $cache.addrForm.countryCode.val(),\r\n stateCode: $cache.addrForm.stateCode.val(),\r\n postalCode: $cache.addrForm.postalCode.val(),\r\n city: $cache.addrForm.city.val()\r\n };\r\n}\r\n/**\r\n * @function\r\n * @description Helper method which constructs a URL for an AJAX request using the\r\n * entered address information as URL request parameters.\r\n */\r\nfunction getShippingMethodURL(url, extraParams) {\r\n var params = User.isCustomerAuthenticated ? getAddressFromTile() : getAddressFromForm();\r\n return util.appendParamsToUrl(url, $.extend(params, extraParams));\r\n}\r\n\r\n/**\r\n * @function\r\n * @description selects a shipping method for the default shipment and updates the summary section on the right hand side\r\n * @param\r\n */\r\nfunction selectShippingMethod(shippingMethodID) {\r\n // nothing entered\r\n if (!shippingMethodID) {\r\n return;\r\n }\r\n // attempt to set shipping method\r\n var url = getShippingMethodURL(Urls.selectShippingMethodsList, {\r\n shippingMethodID: shippingMethodID\r\n });\r\n $.post(\r\n\t\turl,\r\n\t\t{'shippingMethodID' : shippingMethodID,\r\n\t\t 'csrf' : window.User.CSRFTokenValue},\r\n\t\tfunction(data) {\r\n\t\t\tupdateSummary();\r\n\t\t\tif (!data || !data.shippingMethodID) {\r\n\t\t\t\twindow.alert('Couldn\\'t select shipping method.');\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t\t $.ajax({\r\n\t\t \turl : Urls.spcUpdateShippingMethodList,\r\n\t\t \tsuccess : function (response){\r\n\t\t \t\t$('.applied-shipping-promotion').html($(response).find('.applied-shipping-promotion').html());\t\r\n\t\t \t}\r\n\t\t\t});\r\n\t\t\t// display promotion in UI and update the summary section,\r\n\t\t\t// if some promotions were applied\r\n\t\t\t$('.shippingpromotions').empty();\r\n\t\t},\"json\");\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Make an AJAX request to the server to retrieve the list of applicable shipping methods\r\n * based on the merchandise in the cart and the currently entered shipping address\r\n * (the address may be only partially entered). If the list of applicable shipping methods\r\n * has changed because new address information has been entered, then issue another AJAX\r\n * request which updates the currently selected shipping method (if needed) and also updates\r\n * the UI.\r\n */\r\nfunction updateShippingMethodList() {\r\n var $shippingMethodList = $('#shipping-method-list');\r\n if (!$shippingMethodList || $shippingMethodList.length === 0) {\r\n return;\r\n }\r\n var url = Urls.shippingMethodsJSON;\r\n $.ajax({\r\n \ttype: \"GET\",\r\n url: url,\r\n data : User.isCustomerAuthenticated ? getAddressFromTile() : getAddressFromForm(),\r\n success: function (data) {\r\n if (!data) {\r\n window.alert('Couldn\\'t get list of applicable shipping methods.');\r\n return false;\r\n }\r\n\r\n // shipping methods remain unchanged; update summary as selected method may/may not change\r\n if (shippingMethods && shippingMethods.toString() === data.toString()) {\r\n updateSummary();\r\n return true;\r\n }\r\n\r\n // We need to update the UI. The list has changed.\r\n // Cache the array of returned shipping methods.\r\n shippingMethods = data;\r\n // indicate progress\r\n //progress.show($shippingMethodList);\r\n progress.show($('.checkout-progress-container'));\r\n // load the shipping method form\r\n var smlUrl = getShippingMethodURL(Urls.spcShippingMethodsList);\r\n $shippingMethodList.load(smlUrl, function() {\r\n $shippingMethodList.fadeIn('fast');\r\n // rebind the radio buttons onclick function to a handler.\r\n $shippingMethodList.find('[name$=\"_shippingMethodID\"]').on(\"click\", function() {\r\n if (!$(this).closest('.shipping-method').hasClass('spc-shipping-default')) {\r\n selectShippingMethod($(this).val());\r\n $('.icon-chevron-thin-left.icon-chevron-right').css({\r\n 'transform': 'rotate(360deg)'\r\n });\r\n $(\".shipping-options-section\").removeClass(\"show-shipping\");\r\n }\r\n });\r\n\r\n // update the summary\r\n updateSummary();\r\n progress.hide();\r\n tooltip.init();\r\n //if nothing is selected in the shipping methods select the first one\r\n if ($shippingMethodList.find('.input-radio:checked').length === 0) {\r\n $shippingMethodList.find('.input-radio:first').prop('checked', 'checked');\r\n }\r\n });\r\n }\r\n });\r\n}\r\n\r\n/**\r\n * Check there is an address selected, if not, disable the continue button\r\n * */\r\nfunction checkSelectedAddress() {\r\n var $form = $('form[id$=\"_shippingAddress\"]');\r\n var $submit = $form.find('button[type=\"submit\"]');\r\n\r\n // enable the submit button if there are no shipping card\r\n // if there are, user must have at least 1 selected shipping card for the button to be enabled\r\n if ($form.find('.address-tile').length == 0 || $form.find('.address-tile.selected').length) {\r\n \t//checkMilitaryAddress();\r\n $submit.prop('disabled', false);\r\n showCommonError(false, $submit);\r\n } else {\r\n $submit.prop('disabled', true);\r\n showCommonError(true, $submit);\r\n }\r\n}\r\n/**\r\n * Return the the Validated address form from getAddressFromFormFunction.\r\n * */\r\nfunction validateAddrForm() {\r\n var addr = getAddressFromForm();\r\n return addr.address1 && addr.city && addr.postalCode && addr.stateCode && addr.countryCode;\r\n}\r\n/**\r\n * Applying Coupon field to Checkout flow.\r\n * */\r\nfunction initCouponCodeField() {\r\n\r\n $('.cart-coupon-code input').on('keydown', function(e) {\r\n var couponCode = $('.cart-coupon-code input').val();\r\n if (couponCode == '') {\r\n $('#add-coupon').prop('disabled', true);\r\n } else {\r\n $('#add-coupon').prop('disabled', false);\r\n }\r\n\r\n if (e.which === 13) {\r\n e.preventDefault();\r\n $('#add-coupon').trigger(\"click\");\r\n }\r\n })\r\n}\r\n/**\r\n * Below function for Shipping column submit function and we will render on\r\n * billing column section(shippingContinueToCheckoutEvent).\r\n * Below mentioned parameter(\"&dwfrm_singleshipping_shippingAddress_save=Continue\") is require to send server \r\n * because with this parameter the SFCC form submit action is achieved at server side level by AJAX call.\r\n * */\r\nfunction shippingContinueToCheckoutEvent() {\r\n $cache.primary.find('form#dwfrm_singleshipping_shippingAddress').on('submit', function(e) {\r\n e.preventDefault();\r\n $('.sp-add-address-title').trigger('click'); \r\n var $restrictedProd = $('.spc-restricted-proderr'); \r\n $restrictedProd.html('');\r\n var form = $('form[id=\"dwfrm_singleshipping_shippingAddress\"]');\r\n addressVerificationSvc.init();\r\n form.validate();\r\n updateSummary();\r\n $('.checkoutShippingAddress .hide-saved-address').trigger('click');\r\n var checkOtherForm = false;\r\n if(form.find('form').length > 0){\r\n checkOtherForm = !form.find('form').valid();\r\n }\r\n\r\n if (!form.valid() || checkOtherForm) {\r\n util.formFieldFocusOnError(form);\r\n scrollToErrorField(form.find('form button[type=submit]'));\r\n return false;\r\n }\r\n /***\r\n * Below parameter is require because with this parameter the SFCC form submit action is achieved.\r\n */\r\n var formData = form.serialize() + \"&dwfrm_singleshipping_shippingAddress_save=Continue\";\r\n $.post(Urls.spcSingleShipping, formData)\r\n .done(function(data) {\r\n hideshowaddressform();\r\n if (data.success == false) {\r\n $restrictedProd.html(data.ShippingError);\r\n } else {\r\n $restrictedProd.html('');\r\n util.setSpcCheckoutSteps(3);\r\n util.singlePageNextCheckoutStep(3);\r\n var postcode = $('.postcode').val();\r\n $cache.billingcol.html(data);\r\n if ($('.spc-billing').length > 0) {\r\n $('.spc-billing').find('.number').trigger('focusout');\r\n }\r\n $('#dwfrm_billing_billingAddress_addressFields_country').trigger('change');\r\n $('.postcode').val(postcode);\r\n billing.loadBillingColData(); \r\n spccybcustom.init();\r\n scrollActiveSection();\r\n //util.isApplePayPresent();\r\n updateSummary();\r\n if($('.guest-shipping-address-tile').length > 0){\r\n var guestName = $('#dwfrm_singleshipping_shippingAddress_addressFields_firstName').val() + ' ' + $('#dwfrm_singleshipping_shippingAddress_addressFields_lastName').val();\r\n $('.guest-shipping-address-tile').find('.mini-address-name .name-block').text(guestName);\r\n var guestAddress = '<div>'+$('#dwfrm_singleshipping_shippingAddress_addressFields_address1').val()+'</div>';\r\n guestAddress += '<div>'+$('#dwfrm_singleshipping_shippingAddress_addressFields_address2').val()+'</div>';\r\n guestAddress += '<div>'+$('#dwfrm_singleshipping_shippingAddress_addressFields_city').val() + '</div>';\r\n guestAddress += '<div>'+$('#dwfrm_singleshipping_shippingAddress_addressFields_states_state').val() +'</div>';\r\n guestAddress += '<div>'+$('#dwfrm_singleshipping_shippingAddress_addressFields_postal').val()+'</div>';\r\n guestAddress += '<div class=\"phone\">'+$('#dwfrm_singleshipping_shippingAddress_addressFields_phone').val()+'</div>';\r\n if($('#shipping-email').val() !== undefined){\r\n guestAddress += '<div>'+$('#shipping-email').val()+'</div>';\r\n }\r\n $('.guest-shipping-address-tile').find('.mini-address-location').html(guestAddress) \r\n }\r\n }\r\n if ($('.spc-billing .newsletter-signup-check .addtoemaillist').is(\":checked\")) {\r\n \t\t$('.spc-billing .newsletter-signup-check .newsletter-signup-consent-text').show();\r\n \t} else {\r\n \t\t$('.spc-billing .newsletter-signup-check .newsletter-signup-consent-text').hide();\r\n \t}\r\n //calling GA event for next checkout step.\r\n \t analytics.initSPCBillingEvent(); \r\n });\r\n return false;\r\n });\r\n \r\n $cache.primary.find('#dwfrm_singleshipping_shippingAddress button[type=\"submit\"]').on('click' , function() {\r\n var $submit = $(this);\r\n var checkOtherForm = false;\r\n if($submit.closest('form').find('form').length > 0){\r\n checkOtherForm = !$submit.closest('form').find('form').valid();\r\n }\r\n\t\tif(!$submit.closest('form').valid() || checkOtherForm){\r\n $submit.prop('disabled', true);\r\n showCommonError(true, $submit);\r\n\t\t} else {\r\n $submit.prop('disabled', false);\r\n showCommonError(false, $submit);\r\n }\r\n if($submit.closest('form').find('form').length > 0){\r\n scrollToErrorField($submit.closest('form').find('form button[type=\"submit\"]'));\r\n } else {\r\n scrollToErrorField($submit);\r\n }\r\n });\r\n}\r\n/**\r\n * Iterate the shipping address section and removing the default selected option\r\n * in Address tile for shipping section. Firing the trigger click event to select the default address. \r\n * */\r\nfunction iterateShippingAddressTile(){\r\n\t$(document).find('.spc-shipping.active div.address-list div.address-tile').each(function() {\r\n\t if ($(this).hasClass('default') || $(this).hasClass('selected') || $(this).hasClass('address-default')) {\r\n\t $(this).removeClass('selected');\r\n\t $(this).removeClass('default');\r\n\t $(this).trigger(\"click\");\r\n\t }\r\n\t});\r\n}\r\n\r\nfunction initializeAddUpdateAddress(){\r\n $('#EditAddressForm .apply-button').on('click', function(e){\r\n scrollToErrorField($(this));\r\n })\r\n}\r\n\r\nfunction scrollActiveSection() {\r\n\tsetTimeout(function(){\r\n if($('.onepage-checkout-container.order-review-summary').length > 0){\r\n $('html, body').scrollTo($('.order-review-header'),{offset:0, duration:1000});\r\n } else {\r\n $('html, body').scrollTo($('.spc-container .step.active.inprogress'),{offset:0, duration:1000});\r\n } \r\n }, 500)\r\n}\r\n\r\nfunction scrollToErrorField(currentBtn) {\r\n var errorFieldTop = currentBtn.closest('form');\r\n if(!errorFieldTop.valid()){\r\n setTimeout(function(){\r\n $('html, body').scrollTo(errorFieldTop.find('.error-placement').eq(0).closest('.form-row'),{offset:0, duration:1000});\r\n }, 2000);\r\n }\r\n}\r\n\r\n\r\nfunction showCommonError(status, form){\r\n if(status){\r\n form.closest('form').addClass('invalid-form');\r\n } else {\r\n form.closest('form').removeClass('invalid-form');\r\n }\r\n \r\n}\r\n/**\r\n * Initializes the all Shipping page events.\r\n * */\r\nexports.init = function() {\r\n if ($('.spc-container .spc-shipping').length > 0) {\r\n initCache();\r\n initEvents();\r\n shippingContinueToCheckoutEvent();\r\n util.singlePageNextCheckoutStep(window.SessionAttributes.SPC_CHKOUTSTEPS);\r\n util.selectbox();\r\n addressVerificationSvc.init();\r\n\r\n if (window.User.isCustomerAuthenticated == false) {\r\n $('.checkout-shipping').find('.set-default-cb').hide();\r\n }\r\n removePOBoxCaption();\r\n validator.initForm('form[name$=\"shippingAddress_save\"]');\r\n validator.initForm('form[id$=\"singleshipping_shippingAddress\"]');\r\n //$(document).find('.checkoutShippingAddress').find('input[id$=\"_address1\"]').attr(\"autocomplete\", \"nope\");\r\n giftMessageBox();\r\n //updateShippingMethodList();\r\n initCouponCodeField();\r\n iterateShippingAddressTile();\r\n \r\n $(document).on('change', '.shippingMethodSelect', function() {\r\n selectShippingMethod($(this).val());\r\n });\r\n checkSelectedAddress();\r\n }\r\n};\r\n\r\nexports.updateShippingMethodList = updateShippingMethodList;\r\nexports.ShippingUpdateSummary = updateSummary;\r\nexports.scrollActiveSection = scrollActiveSection;\r\nexports.showCommonErrorForForm=showCommonError;\r\nexports.scrollToErrorField=scrollToErrorField;\n},{\"../../ajax\":1,\"../../analytics\":2,\"../../modal\":27,\"../../progress\":78,\"../../tooltip\":92,\"../../util\":93,\"../../validator-opc\":94,\"./billing\":61,\"./spc-qas\":67,\"./spccybcustom\":68}],67:[function(require,module,exports){\n'use strict';\r\nvar cache = {};\r\n\r\nfunction initCache() {\r\n\tif ($('#EditAddressForm').length > 0) {\r\n\t\tcache[\"$formId\"] = '#EditAddressForm';\r\n\t\tcache[\"$form\"] = $('#EditAddressForm');\r\n\t\tcache[\"$source\"] = 'dwfrm_shippingaddress';\r\n\t\tcache[\"$save\"] = $('#EditAddressForm').find('.apply-button').attr('name');\r\n\t} else if ($('#dwfrm_singleshipping_shippingAddress').length > 0) {\r\n\t\tcache[\"$formId\"] = '#dwfrm_singleshipping_shippingAddress';\r\n\t\tcache[\"$form\"] = $('#dwfrm_singleshipping_shippingAddress');\r\n\t\tcache[\"$source\"] = 'dwfrm_singleshipping_shippingAddress_addressFields';\r\n\t\tcache[\"$save\"] = 'dwfrm_singleshipping_shippingAddress_save';\r\n\t}\r\n\r\n\t//cache[\"$modal\"] = modal.create(\"#qas-modal\", \"#qas-modal .modal-body\", {closeOnClick: false, closeOnEsc: false});\r\n}\r\n\r\nfunction initEvents() {\r\n\tif (cache.$form && cache.$form.length > 0) {\r\n\t\tcache.$form.off('click').on('click', ' button[name=\"' + cache.$save + '\"]', validate);\r\n\t}\r\n}\r\n\r\nfunction submitForm() {\r\n\tcache.$form.append('<input type=\"hidden\" name=\"' + cache.$save + '\"/>');\r\n\tcache.$form.submit();\r\n}\r\n\r\nfunction validate(action) {\r\n\tif ($('#dwfrm_singleshipping_shippingAddress').length > 0 && !$('#EditAddressForm').is(':visible')) {\r\n cache.$formId = '#dwfrm_singleshipping_shippingAddress';\r\n cache.$form = $('#dwfrm_singleshipping_shippingAddress');\r\n cache.$source = 'dwfrm_singleshipping_shippingAddress_addressFields';\r\n cache.$save = 'dwfrm_singleshipping_shippingAddress_save';\r\n }\r\n\tif (!cache.$form.validate().form()) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tvar data = cache.$form.serialize() + '&source=' + cache.$source;\r\n\tif (typeof (action) === 'string') {\r\n\t\tdata = data + '&dwfrm_addForm_action=' + action;\r\n\t}\r\n\r\n\tsubmitForm();\t\r\n\r\n\treturn false;\r\n}\r\n\r\nvar qas = {\r\n\tinit: function () {\r\n\t\tinitCache();\r\n\t\tinitEvents();\r\n\t}\r\n};\r\n\r\nmodule.exports = qas;\n},{}],68:[function(require,module,exports){\n'use strict';\r\n/**\r\n * We have made this JS file for Singlepage Checkout flow only.\r\n * We made it for including the Paypal Smart Pay button on AJAX call.\r\n * */\r\nexports.init = function() {\r\n\tif ($('.spc-container').length > 0) {\t\r\n\t\t$(\"#generic-form-submit\").on('submit',function(e){\r\n\t\t\tvar validator = $(this).validate();\r\n\t\t\tif(validator.form())\r\n\t\t\t\treturn true;\r\n\t\t\telse\r\n\t\t\t\treturn false;\r\n\t\t}); \t\r\n\t\t\r\n\t // for Alipay Intermediate\r\n\t\tif($(\"body\").hasClass(\"cyb_alipayintermediate\"))\r\n\t\t{\r\n\t\t\tvar loaded = false;\r\n\t\t\tsetTimeout(function(){\r\n\t\t\t\tdocument.RedirectForm.submit();\r\n\t\t\t\tloaded = true;\r\n\t\t\t},1000);\t\r\n\t\t}\r\n\t\r\n\t// For FingerPrint Unit testing \r\n\t\tif($(\"body\").hasClass(\"cyb_testfingerprintRedirect\"))\r\n\t\t{\r\n\t\t\tvar url_loc = document.getElementById(\"URl_redirect\").value;\r\n\t\t\tsetTimeout(function(){location.href=url_loc} , 1000); \r\n\t\t}\r\n\t\t\r\n\t\t// For Payerauth during checkout \r\n\t\tif($(\"div\").hasClass(\"payerauth\"))\r\n\t\t{\t\r\n\t\t\tdocument.PAInfoForm.submit();\r\n\t\t}\t\r\n\t\t// For payerauth during Credit card \r\n\t\tif($(\"body\").hasClass(\"cyb_payerauthenticationredirect\"))\r\n\t\t{\tdocument.RedirectForm.submit();\r\n\t\t\t\r\n\t\t}\t\r\n\t\t// For payerauth during Unit testing \r\n\t\tif($(\"body\").hasClass(\"cyb_unitTest_payerauth\"))\r\n\t\t{\t\r\n\t\t\tdocument.RedirectForm.submit();\r\n\t\t\t\r\n\t\t}\t\r\n\t\t// For payer auth during Unit testing \r\n\t\tif($(\"div\").hasClass(\"cyb_unitTest_payerauthsubmit\"))\r\n\t\t{\t\r\n\t\t\tdocument.PAInfoForm.submit();\r\n\t\t\t\r\n\t\t}\t\t\r\n\t\t// For Secure Acceptance Redirect \r\n\t\tif($(\"body\").hasClass(\"cyb_sa_redirect\"))\r\n\t\t{\t\r\n\t\t\tvar url_loc = document.getElementById(\"redirect_url_sa\").value;\r\n\t\t\twindow.top.location.replace(url_loc);\r\n\t\t\t\r\n\t\t}\r\n\t\t// For Secure Acceptance Iframe \r\n\t\tif($(\"div\").hasClass(\"SecureAcceptance_IFRAME\"))\r\n\t\t{\t\r\n\t\t\tvar url_loc = document.getElementById(\"sa_iframeURL\").value;\r\n\t\t\t$(\".SecureAcceptance_IFRAME\").append('<iframe src='+url_loc+' name=\"hss_iframe\" width=\"78\" height=\"630\" scrolling=\"no\" />');\r\n\t\t\t\r\n\t\t}\t\r\n\t\t// For Secure Acceptance Iframe \r\n\t\tif($(\"body\").hasClass(\"sa_iframe_request_form\"))\r\n\t\t{\t\r\n\t\t\tdocument.form_iframe.submit();\r\n\t\t}\r\n\t\t// For Secure Acceptance \r\n\t\tif($(\"body\").hasClass(\"cyb_sa_request_form\"))\r\n\t\t{\t\r\n\t\t\tdocument.ePayment.submit();\r\n\t\t}\t\r\n\t\t\t\r\n\t //FOR POS\r\n\t\t\r\n\t\t$(\"#entry-mode-pos_unittest select.input-select\").on(\"change\", function(){\r\n\t\t\tif(this.value == \"swiped\")\r\n\t\t\t\t$(\"#card-section, #sample-card-section\").css(\"display\",\"none\");\r\n\t\t\telse if(this.value == \"keyed\")\r\n\t\t\t\t$(\"#card-section, #sample-card-section\").css(\"display\",\"block\");\r\n\t\t});\t\r\n\t\tvar requestId,billingAgreementFlag,\t\t\t\t\t//A Flag to show whether user has opted for Billing Agreement or not\r\n\t\tbillingAgreementButton,\t\t\t\t\t//The Billing Agreement Checkbox\r\n\t\tbillingAgreementID,\t\t\t\t\t\t//Billing Agreement ID\r\n\t\tisPayPalCredit=false;\t\t\t\t\t//A Flag to show whether user has opted for PayPal Credit Card\r\n\t\tfunction toggleForm(actions) {\r\n\t\t return isValid() ? actions.enable() : actions.disable();\r\n\t\t}\r\n\t\tfunction isValid() {\r\n\t\t\tvar validator = $('.checkout-billing').validate();\r\n\t\t\t if ( validator.form()) {\r\n\t\t\t\t return true;\r\n\t\t\t }else{\r\n\t\t\t\t return false;\r\n\t\t\t }\r\n\t }\r\n\t\tfunction onChangeForm(handler) {\r\n\t $('.checkout-billing').on('change', handler);\r\n\t }\r\n\t\tvar config = {\r\n\t\t\t\tenv: 'sandbox', // sandbox | production\r\n\t\t\t commit: true,\r\n\t\t\t payment: function() {\r\n\t\t\t var CREATE_URL = Urls.paypalinitsession;\r\n\t\t\t if($('#paypal-credit-container').length>0 && $('#paypal-credit-container').is(\":visible\")){\r\n\t\t\t \t\tisPayPalCredit = true;\r\n\t\t\t \t}else{\r\n\t\t\t \t\tisPayPalCredit =false;\r\n\t\t\t \t}\r\n\t\t\t billingAgreementButton = document.getElementById(\"billingAgreementCheckbox\");\r\n\t\t\t //billingAgreementFlag - This variable is used to indicate if billing agreement creation is request or not\r\n\t\t\t billingAgreementFlag = (billingAgreementButton==null)?false:billingAgreementButton.checked;\r\n\t\t\t //Append a parameter to URL when Billing Agreement is checked\r\n\t\t\t if(billingAgreementFlag){\r\n\t\t\t \tCREATE_URL = CREATE_URL + \"?billingAgreement=true\";\r\n\t\t\t } else if(isPayPalCredit){\r\n\t\t\t \t//Append a parameter to URL when PayPal Credit is used\r\n\t\t\t \tCREATE_URL = CREATE_URL + \"?isPayPalCredit=true\";\r\n\t\t\t }\r\n\t\t\t return paypal.request.post(CREATE_URL)\r\n\t\t\t .then(function(res) {\r\n\t\t\t \trequestId=res.requestID;\r\n\t\t\t return res.processorTransactionID;\r\n\t\t\t });\r\n\t\t\t }, \r\n\t\t\t onAuthorize: function(data, actions) {\r\n\t\t\t var data = {\r\n\t\t\t \trequestId : requestId,\t\r\n\t\t\t \tbillingAgreementFlag : billingAgreementFlag,\r\n\t\t\t paymentID: data.paymentID,\r\n\t\t\t payerID: data.payerID,\r\n\t\t\t isPayPalCredit: isPayPalCredit\r\n\t\t\t };\r\n\t\t\t \r\n\t\t\t \r\n\t\t\t var form = $('<form action=\"' + Urls.paypalcallback + '\" method=\"post\">' +\r\n\t\t\t '<input type=\"hidden\" name=\"requestId\" value=\"' + requestId + '\" />' +\r\n\t\t\t '<input type=\"hidden\" name=\"billingAgreementFlag\" value=\"' + billingAgreementFlag + '\" />' +\r\n\t\t\t '<input type=\"hidden\" name=\"paymentID\" value=\"' + data.paymentID + '\" />' +\r\n\t\t\t '<input type=\"hidden\" name=\"payerID\" value=\"' + data.payerID + '\" />' +\r\n\t\t\t '<input type=\"hidden\" name=\"isPayPalCredit\" value=\"' +isPayPalCredit + '\" />' +\r\n\t\t\t '</form>');\r\n\t\t\t $('body').append(form);\r\n\t\t\t form.trigger(\"submit\");\r\n\t\t\t }\r\n\t\t\t};\r\n\t\tif(SitePreferences.ISPAYPALENABLED && $('.paypal-button-container-mini').length>0){\r\n\t\tpaypal.Button.render(config,'.paypal-button-container-mini');\r\n\t\t}\r\n\t\tif(SitePreferences.ISPAYPALENABLED && $('.paypal-button-container-cart1').length>0){\r\n\t\t\tpaypal.Button.render(config,'.paypal-button-container-cart1');\t\r\n\t\t}\r\n\t\tif(SitePreferences.ISPAYPALENABLED && $('.paypal-button-container-cart2').length>0){\r\n\t\t\tpaypal.Button.render(config,'.paypal-button-container-cart2');\r\n\t\t}\r\n\t\tif(SitePreferences.ISPAYPALENABLED && $('#paypal-button-container').length>0){\r\n\t\t\tpaypal.Button.render(config,'#paypal-button-container');\r\n\t\t}\r\n\t\t//Settings for PayPal Credit Card Button\r\n\t\tif(SitePreferences.ISPAYPALENABLED && $('#paypal-credit-container').length>0){\r\n\t\t\tconfig.style ={\r\n\t\t\t\t\tlabel: 'credit',\r\n\t\t size: 'small', // small | medium\r\n\t\t shape: 'rect' // pill | rect\r\n\t\t\t\t};\r\n\t\t\t\r\n\t\t\tpaypal.Button.render(config,'#paypal-credit-container');\r\n\t\t}\r\n\t\t/*\r\n\t\t * If billing agreement ID already exists in the user profile then a different button\r\n\t\t * is displayed on the the page. This function handles the action of that button.\r\n\t\t * This functions directly calls checkstatusservice\r\n\t\t */\r\n\t\t$('.billingAgreementExpressCheckout').on(\"click\", function(e){\r\n\t\t\te.preventDefault();\r\n\t\t\t var form = $('<form action=\"' + Urls.paypalcallback + '\" method=\"post\">' +\r\n\t\t\t '</form>');\r\n\t\t\t $('body').append(form);\r\n\t\t form.trigger(\"submit\");\r\n\t\t});\r\n\t\t\r\n\t\t/*\r\n\t\t *This code has been used to initialize, load and authorize klarna widget\r\n\t\t *and to process preapproval token returned by klarna auth service \r\n\t\t */\r\n\t\tif($('#processorToken').length > 0){\r\n\t \tvar klarnaToken = $('#processorToken').val();\r\n\t \tvar token ={};\r\n\t \ttoken.client_token=klarnaToken;\r\n\t \tKlarna.Credit.init(token);\r\n\t \tKlarna.Credit.load({\r\n\t\t\t\tcontainer: \"#klarna_container\"\r\n\t\t\t\t}, function(res) {\r\n\t\t\t\t\tif (res[\"show_form\"] == true){\r\n\t\t\t\t\t\tdocument.getElementById(\"auth_button\").innerHTML = \"<br><button id=\\\"klarnaPayButton\\\" type=\\\"button\\\" name=\\\"buy\\\">Pay</button>\";\r\n\t\t\t\t\t\t$(\"#klarnaPayButton\").on(\"click\", function(){\r\n\t\t\t\t\t\t\tauthorizeKlarnaOrder();\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t});\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t}\r\n\t\t\t\t\t\r\n\t\t\t});\r\n\t \twindow.authorizeKlarnaOrder = function (){\r\n\t\t\t\t Klarna.Credit.authorize(function(res) {\r\n\t\t\t\t\t if(res[\"approved\"] == true){\r\n\t\t\t\t\t\tdocument.getElementById(\"klarnaAuthToken\").value=res[\"authorization_token\"];\r\n\t\t\t\t\t\t$('.submit-order button[type=\"submit\"]').trigger(\"click\");\r\n\t\t\t\t\t }\r\n\t\t\t\t\t});\r\n\t\t\t }\r\n\t }\r\n\t}\r\n};\r\n\n},{}],69:[function(require,module,exports){\n'use strict';\r\n\r\nvar productTile = require('../product-tile'),\r\n\trecommendations = require('./product/recommendations');\r\n\r\nexports.init = function () {\r\n\tproductTile.init();\r\n\trecommendations();\r\n\t$('#homepage-hero').slick({\r\n\t\tarrows: true,\r\n\t\tautoplay: true,\r\n\t\tautoplaySpeed: 4000,\r\n\t\tdots: true,\r\n\t\tslidesToShow: 1,\r\n\t\tslidesToScroll: 1,\r\n\t\tresponsive: [{\r\n\t\t\tbreakpoint: 480,\r\n\t\t\tsettings: {\r\n\t\t\t\tarrows: false\r\n\t\t\t}\r\n\t\t}]\r\n\t});\r\n\t$('#homepage-hero').on('beforeChange', function(event, slick, currentSlide, nextSlide){\r\n\t\tvar $nextSlide = $('#homepage-hero .slick-slide[data-slick-index=\"' + nextSlide + '\"]');\r\n\t\tvar $promoPosition = nextSlide + 1;\r\n\t\tvar $promoId = $nextSlide.find('.hero-slide').attr('data-promotion_id');\r\n\t\tvar $promoName = $nextSlide.find('.hero-slide').attr('data-promotion_name');\r\n\t\tif($promoId && $promoName) {\r\n\t\t\twindow.dataLayer.push({\r\n\t\t\t\t\"event\": \"eePromoView\",\r\n\t\t\t\t\"pageCategory\": \"Home Page\",\r\n\t\t\t\t\"pageSubCategory\": \"Storefront\",\r\n\t\t\t\t'promotions': [{\r\n\t\t\t\t\t\"id\": $promoId,\r\n\t\t\t\t\t\"name\": $promoName,\r\n\t\t\t\t\t\"creative\": \"summer_banner2\",\r\n\t\t\t\t\t\"position\": $promoPosition\r\n\t\t\t\t}]\r\n\t\t\t})\r\n\t\t}\r\n\t});\r\n\t\r\n\t$('.sub-feature-article').slick({\r\n\t\tarrows: false,\r\n\t\tdots: false,\r\n\t\tinfinite: false,\r\n\t\tslidesToShow: 3,\r\n\t\tslidesToScroll: 3,\r\n\t\tresponsive: [{\r\n\t\t\tbreakpoint: 480,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 1,\r\n\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\tinfinite: true,\r\n\t\t\t\tarrows: false,\r\n\t\t\t\tdots: true\r\n\t\t\t}\r\n\t\t}]\r\n\t});\r\n};\n},{\"../product-tile\":77,\"./product/recommendations\":54}],70:[function(require,module,exports){\n'use strict';\r\n\r\nexports.init = function () {\r\n\t$('.store-details-link').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t});\r\n};\r\n\n},{}],71:[function(require,module,exports){\n'use strict';\r\n\r\n//function to open accordion by default on one layout only\r\nfunction updateSummaryAccordion() {\r\n\t//For Cart,Shipping,Billing page promo code form \r\n\t$(document).on('keydown', '.cart-coupon-code input', function (e) {\r\n\t\tif (e.which === 13) {\r\n\t\t\te.preventDefault();\r\n\t\t\t$('#add-coupon').trigger('click');\r\n\t\t}\r\n\t});\r\n\tif ($('.reviewstepclass').length > 0) {\r\n\t\t$('.checkout-products-accordion .accordion_title').addClass('open');\r\n\t\t$('.checkout-products-accordion .accordion_description').show();\r\n\t}\r\n\r\n\tif ($('.pt_cart').length > 0 && $(window).width() > 768 && $('.order-help-container').length > 0) {\r\n\t\t$('.order-help-container h3').addClass('open');\r\n\t\t$('.order-help-container .accordion_description').show();\r\n\t} else {\r\n\t\t$('.order-help-container h3').removeClass('open');\r\n\t\t$('.order-help-container .accordion_description').hide();\r\n\t}\r\n}\r\n\r\n//Place order button sticky\r\nfunction stickyPlaceOrder() {\r\n\t$(window).on('scroll', function () {\r\n\t\tif ($(window).width() < 769) {\r\n\t\t\tif ($('.checkout-step.review .place-order-button').isInViewport()) {\r\n\t\t\t\t$('.place-order-checkout').removeClass('show');\r\n\t\t\t} else {\r\n\t\t\t\t$('.place-order-checkout').addClass('show');\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n}\r\n\r\n\r\nexports.init = function () {\r\n\tupdateSummaryAccordion();\r\n\t$(window).on('resize', function () {\r\n\t\tif ($('.cart-right-column').length > 0 || $('.checkout-right-column').length > 0) {\r\n\t\t\tupdateSummaryAccordion();\r\n\t\t}\r\n\t});\r\n\tif ($('.checkout-step.review').length) {\r\n\t\tstickyPlaceOrder();\r\n\t}\r\n};\n},{}],72:[function(require,module,exports){\n'use strict';\r\n\r\nvar addToCart = require('./product/addToCart'),\r\n\tproductTile = require('../product-tile');\r\n\r\n\r\nfunction initTutorialCarousel() {\r\n\t$('.related-carousel-wrapper .tutorial-wrapper').slick({\r\n\t\tinfinite: true,\r\n\t\tslidesToShow: 4,\r\n\t\tslidesToScroll: 4,\r\n\t\tdots: true,\r\n\t\tarrows: false,\r\n\t\tresponsive: [{\r\n\t\t\t\tbreakpoint: 1024,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: 3,\r\n\t\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\t\tinfinite: true,\r\n\t\t\t\t\tarrows: false,\r\n\t\t\t\t\tdots: true\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\tbreakpoint: 640,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: 1,\r\n\t\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\t\tinfinite: true,\r\n\t\t\t\t\tarrows: false,\r\n\t\t\t\t\tdots: true\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t]\r\n\t});\r\n\r\n\tif ($(\"#thumbnails li\").length == 0) {\r\n\t\treturn false;\r\n\t} else if ($(\"#thumbnails li\").length > 1 && window.innerWidth > 767) {\r\n\t\ttutorialThumbnailCarousel();\r\n\t} else if ($(\"#thumbnails li\").length > 1 && window.innerWidth < 768) {\r\n\t\ttutorialMainImageCarousel();\r\n\t}\r\n\ttutorialImages();\r\n}\r\n\r\nfunction tutorialThumbnailCarousel() {\r\n\t$('#thumbnails ul').slick({\r\n\t\tdots: false,\r\n\t\tinfinite: true,\r\n\t\tarrows: true,\r\n\t\tvertical: true,\r\n\t\tslidesToShow: 4,\r\n\t\tslidesToScroll: 1\r\n\t});\r\n}\r\n\r\nfunction tutorialMainImageCarousel() {\r\n\t$(\"#thumbnails\").find('.productthumbnail.selected').removeClass('selected');\r\n\t$('#thumbnails ul').slick({\r\n\t\tdots: true,\r\n\t\tvertical: false,\r\n\t\tinfinite: true,\r\n\t\tarrows: false,\r\n\t\tcenterMode: false,\r\n\t\tslidesToShow: 1\r\n\t});\r\n}\r\n\r\n// tutorial image carousel\r\nfunction tutorialImages() {\r\n\t$(\"#thumbnails\").on('click', '.productthumbnail', function () {\r\n\t\tvar $that = $(this);\r\n\r\n\t\t$(\"#thumbnails\").find('.productthumbnail.selected').removeClass('selected');\r\n\t\t$that.addClass('selected');\r\n\t\tsetTutorialMainImage($that.find('img').attr('src'));\r\n\t});\r\n}\r\n\r\nfunction setTutorialMainImage(src) {\r\n\t$('#tutorial-image-template .primary-image').attr('src', src);\r\n}\r\n\r\nexports.init = function () {\r\n\tinitTutorialCarousel();\r\n\taddToCart();\r\n\tproductTile.init();\r\n\r\n};\n},{\"../product-tile\":77,\"./product/addToCart\":48}],73:[function(require,module,exports){\n'use strict';\r\nvar util = require('../../../../app_shiseidogmw/cartridge/js/util'),\r\n\t\tcustomModal = require('../../../../app_shiseidogmw/cartridge/js/modal');\r\n\r\nfunction visualizerResultDate() {\r\n var getCuerrentId = window.location.href;\r\n getCuerrentId = util.getQueryStringParams(getCuerrentId);\r\n if (getCuerrentId.analysisId && $('.visualizerResultDateslider .slide[data-id='+getCuerrentId.analysisId+']')) {\r\n $('.visualizerResultDateslider .slide[data-id='+getCuerrentId.analysisId+']').addClass('active');\r\n } else {\r\n $('.visualizerResultDateslider .slide.first-date').addClass('active');\r\n\t\tif($('.visualizerResultDateslider .slide').hasClass(\"visualizer2slide\")) {\r\n\t\t\t$('.visualizerResultDateslider .slide.visualizer2slide:first').addClass('active');\r\n\t\t}\r\n }\r\n};\r\n\r\nfunction visualizerDateSlider() {\r\n\tlet activeSlide = $('.visualizerResultDateslider .slide.active');\r\n\tlet activeSlideIndex = activeSlide.index();\r\n\tlet visualizerResultDateslider = $('.visualizerResultDateslider');\r\n\tlet visualizerliderSlideslength = visualizerResultDateslider.find('.slide').length;\r\n\tlet sliderWidth = visualizerResultDateslider.width();\r\n\r\n\tvisualizerResultDateslider.on('init', function(event, slick){\r\n\t\tif (slick.currentSlide === 0) {\r\n\t\t\tlet activeSlideWidth = activeSlide.closest('.slick-slide').outerWidth();\r\n\t\t\tlet visibleSlides = Math.floor(sliderWidth / activeSlideWidth);\r\n\t\t\tif (slick.slideCount > visibleSlides) {\r\n\t\t\t\tif(slick.slideCount-activeSlideIndex < visibleSlides) {\r\n\t\t\t\t\tslick.slickGoTo(slick.slideCount - visibleSlides, false);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tslick.slickGoTo(activeSlideIndex, false);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n\r\n\tvisualizerResultDateslider.slick({\r\n\t\t\tdots: false,\r\n\t\t\tarrows: true,\r\n\t\t\tinfinite: false,\r\n\t\t\tslidesToShow: 10,\r\n\t\t\tvariableWidth: false,\r\n\t\t\ttouchMove: true,\r\n\t\t\ttouchThreshold: 20,\r\n\t\t\tswipe: true,\r\n\t\t\tswipeToSlide: true,\r\n\t\t\tspeed: 0,\r\n\t\t\teasing: 'linear',\r\n\t\t\tinitialSlide: 0,\r\n\t\t\tedgeFriction: 0.15,\r\n\t\t\tresponsive: [\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 1440,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 9\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 1320,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 8\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 1200,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 7\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 1024,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 6\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 890,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 5\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 769,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tarrows: false,\r\n\t\t\t\t\t\tslidesToShow: 4,\r\n\t\t\t\t\t\tvariableWidth: true\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 540,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tarrows: false,\r\n\t\t\t\t\t\tslidesToShow: 3,\r\n\t\t\t\t\t\tvariableWidth: true\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 410,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tarrows: false,\r\n\t\t\t\t\t\tslidesToShow: 2,\r\n\t\t\t\t\t\tvariableWidth: true\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t});\r\n\r\n\tvisualizerResultDateslider.on('beforeChange', function(event, slick, currentSlide, nextSlide){\r\n\t\tslick.slickSetOption('speed', 100, false);\r\n\t});\r\n \r\n\tlet visualizerliderSlidestoShow = visualizerResultDateslider.slick('slickGetOption', 'slidesToShow');\r\n\tif (visualizerliderSlideslength < visualizerliderSlidestoShow) {\r\n\t\tvisualizerResultDateslider.slick('unslick').addClass('unslick');\r\n\t}\r\n}\r\n\r\nfunction initializeSkinScoreTabs(){\r\n\tconst tabbtns = document.querySelectorAll('.skin-condition-tabs .skin-condition-btn');\r\n\tconst defaultActiveTab=\"beautyCirculation\";\r\n\tvar activeTab = defaultActiveTab;\r\n\tsetRadioListeners();\r\n\tsetTab(activeTab);\r\n\ttabbtns.forEach(button=>{\r\n\t\tbutton.addEventListener('click',function(e){\r\n\t\t\tif(!e.target.classList.contains('active')){\r\n\t\t\t\te.target.classList.add('active');\r\n\t\t\t\tactiveTab=e.target.dataset['tab'];\r\n\t\t\t\tsetTab(activeTab);\r\n\t\t\t}\r\n\t\t\ttabbtns.forEach(tab=>{\r\n\t\t\t\tif(tab!==e.target && tab.classList.contains('active')){\r\n\t\t\t\t\ttab.classList.remove('active');\r\n\t\t\t\t}\r\n\t\t\t})\r\n\t\t})\r\n\t})\r\n\r\n}\r\n\r\nfunction setTab(tab){\r\n\tlet templates=Array.from(document.querySelectorAll('.skin-condition-score'));\r\n\ttemplates.forEach(template => {\r\n\t\tif(template.classList.contains(tab) === true){\r\n\t\t\ttemplate.style.display=\"block\";\r\n\t\t\tif(tab=='beautyCirculation'){\r\n\t\t\t\t$('.radio-btns-container').hide();\r\n\t\t\t\t$('#bcbottomcontent').show();\r\n\t\t\t\t$(\".average-age-meter\").hide();\r\n\t\t\t}else{\r\n\t\t\t\t$('.radio-btns-container').show();\r\n\t\t\t\t$(\".average-age-meter\").show();\r\n\t\t\t}\r\n\t\t}\r\n\t\telse{\r\n\t\t\ttemplate.style.display=\"none\";\r\n\t\t}\r\n\t});\r\n\tlet tabcomponent= document.querySelectorAll('.itembox');\r\n\ttabcomponent.forEach(template => {\r\n\t\tif(template.classList.contains(tab) === true ){\r\n\t\t\ttemplate.style.display=\"block\";\r\n\t\t}\r\n\t\telse{\r\n\t\t\ttemplate.style.display=\"none\";\r\n\t\t}\r\n\t});\r\n}\r\n\r\n\r\nfunction setmindfulnessCirclePosition(){\r\n\tif($('#mindfulness-container').length > 0){\r\n\t\tconst pointer = document.querySelector('.elipse-pointer');\r\n\t\tlet x = 50*(parseFloat(pointer.dataset['x'])+1);\r\n\t\tlet y = 50*(parseFloat(pointer.dataset['y'])+1);\r\n\t\tpointer.style.left=`calc(${x}% - 22.27px)`;\r\n\t\tpointer.style.bottom=`calc(${y}% - 22.27px)`;\r\n\t}\r\n}\r\nfunction setRadioListeners(){\r\n\tdocument.querySelectorAll('.skinSubMetrixPanel.exceptbct').forEach(skinSubMetrixPanel=>{\r\n\tskinSubMetrixPanel.querySelectorAll('.skin-condition-radio').forEach(button=>{\r\n\t\t\r\n\t\tlet nextLabel = button.nextElementSibling;\r\n\t\tnextLabel.addEventListener('click',e=>{\r\n\t\t\tbutton.click();\r\n\t\t})\r\n\r\n\t\tbutton.addEventListener('click',e=>{\r\n\t\t\tlet score = e.target.dataset['score'];\r\n\t\t\tlet avgScore = e.target.dataset['avgscore'];\r\n\t\t\tskinSubMetrixPanel.querySelector('.average-age-progress-bar .set-score').setAttribute('width',`${score}%`);\r\n\t\t\tlet triangleSpace = (avgScore * 2) - 7.5;\r\n\t\t\ttriangleSpace = (triangleSpace + 7.5) - 50;\r\n\t\t\tlet triangletextposition = (avgScore * 2) - 50;\r\n\t\t\tif( triangletextposition <= (-50) ){\r\n\t\t\t\ttriangletextposition = 0;\r\n\t\t\t}else if(triangletextposition > 129){\r\n\t\t\t\ttriangletextposition = 129;\r\n\t\t\t}else{\r\n\t\t\t\ttriangletextposition = triangletextposition;\r\n\t\t\t}\r\n\t\t\tskinSubMetrixPanel.querySelector('.triangle-text .average-age-indicator').style.transform=`translateX(${triangleSpace}px)`;\r\n\t\t\tskinSubMetrixPanel.querySelector('.triangle-text .triangle-text-desc').style.transform=`translateX(${triangletextposition}px)`;\r\n\t\t})\r\n\t})\r\n})\r\n}\r\n\r\n// on page load skin condition add average score and pointer update\r\nfunction intActiveScore() {\r\n\tif ($('.skin-condition-image-section .radio-btns-container input[data-imagesource=\"darkSpots\"]:checked').length > 0) {\r\n\t\tlet initDarkSpotScore = $('.skin-condition-image-section .radio-btns-container input[data-imagesource=\"darkSpots\"]:checked').attr('data-score');\r\n\t\tlet initDarkSpotAvgScore = $('.skin-condition-image-section .radio-btns-container input[data-imagesource=\"darkSpots\"]:checked').attr('data-avgscore');\r\n\t\tlet triangleSpace = (initDarkSpotAvgScore * 2) - 7.5;\r\n\t\t\ttriangleSpace = (triangleSpace + 7.5) - 50;\r\n\t\t$('.skinSubMetrixPanel.exceptbct .average-age-meter .triangle-text .average-age-indicator').css('transform', 'translateX(' + triangleSpace + 'px)');\r\n\t\t$('.skinSubMetrixPanel.exceptbct .average-age-meter .average-age-progress-bar .set-score').attr('width',`${initDarkSpotScore}%`);\r\n\t}\r\n}\r\n\r\nfunction paintTriangle() {\r\n var width = 247,\r\n height = 213,\r\n triangleSvg = $('.magic-triangle.visulaizerresults svg'),\r\n\tradiance = $('.magic-triangle.visulaizerresults').data('radiance'),\r\n\tresilience = $('.magic-triangle.visulaizerresults').data('resilience'),\r\n\tsmoothness =  $('.magic-triangle.visulaizerresults').data('smoothness'),\r\n\tavgradiance = $('.magic-triangle.visulaizerresults').data('avgradiance'),\r\n\tavgresilience = $('.magic-triangle.visulaizerresults').data('avgresilience'),\r\n\tavgsmoothness =  $('.magic-triangle.visulaizerresults').data('avgsmoothness');\r\n\r\n var center = { x: width / 2, y: 143 };\r\n var radiancePoint = {\r\n x: center.x,\r\n y: center.y * (1 - radiance / 100),\r\n };\r\n var resiliencePoint = {\r\n x: center.x - center.x * (resilience / 100),\r\n y: center.y + (height - center.y) * (resilience / 100),\r\n };\r\n var smoothnessPoint = {\r\n x: center.x + (width - center.x) * (smoothness / 100),\r\n y: center.y + (height - center.y) * (smoothness / 100),\r\n };\r\n var avgradiancePoint = {\r\n x: center.x,\r\n y: center.y * (1 - avgradiance / 100),\r\n };\r\n var avgresiliencePoint = {\r\n x: center.x - center.x * (avgresilience / 100),\r\n y: center.y + (height - center.y) * (avgresilience / 100),\r\n };\r\n var avgsmoothnessPoint = {\r\n x: center.x + (width - center.x) * (avgsmoothness / 100),\r\n y: center.y + (height - center.y) * (avgsmoothness / 100),\r\n };\r\n $(triangleSvg).find('polygon.your-score').addClass('load-polygon').attr('points',radiancePoint.x +','+ radiancePoint.y+' '+ resiliencePoint.x +','+resiliencePoint.y +' '+ smoothnessPoint.x+','+smoothnessPoint.y);\r\n $(triangleSvg).find('polygon.average-score').addClass('load-polygon').attr('points',avgradiancePoint.x +','+ avgradiancePoint.y+' '+ avgresiliencePoint.x +','+avgresiliencePoint.y +' '+ avgsmoothnessPoint.x+','+avgsmoothnessPoint.y);\r\n}\r\n\r\nfunction drawPercentageCircle(){\r\n\tvar $round = $('.round'),\r\n roundRadius = $round.find('circle').attr('r'),\r\n roundPercent = $round.data('percent'),\r\n roundCircum = 2 * roundRadius * Math.PI,\r\n roundDraw = roundPercent * roundCircum / 100;\r\n $round.css('stroke-dasharray', roundDraw + ' 999');\r\n}\r\n\r\n// $('.beautyTips .content-asset').on('click', function() {\r\n// \tlet popupContent = $(this).find('.modal').html();\r\n// \tcustomModal.createCustomModal('visualizermodal');\r\n// \t$('.visualizermodal').find('.modal-body').html(popupContent).addClass('sb-container visualizermodal');\r\n// \t$('.visualizermodal .sb-container').scrollBox();\r\n// });\r\n\r\nfunction recommendProductsSlider() {\r\n\tlet recommendProductsSlider = $('.recommendProductsSlider .productsSlider');\r\n\trecommendProductsSlider.slick({\r\n\t\t\tdots: true,\r\n\t\t\tarrows: true,\r\n\t\t\tinfinite: false,\r\n\t\t\tslidesToShow: 4,\r\n\t\t\tslidesToScroll: 4,\r\n\t\t\tvariableWidth: false,\r\n\t\t\ttouchMove: true,\r\n\t\t\ttouchThreshold: 20,\r\n\t\t\tswipe: true,\r\n\t\t\t//swipeToSlide: true,\r\n\t\t\tspeed: 500,\r\n\t\t\teasing: 'ease',\r\n\t\t\tinitialSlide: 0,\r\n\t\t\tedgeFriction: 0.15,\r\n\t\t\tresponsive: [\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 1300,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 3,\r\n\t\t\t\t\t\tslidesToScroll: 3\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 1024,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tslidesToShow: 2,\r\n\t\t\t\t\t\tslidesToScroll: 2\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 769,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tdots: false,\r\n\t\t\t\t\t\tarrows: false,\r\n\t\t\t\t\t\tswipeToSlide: true,\r\n\t\t\t\t\t\tslidesToShow: 3,\r\n\t\t\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\t\t\tvariableWidth: true\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 640,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tdots: false,\r\n\t\t\t\t\t\tarrows: false,\r\n\t\t\t\t\t\tslidesToShow: 2,\r\n\t\t\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\t\t\tvariableWidth: true\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tbreakpoint: 440,\r\n\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\tdots: false,\r\n\t\t\t\t\t\tarrows: false,\r\n\t\t\t\t\t\tslidesToShow: 1,\r\n\t\t\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\t\t\tvariableWidth: true\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t});\r\n\r\n\trecommendProductsSlider.on('swipe', function(event, slick, direction) {\r\n\t\tif (event.timeStamp > 0) {\r\n\t\t\tsessionStorage.setItem(\"recommendProductsSlider\", \"swipe\");\r\n\t\t}\r\n\t});\r\n\r\n\trecommendProductsSlider.on('afterChange', function(slick, currentSlide){\r\n\t\tsessionStorage.setItem('recommendProductsSlider', 'click');\r\n\t});\r\n\t\r\n\tvar isViewportChanged = false;\r\n\r\n\t$(window).on('resize', function () {\r\n\t isViewportChanged = true;\r\n\t});\r\n\t\r\n\t$(document).on('click', '.recommendProductsSlider .product', function(e) {\r\n\t\te.preventDefault();\r\n\t\tif (isViewportChanged) {\r\n\t\t\tcustomModal.createCustomModal('recommendproductsmodal');\r\n\t\t\t$('.recommendproductsmodal').find('.modal-body').html($(this).find('.popupcontent').html()).addClass('sb-container recommendproductsmodal');\r\n\t\t\t$('.recommendproductsmodal .sb-container').scrollBox();\r\n\t\t\t//isViewportChanged = false;\r\n\t\t}\r\n\t});\r\n\r\n\t$('.recommendProductsSlider .product').on('click', function(e) {\r\n\t\te.preventDefault();\r\n\t\tif(isViewportChanged == false && sessionStorage.getItem(\"recommendProductsSlider\") != \"swipe\") {\r\n\t\t\tcustomModal.createCustomModal('recommendproductsmodal');\r\n\t\t\t$('.recommendproductsmodal').find('.modal-body').html($(this).find('.popupcontent').html()).addClass('sb-container recommendproductsmodal');\r\n\t\t\t$('.recommendproductsmodal .sb-container').scrollBox(); \r\n\t\t}\r\n\t\t//sessionStorage.setItem('recommendProductsSlider', 'click');\r\n\t});\r\n}\r\n\r\nfunction reduceFontSize() {\r\n\t// product tile title dynamic font size conversion\r\n\tvar parentSlides = document.querySelectorAll('.productsSlider .slide');\r\n parentSlides.forEach(parentSlide => {\r\n var childStep = parentSlide.querySelector('.step');\r\n\t\tvar childStepDiv = parentSlide.querySelector('.step div');\r\n\t\tvar childStepText = parentSlide.querySelector('.step p');\r\n if (childStep && childStepText) {\r\n\t\t\tvar parentWidth = childStep.clientWidth - (childStepDiv ? childStepDiv.clientWidth + 12 : 0);\r\n var childStepTextWidth = childStepText.clientWidth;\r\n\t\t\tvar childStepWord = childStepText.textContent.trim().split(' ');\r\n\t\t\tvar childStepWordLength = childStepWord.length;\r\n\t\t\tvar computedStyle = getComputedStyle(childStepText);\r\n\t\t\tvar fontSize = parseInt(computedStyle.fontSize);\r\n\t\t\tfor (let j = 0; j < childStepWordLength; j++) {\r\n\t\t\t\tvar childStepTextIndex = childStepText.textContent.trim().split(' ')[j];\r\n\t\t\t\tvar childStepTextLengthIndex = childStepTextIndex.length;\r\n\t\t\t\twhile (childStepTextWidth > parentWidth && childStepTextLengthIndex >= 18 && fontSize >= 8) {\r\n\t\t\t\t\tfontSize--;\r\n\t\t\t\t\tchildStepText.style.fontSize = fontSize +'px';\r\n\t\t\t\t\tvar childStepTextWidth = childStepText.clientWidth;\r\n\t\t\t\t}\r\n\t\t\t}\r\n }\r\n });\r\n\r\n\t// product tile description dynamic height conversion\r\n\tvar productsSliders = document.querySelectorAll('.productsSlider');\r\n\tproductsSliders.forEach(productsSlider => {\r\n\t\tvar headingTexts = productsSlider.querySelectorAll('.slide .product .product-brand');\r\n\t\tvar descriptionTexts = productsSlider.querySelectorAll('.slide .description');\r\n\t\tvar maxHeight = 0;\r\n\t\tfor (var i = 0; i < descriptionTexts.length; i++) {\r\n\t\t\tvar height = descriptionTexts[i].offsetHeight;\r\n\t\t\tif (height > maxHeight) {\r\n\t\t\t\tmaxHeight = height;\r\n\t\t\t}\r\n\t\t}\r\n\t\tfor (var i = 0; i < descriptionTexts.length; i++) {\r\n\t\t\tdescriptionTexts[i].style.minHeight = maxHeight + 'px';\r\n\t\t}\r\n\t\tfor (var j = 0; j < headingTexts.length; j++) {\r\n\t\t\tvar height = headingTexts[j].offsetHeight;\r\n\t\t\tif (height > maxHeight) {\r\n\t\t\t\tmaxHeight = height;\r\n\t\t\t}\r\n\t\t}\r\n\t\tfor (var j = 0; j < headingTexts.length; j++) {\r\n\t\t\theadingTexts[j].style.minHeight = maxHeight + 'px';\r\n\t\t}\r\n\t});\r\n}\r\n\r\nexports.init = function () {\r\n\tvisualizerResultDate();\r\n\tvisualizerDateSlider();\r\n\tinitializeSkinScoreTabs();\r\n\tpaintTriangle();\r\n\tdrawPercentageCircle();\r\n\tsetmindfulnessCirclePosition();\r\n\trecommendProductsSlider();\r\n\treduceFontSize();\r\n\tintActiveScore();\r\n};\n},{\"../../../../app_shiseidogmw/cartridge/js/modal\":27,\"../../../../app_shiseidogmw/cartridge/js/util\":93}],74:[function(require,module,exports){\n'use strict';\r\n\r\nvar addProductToCart = require('./product/addToCart'),\r\n\tpage = require('../page'),\r\n\tlogin = require('../login'),\r\n\tutil = require('../util'),\r\n\taccount = require('./account'),\r\n\tminicart = require('../minicart'),\r\n\tcustomModal = require('../modal'),\r\n\tformPrepare = require('./checkout/formPrepare'),\r\n\tproductTile = require('../product-tile'),\r\n\tindex = require('./product/index'),\r\n\tvalidator = require('../validator');\r\n\r\nfunction changeQuantity() {\r\n\t$('.quantity-container select').on('change', function () {\r\n\t\tvar quantity = $(this).find('option:selected').val();\r\n\r\n\t\t$('.option-quantity-desired input').val(quantity);\r\n\t\t$(this).closest('form').find('.update-item').trigger('click');\r\n\t});\r\n}\r\n\r\nfunction addItemToBag() {\r\n\t$(document).on('click', 'button.add-all-to-cart', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\t$(document).find('button[name$=\"_addToCart\"]').each(function (e) {\r\n\t\t\t$(this).trigger('click');\r\n\t\t});\r\n\t});\r\n\r\n\t$(document).on('click', 'button[name$=\"_addToCart\"]', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tvar $form = $(this).closest('form');\r\n\t\tvar divError = $form.find('div.product-error');\r\n\r\n\t\t$.ajax({\r\n\t\t\ttype: 'POST',\r\n\t\t\turl: util.ajaxUrl(Urls.wishlistAddToCart),\r\n\t\t\tdata: $form.serialize(),\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\tif (response.error) {\r\n\t\t\t\t\tdivError.html(response.error);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tminicart.show(response);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n}\r\n\r\nvar wishlistProducts = window.User.wishlistProducts;\r\nvar favouriteContents = window.User.FevouriteContents;\r\n\r\n// PLP wishlist heart icon\r\n$(document).on('click', '.wishlist-icon', function (e) {\r\n\te.preventDefault();\r\n\tvar ajaxUrl;\r\n\tvar _this = $(this);\r\n\tvar currProductID = _this.attr('data-element-pid');\r\n\tvar tryOnElement = (_this.attr('data-element-tryon'))? true : false;\r\n\tvar webcamMode = $('#webcam-status').attr('mode');\r\n\tvar productIds = [];\r\n\tvar data = new FormData();\r\n\t\r\n\tdata.append(window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n\t\r\n\tif (webcamMode == 'multi') {\r\n\t\tvar multisplit1 = $('#multisplit').attr('screen-1');\r\n\t\tvar multisplit2 = $('#multisplit').attr('screen-2');\r\n\t\tvar multisplit3 = $('#multisplit').attr('screen-3');\r\n\t\tvar multisplit4 = $('#multisplit').attr('screen-4');\r\n\t\t\r\n\t\t((multisplit1!=\"\") && typeof(multisplit1) !== undefined) ? productIds.push(multisplit1) : '';\r\n\t\t((multisplit2!=\"\") && typeof(multisplit2) !== undefined) ? productIds.push(multisplit2) : '';\r\n\t\t((multisplit3!=\"\") && typeof(multisplit3) !== undefined) ? productIds.push(multisplit3) : '';\r\n\t\t((multisplit4!=\"\") && typeof(multisplit4) !== undefined) ? productIds.push(multisplit4) : '';\r\n\t\t\r\n\t\tdata.append('pid', productIds.join('|'));\r\n\t\tdata.append('webcamMode', 'multi');\r\n\t}\r\n\telse {\r\n\t\tif (currProductID) {\r\n\t\t\tproductIds.push(currProductID)\r\n\t\t\tdata.append('pid', productIds.join('|'));\r\n\t\t} else {\r\n\t\t\tvar currArticleID = _this.attr('data-element-cid');\r\n\t\t\tdata.append('aid', currArticleID);\r\n\t\t}\r\n\t}\r\n\r\n\tif (_this.hasClass(\"wishlist-added\") && (tryOnElement != true) && !_this.hasClass(\"move-to-fav\")) {\r\n\t\tajaxUrl = _this.attr('data-ajax-remove');\r\n\t} else {\r\n\t\tajaxUrl = _this.attr('data-ajax-add');\r\n\t}\r\n\r\n\tif (window.pageContext.ns === 'orderconfirmation') {\r\n\t\tajaxUrl = util.appendParamToURL(ajaxUrl, 'page', 'confirmation');\r\n\t}\r\n\r\n\tajaxUrl = util.appendParamToURL(ajaxUrl, 'format', 'ajax');\r\n\r\n\t$.ajax({\r\n\t\ttype: 'POST',\r\n\t\turl: ajaxUrl,\r\n\t\tprocessData: false,\r\n\t\tcontentType: false,\r\n\t\tdata: data\r\n\t})\r\n\t.done(function (response) {\r\n\t\tif (response && response.error === undefined && response.url === undefined) {\r\n\t\t\tif(_this.hasClass('move-to-fav') && _this.hasClass('auth')) {\r\n\t\t\t\t$('#primary').html(response);\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\tcustomModal.createCustomModal('login-modal');\r\n\t\t\t$('.login-modal').find('.modal-body').html(response);\r\n\t\t\tindex.bodyPositionFixed('login-modal');\r\n\t\t\tvalidator.initForm('.login-modal form[id$=\"dwfrm_login\"]');\r\n\t\t\t\r\n\t\t\tvar $resetpasswordlink = $('.reset-password-link');\r\n\t\t\tvar url = Urls.passwordReset;\r\n\t\t\t\r\n\t\t\tlogin.wishlistAjaxLogin('form[id$=\"dwfrm_login\"]');\r\n\t\t\t$('#login-modal .modal-close').on('click', function () {\r\n\t\t\t\t_this.removeClass('wishlist-added');\r\n\t\t\t})\r\n\t\t\t$('.login-modal .modal-body').scrollBox();\r\n\t\t} else {\r\n\t\t\tif (response.error === \"CSRF Token Mismatch\") {\r\n\t\t\t\tpage.redirect(Urls.csrffailed);\r\n\t\t\t} else if (currProductID) {\r\n\t\t\t\tif (wishlistProducts === null) {\r\n\t\t\t\t\twindow.location.reload();\r\n\t\t\t\t} else {\r\n\t\t\t\t\tif (_this.hasClass('wishlist-added') && !tryOnElement) {\r\n\t\t\t\t\t\twishlistProducts = arrayRemove(wishlistProducts, _this.attr('data-element-pid'))\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tif (!tryOnElement) {\r\n\t\t\t\t\t\t\twishlistProducts.push(_this.attr('data-element-pid'));\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse if ((webcamMode == 'multi') && tryOnElement) {\r\n\t\t\t\t\t\t\tif (productIds && productIds.length >= 1) {\r\n\t\t\t\t\t\t\t\tproductIds.forEach(function (tryonpid) {\r\n\t\t\t\t\t\t\t\t\twishlistProducts.push(tryonpid);\r\n\t\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t$(\".addall-fav\").removeClass('show');\r\n\t\t\t\t\t\t\t$(\".addedall-fav\").addClass('show');\r\n\t\t\t\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\t\t\t\t$(\".addall-fav\").addClass('show');\r\n\t\t\t\t\t\t\t $(\".addedall-fav\").removeClass('show');\r\n\t\t\t\t\t\t\t}, 3000);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse if ((webcamMode == 'normal' || webcamMode == 'split') && tryOnElement) {\r\n\t\t\t\t\t\t\twishlistProducts.push(_this.attr('data-element-pid'));\r\n\t\t\t\t\t\t\t$(\".add-fav\").addClass('hide');\r\n\t\t\t\t\t\t\t$(\".added-fav\").addClass('show');\r\n\t\t\t\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\t\t\t\t$(\".add-fav\").removeClass('hide');\r\n\t\t\t\t\t\t\t\t$(\".added-fav\").removeClass('show');\r\n\t\t\t\t\t\t\t}, 3000);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\tif (favouriteContents === null) {\r\n\t\t\t\t\twindow.location.reload();\r\n\t\t\t\t} else {\r\n\t\t\t\t\tif (_this.hasClass('wishlist-added')) {\r\n\t\t\t\t\t\tfavouriteContents = arrayRemove(favouriteContents, _this.attr('data-element-cid'))\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tfavouriteContents.push(_this.attr('data-element-cid'));\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n});\r\n\r\nfunction arrayRemove(arr, value) {\r\n\treturn arr.filter(function (ele) {\r\n\t\treturn ele != value;\r\n\t});\r\n}\r\n\r\nfunction checkWhishlistProduct(wishlistProd) {\r\n\t$(\".wishlist-icon\").each(function () {\r\n\t\tvar _this = $(this);\r\n\t\tvar currEle = _this.attr('data-element-pid');\r\n\t\t_this.removeClass(\"wishlist-added\");\r\n\t\tif(!_this.hasClass('move-to-fav')) {\r\n\t\t\t_this.prop('title', Resources.ADD_TO_FAVORITE);\r\n\t\t}\r\n\t\tif (wishlistProd != null && wishlistProd.indexOf(currEle) >= 0) {\r\n\t\t\t_this.addClass(\"wishlist-added\");\r\n\t\t\tif(!_this.hasClass('move-to-fav')) {\r\n\t\t\t\t_this.prop('title', Resources.REMOVE_FROM_FAVORITE);\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction checkFavouriteContents(favouriteContents) {\r\n\t$(\".ginza-edit-tile .wishlist-icon, .article-tile .wishlist-icon, .article-full-col .wishlist-icon, .article-description-section .wishlist-icon, .article.ginza-type .wishlist-icon\").each(function () {\r\n\t\tvar _this = $(this);\r\n\t\tvar currEle = _this.attr('data-element-cid');\r\n\t\t_this.removeClass(\"wishlist-added\");\r\n\t\t_this.prop('title', Resources.ADD_TO_FAVORITE);\r\n\t\tif (favouriteContents != null && favouriteContents.indexOf(currEle) >= 0) {\r\n\t\t\t_this.addClass(\"wishlist-added\");\r\n\t\t\t_this.prop('title', Resources.REMOVE_FROM_FAVORITE);\r\n\t\t}\r\n\t});\r\n}\r\n\r\n\r\nwindow.onload = function () {\r\n\tcheckWhishlistProduct(window.User.wishlistProducts);\r\n\tcheckFavouriteContents(window.User.FevouriteContents);\r\n\tproductTile.init();\r\n};\r\n\r\n$(document).ajaxComplete(function () {\r\n\tcheckWhishlistProduct(wishlistProducts);\r\n\tcheckFavouriteContents(favouriteContents);\r\n\tproductTile.init();\r\n});\r\n\r\nexports.init = function () {\r\n\taddProductToCart();\r\n\tchangeQuantity();\r\n\taddItemToBag();\r\n\r\n\t$('#editAddress').on('change', function () {\r\n\t\tpage.redirect(util.appendParamToURL(Urls.wishlistAddress, 'AddressID', $(this).val()));\r\n\t});\r\n\r\n\t//add js logic to remove the , from the qty feild to pass regex expression on client side\r\n\t$('.option-quantity-desired input').on('focusout', function () {\r\n\t\t$(this).val($(this).val().replace(',', ''));\r\n\t});\r\n\tlogin.init();\r\n\taccount.initMobileMenu();\r\n};\n},{\"../login\":25,\"../minicart\":26,\"../modal\":27,\"../page\":30,\"../product-tile\":77,\"../util\":93,\"../validator\":95,\"./account\":31,\"./checkout/formPrepare\":38,\"./product/addToCart\":48,\"./product/index\":52}],75:[function(require,module,exports){\n(function (global, factory) {\r\n\tif (typeof define === \"function\" && define.amd) {\r\n\t\tdefine(['exports'], factory);\r\n\t} else if (typeof exports !== \"undefined\") {\r\n\t\tfactory(exports);\r\n\t} else {\r\n\t\tvar mod = {\r\n\t\t\texports: {}\r\n\t\t};\r\n\t\tfactory(mod.exports);\r\n\t\tglobal.PinchZoom = mod.exports;\r\n\t}\r\n})(this, function (exports) {\r\n\t'use strict';\r\n\r\n\tObject.defineProperty(exports, \"__esModule\", {\r\n\t\tvalue: true\r\n\t});\r\n\t/*\r\n \r\n\t PinchZoom.js\r\n\t Copyright (c) Manuel Stofer 2013 - today\r\n \r\n\t Author: Manuel Stofer (mst@rtp.ch)\r\n\t Version: 2.2.0\r\n \r\n\t Permission is hereby granted, free of charge, to any person obtaining a copy\r\n\t of this software and associated documentation files (the \"Software\"), to deal\r\n\t in the Software without restriction, including without limitation the rights\r\n\t to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n\t copies of the Software, and to permit persons to whom the Software is\r\n\t furnished to do so, subject to the following conditions:\r\n \r\n\t The above copyright notice and this permission notice shall be included in\r\n\t all copies or substantial portions of the Software.\r\n \r\n\t THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n\t IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n\t FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n\t AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n\t LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n\t OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\n\t THE SOFTWARE.\r\n \r\n\t*/\r\n\r\n\t// polyfills\r\n\tif (typeof Object.assign != 'function') {\r\n\t\t// Must be writable: true, enumerable: false, configurable: true\r\n\t\tObject.defineProperty(Object, \"assign\", {\r\n\t\t\tvalue: function assign(target, varArgs) {\r\n\t\t\t\t// .length of function is 2\r\n\t\t\t\tif (target == null) {\r\n\t\t\t\t\t// TypeError if undefined or null\r\n\t\t\t\t\tthrow new TypeError('Cannot convert undefined or null to object');\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar to = Object(target);\r\n\r\n\t\t\t\tfor (var index = 1; index < arguments.length; index++) {\r\n\t\t\t\t\tvar nextSource = arguments[index];\r\n\r\n\t\t\t\t\tif (nextSource != null) {\r\n\t\t\t\t\t\t// Skip over if undefined or null\r\n\t\t\t\t\t\tfor (var nextKey in nextSource) {\r\n\t\t\t\t\t\t\t// Avoid bugs when hasOwnProperty is shadowed\r\n\t\t\t\t\t\t\tif (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {\r\n\t\t\t\t\t\t\t\tto[nextKey] = nextSource[nextKey];\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\treturn to;\r\n\t\t\t},\r\n\t\t\twritable: true,\r\n\t\t\tconfigurable: true\r\n\t\t});\r\n\t}\r\n\r\n\tif (typeof Array.from != 'function') {\r\n\t\tArray.from = function (object) {\r\n\t\t\treturn [].slice.call(object);\r\n\t\t};\r\n\t}\r\n\r\n\t// utils\r\n\tvar buildElement = function buildElement(str) {\r\n\t\t// empty string as title argument required by IE and Edge\r\n\t\tvar tmp = document.implementation.createHTMLDocument('');\r\n\t\ttmp.body.innerHTML = str;\r\n\t\treturn Array.from(tmp.body.children)[0];\r\n\t};\r\n\r\n\tvar triggerEvent = function triggerEvent(el, name) {\r\n\t\tvar event = document.createEvent('HTMLEvents');\r\n\t\tevent.initEvent(name, true, false);\r\n\t\tel.dispatchEvent(event);\r\n\t};\r\n\r\n\tvar definePinchZoom = function definePinchZoom() {\r\n\r\n\t\t/**\r\n\t\t * Pinch zoom\r\n\t\t * @param el\r\n\t\t * @param options\r\n\t\t * @constructor\r\n\t\t */\r\n\t\tvar PinchZoom = function PinchZoom(el, options) {\r\n\t\t\t\tthis.el = el;\r\n\t\t\t\tthis.zoomFactor = 1;\r\n\t\t\t\tthis.lastScale = 1;\r\n\t\t\t\tthis.offset = {\r\n\t\t\t\t\tx: 0,\r\n\t\t\t\t\ty: 0\r\n\t\t\t\t};\r\n\t\t\t\tthis.initialOffset = {\r\n\t\t\t\t\tx: 0,\r\n\t\t\t\t\ty: 0\r\n\t\t\t\t};\r\n\t\t\t\tthis.options = Object.assign({}, this.defaults, options);\r\n\t\t\t\tthis.setupMarkup();\r\n\t\t\t\tthis.bindEvents();\r\n\t\t\t\tthis.update();\r\n\r\n\t\t\t\t// The image may already be loaded when PinchZoom is initialized,\r\n\t\t\t\t// and then the load event (which trigger update) will never fire.\r\n\t\t\t\tif (this.isImageLoaded(this.el)) {\r\n\t\t\t\t\tthis.updateAspectRatio();\r\n\t\t\t\t\tthis.setupInitialOffset();\r\n\t\t\t\t}\r\n\r\n\t\t\t\tthis.enable();\r\n\t\t\t},\r\n\t\t\tsum = function sum(a, b) {\r\n\t\t\t\treturn a + b;\r\n\t\t\t},\r\n\t\t\tisCloseTo = function isCloseTo(value, expected) {\r\n\t\t\t\treturn value > expected - 0.01 && value < expected + 0.01;\r\n\t\t\t};\r\n\r\n\t\tPinchZoom.prototype = {\r\n\r\n\t\t\tdefaults: {\r\n\t\t\t\ttapZoomFactor: 2,\r\n\t\t\t\tzoomOutFactor: 1.3,\r\n\t\t\t\tanimationDuration: 300,\r\n\t\t\t\tmaxZoom: 4,\r\n\t\t\t\tminZoom: 0.5,\r\n\t\t\t\tdraggableUnzoomed: true,\r\n\t\t\t\tlockDragAxis: false,\r\n\t\t\t\tuse2d: true,\r\n\t\t\t\tzoomStartEventName: 'pz_zoomstart',\r\n\t\t\t\tzoomUpdateEventName: 'pz_zoomupdate',\r\n\t\t\t\tzoomEndEventName: 'pz_zoomend',\r\n\t\t\t\tdragStartEventName: 'pz_dragstart',\r\n\t\t\t\tdragUpdateEventName: 'pz_dragupdate',\r\n\t\t\t\tdragEndEventName: 'pz_dragend',\r\n\t\t\t\tdoubleTapEventName: 'pz_doubletap',\r\n\t\t\t\tverticalPadding: 0,\r\n\t\t\t\thorizontalPadding: 0\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Event handler for 'dragstart'\r\n\t\t\t * @param event\r\n\t\t\t */\r\n\t\t\thandleDragStart: function handleDragStart(event) {\r\n\t\t\t\ttriggerEvent(this.el, this.options.dragStartEventName);\r\n\t\t\t\tthis.stopAnimation();\r\n\t\t\t\tthis.lastDragPosition = false;\r\n\t\t\t\tthis.hasInteraction = true;\r\n\t\t\t\tthis.handleDrag(event);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Event handler for 'drag'\r\n\t\t\t * @param event\r\n\t\t\t */\r\n\t\t\thandleDrag: function handleDrag(event) {\r\n\t\t\t\tvar touch = this.getTouches(event)[0];\r\n\t\t\t\tthis.drag(touch, this.lastDragPosition);\r\n\t\t\t\tthis.offset = this.sanitizeOffset(this.offset);\r\n\t\t\t\tthis.lastDragPosition = touch;\r\n\t\t\t},\r\n\r\n\t\t\thandleDragEnd: function handleDragEnd() {\r\n\t\t\t\ttriggerEvent(this.el, this.options.dragEndEventName);\r\n\t\t\t\tthis.end();\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Event handler for 'zoomstart'\r\n\t\t\t * @param event\r\n\t\t\t */\r\n\t\t\thandleZoomStart: function handleZoomStart(event) {\r\n\t\t\t\ttriggerEvent(this.el, this.options.zoomStartEventName);\r\n\t\t\t\tthis.stopAnimation();\r\n\t\t\t\tthis.lastScale = 1;\r\n\t\t\t\tthis.nthZoom = 0;\r\n\t\t\t\tthis.lastZoomCenter = false;\r\n\t\t\t\tthis.hasInteraction = true;\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Event handler for 'zoom'\r\n\t\t\t * @param event\r\n\t\t\t */\r\n\t\t\thandleZoom: function handleZoom(event, newScale) {\r\n\t\t\t\t// a relative scale factor is used\r\n\t\t\t\tvar touchCenter = this.getTouchCenter(this.getTouches(event)),\r\n\t\t\t\t\tscale = newScale / this.lastScale;\r\n\t\t\t\tthis.lastScale = newScale;\r\n\r\n\t\t\t\t// the first touch events are thrown away since they are not precise\r\n\t\t\t\tthis.nthZoom += 1;\r\n\t\t\t\tif (this.nthZoom > 3) {\r\n\r\n\t\t\t\t\tthis.scale(scale, touchCenter);\r\n\t\t\t\t\tthis.drag(touchCenter, this.lastZoomCenter);\r\n\t\t\t\t}\r\n\t\t\t\tthis.lastZoomCenter = touchCenter;\r\n\t\t\t},\r\n\r\n\t\t\thandleZoomEnd: function handleZoomEnd() {\r\n\t\t\t\ttriggerEvent(this.el, this.options.zoomEndEventName);\r\n\t\t\t\tthis.end();\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Event handler for 'doubletap'\r\n\t\t\t * @param event\r\n\t\t\t */\r\n\t\t\thandleDoubleTap: function handleDoubleTap(event) {\r\n\t\t\t\tvar center = this.getTouches(event)[0],\r\n\t\t\t\t\tzoomFactor = this.zoomFactor > 1 ? 1 : this.options.tapZoomFactor,\r\n\t\t\t\t\tstartZoomFactor = this.zoomFactor,\r\n\t\t\t\t\tupdateProgress = function (progress) {\r\n\t\t\t\t\t\tthis.scaleTo(startZoomFactor + progress * (zoomFactor - startZoomFactor), center);\r\n\t\t\t\t\t}.bind(this);\r\n\r\n\t\t\t\tif (this.hasInteraction) {\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tthis.isDoubleTap = true;\r\n\r\n\t\t\t\tif (startZoomFactor > zoomFactor) {\r\n\t\t\t\t\tcenter = this.getCurrentZoomCenter();\r\n\t\t\t\t}\r\n\r\n\t\t\t\tthis.animate(this.options.animationDuration, updateProgress, this.swing);\r\n\t\t\t\ttriggerEvent(this.el, this.options.doubleTapEventName);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Compute the initial offset\r\n\t\t\t *\r\n\t\t\t * the element should be centered in the container upon initialization\r\n\t\t\t */\r\n\t\t\tcomputeInitialOffset: function computeInitialOffset() {\r\n\t\t\t\tthis.initialOffset = {\r\n\t\t\t\t\tx: -Math.abs(this.el.offsetWidth * this.getInitialZoomFactor() - this.container.offsetWidth) / 2,\r\n\t\t\t\t\ty: -Math.abs(this.el.offsetHeight * this.getInitialZoomFactor() - this.container.offsetHeight) / 2\r\n\t\t\t\t};\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Determine if image is loaded\r\n\t\t\t */\r\n\t\t\tisImageLoaded: function isImageLoaded(el) {\r\n\t\t\t\tif (el.nodeName === 'IMG') {\r\n\t\t\t\t\treturn el.complete && el.naturalHeight !== 0;\r\n\t\t\t\t} else {\r\n\t\t\t\t\treturn Array.from(el.querySelectorAll('img')).every(this.isImageLoaded);\r\n\t\t\t\t}\r\n\t\t\t},\r\n\r\n\t\t\tsetupInitialOffset: function setupInitialOffset() {\r\n\t\t\t\tif (this._initialOffsetSetup) {\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tthis._initialOffsetSetup = true;\r\n\r\n\t\t\t\tthis.computeInitialOffset();\r\n\t\t\t\tthis.offset.x = this.initialOffset.x;\r\n\t\t\t\tthis.offset.y = this.initialOffset.y;\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Max / min values for the offset\r\n\t\t\t * @param offset\r\n\t\t\t * @return {Object} the sanitized offset\r\n\t\t\t */\r\n\t\t\tsanitizeOffset: function sanitizeOffset(offset) {\r\n\t\t\t\tvar elWidth = this.el.offsetWidth * this.getInitialZoomFactor() * this.zoomFactor;\r\n\t\t\t\tvar elHeight = this.el.offsetHeight * this.getInitialZoomFactor() * this.zoomFactor;\r\n\t\t\t\tvar maxX = elWidth - this.getContainerX() + this.options.horizontalPadding,\r\n\t\t\t\t\tmaxY = elHeight - this.getContainerY() + this.options.verticalPadding,\r\n\t\t\t\t\tmaxOffsetX = Math.max(maxX, 0),\r\n\t\t\t\t\tmaxOffsetY = Math.max(maxY, 0),\r\n\t\t\t\t\tminOffsetX = Math.min(maxX, 0) - this.options.horizontalPadding,\r\n\t\t\t\t\tminOffsetY = Math.min(maxY, 0) - this.options.verticalPadding;\r\n\r\n\t\t\t\treturn {\r\n\t\t\t\t\tx: Math.min(Math.max(offset.x, minOffsetX), maxOffsetX),\r\n\t\t\t\t\ty: Math.min(Math.max(offset.y, minOffsetY), maxOffsetY)\r\n\t\t\t\t};\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Scale to a specific zoom factor (not relative)\r\n\t\t\t * @param zoomFactor\r\n\t\t\t * @param center\r\n\t\t\t */\r\n\t\t\tscaleTo: function scaleTo(zoomFactor, center) {\r\n\t\t\t\tthis.scale(zoomFactor / this.zoomFactor, center);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Scales the element from specified center\r\n\t\t\t * @param scale\r\n\t\t\t * @param center\r\n\t\t\t */\r\n\t\t\tscale: function scale(_scale, center) {\r\n\t\t\t\t_scale = this.scaleZoomFactor(_scale);\r\n\t\t\t\tthis.addOffset({\r\n\t\t\t\t\tx: (_scale - 1) * (center.x + this.offset.x),\r\n\t\t\t\t\ty: (_scale - 1) * (center.y + this.offset.y)\r\n\t\t\t\t});\r\n\t\t\t\ttriggerEvent(this.el, this.options.zoomUpdateEventName);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Scales the zoom factor relative to current state\r\n\t\t\t * @param scale\r\n\t\t\t * @return the actual scale (can differ because of max min zoom factor)\r\n\t\t\t */\r\n\t\t\tscaleZoomFactor: function scaleZoomFactor(scale) {\r\n\t\t\t\tvar originalZoomFactor = this.zoomFactor;\r\n\t\t\t\tthis.zoomFactor *= scale;\r\n\t\t\t\tthis.zoomFactor = Math.min(this.options.maxZoom, Math.max(this.zoomFactor, this.options.minZoom));\r\n\t\t\t\treturn this.zoomFactor / originalZoomFactor;\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Determine if the image is in a draggable state\r\n\t\t\t *\r\n\t\t\t * When the image can be dragged, the drag event is acted upon and cancelled.\r\n\t\t\t * When not draggable, the drag event bubbles through this component.\r\n\t\t\t *\r\n\t\t\t * @return {Boolean}\r\n\t\t\t */\r\n\t\t\tcanDrag: function canDrag() {\r\n\t\t\t\treturn this.options.draggableUnzoomed || !isCloseTo(this.zoomFactor, 1);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Drags the element\r\n\t\t\t * @param center\r\n\t\t\t * @param lastCenter\r\n\t\t\t */\r\n\t\t\tdrag: function drag(center, lastCenter) {\r\n\t\t\t\tif (lastCenter) {\r\n\t\t\t\t\tif (this.options.lockDragAxis) {\r\n\t\t\t\t\t\t// lock scroll to position that was changed the most\r\n\t\t\t\t\t\tif (Math.abs(center.x - lastCenter.x) > Math.abs(center.y - lastCenter.y)) {\r\n\t\t\t\t\t\t\tthis.addOffset({\r\n\t\t\t\t\t\t\t\tx: -(center.x - lastCenter.x),\r\n\t\t\t\t\t\t\t\ty: 0\r\n\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tthis.addOffset({\r\n\t\t\t\t\t\t\t\ty: -(center.y - lastCenter.y),\r\n\t\t\t\t\t\t\t\tx: 0\r\n\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tthis.addOffset({\r\n\t\t\t\t\t\t\ty: -(center.y - lastCenter.y),\r\n\t\t\t\t\t\t\tx: -(center.x - lastCenter.x)\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t}\r\n\t\t\t\t\ttriggerEvent(this.el, this.options.dragUpdateEventName);\r\n\t\t\t\t}\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Calculates the touch center of multiple touches\r\n\t\t\t * @param touches\r\n\t\t\t * @return {Object}\r\n\t\t\t */\r\n\t\t\tgetTouchCenter: function getTouchCenter(touches) {\r\n\t\t\t\treturn this.getVectorAvg(touches);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Calculates the average of multiple vectors (x, y values)\r\n\t\t\t */\r\n\t\t\tgetVectorAvg: function getVectorAvg(vectors) {\r\n\t\t\t\treturn {\r\n\t\t\t\t\tx: vectors.map(function (v) {\r\n\t\t\t\t\t\treturn v.x;\r\n\t\t\t\t\t}).reduce(sum) / vectors.length,\r\n\t\t\t\t\ty: vectors.map(function (v) {\r\n\t\t\t\t\t\treturn v.y;\r\n\t\t\t\t\t}).reduce(sum) / vectors.length\r\n\t\t\t\t};\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Adds an offset\r\n\t\t\t * @param offset the offset to add\r\n\t\t\t * @return return true when the offset change was accepted\r\n\t\t\t */\r\n\t\t\taddOffset: function addOffset(offset) {\r\n\t\t\t\tthis.offset = {\r\n\t\t\t\t\tx: this.offset.x + offset.x,\r\n\t\t\t\t\ty: this.offset.y + offset.y\r\n\t\t\t\t};\r\n\t\t\t},\r\n\r\n\t\t\tsanitize: function sanitize() {\r\n\t\t\t\tif (this.zoomFactor < this.options.zoomOutFactor) {\r\n\t\t\t\t\tthis.zoomOutAnimation();\r\n\t\t\t\t} else if (this.isInsaneOffset(this.offset)) {\r\n\t\t\t\t\tthis.sanitizeOffsetAnimation();\r\n\t\t\t\t}\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Checks if the offset is ok with the current zoom factor\r\n\t\t\t * @param offset\r\n\t\t\t * @return {Boolean}\r\n\t\t\t */\r\n\t\t\tisInsaneOffset: function isInsaneOffset(offset) {\r\n\t\t\t\tvar sanitizedOffset = this.sanitizeOffset(offset);\r\n\t\t\t\treturn sanitizedOffset.x !== offset.x || sanitizedOffset.y !== offset.y;\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Creates an animation moving to a sane offset\r\n\t\t\t */\r\n\t\t\tsanitizeOffsetAnimation: function sanitizeOffsetAnimation() {\r\n\t\t\t\tvar targetOffset = this.sanitizeOffset(this.offset),\r\n\t\t\t\t\tstartOffset = {\r\n\t\t\t\t\t\tx: this.offset.x,\r\n\t\t\t\t\t\ty: this.offset.y\r\n\t\t\t\t\t},\r\n\t\t\t\t\tupdateProgress = function (progress) {\r\n\t\t\t\t\t\tthis.offset.x = startOffset.x + progress * (targetOffset.x - startOffset.x);\r\n\t\t\t\t\t\tthis.offset.y = startOffset.y + progress * (targetOffset.y - startOffset.y);\r\n\t\t\t\t\t\tthis.update();\r\n\t\t\t\t\t}.bind(this);\r\n\r\n\t\t\t\tthis.animate(this.options.animationDuration, updateProgress, this.swing);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Zooms back to the original position,\r\n\t\t\t * (no offset and zoom factor 1)\r\n\t\t\t */\r\n\t\t\tzoomOutAnimation: function zoomOutAnimation() {\r\n\t\t\t\tif (this.zoomFactor === 1) {\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar startZoomFactor = this.zoomFactor,\r\n\t\t\t\t\tzoomFactor = 1,\r\n\t\t\t\t\tcenter = this.getCurrentZoomCenter(),\r\n\t\t\t\t\tupdateProgress = function (progress) {\r\n\t\t\t\t\t\tthis.scaleTo(startZoomFactor + progress * (zoomFactor - startZoomFactor), center);\r\n\t\t\t\t\t}.bind(this);\r\n\r\n\t\t\t\tthis.animate(this.options.animationDuration, updateProgress, this.swing);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Updates the aspect ratio\r\n\t\t\t */\r\n\t\t\tupdateAspectRatio: function updateAspectRatio() {\r\n\t\t\t\tthis.setContainerY(this.container.parentElement.offsetHeight);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Calculates the initial zoom factor (for the element to fit into the container)\r\n\t\t\t * @return {number} the initial zoom factor\r\n\t\t\t */\r\n\t\t\tgetInitialZoomFactor: function getInitialZoomFactor() {\r\n\t\t\t\tvar xZoomFactor = this.container.offsetWidth / this.el.offsetWidth;\r\n\t\t\t\tvar yZoomFactor = this.container.offsetHeight / this.el.offsetHeight;\r\n\r\n\t\t\t\treturn Math.min(xZoomFactor, yZoomFactor);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Calculates the aspect ratio of the element\r\n\t\t\t * @return the aspect ratio\r\n\t\t\t */\r\n\t\t\tgetAspectRatio: function getAspectRatio() {\r\n\t\t\t\treturn this.el.offsetWidth / this.el.offsetHeight;\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Calculates the virtual zoom center for the current offset and zoom factor\r\n\t\t\t * (used for reverse zoom)\r\n\t\t\t * @return {Object} the current zoom center\r\n\t\t\t */\r\n\t\t\tgetCurrentZoomCenter: function getCurrentZoomCenter() {\r\n\t\t\t\tvar offsetLeft = this.offset.x - this.initialOffset.x;\r\n\t\t\t\tvar centerX = -1 * this.offset.x - offsetLeft / (1 / this.zoomFactor - 1);\r\n\r\n\t\t\t\tvar offsetTop = this.offset.y - this.initialOffset.y;\r\n\t\t\t\tvar centerY = -1 * this.offset.y - offsetTop / (1 / this.zoomFactor - 1);\r\n\r\n\t\t\t\treturn {\r\n\t\t\t\t\tx: centerX,\r\n\t\t\t\t\ty: centerY\r\n\t\t\t\t};\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Returns the touches of an event relative to the container offset\r\n\t\t\t * @param event\r\n\t\t\t * @return array touches\r\n\t\t\t */\r\n\t\t\tgetTouches: function getTouches(event) {\r\n\t\t\t\tvar rect = this.container.getBoundingClientRect();\r\n\t\t\t\tvar scrollTop = document.documentElement.scrollTop || document.body.scrollTop;\r\n\t\t\t\tvar scrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft;\r\n\t\t\t\tvar posTop = rect.top + scrollTop;\r\n\t\t\t\tvar posLeft = rect.left + scrollLeft;\r\n\r\n\t\t\t\treturn Array.prototype.slice.call(event.touches).map(function (touch) {\r\n\t\t\t\t\treturn {\r\n\t\t\t\t\t\tx: touch.pageX - posLeft,\r\n\t\t\t\t\t\ty: touch.pageY - posTop\r\n\t\t\t\t\t};\r\n\t\t\t\t});\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Animation loop\r\n\t\t\t * does not support simultaneous animations\r\n\t\t\t * @param duration\r\n\t\t\t * @param framefn\r\n\t\t\t * @param timefn\r\n\t\t\t * @param callback\r\n\t\t\t */\r\n\t\t\tanimate: function animate(duration, framefn, timefn, callback) {\r\n\t\t\t\tvar startTime = new Date().getTime(),\r\n\t\t\t\t\trenderFrame = function () {\r\n\t\t\t\t\t\tif (!this.inAnimation) {\r\n\t\t\t\t\t\t\treturn;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tvar frameTime = new Date().getTime() - startTime,\r\n\t\t\t\t\t\t\tprogress = frameTime / duration;\r\n\t\t\t\t\t\tif (frameTime >= duration) {\r\n\t\t\t\t\t\t\tframefn(1);\r\n\t\t\t\t\t\t\tif (callback) {\r\n\t\t\t\t\t\t\t\tcallback();\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tthis.update();\r\n\t\t\t\t\t\t\tthis.stopAnimation();\r\n\t\t\t\t\t\t\tthis.update();\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tif (timefn) {\r\n\t\t\t\t\t\t\t\tprogress = timefn(progress);\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tframefn(progress);\r\n\t\t\t\t\t\t\tthis.update();\r\n\t\t\t\t\t\t\trequestAnimationFrame(renderFrame);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}.bind(this);\r\n\t\t\t\tthis.inAnimation = true;\r\n\t\t\t\trequestAnimationFrame(renderFrame);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Stops the animation\r\n\t\t\t */\r\n\t\t\tstopAnimation: function stopAnimation() {\r\n\t\t\t\tthis.inAnimation = false;\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Swing timing function for animations\r\n\t\t\t * @param p\r\n\t\t\t * @return {Number}\r\n\t\t\t */\r\n\t\t\tswing: function swing(p) {\r\n\t\t\t\treturn -Math.cos(p * Math.PI) / 2 + 0.5;\r\n\t\t\t},\r\n\r\n\t\t\tgetContainerX: function getContainerX() {\r\n\t\t\t\treturn this.container.offsetWidth;\r\n\t\t\t},\r\n\r\n\t\t\tgetContainerY: function getContainerY() {\r\n\t\t\t\treturn this.container.offsetHeight;\r\n\t\t\t},\r\n\r\n\t\t\tsetContainerY: function setContainerY(y) {\r\n\t\t\t\treturn this.container.style.height = y + 'px';\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Creates the expected html structure\r\n\t\t\t */\r\n\t\t\tsetupMarkup: function setupMarkup() {\r\n\t\t\t\tthis.container = buildElement('<div class=\"pinch-zoom-container\"></div>');\r\n\t\t\t\tthis.el.parentNode.insertBefore(this.container, this.el);\r\n\t\t\t\tthis.container.appendChild(this.el);\r\n\r\n\t\t\t\tthis.container.style.overflow = 'hidden';\r\n\t\t\t\tthis.container.style.position = 'relative';\r\n\r\n\t\t\t\tthis.el.style.webkitTransformOrigin = '0% 0%';\r\n\t\t\t\tthis.el.style.mozTransformOrigin = '0% 0%';\r\n\t\t\t\tthis.el.style.msTransformOrigin = '0% 0%';\r\n\t\t\t\tthis.el.style.oTransformOrigin = '0% 0%';\r\n\t\t\t\tthis.el.style.transformOrigin = '0% 0%';\r\n\r\n\t\t\t\tthis.el.style.position = 'absolute';\r\n\t\t\t},\r\n\r\n\t\t\tend: function end() {\r\n\t\t\t\tthis.hasInteraction = false;\r\n\t\t\t\tthis.sanitize();\r\n\t\t\t\tthis.update();\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Binds all required event listeners\r\n\t\t\t */\r\n\t\t\tbindEvents: function bindEvents() {\r\n\t\t\t\tvar self = this;\r\n\t\t\t\tdetectGestures(this.container, this);\r\n\r\n\t\t\t\twindow.addEventListener('resize', this.update.bind(this));\r\n\t\t\t\tArray.from(this.el.querySelectorAll('img')).forEach(function (imgEl) {\r\n\t\t\t\t\timgEl.addEventListener('load', self.update.bind(self));\r\n\t\t\t\t});\r\n\r\n\t\t\t\tif (this.el.nodeName === 'IMG') {\r\n\t\t\t\t\tthis.el.addEventListener('load', this.update.bind(this));\r\n\t\t\t\t}\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Updates the css values according to the current zoom factor and offset\r\n\t\t\t */\r\n\t\t\tupdate: function update(event) {\r\n\t\t\t\tif (this.updatePlaned) {\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\t\t\t\tthis.updatePlaned = true;\r\n\r\n\t\t\t\twindow.setTimeout(function () {\r\n\t\t\t\t\tthis.updatePlaned = false;\r\n\t\t\t\t\tthis.updateAspectRatio();\r\n\r\n\t\t\t\t\tif (event && event.type === 'resize') {\r\n\t\t\t\t\t\tthis.computeInitialOffset();\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tif (event && event.type === 'load') {\r\n\t\t\t\t\t\tthis.setupInitialOffset();\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tvar zoomFactor = this.getInitialZoomFactor() * this.zoomFactor,\r\n\t\t\t\t\t\toffsetX = -this.offset.x / zoomFactor,\r\n\t\t\t\t\t\toffsetY = -this.offset.y / zoomFactor,\r\n\t\t\t\t\t\ttransform3d = 'scale3d(' + zoomFactor + ', ' + zoomFactor + ',1) ' + 'translate3d(' + offsetX + 'px,' + offsetY + 'px,0px)',\r\n\t\t\t\t\t\ttransform2d = 'scale(' + zoomFactor + ', ' + zoomFactor + ') ' + 'translate(' + offsetX + 'px,' + offsetY + 'px)',\r\n\t\t\t\t\t\tremoveClone = function () {\r\n\t\t\t\t\t\t\tif (this.clone) {\r\n\t\t\t\t\t\t\t\tthis.clone.parentNode.removeChild(this.clone);\r\n\t\t\t\t\t\t\t\tdelete this.clone;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}.bind(this);\r\n\r\n\t\t\t\t\t// Scale 3d and translate3d are faster (at least on ios)\r\n\t\t\t\t\t// but they also reduce the quality.\r\n\t\t\t\t\t// PinchZoom uses the 3d transformations during interactions\r\n\t\t\t\t\t// after interactions it falls back to 2d transformations\r\n\t\t\t\t\tif (!this.options.use2d || this.hasInteraction || this.inAnimation) {\r\n\t\t\t\t\t\tthis.is3d = true;\r\n\t\t\t\t\t\tremoveClone();\r\n\r\n\t\t\t\t\t\tthis.el.style.webkitTransform = transform3d;\r\n\t\t\t\t\t\tthis.el.style.mozTransform = transform2d;\r\n\t\t\t\t\t\tthis.el.style.msTransform = transform2d;\r\n\t\t\t\t\t\tthis.el.style.oTransform = transform2d;\r\n\t\t\t\t\t\tthis.el.style.transform = transform3d;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\t// When changing from 3d to 2d transform webkit has some glitches.\r\n\t\t\t\t\t\t// To avoid this, a copy of the 3d transformed element is displayed in the\r\n\t\t\t\t\t\t// foreground while the element is converted from 3d to 2d transform\r\n\t\t\t\t\t\tif (this.is3d) {\r\n\t\t\t\t\t\t\tthis.clone = this.el.cloneNode(true);\r\n\t\t\t\t\t\t\tthis.clone.style.pointerEvents = 'none';\r\n\t\t\t\t\t\t\tthis.container.appendChild(this.clone);\r\n\t\t\t\t\t\t\twindow.setTimeout(removeClone, 200);\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\tthis.el.style.webkitTransform = transform2d;\r\n\t\t\t\t\t\tthis.el.style.mozTransform = transform2d;\r\n\t\t\t\t\t\tthis.el.style.msTransform = transform2d;\r\n\t\t\t\t\t\tthis.el.style.oTransform = transform2d;\r\n\t\t\t\t\t\tthis.el.style.transform = transform2d;\r\n\r\n\t\t\t\t\t\tthis.is3d = false;\r\n\t\t\t\t\t}\r\n\t\t\t\t}.bind(this), 0);\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Enables event handling for gestures\r\n\t\t\t */\r\n\t\t\tenable: function enable() {\r\n\t\t\t\tthis.enabled = true;\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Disables event handling for gestures\r\n\t\t\t */\r\n\t\t\tdisable: function disable() {\r\n\t\t\t\tthis.enabled = false;\r\n\t\t\t}\r\n\t\t};\r\n\r\n\t\tvar detectGestures = function detectGestures(el, target) {\r\n\t\t\tvar interaction = null,\r\n\t\t\t\tfingers = 0,\r\n\t\t\t\tlastTouchStart = null,\r\n\t\t\t\tstartTouches = null,\r\n\t\t\t\tsetInteraction = function setInteraction(newInteraction, event) {\r\n\t\t\t\t\tif (interaction !== newInteraction) {\r\n\r\n\t\t\t\t\t\tif (interaction && !newInteraction) {\r\n\t\t\t\t\t\t\tswitch (interaction) {\r\n\t\t\t\t\t\t\tcase \"zoom\":\r\n\t\t\t\t\t\t\t\ttarget.handleZoomEnd(event);\r\n\t\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t\tcase 'drag':\r\n\t\t\t\t\t\t\t\ttarget.handleDragEnd(event);\r\n\t\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\tswitch (newInteraction) {\r\n\t\t\t\t\t\tcase 'zoom':\r\n\t\t\t\t\t\t\ttarget.handleZoomStart(event);\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tcase 'drag':\r\n\t\t\t\t\t\t\ttarget.handleDragStart(event);\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\tinteraction = newInteraction;\r\n\t\t\t\t},\r\n\t\t\t\tupdateInteraction = function updateInteraction(event) {\r\n\t\t\t\t\tif (fingers === 2) {\r\n\t\t\t\t\t\tsetInteraction('zoom');\r\n\t\t\t\t\t} else if (fingers === 1 && target.canDrag()) {\r\n\t\t\t\t\t\tsetInteraction('drag', event);\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tsetInteraction(null, event);\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\ttargetTouches = function targetTouches(touches) {\r\n\t\t\t\t\treturn Array.from(touches).map(function (touch) {\r\n\t\t\t\t\t\treturn {\r\n\t\t\t\t\t\t\tx: touch.pageX,\r\n\t\t\t\t\t\t\ty: touch.pageY\r\n\t\t\t\t\t\t};\r\n\t\t\t\t\t});\r\n\t\t\t\t},\r\n\t\t\t\tgetDistance = function getDistance(a, b) {\r\n\t\t\t\t\tvar x, y;\r\n\t\t\t\t\tx = a.x - b.x;\r\n\t\t\t\t\ty = a.y - b.y;\r\n\t\t\t\t\treturn Math.sqrt(x * x + y * y);\r\n\t\t\t\t},\r\n\t\t\t\tcalculateScale = function calculateScale(startTouches, endTouches) {\r\n\t\t\t\t\tvar startDistance = getDistance(startTouches[0], startTouches[1]),\r\n\t\t\t\t\t\tendDistance = getDistance(endTouches[0], endTouches[1]);\r\n\t\t\t\t\treturn endDistance / startDistance;\r\n\t\t\t\t},\r\n\t\t\t\tcancelEvent = function cancelEvent(event) {\r\n\t\t\t\t\tevent.stopPropagation();\r\n\t\t\t\t\tevent.preventDefault();\r\n\t\t\t\t},\r\n\t\t\t\tdetectDoubleTap = function detectDoubleTap(event) {\r\n\t\t\t\t\tvar time = new Date().getTime();\r\n\r\n\t\t\t\t\tif (fingers > 1) {\r\n\t\t\t\t\t\tlastTouchStart = null;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tif (time - lastTouchStart < 300) {\r\n\t\t\t\t\t\tcancelEvent(event);\r\n\r\n\t\t\t\t\t\ttarget.handleDoubleTap(event);\r\n\t\t\t\t\t\tswitch (interaction) {\r\n\t\t\t\t\t\tcase \"zoom\":\r\n\t\t\t\t\t\t\ttarget.handleZoomEnd(event);\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tcase 'drag':\r\n\t\t\t\t\t\t\ttarget.handleDragEnd(event);\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\ttarget.isDoubleTap = false;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tif (fingers === 1) {\r\n\t\t\t\t\t\tlastTouchStart = time;\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\tfirstMove = true;\r\n\r\n\t\t\tel.addEventListener('touchstart', function (event) {\r\n\t\t\t\tif (target.enabled) {\r\n\t\t\t\t\tfirstMove = true;\r\n\t\t\t\t\tfingers = event.touches.length;\r\n\t\t\t\t\tdetectDoubleTap(event);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\r\n\t\t\tel.addEventListener('touchmove', function (event) {\r\n\t\t\t\tif (target.enabled && !target.isDoubleTap) {\r\n\t\t\t\t\tif (firstMove) {\r\n\t\t\t\t\t\tupdateInteraction(event);\r\n\t\t\t\t\t\tif (interaction) {\r\n\t\t\t\t\t\t\tcancelEvent(event);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tstartTouches = targetTouches(event.touches);\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tswitch (interaction) {\r\n\t\t\t\t\t\tcase 'zoom':\r\n\t\t\t\t\t\t\ttarget.handleZoom(event, calculateScale(startTouches, targetTouches(event.touches)));\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tcase 'drag':\r\n\t\t\t\t\t\t\ttarget.handleDrag(event);\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tif (interaction) {\r\n\t\t\t\t\t\t\tcancelEvent(event);\r\n\t\t\t\t\t\t\ttarget.update();\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tfirstMove = false;\r\n\t\t\t\t}\r\n\t\t\t});\r\n\r\n\t\t\tel.addEventListener('touchend', function (event) {\r\n\t\t\t\tif (target.enabled) {\r\n\t\t\t\t\tfingers = event.touches.length;\r\n\t\t\t\t\tupdateInteraction(event);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t};\r\n\r\n\t\treturn PinchZoom;\r\n\t};\r\n\r\n\tvar PinchZoom = definePinchZoom();\r\n\r\n\texports.default = PinchZoom;\r\n});\n},{}],76:[function(require,module,exports){\n'use strict';\r\nvar pressrelease = {\r\n\tinit: function() {\r\n\t\t$(function() {\r\n\t\t\t$('.press-rel-filter-wrap select option[value=\"'+window.location.href+'\"]').attr(\"selected\",\"selected\");\r\n\t\t});\r\n\t}\r\n};\r\nmodule.exports = pressrelease;\r\n\n},{}],77:[function(require,module,exports){\n'use strict';\r\n\r\nvar images = require('./pages/product/image'),\r\n\tvariant = require('./pages/product/variant'),\r\n\tPromise = require('promise'),\r\n\tminicart = require('./minicart'),\r\n\tcustomModal = require('./modal'),\r\n\tcurrentLayout = require('./detect-layout'),\r\n\tutil = require('./util'),\r\n\tbuyallutil = require('./buyall-util'),\r\n\tdelayImage = require('./delay-image'),\r\n\tcurrLayoutVal = currentLayout.init(),\r\n\tcart = require('./pages/cart'),\r\n\tflagToSetTileHeight = true;\r\n\r\nfunction gridViewToggle() {\r\n\t$('.toggle-grid').on('click', function () {\r\n\t\t$('.search-result-content').toggleClass('wide-tiles');\r\n\t\t$(this).toggleClass('wide');\r\n\t});\r\n}\r\n\r\nvar slideSettings = {\r\n\tcolor: {\r\n\t\tlist: [5, 5, 6, 6, 5],\r\n\t\tgrid: [5, 3, 3, 2, 2]\r\n\t},\r\n\tsize: {\r\n\t\tlist: [3, 3, 3, 3, 3],\r\n\t\tgrid: [2, 1, 1, 1, 1]\r\n\t}\r\n}\r\n\r\nfunction carouselSettings(varient) {\r\n\tvar currentView = 'grid';\r\n\tvar carouselView = slideSettings[varient];\r\n\tif ($('.product-tiles-holder').hasClass('list-view')) {\r\n\t\tcurrentView = 'list';\r\n\t}\r\n\treturn [\r\n\t\t{ breakpoint: 1300, settings: { slidesToShow: carouselView[currentView][0], slidesToScroll: carouselView[currentView][0] } },\r\n\t\t{ breakpoint: 769, settings: { slidesToShow: carouselView[currentView][1], slidesToScroll: carouselView[currentView][1] } },\r\n\t\t{ breakpoint: 601, settings: { slidesToShow: carouselView[currentView][2], slidesToScroll: carouselView[currentView][2] } },\r\n\t\t{ breakpoint: 451, settings: { slidesToShow: carouselView[currentView][3], slidesToScroll: carouselView[currentView][3] } },\r\n\t\t{ breakpoint: 321, settings: { slidesToShow: carouselView[currentView][4], slidesToScroll: carouselView[currentView][4] } }\r\n\t];\r\n}\r\n\r\nfunction initCarouselSwatches(tileOuter, swatchInitialIndex, ajaxCall) {\r\n\t//Init event, make swatches left aligned if number of items less than to show\r\n\t$('.tile-carousel').on('init', function(event, slick){\r\n\t\tif(slick.$nextArrow.hasClass('slick-hidden')) {\r\n\t\t\t$(this).addClass('left-aligned-slick');\r\n\t\t} else {\r\n\t\t\t$(this).removeClass('left-aligned-slick');\r\n\t\t}\r\n\t});\r\n\r\n\t//Init event, make swatches left aligned if number of items less than to show\r\n\t//Upon resolution change\r\n\t$('.tile-carousel').on('breakpoint', function(event, slick){\r\n\t\tif(slick.$nextArrow.hasClass('slick-hidden')) {\r\n\t\t\t$(this).addClass('left-aligned-slick');\r\n\t\t} else {\r\n\t\t\t$(this).removeClass('left-aligned-slick');\r\n\t\t}\r\n\t});\r\n\r\n\t$('.tile-color-carousel').not('.slick-initialized').slick({\r\n\t\tdots: false,\r\n\t\tinfinite: false,\r\n\t\tslidesToShow: 5,\r\n\t\tslidesToScroll: 5,\r\n\t\tspeed: 300,\r\n\t\trows: 0,\r\n\t\tresponsive: carouselSettings('color'),\r\n\t\tprevArrow: '<button class=\"slide-arrow slick-prev\"></button>',\r\n \tnextArrow: '<button class=\"slide-arrow slick-next\"></button>'\r\n\t});\r\n\t$('.tile-size-carousel').not('.slick-initialized').slick({\r\n\t\tdots: false,\r\n\t\tinfinite: false,\r\n\t\tslidesToShow: 3,\r\n\t\tslidesToScroll: 3,\r\n\t\tspeed: 300,\r\n\t\trows: 0,\r\n\t\tresponsive: carouselSettings('size'),\r\n\t\tprevArrow: '<button class=\"slide-arrow slick-prev\"></button>',\r\n \tnextArrow: '<button class=\"slide-arrow slick-next\"></button>'\r\n\t});\r\n\r\n\t\r\n\t\r\n\tif (ajaxCall) {\r\n\t\ttileOuter.find('.tile-color-carousel').hide().slick(\r\n\t\t\t'slickGoTo', swatchInitialIndex\r\n\t\t).show();\r\n\t\ttileOuter.find('.tile-size-carousel').hide().slick(\r\n\t\t\t'slickGoTo', swatchInitialIndex\r\n\t\t).show();\r\n\t\tif(!util.isTouchScreen()) {\r\n\t\t\ttileOuter.find('.color-variant .swatch[title]').each(function() {\r\n\t\t\t\t$(this).attr('title', util.capitalizeFirstLetters($(this).attr('title')));\r\n\t\t\t});\r\n\t\t}\r\n\t} else {\r\n\t\tinitialSlideHandler();\r\n\t\tif(!util.isTouchScreen()) {\r\n\t\t\t$('.color-variant .swatch[title]').each(function() {\r\n\t\t\t\t$(this).attr('title', util.capitalizeFirstLetters($(this).attr('title')));\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n}\r\n\r\n/*\r\n * Function:\r\n * Default selected swatch visibility on the slide(Both color and size carousel).\r\n * Call on page load and during grid/list view switching\r\n */\r\nfunction initialSlideHandler() {\r\n\t$('.product-tile').each(function () {\r\n\t\tif ($(this).find('.tile-carousel span').length > 0) {\r\n\t\t\tvar selectedSwatch = $(this).find('span.selected').eq(0).index();\r\n\t\t\t$(this).find('.tile-carousel').hide().slick(\r\n\t\t\t\t'slickGoTo', selectedSwatch\r\n\t\t\t).show();\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction tileQuantitySelect() {\r\n\t$('.tile-cta-warpper select').selectmenu({\r\n\t\twidth: false,\r\n\t\tposition: {\r\n\t\t\tmy: \"left top\",\r\n\t\t\tat: \"left bottom\",\r\n\t\t\tcollision: \"flip flip\"\r\n\t\t},\r\n\t\tclasses: {\r\n\t\t\t\"ui-selectmenu-menu\": \"tileQtySelector\"\r\n\t\t}\r\n\t});\r\n\r\n\t$('.tile-cta-warpper select').on('selectmenuchange change', function (event) {\r\n\t\tvar tileQtyId = 'select#' + $(this).attr('id');\r\n\t\tvar $tileOuter = $(this).closest('.product-tile-inner');\r\n\t\tvar $pid = $tileOuter.find('.product-tile').data('itemid');\r\n\t\tvar $qty = $(this).find('option:selected').val();\r\n\t\tif (updatePIDsReq($tileOuter)) {\r\n\t\t\tbuyallutil.updateqty($pid, $qty);\r\n\t\t}\r\n\r\n\t\tif ($(tileQtyId).hasClass('quantity')) {\r\n\t\t\ttileMouseHandler();\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction shopByCategory() {\r\n\t$('#clp-collection-select').on('selectmenuchange change', function () {\r\n\t\tvar categoryID = $(this).val();\r\n\t\t$('html, body').animate({\r\n\t\t\tscrollTop: $('#' + categoryID).offset().top - 55\r\n\t\t}, 500);\r\n\t\t$(this).selectmenu('refresh');\r\n\t});\r\n}\r\n\r\nvar parseQueryString = function (url) {\r\n\tvar urlParams = {};\r\n\turl.replace(\r\n\t\tnew RegExp(\"([^?=&]+)(=([^&]*))?\", \"g\"),\r\n\t\tfunction ($0, $1, $2, $3) {\r\n\t\t\tif (typeof $3 != \"undefined\") {\r\n\t\t\t\turlParams[$1] = $3;\r\n\t\t\t}\r\n\t\t}\r\n\t);\r\n\treturn urlParams;\r\n}\r\n\r\nfunction bindSwatchClick() {\r\n\t$('.tile-size-carousel a').off('click').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\r\n\t\tvar $tileOuter = $(this).closest('.product-tile-inner'),\r\n\t\t\t$tileLoader = $tileOuter.find('.tile-ajax-loader'),\r\n\t\t\tswatchInitialIndex = $tileOuter.find('.tile-size-carousel span.slick-current').attr('data-slick-index');\r\n\r\n\t\tif ($(this).parent().hasClass('selected')) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\t$tileLoader.show();\r\n\t\t$tileOuter.find('.thumb-link').attr('href', $(this).attr('href'));\r\n\t\t$tileOuter.find('name-link').attr('href', $(this).attr('href'));\r\n\r\n\t\tvar urlToParse = $(this).attr('href'),\r\n\t\t\tresult = JSON.parse(JSON.stringify(parseQueryString(urlToParse)));\r\n\r\n\t\tif (result && typeof result.pid == 'undefined') {\r\n\t\t\tresult.pid = $tileOuter.find('.product-tile').data('masterpid');\r\n\t\t}\r\n\r\n\t\t$.ajax({\r\n\t\t\turl: util.appendParamToURL(Urls.transactionalHitTile, 'format', 'ajax'),\r\n\t\t\tdata: result,\r\n\t\t\ttype: 'GET'\r\n\t\t}).done(function (data) {\r\n\t\t\t$('.product-tile-inner #a2c-error').hide();\r\n\r\n\t\t\tvar oldPid = $tileOuter.find('.product-tile').data('itemid');\r\n\t\t\t$tileOuter.html(data);\r\n\t\t\tvar newPid = $tileOuter.find('.product-tile').data('itemid');\r\n\t\t\tinitCarouselSwatches($tileOuter, swatchInitialIndex, true);\r\n\t\t\tbindSwatchClick();\r\n\t\t\ttileQuantitySelect();\r\n\t\t\t$tileLoader.hide();\r\n\t\t\tif (updatePIDsReq($tileOuter)) {\r\n\t\t\t\tbuyallutil.updatepid(oldPid, newPid);\r\n\t\t\t}\r\n\t\t\t$(document).trigger('gttilevariationchange');\r\n\t\t});\r\n\t});\r\n\r\n\t$('.tile-color-carousel .swatch').off('click').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\tif ($(this).parent().hasClass('selected')) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tvar $tileOuter = $(this).closest('.product-tile-inner'),\r\n\t\t\tswatchInitialIndex = $tileOuter.find('.tile-color-carousel span.slick-current').attr('data-slick-index'),\r\n\t\t\t$tileLoader = $tileOuter.find('.tile-ajax-loader');\r\n\r\n\t\t$tileLoader.show();\r\n\t\t$tileOuter.find('.thumb-link').attr('href', $(this).attr('href'));\r\n\t\t$tileOuter.find('.name-link').attr('href', $(this).attr('href'));\r\n\r\n\t\tvar urlToParse = $(this).attr('href'),\r\n\t\t\tresult = JSON.parse(JSON.stringify(parseQueryString(urlToParse)));\r\n\r\n\t\tif (result && typeof result.pid == 'undefined') {\r\n\t\t\tresult.pid = $tileOuter.find('.product-tile').data('masterpid');\r\n\t\t}\r\n\r\n\t\tvar $tile = $(this).closest('.product-tile');\r\n\t\tresult.attrColorVals = $tile.attr('data-strAttrColorVals');\r\n\t\tresult.fondationResultTile = $tile.attr('data-fondationResultTile');\r\n\r\n\t\t$.ajax({\r\n\t\t\turl: util.appendParamToURL(Urls.transactionalHitTile, 'format', 'ajax'),\r\n\t\t\tdata: result,\r\n\t\t\ttype: 'GET'\r\n\t\t}).done(function (data) {\r\n\t\t\t$('.product-tile-inner #a2c-error').hide();\r\n\t\t\tvar productImage = new Image();\r\n\t\t\tvar tileImageHeight = $tileOuter.find('.thumb-link').height();\r\n\t\t\tproductImage.src = $(data).find('.thumb-image')[0].src;\r\n\t\t\tvar oldPid = $tileOuter.find('.product-tile').data('itemid');\r\n\t\t\t$tileOuter.html(data);\r\n\t\t\tif($tileOuter.parents('.tiles-container').find('.product-tile-outer').length < 2){\r\n\t\t\t\t$tileOuter.find('.thumb-link').height(tileImageHeight);\r\n\t\t\t}\r\n\t\t\tvar newPid = $tileOuter.find('.product-tile').data('itemid');\r\n\t\t\tinitCarouselSwatches($tileOuter, swatchInitialIndex, true);\r\n\t\t\tbindSwatchClick();\r\n\t\t\ttileQuantitySelect();\r\n\t\t\t$tileLoader.hide();\r\n\t\t\tif (updatePIDsReq($tileOuter)) {\r\n\t\t\t\tbuyallutil.updatepid(oldPid, newPid);\r\n\t\t\t}\r\n\t\t\t$(document).trigger('gttilevariationchange');\r\n\t\t\tproductImage.onload = function(){\r\n\t\t\t\t$tileOuter.find('.thumb-link').removeAttr('style');\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\r\n\t$('.product-tile-inner button.add-to-cart').off('click').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar $tile = $(this).closest('.product-tile');\r\n\t\tvar $cartAction = $(this).data('cartaction');\r\n\t\tvar $pid = $(this).data('pid');\r\n\t\tvar $qty = $tile.find('.quantity option:selected').val();\r\n\t\tvar $data = new FormData();\r\n\t\tvar addToCartButton = $(this);\r\n\r\n\t\tif ($tile.find('#a2c-error').hasClass('active')) {\r\n\t\t\treturn;\r\n\t\t} else {\r\n\t\t\t$('.product-tile-inner #a2c-error').hide();\r\n\t\t}\r\n\t\t$data.append(window.User.CSRFTokenName, window.User.CSRFTokenValue);\r\n\t\t$data.append('pid', $pid);\r\n\t\t$data.append('cartAction', $cartAction);\r\n\t\t$data.append('Quantity', $qty);\r\n\r\n\t\ttileaddItemToCart($data, $tile).then(function (response) {\r\n\t\t\t$(document).trigger(\"gtadd-to-cart\");\r\n\t\t\tminicart.show(response,addToCartButton,addToCartButton.find('.label'));\r\n\t\t\tif (window.pageContext.ns === 'cart') {\r\n\t\t\t\t$.ajax({\r\n\t\t\t\t\ttype: 'GET',\r\n\t\t\t\t\turl: util.ajaxUrl(Urls.cartShow, 'format', 'ajax'),\r\n\t\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\t\t$('#primary').html(response);\r\n\t\t\t\t\t\tcart.init();\r\n\t\t\t\t\t},\r\n\t\t\t\t\terror: function () {\r\n\t\t\t\t\t\tpage.refresh();\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t}.bind(this));\r\n\t});\r\n}\r\n\r\nfunction tileaddItemToCart($data, $tile) {\r\n\t$tile.find('.add-to-cart').addClass('error');\r\n\treturn Promise.resolve($.ajax({\r\n\t\ttype: 'POST',\r\n\t\turl: util.ajaxUrl(Urls.addProduct, 'format', 'ajax'),\r\n\t\tprocessData: false,\r\n\t\tcontentType: false,\r\n\t\tdata: $data\r\n\t})).then(function (response) {\r\n\t\t// handle error in the response\r\n\t\tif (response.error) {\r\n\t\t\tif (response.error === \"Basket Limit Exceed\") {\r\n\t\t\t\tvar url = util.appendParamToURL(Urls.basketLimitExceed, 'format', 'ajax');\r\n\t\t\t\t$.ajax({\r\n\t\t\t\t\turl: url,\r\n\t\t\t\t\tdataType: 'html',\r\n\t\t\t\t\tsuccess: function (response) {\r\n\t\t\t\t\t\tcustomModal.createCustomModal('addProduct-error-modal');\r\n\t\t\t\t\t\t$('.addProduct-error-modal').find('.modal-body').html(response).scrollBox();\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t\t$tile.find('.add-to-cart').removeClass('error');\r\n\t\t\t\tthrow new Error(response.error);\r\n\t\t\t\treturn false;\r\n\t\t\t} else {\r\n\t\t\t\t$tile.find('#a2c-error').html(response.error).addClass('active').slideDown('fast', function () {\r\n\t\t\t\t\tsetTimeout(function () {\r\n\t\t\t\t\t\t$tile.find('#a2c-error').slideUp(500, function () {\r\n\t\t\t\t\t\t\t$(this).removeClass('active');\r\n\t\t\t\t\t\t\t$tile.find('.add-to-cart').removeClass('error');\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t}, 2000);\r\n\t\t\t\t});\r\n\t\t\t\tthrow new Error(response.error);\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\r\n\t\t} else {\r\n\t\t\t$tile.find('#a2c-error').hide();\r\n\t\t\t$tile.find('.add-to-cart').removeClass('error');\r\n\t\t}\r\n\r\n\t\treturn response;\r\n\t});\r\n}\r\n\r\nfunction tileMouseHandler() {\r\n\tvar isTouchDevice = ('ontouchstart' in document.documentElement);\r\n\tif (currLayoutVal == 'desktop' && $('.marketing').length == 0) {\r\n\t\t$('.product-tile-inner').on('mouseenter mouseleave', function (event) {\r\n\t\t\t$(this).find('select').selectmenu('close');\r\n\t\t\tif (isTouchDevice) {\r\n\t\t\t\tif (event.type == 'mouseenter') {\r\n\t\t\t\t\t$('.product-tile-inner').removeClass('active');\r\n\t\t\t\t\t$(this).addClass('active');\r\n\t\t\t\t} else if (event.type == 'mouseleave') {\r\n\t\t\t\t\t$(this).removeClass('active');\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\t//clicking out side the tile remove the hover state.\r\n\t\tif (isTouchDevice) {\r\n\t\t\t$(document).on('touchstart', function (e) {\r\n\t\t\t\tvar tile = $('.product-tile-inner');\r\n\t\t\t\tif ($(event.target).attr('class') != tile && !tile.has(e.target).length) {\r\n\t\t\t\t\t$('.product-tile-inner.active').removeClass('active');\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t} else {\r\n\t\t\t$('.modal-close, .modal-close-outer, .modal-close-btn').on('click', function () {\r\n\t\t\t\t$('html').removeClass('modal-open');\r\n\t\t\t\tupdateTileHeight();\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Initializes events on the product-tile for the following elements:\r\n * - swatches\r\n * - thumbnails\r\n */\r\nfunction initializeEvents() {\r\n\tgridViewToggle();\r\n\tbindSwatchClick();\r\n\ttileQuantitySelect();\r\n\tshopByCategory();\r\n\ttileMouseHandler();\r\n}\r\n\r\nfunction tileHeight($tiles) {\r\n\tvar noTileHeightNeeded = $('.homepage-container,.product-listing,.pt_cart,.pdp-page,.pt_content,.pt_article,.pt_account,.pt_order-confirmation,.pt_product-search-noresult,.pt_customer-service').length > 0;\r\n\tif (!noTileHeightNeeded) {\r\n\t\t$tiles.syncHeight({\r\n\t\t\t'updateOnResize': true,\r\n\t\t\tparentElement: '.product-tile-outer'\r\n\t\t}).each(function (idx) {\r\n\t\t\t$(this).data('idx', idx);\r\n\t\t\t$(this).closest('.product-tile-inner').addClass('tile-inner');\r\n\t\t});\r\n\t}\r\n\t$('.f-f-product-tile-wrapper .product-tile').syncHeight({ 'updateOnResize': true })\r\n}\r\n\r\nfunction setTileHeightFlag(updateLayoutVal) {\r\n\tif (updateLayoutVal == 'mobile' && $('.pt_storefront .recommendation-block').length > 0) {\r\n\t\tflagToSetTileHeight = false;\r\n\t} else {\r\n\t\tflagToSetTileHeight = true;\r\n\t}\r\n}\r\n\r\n$(window).on('resize orientationchange', function (event) {\r\n\tcurrLayoutVal = currentLayout.init();\r\n\r\n\tupdateTileHeight();\r\n\ttileMouseHandler();\r\n\tdelayImage.showDelayedImages();\r\n\r\n\t// Hiding the error to prevent adding extra height to tile on orientation change.\r\n\t$('.product-tile-inner.transactional #a2c-error').not('.oos').hide();\r\n\r\n\tsetTimeout(function () {\r\n\t\tvar $currLayoutVal = currentLayout.init();\r\n\t\tsetTileHeightFlag($currLayoutVal);\r\n\t\tif (flagToSetTileHeight) {\r\n\t\t\ttileHeight($('.recommendation .product-tile'));\r\n\t\t\tevent.stopImmediatePropagation();\r\n\t\t} else {\r\n\t\t\t$('.recommendation .product-tile').each(function () {\r\n\t\t\t\t$(this).removeAttr('style');\r\n\t\t\t\t$(this).closest('.product-tile-outer').removeAttr('style');\r\n\t\t\t\tevent.stopImmediatePropagation();\r\n\t\t\t});\r\n\t\t}\r\n\t}, 100)\r\n});\r\n\r\nfunction updateTileHeight() {\r\n\tvar $tiles = $('.product-grids-container .product-tile, .collection-block .product-tile, .recommendation .product-tile, .cart-recommendation-container .product-tile, .wishlist-item .product-tile, .products-used-wrapper .product-tile, .article-recommend-sec .product-tile, .article-body .product-tile-inner .product-tile, .f-f-product-tile-wrapper .product-tile'),\r\n\t\t$defendTiles = $('.to-defend .product-tile'),\r\n\t\t$regenerateTiles = $('.to-regenerate .product-tile');\r\n\r\n\tif ($defendTiles.length > 0) {\r\n\t\ttileHeight($defendTiles);\r\n\t}\r\n\r\n\tif ($regenerateTiles.length > 0) {\r\n\t\ttileHeight($regenerateTiles);\r\n\t}\r\n\r\n\tif ($tiles.length === 0) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tif (flagToSetTileHeight) {\r\n\t\ttileHeight($tiles);\r\n\t}\r\n\r\n\tdelayImage.showDelayedImages();\r\n}\r\n\r\n//Return true if action performed buyall tiles so that pids data can be updated accordingly \r\nfunction updatePIDsReq($tileOuter) {\r\n\tvar required = false;\r\n\tif ($tileOuter.parents('.regimen-bg').length > 0 || $tileOuter.parents('.tutorial-bg').length > 0 || $tileOuter.parents('.quiz-recommended-products').length > 0 || $tileOuter.parents('.f-f-application-tips').length > 0) {\r\n\t\trequired = true;\r\n\t}\r\n\treturn required;\r\n}\r\n\r\nfunction switchGridType(isClicked) {\r\n\t$('#list-view,#grid-view').toggleClass('active-view');\r\n\t$('.product-tiles-holder').toggleClass('list-view');\r\n\tif(isClicked){\r\n\t\t$('.tile-color-carousel').slick('slickSetOption', 'responsive', carouselSettings('color'), true);\r\n\t\t$('.tile-size-carousel').slick('slickSetOption', 'responsive', carouselSettings('size'), true);\r\n\t\tinitialSlideHandler();\r\n\t\tif (typeof (Storage) !== \"undefined\") {\r\n\t\t\tsessionStorage.setItem(\"is-listview\", $('.product-tiles-holder').hasClass('list-view'));\r\n\t\t}\r\n\t}\r\n}\r\nfunction initGridSwitcher() {\r\n\tif (!!window.gridSwitcherInitialized) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tif (typeof (Storage) !== \"undefined\") {\r\n\t\tvar isListView = sessionStorage.getItem(\"is-listview\");\r\n\t\tif (isListView === null || isListView === undefined) {\r\n\t\t\tif (SitePreferences.PRODUCT_GRID_DEFAULT_VIEW !== '' && SitePreferences.PRODUCT_GRID_DEFAULT_VIEW == 'single-column') {\r\n\t\t\t\tswitchGridType(false);\r\n\t\t\t}\r\n\t\t} else if (isListView !== null && isListView !== undefined && isListView === 'true') { //Session storage converts boolean to string, hence string comparison\r\n\t\t\tswitchGridType(false);\r\n\t\t}\r\n\t\t$('.product-tiles-holder').addClass('is-visible');\r\n\t} else {\r\n\t\tif (SitePreferences.PRODUCT_GRID_DEFAULT_VIEW !== '' && SitePreferences.PRODUCT_GRID_DEFAULT_VIEW == 'single-column') {\r\n\t\t\tswitchGridType(false);\r\n\t\t}\r\n\t}\r\n\r\n\t$('body').on(\"click\", \".view-switcher:not('.active-view')\", function () {\r\n\t\tswitchGridType(true);\r\n\t});\r\n\twindow.gridSwitcherInitialized = true;\r\n}\r\n\r\nexports.init = function () {\r\n\tsetTileHeightFlag(currLayoutVal);\r\n\tupdateTileHeight();\r\n\tinitializeEvents();\r\n\tinitGridSwitcher();\r\n};\r\n\r\nexports.initCarouselSwatches = initCarouselSwatches;\n},{\"./buyall-util\":6,\"./delay-image\":12,\"./detect-layout\":13,\"./minicart\":26,\"./modal\":27,\"./pages/cart\":33,\"./pages/product/image\":51,\"./pages/product/variant\":56,\"./util\":93,\"promise\":141}],78:[function(require,module,exports){\n'use strict';\r\n\r\nvar $loader;\r\n\r\n/**\r\n * @function\r\n * @description Shows an AJAX-loader on top of a given container\r\n * @param {Element} container The Element on top of which the AJAX-Loader will be shown\r\n */\r\nvar show = function (container) {\r\n\tvar target = (!container || $(container).length === 0) ? $('body') : $(container);\r\n\t$loader = $loader || $('.loader');\r\n\r\n\tif ($loader.length === 0) {\r\n\t\t$loader = $('<div/>').addClass('loader')\r\n\t\t\t.append($('<div/>').addClass('loader-indicator'), $('<div/>').addClass('loader-bg'));\r\n\t}\r\n\treturn $loader.appendTo(target).show();\r\n};\r\n/**\r\n * @function\r\n * @description Hides an AJAX-loader\r\n */\r\nvar hide = function () {\r\n\tif ($loader) {\r\n\t\t$loader.hide();\r\n\t}\r\n};\r\n\r\nexports.show = show;\r\nexports.hide = hide;\n},{}],79:[function(require,module,exports){\n'use strict';\r\n\r\nvar product = require('./pages/product'),\r\n\tutil = require('./util'),\r\n\tvariant = require('./pages/product/variant'),\r\n\timages = require('./pages/product/image'),\r\n\t_ = require('lodash'),\r\n\tcurrentLayout = require('./detect-layout'),\r\n\tcheckLayout = currentLayout.init(),\r\n\tcustomModal = require('./modal');\r\n\r\n\r\nvar makeUrl = function (url, source, productListID) {\r\n\tif (source) {\r\n\t\turl = util.appendParamToURL(url, 'source', source);\r\n\t}\r\n\tif (productListID) {\r\n\t\turl = util.appendParamToURL(url, 'productlistid', productListID);\r\n\t}\r\n\treturn url;\r\n};\r\n\r\nvar removeParam = function (url) {\r\n\tif (url.indexOf('?') !== -1) {\r\n\t\treturn url.substring(0, url.indexOf('?'));\r\n\t} else {\r\n\t\treturn url;\r\n\t}\r\n};\r\nvar updateQuickviewScroll = function () {\r\n\t$('.quickview-modal .modal-body').scrollBox();\r\n\tif (checkLayout == 'desktop') {\r\n\t\t$('.quickview-modal .modal-body > .sb-content').bind('scroll', function()\r\n\t\t{\r\n\t\t\tif(Math.round($(this).scrollTop() + $(this).innerHeight(), 20) >= Math.round($(this)[0].scrollHeight, 20)) {\r\n\t\t\t\t$(\".quickview-transparent-gradient\").hide();\r\n\t\t\t\t$(\".replenishment-wrapper .ui-front.ui-selectmenu-open\").css(\"z-index\", \"1006\");\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\t$(\".quickview-transparent-gradient\").show();\r\n\t\t\t\t$(\".replenishment-wrapper .ui-front.ui-selectmenu-open\").css(\"z-index\", \"auto\");\r\n\t\t\t}\r\n\t\t})\r\n\t}\r\n\t$(document).ajaxComplete(function(){\r\n\t\tif($('.quickview-modal .modal-body').length > 0){\r\n\t\t\t$('.quickview-modal .modal-body').scrollBox();\r\n\t\t\t$('.quickview-modal .modal-body').scrollBox().resize();\r\n\t\t}\r\n\t});\r\n};\r\n\r\nfunction renderThumbnails() {\r\n\tif ($('#thumbnails').length > 0) {\r\n\t\t$('#thumbnails').empty(); // clear the list\r\n\t\timages(); // populate the thumbnails\r\n\t}\r\n};\r\nvar quickview = {\r\n\tinit: function () {\r\n\t\tif (!this.exists()) {\r\n\t\t\tthis.$container = $('<div/>').attr('id', 'QuickViewDialog').appendTo(document.body);\r\n\t\t}\r\n\t\tthis.productLinks = $('#search-result-items .thumb-link').map(function (index, thumbLink) {\r\n\t\t\treturn $(thumbLink).attr('href');\r\n\t\t});\r\n\t},\r\n\r\n\tsetup: function (qvUrl) {\r\n\t\tvar $btnNext = $('.quickview-next'),\r\n\t\t\t$btnPrev = $('.quickview-prev');\r\n\r\n\t\tproduct.initializeEvents();\r\n\r\n\t\tthis.productLinkIndex = _(this.productLinks).findIndex(function (url) {\r\n\t\t\treturn removeParam(url) === removeParam(qvUrl);\r\n\t\t});\r\n\r\n\t\t// hide the buttons on the compare page or when there are no other products\r\n\t\tif (this.productLinks.length <= 1 || $('.compareremovecell').length > 0) {\r\n\t\t\t$btnNext.hide();\r\n\t\t\t$btnPrev.hide();\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tif (this.productLinkIndex === this.productLinks.length - 1) {\r\n\t\t\t$btnNext.attr('disabled', 'disabled');\r\n\t\t}\r\n\t\tif (this.productLinkIndex === 0) {\r\n\t\t\t$btnPrev.attr('disabled', 'disabled');\r\n\t\t}\r\n\r\n\t\t$btnNext.on('click', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tthis.navigateQuickview(1);\r\n\t\t}.bind(this));\r\n\t\t$btnPrev.on('click', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tthis.navigateQuickview(-1);\r\n\t\t}.bind(this));\r\n\t},\r\n\r\n\t/**\r\n\t * @param {Number} step - How many products away from current product to navigate to. Negative number means navigate backward\r\n\t */\r\n\tnavigateQuickview: function (step) {\r\n\t\t// default step to 0\r\n\t\t//this.productLinkIndex += (step ? step : 0);\r\n\t\t//var url = makeUrl(this.productLinks[this.productLinkIndex], 'quickview');\r\n\t},\r\n\r\n\t/**\r\n\t * @description show quick view dialog\r\n\t * @param {Object} options\r\n\t * @param {String} options.url - url of the product details\r\n\t * @param {String} options.source - source of the dialog to be appended to URL\r\n\t * @param {String} options.productlistid - to be appended to URL\r\n\t * @param {Function} options.callback - callback once the dialog is opened\r\n\t */\r\n\tshow: function (options) {\r\n\t\tvar url = makeUrl(options.url, options.source, options.productlistid),\r\n\t\t\twindowScrollPosition = $(window).scrollTop();\r\n\r\n\t\turl = util.appendParamToURL(url, 'format', 'ajax');\r\n\t\t$.ajax({\r\n\t\t\turl: url,\r\n\t\t\tdataType: 'html',\r\n\t\t\tsuccess: function (response) {\r\n\t\t\t\tcustomModal.createCustomModal('quickview-modal');\r\n\t\t\t\t$('.quickview-modal .modal-body').html(response);\r\n\t\t\t\t$('.quickview-modal select').selectmenu({\r\n\t\t\t\t\tclasses: {\r\n\t\t\t\t\t\t\"ui-selectmenu-menu\": \"qv-select\"\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t\t$('.add-to-cart-in-stock select#quantity').selectmenu({\r\n\t\t\t\t\tposition: {\r\n\t\t\t\t\t\tmy: \"top\",\r\n\t\t\t\t\t\tat: \"top\",\r\n\t\t\t\t\t\tcollision: \"none\"\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t}).done(function (data) {\r\n\t\t\tvariant();\r\n\t\t\trenderThumbnails();\r\n\t\t\tupdateQuickviewScroll();\r\n\t\t\tif (navigator.userAgent.match(/(iPhone|iPad)/)) {\r\n\t\t\t\t$('body').addClass('body-fixed');\r\n\t\t\t\t$('.quickview-modal .modal-close, .quickview-modal .modal-close-outer').off('click').on('click', function () {\r\n\t\t\t\t\t$('quickview-modal').remove();\r\n\t\t\t\t\t$('body').removeClass('body-fixed');\r\n\t\t\t\t\t$('html').removeClass('modal-open');\r\n\t\t\t\t\t$(window).scrollTop(windowScrollPosition);\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t});\r\n\t},\r\n\texists: function () {\r\n\t\treturn this.$container && (this.$container.length > 0);\r\n\t}\r\n};\r\n\r\nmodule.exports = quickview;\n},{\"./detect-layout\":13,\"./modal\":27,\"./pages/product\":52,\"./pages/product/image\":51,\"./pages/product/variant\":56,\"./util\":93,\"lodash\":137}],80:[function(require,module,exports){\n'use strict';\r\n\r\nvar addToCart = require('./pages/product/addToCart'),\r\n\tanalytics = require('./analytics');\r\n\r\n\r\nfunction createStepsIndicators() {\r\n\tvar questionsLength = $('.question.main').length;\r\n\r\n\tupdateStepsIndicator(questionsLength);\r\n\tgoToNextStep(0);\r\n}\r\n\r\nfunction updateStepsIndicator(numberOfSteps) {\r\n\tvar stepsContainer = $('#quiz-form .step-indicator');\r\n\tstepsContainer.empty();\r\n\r\n\tfor (var i = 0; i < numberOfSteps; i++) {\r\n\t\tvar step = '<div class=\"steps step-' + i + '\"><span class=\"pipe\"> </span><h4>' + (i + 1) + ' | ' + numberOfSteps + '</h4></div>';\r\n\t\tstepsContainer.append(step);\r\n\t}\r\n}\r\n\r\nfunction goToNextStep(newQuestion) {\r\n\tvar stepsContainer = $('#quiz-form .step-indicator');\r\n\tstepsContainer.find('.steps').removeClass('active');\r\n\tstepsContainer.find('.step-' + newQuestion).addClass('active');\r\n}\r\n\r\nfunction switchQuestions(currentQuestion, newQuestion) {\r\n\t$('#question-' + currentQuestion).removeClass('active').hide();\r\n\t$('#question-' + newQuestion).addClass('active').show();\r\n\t$('.current-question').val(newQuestion);\r\n}\r\n\r\nfunction handlePrevNextLinks(newQuestion) {\r\n\tvar prevLink = $('.js-quiz-back'),\r\n\t\tnextLink = $('.js-quiz-next'),\r\n\t\tfinishLink = $('.js-quiz-finish'),\r\n\t\tfirstQuestion = 0,\r\n\t\tlastQuestion = $('.question.main').length - 1;\r\n\r\n\tprevLink[newQuestion === firstQuestion ? 'hide' : 'show']();\r\n\tnextLink[newQuestion === lastQuestion ? 'hide' : 'show']();\r\n\tfinishLink[newQuestion === lastQuestion ? 'show' : 'hide']();\r\n\r\n\tgoToNextStep(newQuestion);\r\n}\r\n\r\nfunction updateSubmitButtonState() {\r\n\tvar activeQuestion = $('.question.active'),\r\n\t\tnextLink = $('.js-quiz-next'),\r\n\t\tfinishLink = $('.js-quiz-finish');\r\n\r\n\tif (activeQuestion.data('mandatory')) {\r\n\t\tvar inputs = activeQuestion.find('.js-answer-option');\r\n\r\n\t\tnextLink.attr(\"disabled\", !inputs.is(\":checked\"));\r\n\t\tfinishLink.attr(\"disabled\", !inputs.is(\":checked\"));\r\n\t} else {\r\n\t\tnextLink.attr(\"disabled\", false);\r\n\t\tfinishLink.attr(\"disabled\", false);\r\n\t}\r\n}\r\n\r\nfunction updateCustomerSelection(currentQuestion) {\r\n\tvar questionSelection = currentQuestion.find('input[name=\"' + currentQuestion.attr('id') + '\"]:checked');\r\n\r\n\tswitch (currentQuestion.data('scoring')) {\r\n\tcase 'age':\r\n\t\tvar ageValue = questionSelection.val();\r\n\t\t$('.agerange').val(ageValue);\r\n\t\tbreak;\r\n\tcase 'defend':\r\n\t\tvar defendValue = questionSelection.length || 0;\r\n\t\t$('.defend').val(defendValue);\r\n\t\tbreak;\r\n\tcase 'regenerate':\r\n\t\tvar showOptionalQuestion = false;\r\n\t\tvar isCorncernNotSelected = !currentQuestion.data('mandatory') && questionSelection.length === 0;\r\n\r\n\t\tvar regenerateType = questionSelection.first().val();\r\n\r\n\t\tvar differentChoices = questionSelection.filter(function () {\r\n\t\t\tvar currentValue = $(this).val();\r\n\r\n\t\t\tif (currentValue !== 'basic') {\r\n\t\t\t\tregenerateType = currentValue;\r\n\t\t\t\treturn currentValue;\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\tif (differentChoices.length > 1 || isCorncernNotSelected) {\r\n\t\t\tshowOptionalQuestion = true;\r\n\t\t}\r\n\r\n\t\tif (!currentQuestion.hasClass('additional')) {\r\n\t\t\t$('.regenerate').val(questionSelection.length || 0);\r\n\t\t}\r\n\r\n\t\tif (showOptionalQuestion) {\r\n\t\t\tvar currentQuestionNumber = parseInt($('.current-question').val(), 10);\r\n\t\t\tvar nextQuestion = currentQuestionNumber + 1;\r\n\r\n\t\t\tupdateStepsIndicator($('.question.main').length + 1);\r\n\t\t\tgoToNextStep(nextQuestion);\r\n\t\t\tswitchQuestions(currentQuestionNumber, nextQuestion);\r\n\t\t\tupdateSubmitButtonState();\r\n\r\n\t\t\t$('.regenerateConcern').val('');\r\n\t\t} else {\r\n\t\t\t$('.regenerateConcern').val(regenerateType);\r\n\t\t}\r\n\r\n\t\tbreak;\r\n\t}\r\n}\r\n\r\nfunction bindQuizEvents() {\r\n\t$('.js-quiz-next').on('click', function () {\r\n\t\t//go back to the question on click of next.\r\n\t\t$(this).closest('.modal-wrapper').scrollTop(0);\r\n\t\tregisterClick('next');\r\n\t\tvar activeQuestion = $('.question.active');\r\n\t\tvar currentQuestion = parseInt($('.current-question').val(), 10);\r\n\t\tvar nextQuestion = currentQuestion + 1;\r\n\r\n\t\tupdateCustomerSelection(activeQuestion);\r\n\t\tswitchQuestions(currentQuestion, nextQuestion);\r\n\t\tupdateSubmitButtonState();\r\n\t\thandlePrevNextLinks(nextQuestion);\r\n\t\tregisterPageView();\r\n\t});\r\n\r\n\t$('.js-quiz-back').on('click', function () {\r\n\t\tregisterClick('back');\r\n\t\tvar currentQuestion = parseInt($('.current-question').val(), 10);\r\n\t\tvar prevQuestion = currentQuestion - 1;\r\n\t\tswitchQuestions(currentQuestion, prevQuestion);\r\n\t\tupdateSubmitButtonState();\r\n\t\thandlePrevNextLinks(prevQuestion);\r\n\t\tregisterPageView();\r\n\t});\r\n\r\n\t$('.js-quiz-finish').on('click', function () {\r\n\t\tregisterClick('next');\r\n\t\tvar activeQuestion = $('.question.active');\r\n\t\tupdateCustomerSelection(activeQuestion);\r\n\r\n\t\tvar quizForm = $('#quiz-form');\r\n\r\n\t\tvar emptyFields = quizForm.find('.submit-value').filter(function () {\r\n\t\t\treturn $(this).val() !== '';\r\n\t\t});\r\n\r\n\t\tif (emptyFields.length === quizForm.find('.submit-value').length) {\r\n\t\t\tvar baseUrl = quizForm.attr('action');\r\n\t\t\twindow.location.href = baseUrl + '?' + quizForm.find('.submit-value').serialize();\r\n\t\t} else {\r\n\t\t\t//go back to the question on click of finish when additional question generate.\r\n\t\t\t$(this).closest('.modal-wrapper').scrollTop(0);\r\n\t\t}\r\n\t\tregisterPageView();\r\n\t});\r\n\r\n\t$('.js-answer-option').on('click', function () {\r\n\t\tupdateSubmitButtonState();\r\n\t});\r\n}\r\n\r\nfunction registerPageView() {\r\n\tvar quizModal = $('#quiz-modal'),\r\n\t\tquizContent = quizModal.find('.questions-content');\r\n\tvar data = {};\r\n\tvar activeData = quizContent.find('.active');\r\n\tdata.toolname = 'Suncare Finder';\r\n\tdata.pagename = activeData.find('.quiz-question h2').text();\r\n\tanalytics.tagmanager.pageview(data);\r\n};\r\n\r\nfunction registerClick(event) {\r\n\tvar quizModal = $('#quiz-modal'),\r\n\t\tquizContent = quizModal.find('.questions-content');\r\n\tvar data = {};\r\n\tvar activeData = quizContent.find('.active');\r\n\tdata.event = \"consultationBack\";\r\n\tif (event === 'next') {\r\n\t\tdata.event = \"consultationNext\";\r\n\t}\r\n\tdata.toolname = 'skincareConsultation';\r\n\tdata.question = activeData.find('.quiz-question h2').text();\r\n\tvar answers = '';\r\n\tactiveData.find('.question-body input').each(function (index) {\r\n\t\tif ($(this).is(':checked')) {\r\n\t\t\tif (answers === '') {\r\n\t\t\t\tanswers = answers + (index + 1);\r\n\t\t\t} else {\r\n\t\t\t\tanswers = answers + ',' + (index + 1);\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n\tdata.answers = answers;\r\n\tanalytics.tagmanager.click(data);\r\n};\r\n\r\nexports.init = function () {\r\n\taddToCart();\r\n};\r\nexports.bindQuizEvents = bindQuizEvents;\r\nexports.createStepsIndicators = createStepsIndicators;\r\nexports.registerPageView = registerPageView;\r\nexports.registerClick = registerClick;\n},{\"./analytics\":2,\"./pages/product/addToCart\":48}],81:[function(require,module,exports){\n'use strict';\r\n\r\n/**\r\n * copied from https://github.com/darkskyapp/string-hash\r\n */\r\nfunction hashFn(str) {\r\n\tvar hash = 5381,\r\n\t\ti = str.length;\r\n\r\n\twhile (i) {\r\n\t\thash = (hash * 33) ^ str.charCodeAt(--i);\r\n\t}\r\n\t/* JavaScript does bitwise operations (like XOR, above) on 32-bit signed\r\n\t * integers. Since we want the results to be always positive, convert the\r\n\t * signed int to an unsigned by doing an unsigned bitshift. */\r\n\treturn hash >>> 0;\r\n}\r\n\r\n/**\r\n * Create rating based on hash ranging from 2-5\r\n * @param pid\r\n */\r\nfunction getRating(pid) {\r\n\treturn hashFn(pid.toString()) % 30 / 10 + 2;\r\n}\r\n\r\nmodule.exports = {\r\n\tinit: function () {\r\n\t\t$('.product-review').each(function (index, review) {\r\n\t\t\tvar pid = $(review).data('pid');\r\n\t\t\tif (!pid) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\t// rating range from 2 - 5\r\n\t\t\tvar rating = getRating(pid);\r\n\t\t\tvar baseRating = Math.floor(rating);\r\n\t\t\tvar starsCount = 0;\r\n\t\t\tfor (var i = 0; i < baseRating; i++) {\r\n\t\t\t\t$('.rating', review).append('<i class=\"fa fa-star\"></i>');\r\n\t\t\t\tstarsCount++;\r\n\t\t\t}\r\n\t\t\t// give half star for anything in between\r\n\t\t\tif (rating > baseRating) {\r\n\t\t\t\t$('.rating', review).append('<i class=\"fa fa-star-half-o\"></i>');\r\n\t\t\t\tstarsCount++;\r\n\t\t\t}\r\n\t\t\tif (starsCount < 5) {\r\n\t\t\t\tfor (var j = 0; j < 5 - starsCount; j++) {\r\n\t\t\t\t\t$('.rating', review).append('<i class=\"fa fa-star-o\"></i>');\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n};\n},{}],82:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util'),\r\n\tajax = require('./ajax'),\r\n\tsampleCookieName = \"sample.selection.shown\",\r\n\tcurrentLayout = require('./detect-layout'),\r\n\tcustomModal = require('./modal');\r\n\r\n//Initilize detect layout\r\nvar checkLayout = currentLayout.init();\r\n\r\n/**\r\n * Creates sample selection cookie\r\n */\r\nvar createSelectionShownCookie = function () {\r\n\tutil.setCookie(sampleCookieName, \"1\");\r\n}\r\n\r\n/**\r\n * Checks if sample selection cookie exists\r\n * @return {boolean}\r\n */\r\nvar canShowSelection = function () {\r\n\treturn (!SitePreferences.SAMPLES_ENABLED) ? false : true;\r\n}\r\n\r\n/**\r\n * Render Samples\r\n * @return {boolean}\r\n */\r\nvar showSelection = function () {\r\n\t// render content to modal by url\r\n\tvar url = util.appendParamToURL(Urls.showSampleSelectionInCart, 'format', 'ajax'),\r\n\t\tindex = require('./pages/product/index');\r\n\t\r\n\t$('.ajax-loader').show();\r\n\t$.ajax({\r\n\t\turl: url,\r\n\t\tdataType: 'html',\r\n\t\tsuccess: function(response)\r\n\t\t{\r\n\t\t\tif (response && response.indexOf(\"error no-selection\") == -1) {\r\n\t\t\t\tcustomModal.createCustomModal('bonus-sample-selection');\r\n\t\t\t\t$('.bonus-sample-selection').find('.modal-body').html(response);\r\n\t\t\t\tvar samplesLeft = $(response).find('.samples-left-indicator').data('selectlimit');\r\n\t\t\t\tvar sampleSelectedLimit = $(response).find('#sample-bonus-limit').data('limit')-samplesLeft;\r\n\t\t\t\tif(parseInt(samplesLeft) > 0 && parseInt(sampleSelectedLimit) > 0){\r\n\t\t\t\t\t$('.update-selection').removeClass('hide');\r\n\t\t\t\t} else if (parseInt(sampleSelectedLimit) > 0) {\r\n\t\t\t\t\t$('.selection-limit').removeClass('hide');\r\n\t\t\t\t}\r\n\t\t\t\tindex.bodyPositionFixed('bonus-sample-selection');\r\n\t\t\t}\r\n\t\t\t$('.ajax-loader').hide();\r\n\t\t}\r\n\t}).always(function(data, textStatus, jqXHR) {\r\n\t\tif (data && jqXHR.responseText && jqXHR.responseText.indexOf(\"error no-selection\") == -1) {\r\n\t\t\tupdateModalScroll();\r\n\t\t\tvar indicatorHeight = $('.bonus-sample-selection .bonus-sample-indicator').outerHeight() === undefined ? 0 : $('.bonus-sample-selection .bonus-sample-indicator').outerHeight();\r\n\t\t\tvar scrollableArea = $('.bonus-sample-selection .modal-wrapper').innerHeight() - ($('.bonus-sample-selection .add-btn-container').outerHeight() + $('.bonus-sample-selection .wrapper-header').outerHeight() + indicatorHeight);\r\n\r\n\t\t\tif (checkLayout == 'desktop') {\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents').css('height', $('.bonus-sample-selection .modal-wrapper').innerHeight() - $('.bonus-sample-selection .add-btn-container').outerHeight());\r\n\t\t\t} else {\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents').css('height', scrollableArea );\r\n\t\t\t}\r\n\t\t\t$('.bonus-sample-selection .sample-bonus-contents .sample-bonus-body').scrollBox();\r\n\t\t\t$(\".thumb-image\").on('load', function(){\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents .sample-bonus-body').scrollBox().resize();\r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n}\r\n\r\nvar showSelectionInCart = function (isNotCart, wasosource) {\r\n\t$('.overlay').show();\r\n\t// render content to modal by url\r\n\tvar sampleID = 'bonus-sample-selection',\r\n\t\tindex = require('./pages/product/index');\r\n\r\n\tif(typeof(isNotCart) != 'undefined'){\r\n\t\tif(typeof(wasosource) != 'undefined' && wasosource !== true ) {\r\n\t\t\tvar url = util.appendParamToURL(Urls.showSampleSelection, 'format', 'ajax');\r\n\t\t} else {\r\n\t\t\tvar url = util.appendParamToURL(Urls.showSampleSelection, 'from', 'waso');\r\n\t\t\turl = util.appendParamToURL(url, 'format', 'ajax');\r\n\t\t}\r\n\t}else {\r\n\t\tvar url = util.appendParamToURL(Urls.showSampleSelectionInCart, 'format', 'ajax');\r\n\t}\r\n\r\n\t$('.sample-container .ajax-loader').show();\r\n\t$.ajax({\r\n\t\turl: url,\r\n\t\tdataType: 'html',\r\n\t\tsuccess: function(response)\r\n\t\t{\r\n\t\t\tcustomModal.createCustomModal(sampleID);\r\n\t\t\t$('.' +sampleID ).find('.modal-body').html(response);\r\n\t\t\tvar samplesLeft = $(response).find('.samples-left-indicator').data('selectlimit');\r\n\t\t\tvar sampleSelectedLimit = $(response).find('#sample-bonus-limit').data('limit')-samplesLeft;\r\n\t\t\tif(parseInt(samplesLeft) > 0 && parseInt(sampleSelectedLimit) > 0){\r\n\t\t\t\t$('.update-selection').removeClass('hide');\r\n\t\t\t} else if (parseInt(sampleSelectedLimit) > 0) {\r\n\t\t\t\t$('.selection-limit').removeClass('hide');\r\n\t\t\t}\r\n\t\t\tindex.bodyPositionFixed(sampleID);\r\n\t\t\tif(response.indexOf('no-selection') > -1){\r\n\t\t\t\t$('.modal-overlay.bonus-sample-selection').addClass('error');\r\n\t\t\t}\r\n\t\t\t$('.sample-container .ajax-loader').hide();\r\n\t\t\t$('.overlay').hide();\r\n\t\t}\r\n\t}).always(function(data) {\r\n\t\tupdateModalScroll();\r\n\t\tvar indicatorHeight = $('.bonus-sample-selection .bonus-sample-indicator').outerHeight() === undefined ? 0 : $('.bonus-sample-selection .bonus-sample-indicator').outerHeight();\r\n\t\tvar scrollableArea = $('.bonus-sample-selection .modal-wrapper').innerHeight() - ($('.bonus-sample-selection .add-btn-container').outerHeight() + $('.bonus-sample-selection .wrapper-header').outerHeight() + indicatorHeight);\r\n\r\n\t\tif($('.modal-overlay.bonus-sample-selection').hasClass('error')) {\r\n\t\t\tsetTimeout(function () {\r\n\t\t\t\t$('.bonus-sample-selection .modal-body').scrollBox();\r\n\t\t\t}, 200);\r\n\t\t} else {\r\n\t\t\tif (checkLayout == 'desktop') {\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents').css('height', $('.bonus-sample-selection .modal-wrapper').innerHeight() - $('.bonus-sample-selection .add-btn-container').outerHeight());\r\n\t\t\t} else {\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents').css('height', scrollableArea );\r\n\t\t\t}\r\n\t\t\t$('.bonus-sample-selection .sample-bonus-contents .sample-bonus-body').scrollBox();\r\n\t\t\t$(\".thumb-image\").on('load', function(){\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents .sample-bonus-body').scrollBox().resize();\r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n}\r\n\r\nvar updateModalScroll = function () {\r\n\t$(window).on('resize orientationchange', function() {\r\n\t\tif(!$('.modal-overlay.bonus-sample-selection').hasClass('error')) {\r\n\t\t\t$('.bonus-sample-selection .sb-content').removeAttr('style');\r\n\t\t\tvar indicatorHeight = $('.bonus-sample-selection .bonus-sample-indicator').outerHeight() === undefined ? 0 : $('.bonus-sample-selection .bonus-sample-indicator').outerHeight();\r\n\t\t\tvar scrollableArea = $('.bonus-sample-selection .modal-wrapper').innerHeight() - ($('.bonus-sample-selection .add-btn-container').outerHeight() + $('.bonus-sample-selection .wrapper-header').outerHeight() + indicatorHeight);\r\n\t\t\tif (currentLayout.init() == 'desktop') {\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents').removeAttr('style').css('height', $('.bonus-sample-selection .modal-wrapper').innerHeight() - $('.bonus-sample-selection .add-btn-container').outerHeight());\r\n\t\t\t} else {\r\n\t\t\t\t$('.bonus-sample-selection .sample-bonus-contents').removeAttr('style').css('height', scrollableArea);\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n}\r\n\r\n$(document).on('click', '#selectsample , .sample-tile.sample-select-tile', function(e){\r\n\tshowSelectionInCart();\r\n}).on('click', '.sample_at_home' , function(e){\r\n\tshowSelectionInCart(true, true);\r\n})\r\n\r\nexports.createSelectionShownCookie = createSelectionShownCookie;\r\nexports.canShowSelection = canShowSelection;\r\nexports.showSelection = showSelection;\r\nexports.showSelectionInCart = showSelectionInCart;\r\nexports.updateModalScroll = updateModalScroll;\n},{\"./ajax\":1,\"./detect-layout\":13,\"./modal\":27,\"./pages/product/index\":52,\"./util\":93}],83:[function(require,module,exports){\nmodule.exports = function () {\r\n\t/**\r\n\t * jQiery scrollBar Plugin\r\n\t * @author Falk Müller (www-falk-m.de)\r\n\t * Thankts to https://codepen.io/IliaSky/pen/obowmv\r\n\t */\r\n\t;\r\n\t(function ($, window, document) {\r\n\r\n\t\t\"use strict\";\r\n\r\n\t\tvar pluginName = \"scrollBox\",\r\n\t\t\tdefaults = {\r\n\t\t\t\tcontainerClass: \"sb-container\",\r\n\t\t\t\tcontainerNoScrollClass: \"sb-container-noscroll\",\r\n\t\t\t\tcontentClass: \"sb-content\",\r\n\t\t\t\tscrollbarContainerClass: \"sb-scrollbar-container\",\r\n\t\t\t\tscrollBarClass: \"sb-scrollbar\"\r\n\r\n\t\t\t};\r\n\r\n\t\t// plugin constructor\r\n\t\tfunction Plugin(element, options) {\r\n\t\t\tthis.element = element;\r\n\r\n\t\t\tthis.settings = $.extend({}, defaults, options);\r\n\t\t\tthis._defaults = defaults;\r\n\t\t\tthis._name = pluginName;\r\n\t\t\tthis.init();\r\n\r\n\t\t}\r\n\r\n\t\t// Avoid Plugin.prototype conflicts\r\n\t\t$.extend(Plugin.prototype, {\r\n\t\t\tinit: function () {\r\n\r\n\t\t\t\tthis.addScrollbar();\r\n\t\t\t\tthis.addEvents();\r\n\t\t\t\tthis.onResize();\r\n\t\t\t},\r\n\t\t\taddScrollbar: function () {\r\n\t\t\t\t$(this.element).addClass(this.settings.containerClass);\r\n\t\t\t\tthis.wrapper = $(\"<div class='\" + this.settings.contentClass + \"' />\");\r\n\t\t\t\tthis.wrapper.append($(this.element).contents());\r\n\t\t\t\t$(this.element).append(this.wrapper);\r\n\r\n\t\t\t\tthis.scollbarContainer = $(\"<div class='\" + this.settings.scrollbarContainerClass + \"' />\");\r\n\t\t\t\tthis.scrollBar = $(\"<div class='\" + this.settings.scrollBarClass + \"' />\");\r\n\t\t\t\tthis.scollbarContainer.append(this.scrollBar);\r\n\t\t\t\t$(this.element).prepend(this.scollbarContainer);\r\n\t\t\t},\r\n\t\t\taddEvents: function () {\r\n\r\n\t\t\t\tthis.wrapper.on(\"scroll.\" + pluginName, $.proxy(this.onScroll, this))\r\n\t\t\t\t$(window).on(\"resize.\" + pluginName, $.proxy(this.onResize, this))\r\n\r\n\t\t\t\tthis.scrollBar.on('mousedown.' + pluginName, $.proxy(this.onMousedown, this));\r\n\t\t\t\tthis.scrollBar.on('touchstart.' + pluginName, $.proxy(this.onTouchstart, this));\r\n\t\t\t},\r\n\r\n\t\t\tonTouchstart: function (ev) {\r\n\t\t\t\tvar me = this;\r\n\r\n\t\t\t\tev.preventDefault();\r\n\t\t\t\tvar y = me.scrollBar[0].offsetTop;\r\n\r\n\t\t\t\tvar onMove = function (end) {\r\n\t\t\t\t\tvar delta = end.touches[0].pageY - ev.touches[0].pageY;\r\n\t\t\t\t\tme.scrollBar[0].style.top = Math.min(me.scollbarContainer[0].clientHeight - me.scrollBar[0].clientHeight, Math.max(0, y + delta)) + 'px';\r\n\t\t\t\t\tme.wrapper[0].scrollTop = (me.wrapper[0].scrollHeight * me.scrollBar[0].offsetTop / me.scollbarContainer[0].clientHeight);\r\n\t\t\t\t};\r\n\r\n\t\t\t\t$(document).on(\"touchmove.\" + pluginName, onMove);\r\n\t\t\t\t$(document).on(\"touchend.\" + pluginName, function () {\r\n\t\t\t\t\t$(document).off(\"touchmove.\" + pluginName);\r\n\t\t\t\t\t$(document).off(\"touchend.\" + pluginName);\r\n\t\t\t\t});\r\n\t\t\t},\r\n\r\n\t\t\tonMousedown: function (ev) {\r\n\t\t\t\tvar me = this;\r\n\r\n\t\t\t\tev.preventDefault();\r\n\t\t\t\tvar y = me.scrollBar[0].offsetTop;\r\n\r\n\t\t\t\tvar onMove = function (end) {\r\n\t\t\t\t\tvar delta = end.pageY - ev.pageY;\r\n\t\t\t\t\tme.scrollBar[0].style.top = Math.min(me.scollbarContainer[0].clientHeight - me.scrollBar[0].clientHeight, Math.max(0, y + delta)) + 'px';\r\n\t\t\t\t\tme.wrapper[0].scrollTop = (me.wrapper[0].scrollHeight * me.scrollBar[0].offsetTop / me.scollbarContainer[0].clientHeight);\r\n\t\t\t\t};\r\n\r\n\t\t\t\t$(document).on(\"mousemove.\" + pluginName, onMove);\r\n\t\t\t\t$(document).on(\"mouseup.\" + pluginName, function () {\r\n\t\t\t\t\t$(document).off(\"mousemove.\" + pluginName);\r\n\t\t\t\t\t$(document).off(\"mouseup.\" + pluginName);\r\n\t\t\t\t});\r\n\t\t\t},\r\n\r\n\t\t\tonResize: function () {\r\n\t\t\t\tthis.wrapper.removeAttr(\"style\");\r\n\r\n\t\t\t\tthis.wrapper.css(\"max-height\", $(this.element).height());\r\n\r\n\t\t\t\tvar wrapper_client_height = this.wrapper[0].clientHeight;\r\n\r\n\t\t\t\tthis.scrollBar.css(\"height\", this.scollbarContainer[0].clientHeight * wrapper_client_height / this.wrapper[0].scrollHeight + \"px\");\r\n\t\t\t\tif (this.scollbarContainer[0].clientHeight <= this.scrollBar[0].clientHeight) {\r\n\t\t\t\t\t$(this.element).addClass(this.settings.containerNoScrollClass);\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$(this.element).removeClass(this.settings.containerNoScrollClass);\r\n\t\t\t\t}\r\n\r\n\t\t\t\tthis.onScroll();\r\n\t\t\t},\r\n\r\n\t\t\tonScroll: function () {\r\n\r\n\t\t\t\tthis.scrollBar.css(\"top\", Math.min(this.scollbarContainer[0].clientHeight - this.scrollBar[0].clientHeight, this.scollbarContainer[0].clientHeight * this.wrapper[0].scrollTop / this.wrapper[0].scrollHeight) + \"px\");\r\n\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\t// A really lightweight plugin wrapper around the constructor,\r\n\t\t// preventing against multiple instantiations\r\n\t\t$.fn[pluginName] = function (options) {\r\n\t\t\treturn this.each(function () {\r\n\t\t\t\tif (!$.data(this, \"plugin_\" + pluginName)) {\r\n\t\t\t\t\t$.data(this, \"plugin_\" +\r\n\t\t\t\t\t\tpluginName, new Plugin(this, options));\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t};\r\n\r\n\t})(jQuery, window, document);\r\n}\r\n\n},{}],84:[function(require,module,exports){\n'use strict';\r\n\r\n/**\r\n * @private\r\n * @function\r\n * @description Binds event to the place holder (.blur)\r\n */\r\nfunction initializeEvents() {\r\n\t$('.search-text').on('focus', function () {\r\n\t\tvar input = $(this);\r\n\t\tif (input.val() === input.attr('placeholder')) {\r\n\t\t\tinput.val('');\r\n\t\t}\r\n\t}).on('blur', function () {\r\n\t\tvar input = $(this);\r\n\t\tif (input.val() === '' || input.val() === input.attr('placeholder')) {\r\n\t\t\tinput.val(input.attr('placeholder'));\r\n\t\t}\r\n\t}).trigger('blur');\r\n}\r\n\r\nexports.init = initializeEvents;\n},{}],85:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util'),\r\n\theader = require('./header'),\r\n\tcurrentLayout = require('./detect-layout');\r\n\r\nvar currentQuery = null,\r\n\tlastQuery = null,\r\n\trunningQuery = null,\r\n\tlistTotal = -1,\r\n\tlistCurrent = -1,\r\n\tdelay = 30,\r\n\t$resultsContainer = $('.query-search-overlay'),\r\n\t$popularResultsContainer = $('.popular-search-overlay'),\r\n\tsearchSuggestioncallTimeout = null;\r\n/**\r\n * @function\r\n * @description Handles keyboard's arrow keys\r\n * @param keyCode Code of an arrow key to be handled\r\n */\r\nfunction handleArrowKeys(keyCode) {\r\n\tswitch (keyCode) {\r\n\t\tcase 38:\r\n\t\t\t// keyUp\r\n\t\t\tlistCurrent = (listCurrent <= 0) ? (listTotal - 1) : (listCurrent - 1);\r\n\t\t\tbreak;\r\n\t\tcase 40:\r\n\t\t\t// keyDown\r\n\t\t\tlistCurrent = (listCurrent >= listTotal - 1) ? 0 : listCurrent + 1;\r\n\t\t\tbreak;\r\n\t\tdefault:\r\n\t\t\t// reset\r\n\t\t\tlistCurrent = -1;\r\n\t\t\treturn false;\r\n\t}\r\n\r\n\t$resultsContainer.children().removeClass('selected').eq(listCurrent).addClass('selected');\r\n\t$('input[name=\"q\"]').val($resultsContainer.find('.selected .suggestionterm').first().text());\r\n\t$('#q-hint').val(\"\");\r\n\treturn true;\r\n}\r\n\r\nvar searchsuggest = {\r\n\t/**\r\n\t * @function\r\n\t * @description Configures parameters and required object instances\r\n\t */\r\n\tinit: function (container, defaultValue) {\r\n\t\tvar $searchContainer = $(container);\r\n\t\tvar $searchForm = $searchContainer.find('form[name=\"simpleSearch\"]');\r\n\t\tvar $searchField = $searchForm.find('input[name=\"q\"]');\r\n\t\tvar $submitButton = $searchForm.find('button[type=\"submit\"]');\r\n\t\tvar $cancelButton = $searchForm.find('button[type=\"reset\"]');\r\n\t\tvar $closeButton = $('.header-search-wrapper').find('.close-wrapper');\r\n\r\n\t\t// disable browser auto complete\r\n\t\t$searchField.attr('autocomplete', 'off');\r\n\r\n\t\t// Search overlay show/hide\r\n\t\t$('.search-icon, .header-search .icon-close, .js-search-link').on('click touchend', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tvar currLayoutVal = currentLayout.init();\r\n\t\t\t$('html').toggleClass('sticky-header-search');\r\n\r\n\t\t\tif($(e.target).hasClass('icon-close')) {\r\n\t\t\t\trunningQuery = null;\r\n\t\t\t\tif($.trim($popularResultsContainer.html()) == '') {\r\n\t\t\t\t\tsearchsuggest.popularSearch(runningQuery);\r\n\t\t\t\t}\r\n\t\t\t\t$('#q').removeClass('shadow');\r\n\t\t\t\t$('#search-suggestions').removeClass('query-search, popular-search');\r\n\t\t\t} else {\r\n\t\t\t\tif($.trim($popularResultsContainer.html()) == '') {\r\n\t\t\t\t\tsearchsuggest.popularSearch(runningQuery);\r\n\t\t\t\t}\r\n\t\t\t\t$('#search-suggestions').removeClass('query-search').addClass('popular-search');\r\n\t\t\t}\r\n\r\n\t\t\tif (currLayoutVal == 'desktop') {\r\n\t\t\t\tif (util.isMobile()) {\r\n\t\t\t\t\t$('.utility-nav > ul > li').removeClass('hovered');\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\tif (!$('html').hasClass('sticky-header-search')) {\r\n\t\t\t\tif(!$searchField.val().trim().length) {\r\n\t\t\t\t\t$searchField.val('');\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$closeButton.addClass('clicked');\r\n\t\t\t\t\t($cancelButton.css('display') != 'none') ? $cancelButton.trigger('click') : $closeButton.trigger('click');\r\n\t\t\t\t\t$closeButton.removeClass('clicked');\r\n\t\t\t\t}\r\n\t\t\t\t$searchField.blur();\r\n\t\t\t\t$submitButton.prop('disabled', true);\r\n\t\t\t\tlastQuery = null;\r\n\t\t\t} else {\r\n\t\t\t\t$searchField.trigger(\"focus\");\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\t$('.nav-open').removeClass('nav-open');\r\n\r\n\t\t\tif ($searchField.val() === defaultValue) {\r\n\t\t\t\t$searchField.val('');\r\n\t\t\t}\r\n\t\t\theader.handleResizeForBannerMessages();\r\n\t\t\treturn false;\r\n\t\t});\r\n\r\n\t\t// cancel button hide\r\n\t\t$cancelButton.on('click', function () {\r\n\t\t\tthis.clearResults();\r\n\t\t\tlastQuery = null;\r\n\t\t\t$cancelButton.hide();\r\n\t\t\t$submitButton.prop('disabled', true);\r\n\t\t\t$searchField.trigger(\"focus\");\r\n\t\t\trunningQuery = null;\r\n\t\t\tthis.popularSearch(runningQuery);\r\n\t\t\t$('#q').removeClass('shadow');\r\n\t\t\t$('#search-suggestions').removeClass('query-search').addClass('popular-search');\r\n\t\t}.bind(this));\r\n\r\n\t\tfunction closeOverlay() {\r\n\t\t\tif(!$searchField.val().trim().length) {\r\n\t\t\t\t$searchField.val('');\r\n\t\t\t\t$closeButton.trigger('click');\r\n\t\t\t} else {\r\n\t\t\t\t$closeButton.addClass('clicked');\r\n\t\t\t\t$cancelButton.trigger('click');\r\n\t\t\t\t$closeButton.removeClass('clicked');\r\n\t\t\t}\r\n\t\t\tlastQuery = null;\r\n\t\t\t$('html').removeClass('sticky-header-search');\r\n\r\n\t\t\t$searchField.blur();\r\n\t\t}\r\n\t\t\t\t\r\n\t\t// Close search overlay\r\n\t\t$(document).on('click touchstart', '.overlay', function () {\r\n\t\t\tif ($('html').hasClass('sticky-header-search')) {\r\n\t\t\t\tcloseOverlay();\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\t$(document).on('keyup', function (e) {\r\n\t\t\tif (e.keyCode == 27 && $('html').hasClass('sticky-header-search')) { // escape key maps to keycode `27`\r\n\t\t\t\tcloseOverlay();\r\n\t\t\t\t$('.search-link.no-touch').children('a').focus();\r\n\t\t\t\theader.handleResizeForBannerMessages();\r\n\t\t\t}\r\n\t\t\t// check for TAB\r\n\t\t\tif (e.keyCode === 9) {\r\n\t\t\t\t$('#q').val($('#q-hint').val()).removeClass('shadow').trigger('keyup');\r\n\t\t\t}\r\n\t\t}.bind(this));\r\n\r\n\t\t// on blur listener\r\n\t\t$searchField.on('blur', function (e) {\r\n\t\t\tthis.checkInput(e, $searchField, $submitButton, defaultValue);\r\n\t\t}.bind(this));\r\n\r\n\t\t// Populate popular text in header search \r\n\t\t$(document).on('click', '.header-search .popular-search li a', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tpopularSearch($(this).text());\r\n\t\t});\r\n\r\n\t\tvar popularSearch = function (query) {\r\n\t\t\tlastQuery = null\r\n\t\t\t$searchField.val(query)\r\n\t\t\tcurrentQuery = query;\r\n\t\t\t$cancelButton.show();\r\n\t\t\t// no query currently running, init an update\r\n\t\t\tif ((!runningQuery && currentQuery.length > 2) || (!runningQuery && currentQuery.length == 0)) {\r\n\t\t\t\trunningQuery = currentQuery;\r\n\t\t\t\tsetTimeout(this.suggest.bind(this), delay);\r\n\t\t\t}\r\n\t\t}.bind(this);\r\n\r\n\t\t$searchField.on('input', function() {\r\n\t\t\tif($(this).val() != $('#q-hint').val()) {\r\n\t\t\t\t$('#q').removeClass('shadow');\r\n\t\t\t\t$('#q-hint').val('');\r\n\t\t\t}\r\n\t\t});\r\n\t\t\r\n\t\t/**\r\n\t\t * @function\r\n\t\t * @description execute callback with X(ms) delay\r\n\t\t */\r\n\t\tfunction delay(callback, ms) {\r\n\t\t var timer = 0;\r\n\t\t return function() {\r\n\t\t var context = this, args = arguments;\r\n\t\t clearTimeout(timer);\r\n\t\t timer = setTimeout(function () {\r\n\t\t callback.apply(context, args);\r\n\t\t }, ms || 0);\r\n\t\t };\r\n\t\t}\r\n\r\n\t\t// on key up listener\r\n\t\t$searchField.keyup(delay(function (e) {\r\n\t\t\t// get display cancel button on type\r\n\t\t\tif ($searchField.val().trim().length > 0) {\r\n\t\t\t\t$cancelButton.show();\r\n\t\t\t} else {\r\n\t\t\t\t// Hide hint text.\r\n\t\t\t\t$('#q-hint').val('');\r\n\t\t\t\t$('#q').removeClass('shadow');\r\n\t\t\t\t$cancelButton.hide();\r\n\t\t\t\t$('#search-suggestions').removeClass('query-search').addClass('popular-search');\r\n\t\t\t}\r\n\r\n\t\t\t// get keyCode (window.event is for IE)\r\n\r\n\t\t\tvar keyCode = e.keyCode;\r\n\t\t\tif(window.event!==undefined){\r\n\t\t\t\tkeyCode = window.event.keyCode;\r\n\t\t\t}\r\n\t\t\t// check and treat up and down arrows\r\n\t\t\tif (handleArrowKeys(keyCode)) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\t// check for an ENTER or ESC\r\n\t\t\tif (keyCode === 13 || keyCode === 27) {\r\n\t\t\t\tthis.clearResults();\r\n\t\t\t\tthis.checkInput(e, $searchField, $submitButton, defaultValue);\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\tcurrentQuery = $searchField.val().trim();\r\n\r\n\t\t\t// no query currently running, init an update\r\n\t\t\tif ((!runningQuery && currentQuery.length > 2) || (!runningQuery && currentQuery.length == 0)) {\r\n\t\t\t\trunningQuery = currentQuery;\r\n\t\t\t\tsetTimeout(this.suggest.bind(this), delay);\r\n\t\t\t} else {\r\n\t\t\t\t\r\n\t\t\t}\r\n\t\t}.bind(this), 1000));\r\n\r\n\t\t$submitButton.on('click', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\t$searchForm.find('input[name=\"q\"]').val($searchField.val().trim());\r\n\t\t\tthis.checkInput(e, $searchField, $submitButton, defaultValue);\r\n\t\t\t$searchForm.submit();\r\n\t\t}.bind(this));\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description trigger suggest action\r\n\t */\r\n\tsuggest: function () {\r\n\t\t// check whether query to execute (runningQuery) is still up to date and had not changed in the meanwhile\r\n\t\t// (we had a little delay)\r\n\t\tif (runningQuery !== currentQuery) {\r\n\t\t\t// update running query to the most recent search phrase\r\n\t\t\trunningQuery = currentQuery;\r\n\t\t}\r\n\r\n\t\t// if it's empty clear the results box and return\r\n\t\tif (runningQuery.length === 0) {\r\n\t\t\tthis.clearResults();\r\n\t\t\trunningQuery = null;\r\n\t\t\tthis.popularSearch(runningQuery);\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\t// build the request url\r\n\t\tvar reqUrl = util.appendParamToURL(Urls.searchsuggest, 'q', runningQuery);\r\n\r\n\t\t// execute server call\r\n\t\t$.get(reqUrl, function (data) {\r\n\t\t\tvar suggestionHTML = data,\r\n\t\t\t\tansLength = $(suggestionHTML).filter('.search-suggestion-wrapper').length;\r\n\r\n\t\t\t// if there are results populate the results div\r\n\t\t\tif (ansLength === 0) {\r\n\t\t\t\tthis.clearResults();\r\n\t\t\t\tthis.popularSearch(runningQuery);\r\n\t\t\t\t$('#search-suggestions').removeClass('query-search').addClass('popular-search');\r\n\t\t\t} else {\r\n\t\t\t\t// update the results div\r\n\t\t\t\tvar searchKeyword = $('#q').val();\r\n\t\t\t\tvar searchSuggestionKeywordMatchRegex = RegExp(searchKeyword, 'gi');\r\n\t\t\t\t$('#search-suggestions').removeClass('popular-search').addClass('query-search');\r\n\t\t\t\t$resultsContainer.html(suggestionHTML);\r\n\t\t\t\t$resultsContainer.find('.category-name, .product-name, .content-name').html(function() {\r\n\t\t\t\t\treturn $(this).text().replace(searchSuggestionKeywordMatchRegex,'<strong>' + searchKeyword + '</strong>')\r\n\t\t\t\t});\r\n\t\t\t}\r\n\r\n\t\t\t// Show hint text.\r\n\t\t\tvar $hintTextInput = $('#q-hint'),\r\n\t\t\t\t$searchInput = $('#q');\r\n\t\t\tif (suggestionHTML.indexOf('hint-text') === -1) {\r\n\t\t\t\t$hintTextInput.val('');\r\n\t\t\t\t$searchInput.removeClass('shadow');\r\n\t\t\t} else {\r\n\t\t\t\t$searchInput.val($searchInput.val().replace(/ +/g, ' '));\r\n\t\t\t\t$hintTextInput.val($searchInput.val() + $('.hint-phrase .hint-text').text());\r\n\t\t\t\t$searchInput.addClass('shadow');\r\n\t\t\t}\r\n\r\n\t\t\t// record the query that has been executed\r\n\t\t\tlastQuery = runningQuery;\r\n\t\t\t// reset currently running query\r\n\t\t\trunningQuery = null;\r\n\r\n\t\t\t// check for another required update (if current search phrase is different from just executed call)\r\n\t\t\tif (currentQuery !== lastQuery) {\r\n\t\t\t\t// ... and execute immediately if search has changed while this server call was in transit\r\n\t\t\t\trunningQuery = currentQuery;\r\n\t\t\t\tsetTimeout(this.suggest.bind(this), delay);\r\n\t\t\t}\r\n\t\t\tthis.hideLeftPanel();\r\n\t\t}.bind(this));\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description\r\n\t */\r\n\tclearResults: function () {\r\n\t\tif (!$resultsContainer) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\t$resultsContainer.empty();\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description\r\n\t */\r\n\thideLeftPanel: function () {\r\n\t\t//hide left panel if there is only a matching suggested custom phrase\r\n\t\tif ($('.search-suggestion-left-panel-hit').length === 1 && $('.search-phrase-suggestion a').text().replace(/(^[\\s]+|[\\s]+$)/g, '').toUpperCase() === $('.search-suggestion-left-panel-hit a').text().toUpperCase()) {\r\n\t\t\t$('.search-suggestion-left-panel').css('display', 'none');\r\n\t\t\t$('.search-suggestion-wrapper-full').addClass('search-suggestion-wrapper');\r\n\t\t\t$('.search-suggestion-wrapper').removeClass('search-suggestion-wrapper-full');\r\n\t\t}\r\n\t},\r\n\tcheckInput: function (e, $searchField, $submitButton, defaultValue) {\r\n\t\tif ($searchField.val().trim().toLowerCase() == defaultValue.toLowerCase()) {\r\n\t\t\te.stopImmediatePropagation();\r\n\t\t\t$searchField.val(defaultValue);\r\n\t\t\treturn false;\r\n\t\t}\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description: execute server call for popular search\r\n\t */\r\n\tpopularSearch: function(query) {\r\n\t\tvar popularSearchUrl = util.appendParamsToUrl(Urls.getPopularSearchSuggest, {'q': query, 'format': 'ajax'});\r\n\t\t$.get(popularSearchUrl, function (data) {\r\n\t\t\t$popularResultsContainer.html(data);\r\n\t\t});\r\n\t}\r\n};\r\n\r\nmodule.exports = searchsuggest;\n},{\"./detect-layout\":13,\"./header\":20,\"./util\":93}],86:[function(require,module,exports){\n'use strict';\r\nvar shadedtool = {\r\n\tinit: function () {\r\n\t\tif (screen.width < 768) {\r\n\t\t\t$(function () {\r\n\t\t\t\t$('#shaded-tool-carousel').slick({\r\n\t\t\t\t\tdots: false,\r\n\t\t\t\t\tinfinite: false,\r\n\t\t\t\t\tspeed: 300,\r\n\t\t\t\t\tslidesToShow: 3,\r\n\t\t\t\t\tslidesToScroll: 3,\r\n\t\t\t\t\tresponsive: [{\r\n\t\t\t\t\t\tbreakpoint: 767,\r\n\t\t\t\t\t\tsettings: {\r\n\t\t\t\t\t\t\tslidesToShow: 2,\r\n\t\t\t\t\t\t\tslidesToScroll: 2\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\t// You can unslick at a given breakpoint now by adding:\r\n\t\t\t\t\t// settings: \"unslick\"\r\n\t\t\t\t\t// instead of a settings object\r\n\t\t\t\t\t]\r\n\t\t\t\t});\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n};\r\n\r\nif (screen.width < 768) {\r\n\t$(function () {\r\n\t\t$('#ultimate-beauty').slick({\r\n\t\t\tdots: false,\r\n\t\t\tinfinite: false,\r\n\t\t\tspeed: 300,\r\n\t\t\tslidesToShow: 1,\r\n\t\t\tslidesToScroll: 1,\r\n\t\t\tresponsive: [{\r\n\t\t\t\tbreakpoint: 767,\r\n\t\t\t\tsettings: {\r\n\t\t\t\t\tslidesToShow: 1,\r\n\t\t\t\t\tslidesToScroll: 1\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t// You can unslick at a given breakpoint now by adding:\r\n\t\t\t// settings: \"unslick\"\r\n\t\t\t// instead of a settings object\r\n\t\t\t]\r\n\t\t});\r\n\t});\r\n\r\n}\r\n\r\n$(function () {\r\n\t$(\"#tabs\").tabs();\r\n});\r\n\r\n\r\n$('.skincare-tab').on('click', function () {\r\n\tif (this.id == 'scin-tab1') {\r\n\t\t$('.ultimate-beauty-regimen-skin-concern-day').show();\r\n\t\t$('.ultimate-beauty-regimen-skin-concern-night').hide();\r\n\t} else {\r\n\t\t$('.ultimate-beauty-regimen-skin-concern-day').hide();\r\n\t\t$('.ultimate-beauty-regimen-skin-concern-night').show();\r\n\t}\r\n})\r\n\r\nfunction update() {\r\n\tvar $lis = $('.skincare-produtssets > li'),\r\n\t\t$checked = $('input:checked.regimen-checkbox'),\r\n\t\tlimit = 2,\r\n\t\t$notchecked = $('input:not(:checked).regimen-checkbox');\r\n\tvar disableuncheckedbox = false;\r\n\t$lis.hide().removeClass(\"checked-product-filter\");\r\n\t$(\".skin-choose-desc\").removeClass(\"skin-choose-desc-selected\");\r\n\t$(\".regimen-filter-heading-checked\").removeClass(\"regimen-day-night-checked\");\r\n\t$(\".reginmen-product-setlist\").removeClass(\"reginmen-product-setlist-proddisplay\");\r\n\tif ($checked.length) {\r\n\t\t$(\".regimen-filter-heading-checked\").addClass(\"regimen-day-night-checked\");\r\n\t\t$(\".reginmen-product-setlist\").addClass(\"reginmen-product-setlist-proddisplay\");\r\n\t\tif ($checked.length >= 2) {\r\n\t\t\tdisableuncheckedbox = true;\r\n\t\t}\r\n\t\tvar selector = $checked.map(function () {\r\n\t\t\t$lis.filter('.' + $(this).attr('rel')).show().addClass(\"checked-product-filter\");\r\n\t\t\t$(this).parent().parent().find(\".icon-heading\").addClass(\"icon-heading-selected\");\r\n\t\t\tvar img = $(this).parent().find(\"img\");\r\n\t\t\tvar checkeddatasrc = img.attr('data-src-checked');\r\n\t\t\timg.attr(\"src\", checkeddatasrc);\r\n\t\t\treturn '.' + $(this).attr('rel');\r\n\t\t}).get().join('');\r\n\r\n\t} else {\r\n\t\t$lis.show();\r\n\t}\r\n\tif ($notchecked.length) {\r\n\t\tvar selector = $notchecked.map(function () {\r\n\t\t\tif (disableuncheckedbox) {\r\n\t\t\t\t$(this).attr(\"disabled\", true);\r\n\t\t\t} else {\r\n\t\t\t\t$(this).attr(\"disabled\", false);\r\n\t\t\t}\r\n\t\t\t$(this).parent().parent().find(\".icon-heading\").removeClass(\"icon-heading-selected\");\r\n\t\t\tvar img = $(this).parent().find(\"img\");\r\n\t\t\tvar uncheckeddatasrc = img.attr('data-src-uncheked');\r\n\t\t\timg.attr(\"src\", uncheckeddatasrc);\r\n\t\t\treturn '.' + $(this).attr('rel');\r\n\t\t}).get().join('');\r\n\t} else {\r\n\r\n\t}\r\n}\r\nif ($(\".regimen-skin-concern\")[0]) {\r\n\t$('.regimen-skin-icons img').on('click', function () {\r\n\t\t$(\".skin-choose-desc\").addClass(\"skin-choose-desc-selected\");\r\n\t});\r\n\t$('div.tags').delegate('input[type=checkbox].regimen-checkbox', 'click', update);\r\n\tupdate();\r\n}\r\n\r\n\r\nmodule.exports = shadedtool;\n},{}],87:[function(require,module,exports){\n'use strict';\r\n\r\n/**\r\n * @function\r\n * @description Initializes Slick carousels\r\n */\r\nexports.init = function () {\r\n\t$('.slick').slick();\r\n};\r\n\n},{}],88:[function(require,module,exports){\n'use strict';\r\n\r\nvar inventory = require('./');\r\n\r\nvar cartInventory = {\r\n\tsetSelectedStore: function (storeId) {\r\n\t\tvar $selectedStore = $('.store-tile.' + storeId),\r\n\t\t\t$lineItem = $('.cart-row[data-uuid=\"' + this.uuid + '\"]'),\r\n\t\t\tstoreAddress = $selectedStore.find('.store-address').html(),\r\n\t\t\tstoreStatus = $selectedStore.find('.store-status').data('status'),\r\n\t\t\tstoreStatusText = $selectedStore.find('.store-status').text();\r\n\t\tthis.selectedStore = storeId;\r\n\r\n\t\t$lineItem.find('.instore-delivery .selected-store-address')\r\n\t\t\t.data('storeId', storeId)\r\n\t\t\t.attr('data-store-id', storeId)\r\n\t\t\t.html(storeAddress);\r\n\t\t$lineItem.find('.instore-delivery .selected-store-availability')\r\n\t\t\t.data('status', storeStatus)\r\n\t\t\t.attr('data-status', storeStatus)\r\n\t\t\t.text(storeStatusText);\r\n\t\t$lineItem.find('.instore-delivery .delivery-option').prop('disabled', false).trigger('click');\r\n\t},\r\n\tcartSelectStore: function (selectedStore) {\r\n\t\tvar self = this;\r\n\t\tinventory.getStoresInventory(this.uuid).then(function (stores) {\r\n\t\t\tinventory.selectStoreDialog({\r\n\t\t\t\tstores: stores,\r\n\t\t\t\tselectedStoreId: selectedStore,\r\n\t\t\t\tselectedStoreText: Resources.SELECTED_STORE,\r\n\t\t\t\tcontinueCallback: function () {},\r\n\t\t\t\tselectStoreCallback: self.setSelectedStore.bind(self)\r\n\t\t\t});\r\n\t\t}).done();\r\n\t},\r\n\tsetDeliveryOption: function (value, storeId) {\r\n\t\t// set loading state\r\n\t\t$('.item-delivery-options')\r\n\t\t\t.addClass('loading')\r\n\t\t\t.children().hide();\r\n\r\n\t\tvar data = {\r\n\t\t\tplid: this.uuid,\r\n\t\t\tstorepickup: (value === 'store' ? true : false)\r\n\t\t};\r\n\t\tif (value === 'store') {\r\n\t\t\tdata.storepickup = true;\r\n\t\t\tdata.storeid = storeId;\r\n\t\t} else {\r\n\t\t\tdata.storepickup = false;\r\n\t\t}\r\n\t\t$.ajax({\r\n\t\t\turl: Urls.setStorePickup,\r\n\t\t\tdata: data,\r\n\t\t\tsuccess: function () {\r\n\t\t\t\t// remove loading state\r\n\t\t\t\t$('.item-delivery-options')\r\n\t\t\t\t\t.removeClass('loading')\r\n\t\t\t\t\t.children().show();\r\n\t\t\t}\r\n\t\t});\r\n\t},\r\n\tinit: function () {\r\n\t\tvar self = this;\r\n\t\t$('.item-delivery-options .set-preferred-store').on('click', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tself.uuid = $(this).data('uuid');\r\n\t\t\tvar selectedStore = $(this).closest('.instore-delivery').find('.selected-store-address').data('storeId');\r\n\t\t\tif (!User.zip) {\r\n\t\t\t\tinventory.zipPrompt(function () {\r\n\t\t\t\t\tself.cartSelectStore(selectedStore);\r\n\t\t\t\t});\r\n\t\t\t} else {\r\n\t\t\t\tself.cartSelectStore(selectedStore);\r\n\t\t\t}\r\n\t\t});\r\n\t\t$('.item-delivery-options .delivery-option').on('click', function () {\r\n\t\t\t// reset the uuid\r\n\t\t\tvar selectedStore = $(this).closest('.instore-delivery').find('.selected-store-address').data('storeId');\r\n\t\t\tself.uuid = $(this).closest('.cart-row').data('uuid');\r\n\t\t\tself.setDeliveryOption($(this).val(), selectedStore);\r\n\t\t});\r\n\t}\r\n};\r\n\r\nmodule.exports = cartInventory;\n},{\"./\":89}],89:[function(require,module,exports){\n'use strict';\r\n\r\nvar _ = require('lodash'),\r\n\tTPromise = require('promise'),\r\n\tutil = require('../util');\r\n\r\nvar newLine = '\\n';\r\nvar storeTemplate = function (store, selectedStoreId, selectedStoreText) {\r\n\treturn [\r\n\t\t'<li class=\"store-tile ' + store.storeId + (store.storeId === selectedStoreId ? ' selected' : '') + '\">',\r\n\t\t' <p class=\"store-address\">',\r\n\t\t' ' + store.address1 + '<br/>',\r\n\t\t' ' + store.city + ', ' + store.stateCode + ' ' + store.postalCode,\r\n\t\t' </p>',\r\n\t\t' <p class=\"store-status\" data-status=\"' + store.statusclass + '\">' + store.status + '</p>',\r\n\t\t' <button class=\"select-store-button\" data-store-id=\"' + store.storeId + '\"' +\r\n\t\t(store.statusclass !== 'store-in-stock' ? 'disabled=\"disabled\"' : '') + '>',\r\n\t\t' ' + (store.storeId === selectedStoreId ? selectedStoreText : Resources.SELECT_STORE),\r\n\t\t' </button>',\r\n\t\t'</li>'\r\n\t].join(newLine);\r\n};\r\n\r\nvar storeListTemplate = function (stores, selectedStoreId, selectedStoreText) {\r\n\tif (stores && stores.length) {\r\n\t\treturn [\r\n\t\t\t'<div class=\"store-list-container\">',\r\n\t\t\t'<ul class=\"store-list\">',\r\n\t\t\t_.map(stores, function (store) {\r\n\t\t\t\treturn storeTemplate(store, selectedStoreId, selectedStoreText);\r\n\t\t\t}).join(newLine),\r\n\t\t\t'</ul>',\r\n\t\t\t'</div>',\r\n\t\t\t'<div class=\"store-list-pagination\">',\r\n\t\t\t'</div>'\r\n\t\t].join(newLine);\r\n\t} else {\r\n\t\treturn '<div class=\"no-results\">' + Resources.INVALID_ZIP + '</div>';\r\n\t}\r\n};\r\n\r\nvar zipPromptTemplate = function () {\r\n\treturn [\r\n\t\t'<div id=\"preferred-store-panel\">',\r\n\t\t' <input type=\"text\" id=\"user-zip\" placeholder=\"' + Resources.ENTER_ZIP + '\" name=\"zipCode\"/>',\r\n\t\t'</div>'\r\n\t].join(newLine);\r\n};\r\n\r\n/**\r\n * @description test whether zipcode is valid for either US or Canada\r\n * @return {Boolean} true if the zipcode is valid for either country, false if it's invalid for both\r\n **/\r\nvar validateZipCode = function (zipCode) {\r\n\tvar regexes = {\r\n\t\t\tcanada: /^[ABCEGHJKLMNPRSTVXY]\\d[ABCEGHJKLMNPRSTVWXYZ]( )?\\d[ABCEGHJKLMNPRSTVWXYZ]\\d$/i,\r\n\t\t\tusa: /^\\d{5}(-\\d{4})?$/\r\n\t\t},\r\n\t\tvalid = false;\r\n\tif (!zipCode) {\r\n\t\treturn;\r\n\t}\r\n\t_.each(regexes, function (re) {\r\n\t\tvar regexp = new RegExp(re);\r\n\t\tvalid = regexp.test(zipCode);\r\n\t});\r\n\treturn valid;\r\n};\r\n\r\nvar storeinventory = {\r\n\tzipPrompt: function (callback) {\r\n\t\tvar self = this;\r\n\t},\r\n\tgetStoresInventory: function (pid) {\r\n\t\treturn TPromise.resolve($.ajax({\r\n\t\t\turl: util.appendParamsToUrl(Urls.storesInventory, {\r\n\t\t\t\tpid: pid,\r\n\t\t\t\tzipCode: User.zip\r\n\t\t\t}),\r\n\t\t\tdataType: 'json'\r\n\t\t}));\r\n\t},\r\n\t/**\r\n\t * @description open the dialog to select store\r\n\t * @param {Array} options.stores\r\n\t * @param {String} options.selectedStoreId\r\n\t * @param {String} options.selectedStoreText\r\n\t * @param {Function} options.continueCallback\r\n\t * @param {Function} options.selectStoreCallback\r\n\t **/\r\n\tselectStoreDialog: function (options) {\r\n\t\tvar self = this,\r\n\t\t\tstores = options.stores,\r\n\t\t\tselectedStoreId = options.selectedStoreId,\r\n\t\t\tselectedStoreText = options.selectedStoreText,\r\n\t\t\tstoreList = storeListTemplate(stores, selectedStoreId, selectedStoreText);\r\n\t},\r\n\tsetUserZip: function (zip) {\r\n\t\tUser.zip = zip;\r\n\t\t$.ajax({\r\n\t\t\ttype: 'POST',\r\n\t\t\turl: Urls.setZipCode,\r\n\t\t\tdata: {\r\n\t\t\t\tzipCode: zip\r\n\t\t\t}\r\n\t\t});\r\n\t},\r\n\tshippingLoad: function () {\r\n\t\tvar $checkoutForm = $('.address');\r\n\t\t$checkoutForm.off('click');\r\n\t\t$checkoutForm.on('click', 'input[name$=\"_shippingAddress_isGift\"]', function () {\r\n\t\t\t$(this).parent().siblings('.gift-message-text').toggleClass('hidden', $('input[name$=\"_shippingAddress_isGift\"]:checked').val());\r\n\t\t});\r\n\t}\r\n};\r\n\r\nmodule.exports = storeinventory;\n},{\"../util\":93,\"lodash\":137,\"promise\":141}],90:[function(require,module,exports){\n'use strict';\r\n\r\nvar _ = require('lodash'),\r\n\tinventory = require('./'),\r\n\tutil = require('../util'),\r\n\tcurrentLayout = require('../detect-layout'),\r\n\tcustomModal = require('../../../../app_shiseidogmw/cartridge/js/modal');\r\n\r\nvar newLine = '\\n';\r\nvar pdpStoreTemplate = function (store) {\r\n\treturn [\r\n\t\t'<li class=\"store-list-item ' + (store.storeId === User.storeId ? ' selected' : '') + '\">',\r\n\t\t' <div class=\"store-address\">' + store.address1 + ', ' + store.city + ' ' + store.stateCode +\r\n\t\t' ' + store.postalCode + '</div>',\r\n\t\t' <div class=\"store-status\" data-status=\"' + store.statusclass + '\">' + store.status + '</div>',\r\n\t\t'</li>'\r\n\t].join(newLine);\r\n};\r\nvar pdpStoresListingTemplate = function (stores) {\r\n\tif (stores && stores.length) {\r\n\t\treturn [\r\n\t\t\t'<div class=\"store-list-pdp-container\">',\r\n\t\t\t(stores.length > 1 ? ' <a class=\"stores-toggle collapsed\" href=\"#\">' + Resources.SEE_MORE + '</a>' : ''),\r\n\t\t\t' <ul class=\"store-list-pdp\">',\r\n\t\t\t_.map(stores, pdpStoreTemplate).join(newLine),\r\n\t\t\t' </ul>',\r\n\t\t\t'</div>'\r\n\t\t].join(newLine);\r\n\t}\r\n};\r\n\r\nvar storesListing = function (stores) {\r\n\t// list all stores on PDP page\r\n\tif ($('.store-list-pdp-container').length) {\r\n\t\t$('.store-list-pdp-container').remove();\r\n\t}\r\n\t$('.availability-results').append(pdpStoresListingTemplate(stores));\r\n};\r\n\r\nvar productInventory = {\r\n\tsetPreferredStore: function (storeId) {\r\n\t\tUser.storeId = storeId;\r\n\t\t$.ajax({\r\n\t\t\turl: Urls.setPreferredStore,\r\n\t\t\ttype: 'POST',\r\n\t\t\tdata: {\r\n\t\t\t\tstoreId: storeId\r\n\t\t\t}\r\n\t\t});\r\n\t},\r\n\tproductSelectStore: function () {\r\n\t\tvar self = this;\r\n\t\tinventory.getStoresInventory(this.pid).then(function (stores) {\r\n\t\t\tinventory.selectStoreDialog({\r\n\t\t\t\tstores: stores,\r\n\t\t\t\tselectedStoreId: User.storeId,\r\n\t\t\t\tselectedStoreText: Resources.PREFERRED_STORE,\r\n\t\t\t\tcontinueCallback: storesListing,\r\n\t\t\t\tselectStoreCallback: self.setPreferredStore\r\n\t\t\t});\r\n\t\t}).done();\r\n\t},\r\n\tinit: function () {\r\n\t\tvar $availabilityContainer = $('.availability-results'),\r\n\t\t\tself = this;\r\n\t\tthis.pid = $('input[name=\"pid\"]').val();\r\n\r\n\t\t$('#product-content .set-preferred-store').on('click', function (e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tif (!User.zip) {\r\n\t\t\t\tinventory.zipPrompt(function () {\r\n\t\t\t\t\tself.productSelectStore();\r\n\t\t\t\t});\r\n\t\t\t} else {\r\n\t\t\t\tself.productSelectStore();\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\tif ($availabilityContainer.length) {\r\n\t\t\tif (User.storeId) {\r\n\t\t\t\tinventory.getStoresInventory(this.pid).then(storesListing);\r\n\t\t\t}\r\n\r\n\t\t\t// See more or less stores in the listing\r\n\t\t\t$availabilityContainer.on('click', '.stores-toggle', function (e) {\r\n\t\t\t\te.preventDefault();\r\n\t\t\t\t$('.store-list-pdp .store-list-item').toggleClass('visible');\r\n\t\t\t\tif ($(this).hasClass('collapsed')) {\r\n\t\t\t\t\t$(this).text(Resources.SEE_LESS);\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$(this).text(Resources.SEE_MORE);\r\n\t\t\t\t}\r\n\t\t\t\t$(this).toggleClass('collapsed');\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n};\r\nvar isfaded = $(\".gradient-block\").css(\"display\") === \"block\"; \r\nfunction initStickyNavPdp() {\r\n\t;(function(f){\"use strict\";\"function\"===typeof define&&define.amd?define([\"jquery\"],f):\"undefined\"!==typeof module&&module.exports?module.exports=f(require(\"jquery\")):f(jQuery)})(function($){\"use strict\";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),[\"iframe\",\"#document\",\"html\",\"body\"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:\"xy\",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){\"object\"=== typeof d&&(b=d,d=0);\"function\"===typeof b&&(b={onAfter:b});\"max\"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1<b.axis.length;u&&(d/=2);b.offset=h(b.offset);b.over=h(b.over);return this.each(function(){function k(a){var k=$.extend({},b,{queue:!0,duration:d,complete:a&&function(){a.call(q,e,b)}});r.animate(f,k)}if(null!==a){var l=n(this),q=l?this.contentWindow||window:this,r=$(q),e=a,f={},t;switch(typeof e){case \"number\":case \"string\":if(/^([+-]=?)?\\d+(\\.\\d+)?(px|%)?$/.test(e)){e= h(e);break}e=l?$(e):$(e,q);case \"object\":if(e.length===0)return;if(e.is||e.style)t=(e=$(e)).offset()}var v=$.isFunction(b.offset)&&b.offset(q,e)||b.offset;$.each(b.axis.split(\"\"),function(a,c){var d=\"x\"===c?\"Left\":\"Top\",m=d.toLowerCase(),g=\"scroll\"+d,h=r[g](),n=p.max(q,c);t?(f[g]=t[m]+(l?0:h-r.offset()[m]),b.margin&&(f[g]-=parseInt(e.css(\"margin\"+d),10)||0,f[g]-=parseInt(e.css(\"border\"+d+\"Width\"),10)||0),f[g]+=v[m]||0,b.over[m]&&(f[g]+=e[\"x\"===c?\"width\":\"height\"]()*b.over[m])):(d=e[m],f[g]=d.slice&& \"%\"===d.slice(-1)?parseFloat(d)/100*n:d);b.limit&&/^\\d+$/.test(f[g])&&(f[g]=0>=f[g]?0:Math.min(f[g],n));!a&&1<b.axis.length&&(h===f[g]?f={}:u&&(k(b.onAfterFirst),f={}))});k(b.onAfter)}})};p.max=function(a,d){var b=\"x\"===d?\"Width\":\"Height\",h=\"scroll\"+b;if(!n(a))return a[h]-$(a)[b.toLowerCase()]();var b=\"client\"+b,k=a.ownerDocument||a.document,l=k.documentElement,k=k.body;return Math.max(l[h],k[h])-Math.min(l[b],k[b])};$.Tween.propHooks.scrollLeft=$.Tween.propHooks.scrollTop={get:function(a){return $(a.elem)[a.prop]()}, set:function(a){var d=this.get(a);if(a.options.interrupt&&a._last&&a._last!==d)return $(a.elem).stop();var b=Math.round(a.now);d!==b&&($(a.elem)[a.prop](b),a._last=this.get(a))}};return p});\r\n\tvar link = $('.pdp-jump-links .link-wrapper a');\r\n \r\n\r\n// Move to specific section when click on menu link\r\nlink.on('click', function (e) {\r\n e.preventDefault();\r\n var self= $(this)\r\n if (self.hasClass(\"nav-active\")) { \r\n return;\r\n }\r\n\r\n\tvar target = $(self.attr('href')),\r\n\tscrollTopOffset = (function (){ \r\n\t\tvar topOffset = target.offset().top;\r\n\t\tif (!$(\".pdp-jump-links\").hasClass(\"sticky\")) { \r\n\t\t\ttopOffset -= $(\".pdp-jump-links\").outerHeight(true); \r\n\t\t}\r\n\t\tif (self.parent().is(\":first-child\")){\r\n\t\t\ttopOffset += 10; \r\n\t\t} \r\n\t\treturn topOffset; \r\n\t})();\r\n\t$('html, body').animate({ \r\n\t\tscrollTop: scrollTopOffset\r\n\t}, 600); \r\n\r\n});\r\n\r\n// Run the scrNav when scroll\r\n$(window).on('scroll', function () {\r\n\tif (!$('.pdp-jump-links').hasClass('sticky') && $('.link-wrapper').scrollLeft()) {\r\n $('.link-wrapper').scrollTo(0);\r\n }\r\n\tscrNav(); \r\n});\r\n\r\n// scrNav function\r\n// Change active nav according to the active section in the window\r\n\r\n\r\n\r\n\t$(window).on('load resize orientationchange', function () {\r\n\t\tif ($('.link-wrapper').length) {\r\n\t\t\tapplyGradient();\r\n\t\t}\r\n\t}); \r\n\r\n\r\n$('.link-wrapper').scroll(function () {//horizontal scroll\r\n applyGradient()\r\n});\r\n\r\n}\r\n\r\n\r\nvar currentSectionid;\r\nfunction scrNav(scroll) {\r\n var link = $('.pdp-jump-links .link-wrapper a'),\r\n stop = $(window).scrollTop(),\r\n footerposition = $('footer').position().top - 1,\r\n isNavLinkactived = false; //flag variable to check if in zone;\r\n $('section').each(function () {\r\n var id = $(this).attr('id'),\r\n position = $(this).position().top - 1,\r\n height = $(this).height();\r\n if (stop >= position && stop < position + height) {\r\n link.removeClass('nav-active');\r\n $('.pdp-jump-links .link-wrapper a[href*=\"' + id + '\"]').addClass('nav-active');\r\n isNavLinkactived = true;\r\n if (currentLayout.init() === 'mobile') {\r\n if (currentSectionid !== id || scroll) {\r\n if ($('.pdp-jump-links .link-wrapper .nav-active').length > 0) {\r\n\t\t\t\t\t\t$('.link-wrapper').scrollTo($('.link-wrapper').scrollLeft() + $('.nav-active').offset().left - 30); \r\n \r\n }; \r\n currentSectionid = id;\r\n }\r\n }\r\n }\r\n\r\n });\r\n //remove active nav code\r\n if (!isNavLinkactived && $(\".nav-active\").length) {\r\n $('.nav-active').removeClass(\"nav-active\")\r\n }\r\n \r\n} \r\n\r\n$(window).on('load', function () {\r\n if ($('body').hasClass('pdp-page')) {\r\n if($(\".pdp-jump-links\").hasClass(\"sticky\") && $(\".pdp-jump-links\").css(\"display\") !== \"none\" ){\r\n $(\".scroll-top-wrapper\").css(\"visibility\",\"visible\")\r\n } else {\r\n $(\".scroll-top-wrapper\").css(\"visibility\",\"hidden\")\r\n }\r\n } \r\n}); \r\n \r\ninitStickyNavPdp(); \r\n\r\n \r\n\r\nfunction applyGradient() {\r\n\tif($('.link-wrapper').length>0){\r\n\t\tvar elem = $('.link-wrapper'),\r\n\t\t\tnewScrollLeft = elem.scrollLeft(),\r\n\t\t\tscrollWidth = elem.get(0).scrollWidth,\r\n\t\t\tinnerwidth = $(\"body\").prop(\"clientWidth\"),\r\n\t\t\toffset = scrollWidth - parseInt($(\".link-wrapper li:last-child a\").css(\"padding-right\")); \r\n\t\r\n\t\tif (newScrollLeft + innerwidth - 20 >= offset) { \r\n\t\t\tif (isfaded) {\r\n\t\t\t\tisfaded = false; \r\n\t\t\t\t$(\".gradient-block\").css(\"display\", \"none\"); \r\n\t\t\t}\r\n\t\t} else if (!isfaded) {\r\n\t\t\tisfaded = true;\r\n\t\t\t$(\".gradient-block\").css(\"display\", \"block\");\r\n\t\t}\r\n\t}\t\r\n} \r\n\t\r\n\r\n\r\n\r\nmodule.exports = productInventory; \r\n\r\n\r\n$('img.product-image-initial').on('mouseenter mouseleave', function () {\r\n\t$(this).attr({\r\n\t\tsrc: $(this).attr('data-alt-src'),\r\n\t\t'data-alt-src': $(this).attr('src')\r\n\t})\r\n});\r\n\r\n$('.PDP_Region_Selector_btn button').on('click', function() {\r\n\tcustomModal.createCustomModal('pdp_region_modal');\r\n\t$('.pdp_region_modal').find('.modal-body').html($('.pdp_region_modal_content').html()).addClass('sb-container');\r\n\t$('.pdp_region_modal .sb-container').scrollBox(); \r\n});\r\n\r\n$('#product-list-page-carousel').slick({\r\n\tdots: false,\r\n\tinfinite: false,\r\n\tspeed: 300,\r\n\tslidesToShow: 1,\r\n\tslidesToScroll: 1,\r\n\tresponsive: [{\r\n\t\t\tbreakpoint: 1024,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 1,\r\n\t\t\t\tslidesToScroll: 1,\r\n\t\t\t\tinfinite: true,\r\n\t\t\t\tdots: false\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\tbreakpoint: 600,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 1,\r\n\t\t\t\tslidesToScroll: 1\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\tbreakpoint: 480,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 1,\r\n\t\t\t\tslidesToScroll: 1\r\n\t\t\t}\r\n\t\t}\r\n\t\t// You can unslick at a given breakpoint now by adding:\r\n\t\t// settings: \"unslick\"\r\n\t\t// instead of a settings object\r\n\t]\r\n});\r\n\r\n\r\n$('#product-image-carousel').slick({\r\n\tdots: false,\r\n\tinfinite: false,\r\n\tspeed: 300,\r\n\tslidesToShow: 3,\r\n\tslidesToScroll: 3,\r\n\tresponsive: [{\r\n\t\t\tbreakpoint: 1024,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 3,\r\n\t\t\t\tslidesToScroll: 3,\r\n\t\t\t\tinfinite: true,\r\n\t\t\t\tdots: false\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\tbreakpoint: 600,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 2,\r\n\t\t\t\tslidesToScroll: 2\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\tbreakpoint: 480,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 1,\r\n\t\t\t\tslidesToScroll: 1\r\n\t\t\t}\r\n\t\t}\r\n\t\t// You can unslick at a given breakpoint now by adding:\r\n\t\t// settings: \"unslick\"\r\n\t\t// instead of a settings object\r\n\t]\r\n});\r\n\r\n\r\n$('#product-video-carousel').slick({\r\n\tdots: false,\r\n\tinfinite: false,\r\n\tspeed: 300,\r\n\tslidesToShow: 3,\r\n\tslidesToScroll: 3,\r\n\tresponsive: [{\r\n\t\t\tbreakpoint: 1024,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 3,\r\n\t\t\t\tslidesToScroll: 3,\r\n\t\t\t\tinfinite: true,\r\n\t\t\t\tdots: false\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\tbreakpoint: 600,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 2,\r\n\t\t\t\tslidesToScroll: 2\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\tbreakpoint: 480,\r\n\t\t\tsettings: {\r\n\t\t\t\tslidesToShow: 1,\r\n\t\t\t\tslidesToScroll: 1\r\n\t\t\t}\r\n\t\t}\r\n\t\t// You can unslick at a given breakpoint now by adding:\r\n\t\t// settings: \"unslick\"\r\n\t\t// instead of a settings object\r\n\t]\r\n});\r\n\r\nfunction isScrolledIntoView(elem) {\r\n\tvar $elem = $(elem),\r\n\t\t$window = $(window),\r\n\t\tdocViewTop = $window.scrollTop(),\r\n\t\tdocViewBottom = docViewTop + $window.height(),\r\n\t\telemTop = $elem.offset().top,\r\n\t\telemBottom = elemTop + $elem.height();\r\n\r\n\treturn ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));\r\n}\r\n\r\n/**\r\n * @description PDP Sticky Navigation and Sticky Buy Desktop\r\n **/\r\nfunction productStickyNav() { \r\n\tif ($('.pdp-jump-links').length) {\r\n var pdpnavbar = $('.pdp-jump-links'),\r\n pdpnavbarheight = pdpnavbar.outerHeight(true), \r\n\t\t\tmoduleLength = pdpnavbar.find('.link-wrapper li').length;\r\n\t\t\r\n\t\tif (moduleLength <= 1) {\r\n\t\t\t$('.pdp-jump-links').remove();\r\n\t\t} else {\r\n\t\t\t$('.pdp-jump-links').removeClass('d-none');\r\n\t\t}\r\n\t\r\n\t\tvar sticky = pdpnavbar.offset().top;\r\n\r\n\t\tif ($(window).scrollTop() >= sticky) {\r\n pdpnavbar.addClass('sticky');\r\n $(\".offset-replacement\").css(\"height\",pdpnavbarheight); //change added \r\n\t\t\t$('.pdp-jump-links .buy-back-to-top').show(250); \r\n\t\t\tif($(window).scrollTop() + $(window).outerHeight() >= $('footer').position().top){ \r\n if ($(\".pdp-jump-links\").css(\"display\") !== \"none\") { \r\n\t\t\t\t\t$(\".scroll-top-wrapper\").css(\"visibility\",\"hidden\"); \r\n\t\t\t\t\t$('.pdp-jump-links .buy-back-to-top').hide();\r\n $(\".pdp-jump-links\").css(\"display\", \"none\");\r\n } \r\n }\r\n else if ($(\".pdp-jump-links\").css(\"display\") == 'none' || $(\".scroll-top-wrapper\").css(\"visibility\") !== \"visible\" ) {\r\n\t\t\t\t$(\".pdp-jump-links\").css(\"display\", \"block\");\r\n\t\t\t\t$('.pdp-jump-links .buy-back-to-top').hide().show(250);\r\n $(\".scroll-top-wrapper\").css(\"visibility\",\"visible\"); \r\n } \r\n\t\t\tscrNav(true); \r\n\t\t\tvar stickyNav = $('.pdp-jump-links .link-wrapper');\r\n\t\t\tvar stickyNavWidth = $(stickyNav).outerWidth();\r\n\t\t\tif (currentLayout.init() === 'mobile') {\r\n\r\n\t\t\t\t$(stickyNav).width(stickyNavWidth + $(window).width());\r\n\t\t\t}\r\n\t\t\telse if ($('.pdp-jump-links .link-wrapper').attr(\"style\")){\r\n\t\t\t\t$(stickyNav).removeAttr(\"style\")\r\n\t\t\t} \r\n\t\t\t \r\n\t\t} else {\r\n pdpnavbar.removeClass('sticky');\r\n $(\".offset-replacement\").css(\"height\",\"0\"); //change added \r\n\t\t\t$('.pdp-jump-links .buy-back-to-top').hide();\r\n $(\".scroll-top-wrapper\").css(\"visibility\",\"hidden\") // when navbar gets unsticky remove scroll to top button\r\n\t\t\tscrNav(true);\r\n\t\t\t$('.stick-buy-container').removeClass('open');\r\n\t\t\t$('.sticky-buy-link').removeClass('active');\r\n\t\t} \r\n\t}\r\n}\r\n\r\n\r\n\r\n/**\r\n * @description PDP Sticky Buy Mobile\r\n **/\r\nfunction productStickyBuyMobile() {\r\n\tif ($('.sticky-buy-mobile').length) {\t\r\n\t\tvar stickyBuyMobile = $('.sticky-buy-mobile'),\r\n\t\taddToCartButtonWrapper = $('.product-details-wrapper .product-add-to-cart'),\r\n\t\taddToCartButtonPosition = addToCartButtonWrapper.offset().top;\r\n\t\tif ($(window).scrollTop() >= addToCartButtonPosition && !isScrolledIntoView(addToCartButtonWrapper)) {\r\n\t\t\tstickyBuyMobile.addClass('sticky');\r\n\t\t} else {\r\n\t\t\tstickyBuyMobile.removeClass('sticky'); \r\n\t\t}\r\n\t}\r\n}\r\n\r\n$('.sticky-buy-mobile').on('click', function () {\r\n\tvar addToCartButtonWrapper = $('.product-details-wrapper .product-add-to-cart'),\r\n\taddToCartButtonPosition = addToCartButtonWrapper.offset().top;\r\n\tvar scrollPosition = (addToCartButtonWrapper.offset().top + addToCartButtonWrapper.height()) - $(window).height();\r\n\t$(\"html,body\").animate({\r\n\t\tscrollTop: scrollPosition\r\n\t}, 500 );\r\n});\r\n\r\n\r\n\r\n\r\n$(document).on('click', '.sticky-buy-link, .stick-buy-outer-close', function () {\r\n\t$('.sticky-buy-link').toggleClass('active');\r\n\t$('.stick-buy-container').toggleClass('open');\r\n\t$('.swatches-dropdown, #pdp-swatches').removeClass('active');\r\n});\r\n\r\n$(window).on('resize orientationchange scroll', function () {\r\n if (('.pdp-jump-links').length) {\r\n $('.pdp-jump-links').removeClass('sticky');\r\n productStickyNav();\r\n }\r\n}); \r\n\r\n//Updating color variant dropdown with the default color.\r\nif($('.pdp-main .variation-select').length > 0) {\r\n\tsetTimeout(function () {\r\n\t\t$('.pdp-main .variation-select').val($('.swatches li.selected').data('selectedcolor')).selectmenu('refresh');\r\n\t}, 500);\r\n}\r\n\r\n$('#product-list-page-carousel > .slick-arrow').on('click', function () {\r\n\t$('.product-list-carousel > iframe')[0].contentWindow.postMessage('{\"event\":\"command\",\"func\":\"' + 'pauseVideo' + '\",\"args\":\"\"}', '*');\r\n});\r\n\r\n// Sticky cart changes below\r\n\r\nfunction stickyCartCarouselInit(){\r\n\tvar $stickyCartCarousel = $('.sticky-cart-desktop .sticky-cart-contents #pdp-swatches.swatches');\r\n\tvar slidesToShow;\r\n\tif($stickyCartCarousel.hasClass('size')){\r\n\t\tslidesToShow=3;\r\n\t}\r\n\telse if($stickyCartCarousel.hasClass('color')){\r\n\t\tslidesToShow=5;\r\n\t}\r\n\t$stickyCartCarousel.not('.slick-initialized').slick({\r\n\t\tinfinite: false,\r\n\t\tslidesToShow: slidesToShow,\r\n\t\tspeed:300,\r\n\t\tarrows: true,\r\n\t\tdots: false,\r\n\t\tprevArrow: `<svg class=\"dd-arrow dd-arrow-left\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.2894 12L15.8323 6.45709L14.418 5.04288L7.46094 12L14.418 18.9571L15.8323 17.5429L10.2894 12Z\" fill=\"black\"/>\r\n\t\t</svg>`,\r\n\t\tnextArrow: `<svg class=\"dd-arrow dd-arrow-right\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.7107 12L8.16785 6.45709L9.58206 5.04288L16.5392 12L9.58206 18.9571L8.16785 17.5429L13.7107 12Z\" fill=\"black\"/>\r\n\t\t</svg>`\r\n\t});\r\n\t$(document).on('click','.sticky-cart-desktop .left-arrow',function(){\r\n\t\t$stickyCartCarousel.slick('slickPrev')\r\n\t})\r\n\t.on('click','.sticky-cart-desktop .right-arrow',function(){\r\n\t\t$stickyCartCarousel.slick('slickNext')\r\n\t})\t\t\r\n}\r\n\r\nfunction adjustStickyCartCarousel(){\r\n\tvar $stickyCartCarousel = $('.sticky-cart-desktop .sticky-cart-contents #pdp-swatches.swatches');\r\n\tif($stickyCartCarousel.find('.slick-track').css('width')==='0px'){\r\n\t\t$stickyCartCarousel.find('.slick-track').css('width','200px');\r\n\t\t$stickyCartCarousel.find('.slick-slide').css('width','20px');\r\n\t\t$stickyCartCarousel.slick('slickPrev');\r\n\t\t$stickyCartCarousel.slick('slickNext');\r\n\t}\r\n}\r\n\r\n\r\n//initiate sticky cart dropdown\r\nfunction stickyCartDropdownInit() {\r\n var activeClass = \"is-active\";\r\n $(document).on('click', \".dropdown_list span.dropdown\", function() {\r\n if (!$(this).hasClass(activeClass) ) {\r\n $(\".dropdown_list span.dropdown\").removeClass(activeClass);\r\n $(this).addClass(activeClass)\r\n } else if ( $(this).hasClass(activeClass) ) {\r\n $(this).removeClass(activeClass);\r\n }\r\n }).on('click', function(e) {\r\n // Dropdown Select Toggle\r\n var event_element = e.target;\r\n if (!$(event_element).closest(\".dropdown_list\").length){\r\n $(\".dropdown_list span.dropdown\").removeClass(activeClass)\r\n }\r\n }).on('click', '#sticky-cart-close', function(){\r\n $('.sticky-cart').remove();\r\n })\r\n\r\n window.addEventListener('scroll',function(e){\r\n\t\tvar btn = document.querySelector('.pdpForm button');\r\n\t\tvar rect = btn.getBoundingClientRect();\r\n\t\tif (rect.bottom+200 < 0) {\r\n\t\t\t\t$('.sticky-cart').show();\r\n\t\t\t\tif(loaded===false) {\r\n\t\t\t\t\t$('.sticky-cart .loading').show();\r\n\t\t\t\t}\r\n\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\t$('.sticky-cart-contents').show();\r\n\t\t\t\t\t$('.sticky-cart .loading').hide();\r\n\t\t\t\t\tloaded=true;\r\n\t\t\t\t\tstickyCartCarouselInit();\r\n\t\t\t\t\tadjustStickyCartCarousel();\r\n\t\t\t\t\t$('#pdp-swatches.swatches li').each(function(index,li){\r\n\t\t\t\t\t\tif(li.classList.contains('selected')){\r\n\t\t\t\t\t\t\tlet title = $(li).find('a').attr('title');\r\n\t\t\t\t\t\t\tconst arrowDown = `<div class=\"drop-icon\"><svg width=\"7\" height=\"5\" viewBox=\"0 0 7 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n\t\t\t\t\t\t\t<path d=\"M0 0.75L3.5 4.25L7 0.75H0Z\" fill=\"#414141\"/></svg></div>`;\r\n\t\t\t\t\t\t\tconst arrowDownDesktop=`<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n\t\t\t\t\t\t\t<path d=\"M3.75 6L9 11.25L14.25 6H3.75Z\" fill=\"black\"/>\r\n\t\t\t\t\t\t\t</svg>`;\r\n\t\t\t\t\t\t\t$('.sticky-cart-mobile #sc-dropdown.dropdown_list span.dropdown').html(title.trim()+arrowDown);\r\n\t\t\t\t\t\t\t$('.sticky-cart-desktop #sc-dropdown.dropdown_list span.dropdown').html(title.trim()+arrowDownDesktop);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t})\r\n\t\t\t\t\tvar $stickyCartCarousel = $('.sticky-cart-desktop .sticky-cart-contents #pdp-swatches.swatches');\r\n\t\t\t\t\tif($stickyCartCarousel.find('.slick-track').css('width')==='0px'){\r\n\t\t\t\t\t\t$stickyCartCarousel.find('slick-track').css('width','200px');\r\n\t\t\t\t\t\t$stickyCartCarousel.find('slick-slide').css('width','20px');\r\n\t\t\t\t\t\t$stickyCartCarousel.slick('slickPrev');\r\n\t\t\t\t\t\t$stickyCartCarousel.slick('slickNext');\r\n\t\t\t\t\t}\r\n\t\t\t\t\tif($stickyCartCarousel.hasClass('size')){\r\n\t\t\t\t\t\t$('.sticky-cart-desktop .sc-prod-cart').css('margin-top','-25px');\r\n\t\t\t\t\t}\r\n\t\t\t\t},2000);\r\n\t\t\t\r\n\t\t}\r\n\t\telse{\r\n\t\t\tvar $stickyCartCarousel = $('.sticky-cart-desktop .sticky-cart-contents #pdp-swatches.swatches');\r\n $('.sticky-cart, .sticky-cart-contents').hide();\r\n loaded=false;\r\n\t\t\tif($stickyCartCarousel.hasClass('slick-initialized')){\r\n\t\t\t\t$stickyCartCarousel.slick('unslick');\r\n\t\t\t}\r\n\t\t}\r\n });\r\n}\r\nfunction syncAddtoBagStickyCTA(){\r\n\t$(document).on('click','#sticky-cart-mobile-add-to-cart',function(e){\r\n\t\te.preventDefault();\r\n\t\t$('.pdpForm .add-to-cart').trigger('click');\r\n\t})\r\n\t\r\n\t$(document).on('click','#sticky-cart-desktop-add-to-cart',function(e){\r\n\t\te.preventDefault();\r\n\t\t$('.pdpForm .add-to-cart').trigger('click');\r\n\t})\r\n}\r\n\r\n\r\nfunction adjustStickyCartTabSwitch(){\r\n\tvar state = $('.sticky-cart-desktop').css('display');\r\n\twindow.addEventListener('resize',function(){\r\n\t\tconst newState = $('.sticky-cart-desktop').css('display');\r\n\t\tif(newState!==state && newState==='block'){\r\n\t\t\tadjustStickyCartCarousel();\r\n\t\t}\r\n\t\tif(newState!==state){\r\n\t\t\tstate=newState;\r\n\t\t}\r\n\t})\t\r\n}\r\n\r\nfunction loadProductThumbnailVideo(){\r\n\r\n\tsetTimeout(()=>{\r\n\t\tconst $videoSlides = $('.video-slide');\r\n\t\tif($videoSlides.length > 0){\r\n\t\t\t$videoSlides.each(function(i,vid){\r\n\t\t\t\t$(vid).height($(vid).width());\r\n\t\t\t\tconst $vidContainer = $(vid).find('.video-container');\r\n\t\t\t\t$vidContainer.height($vidContainer.width());\r\n\t\t\t})\r\n\t\t}\t\r\n\t\tconst videoIDs = $('.pdp-product-thumbnail-slider').data('videoids')\r\n\t\tconst $pdpVideoThumbnails = $('.pdp-product-thumbnail-slider .pdp-video-thumbnail');\r\n\r\n\t\t$pdpVideoThumbnails.on('click', function () {\r\n\t\t\tconst videoID = $(this).data('video-id');\r\n\t\t\tconst loopstatus = $(this).data('loopstatus');\r\n\t\t\tconst targetVideo = $(`.product-images .video-container[data-video-id='${videoID}']`);\r\n\t\t\tvideoIDs.forEach((v, i) => {\r\n\t\t\t\tvideojs.getPlayer(`pdp-thumbnail-main-${v}-${i}`).ready(function () {\r\n\t\t\t\t\tconst myPlayer = this;\r\n\t\t\t\t\tmyPlayer.muted(true);\r\n\t\t\t\t});\r\n\t\t\t})\r\n\t\t\tvideojs.getPlayer(`pdp-thumbnail-main-${videoID}-${loopstatus}`).ready(function () {\r\n\t\t\t\tconst myPlayer = this;\r\n\t\t\t\tmyPlayer.play();\r\n\t\t\t\tmyPlayer.muted(false);\r\n\t\t\t});\r\n\t\t});\t\r\n\r\n\t\tconst $zoomProductVideo = $('.zoomProductVideo');\r\n\t\t$zoomProductVideo.each(function(i, element){\r\n\t\t\tconst $element = $(element);\r\n\t\t\tconst $closeIcon = $element.find('.icon-close');\r\n\t\t\t$closeIcon.on('click', ()=>{\r\n\t\t\t\t$element.find('video')[0].pause();\r\n\t\t\t})\r\n\t\t})\r\n\r\n\t},300)\r\n}\r\n\r\nfunction adjustZoomUpIcon(){\r\n\t$(document).ready(function(){\r\n\t\tsetTimeout(()=>{\r\n\t\t\tconst $productImagesDiv = $('.product-thumbnails ul.product-images');\r\n\t\t\tconst $zoomUpIcon = $('#zoom-up-pdp');\r\n\t\t\t$zoomUpIcon.detach().appendTo($productImagesDiv);\r\n\t\t},500);\r\n\t})\r\n}\r\n\r\nvar loaded=false;\r\n\r\nstickyCartDropdownInit();\r\nsyncAddtoBagStickyCTA()\r\nadjustStickyCartTabSwitch();\r\nloadProductThumbnailVideo();\r\nadjustZoomUpIcon();\r\n\r\n\r\n\n},{\"../../../../app_shiseidogmw/cartridge/js/modal\":27,\"../detect-layout\":13,\"../util\":93,\"./\":89,\"jquery\":135,\"lodash\":137}],91:[function(require,module,exports){\n'use strict';\r\n\r\nvar util = require('./util');\r\n\r\n/**\r\n * Checks the TLS and displays a warning if appropriate\r\n * @function getUserAgent Checks the TLS and displays a warning if appropriate\r\n **/\r\nfunction getUserAgent() {\r\n\t// Use an external service to check the TLS of the browser\r\n\t// NOTE: this implementation uses https://www.howsmyssl.com\r\n\t// you may also wish to consider the API available at https://www.ssllabs.com/projects/ssllabs-apis/index.html\r\n\tvar url = 'https://www.howsmyssl.com/a/check';\r\n\tvar cookieName = 'dw_TLSWarning';\r\n\tvar cookieValue = getCookie(cookieName);\r\n\r\n\t// Test to see if this browser has already been flagged by looking at its cookies\r\n\tif (!cookieValue) {\r\n\t\tgetTLS(url, function (message) {\r\n\t\t\tif (message.length > 0) {\r\n\t\t\t\tshowWarning(message[0]);\r\n\r\n\t\t\t\t// the browser is bad - set the cookie to true (for 15 minutes)\r\n\t\t\t\tutil.setCookie(cookieName, 'true', 15, 'none');\r\n\t\t\t} else {\r\n\t\t\t\t// else the browser is good, set the cookie to false (for 30 days) so we don't check again\r\n\t\t\t\tutil.setCookie(cookieName, 'false', 60 * 24 * 30, 'none');\r\n\t\t\t}\r\n\t\t});\r\n\t} else if (cookieValue === 'true') {\r\n\t\t// if we already know that this is an invalid browser, show the warning\r\n\t\tshowWarning(Resources.TLS_WARNING);\r\n\t}\r\n}\r\n\r\n/**\r\n * Calls out to the TLS service and calls the callback with a message (if necessary)\r\n * @function getTLS\r\n *\r\n * @param {string} url - URL of external TLS-checking API\r\n * @param {function} callback - function to call with response\r\n **/\r\nfunction getTLS(url, callback) {\r\n\tvar message = [];\r\n\r\n\t// First, see if the browser is among the suspect browsers to see if a TLS check is necessary\r\n\tvar userAgent = navigator.userAgent;\r\n\r\n\t/** This list derived from https://www.ssllabs.com/ssltest/clients.html **/\r\n\tvar badBrowsers = ['MSIE 6.0', 'MSIE 7.0', 'MSIE 8.0', 'MSIE 9.0', 'MSIE 10.0',\r\n\t\t'Android 2.3.7', 'Android 4.0.4', 'Android 4.1.1', 'Android 4.2.2', 'Android 4.3',\r\n\t\t'Safari 5.1.9 / OS X 10.6.8', 'Safari 6.0.4 / OS X 10.8.4 '\r\n\t];\r\n\r\n\tfunction checkTLSLevel(data) {\r\n\t\t// If we can determine the TLS level, check to see if it's less than 1.2\r\n\t\tif (parseFloat(data.tls_version.split(' ')[1]) < 1.1) {\r\n\t\t\tmessage.push(Resources.TLS_WARNING);\r\n\t\t\tcallback(message);\r\n\r\n\t\t\t//If you want to track statistics on bad TLS hits, include this call\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: Urls.TLSBadTLS\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n\r\n\tfunction reportBadBrowser() {\r\n\t\t// If the TLS level cannot be determined just report that this browser is suspect\r\n\t\tmessage.push(Resources.TLS_WARNING);\r\n\t\tcallback(message);\r\n\r\n\t\t//If you want to track statistics on deprecated browsers, include this call\r\n\t\t$.ajax({\r\n\t\t\turl: Urls.TLSBadBrowser\r\n\t\t});\r\n\t}\r\n\r\n\tfor (var i = 0; i < badBrowsers.length; i++) {\r\n\t\tif (userAgent.match(badBrowsers[i])) {\r\n\t\t\t// It's a suspect browser, let's see what it's TLS level is\r\n\t\t\t$.ajax({\r\n\t\t\t\turl: url\r\n\t\t\t}).done(checkTLSLevel).fail(reportBadBrowser);\r\n\t\t\tbreak;\r\n\t\t}\r\n\t}\r\n\r\n\t/** For testing purposes, uncomment this block\r\n\t message.push(Resources.TLS_WARNING);\r\n\t**/\r\n\tcallback(message);\r\n}\r\n\r\n/**\r\n * @function showWarning turns on the browser-compatibility-alert and sets the message\r\n *\r\n * @param {string} message - the message that will be shown upon detection of a bad browser\r\n **/\r\nfunction showWarning(message) {\r\n\t$('<div/>').addClass('browser-compatibility-alert').append($('<p/>').addClass('browser-error').html(message)).appendTo('#browser-check');\r\n}\r\n\r\n/**\r\n * @function getCookie\r\n *\r\n * @param {string} key - The cookie name\r\n * @returns {string} value - the value of the cookie if found, null otherwise\r\n **/\r\nfunction getCookie(key) {\r\n\tvar cookies = document.cookie.split(';');\r\n\tfor (var i = 0; i < cookies.length; i++) {\r\n\t\tvar tokens = cookies[i].split('=');\r\n\t\tvar cookieKey = tokens[0].trim();\r\n\t\tif (cookieKey === key) {\r\n\t\t\treturn tokens[1];\r\n\t\t}\r\n\t}\r\n\treturn '';\r\n}\r\n\r\n/**\r\n * Export the getUserAgent function\r\n */\r\n\r\nexports.getUserAgent = getUserAgent;\n},{\"./util\":93}],92:[function(require,module,exports){\n'use strict';\r\n\r\n/**\r\n * @function\r\n * @description Initializes the tooltip-content and layout\r\n */\r\nexports.init = function () {\r\n\t$(document).tooltip({\r\n\t\titems: '.tooltip',\r\n\t\ttrack: true,\r\n\t\tcontent: function () {\r\n\t\t\treturn $(this).find('.tooltip-content').html();\r\n\t\t},\r\n\t\ttooltipClass: 'custom-tooltip'\r\n\t});\r\n\r\n\t$('.share-link').on('click', function (e) {\r\n\t\te.preventDefault();\r\n\t\tvar target = $(this).data('target');\r\n\t\tif (!target) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\t$(target).toggleClass('active');\r\n\t});\r\n};\r\n\n},{}],93:[function(require,module,exports){\n'use strict';\r\n\r\nvar _ = require('lodash');\r\n\r\nvar util = {\r\n\tfilterArr: function (arr) {\r\n\t\tvar finishedArr = new Array();\r\n\r\n\t\tarr.forEach(function (o) {\r\n\t\t\tif (typeof o === \"object\") {\r\n\t\t\t\tvar finishedObj = new Object();\r\n\r\n\t\t\t\tObject.keys(o).forEach(function (k) {\r\n\t\t\t\t\tif (!o[k]) {\r\n\t\t\t\t\t\treturn;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tfinishedObj[k] = o[k];\r\n\t\t\t\t});\r\n\r\n\t\t\t\tif (Object.keys(finishedObj).length > 0) {\r\n\t\t\t\t\tfinishedArr.push(finishedObj);\r\n\t\t\t\t}\r\n\t\t\t} else if (!!o) {\r\n\t\t\t\tfinishedArr.push(o);\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\treturn finishedArr;\r\n\t},\r\n\r\n\tfilterObj: function (o) {\r\n\t\tvar finishedObj = {};\r\n\r\n\t\tObject.keys(o).forEach(function (k) {\r\n\t\t\tif (!o[k]) {\r\n\t\t\t\treturn;\r\n\t\t\t} else if (o[k] instanceof Array) {\r\n\t\t\t\tfinishedObj[k] = this.filterArr(o[k]);\r\n\t\t\t} else {\r\n\t\t\t\tfinishedObj[k] = o[k];\r\n\t\t\t}\r\n\t\t}, this);\r\n\r\n\t\treturn finishedObj;\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description appends the parameter with the given name and value to the given url and returns the changed url\r\n\t * @param {String} url the url to which the parameter will be added\r\n\t * @param {String} name the name of the parameter\r\n\t * @param {String} value the value of the parameter\r\n\t */\r\n\tappendParamToURL: function (url, name, value) {\r\n\t\t// quit if the param already exists\r\n\t\tif (url.indexOf(name + '=') !== -1) {\r\n\t\t\treturn url;\r\n\t\t}\r\n\t\tvar separator = url.indexOf('?') !== -1 ? '&' : '?';\r\n\r\n\t\treturn url + separator + name + '=' + encodeURIComponent(value);\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description remove the parameter and its value from the given url and returns the changed url\r\n\t * @param {String} url the url from which the parameter will be removed\r\n\t * @param {String} name the name of parameter that will be removed from url\r\n\t */\r\n\tremoveParamFromURL: function (url, name) {\r\n\t\tif (url.indexOf('?') === -1 || url.indexOf(name + '=') === -1) {\r\n\t\t\treturn url;\r\n\t\t}\r\n\t\tvar hash;\r\n\t\tvar params;\r\n\t\tvar domain = url.split('?')[0];\r\n\t\tvar paramUrl = url.split('?')[1];\r\n\t\tvar newParams = [];\r\n\t\t// if there is a hash at the end, store the hash\r\n\t\tif (paramUrl.indexOf('#') > -1) {\r\n\t\t\thash = paramUrl.split('#')[1] || '';\r\n\t\t\tparamUrl = paramUrl.split('#')[0];\r\n\t\t}\r\n\t\tparams = paramUrl.split('&');\r\n\t\tfor (var i = 0; i < params.length; i++) {\r\n\t\t\t// put back param to newParams array if it is not the one to be removed\r\n\t\t\tif (params[i].split('=')[0] !== name) {\r\n\t\t\t\tnewParams.push(params[i]);\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn domain + '?' + newParams.join('&') + (hash ? '#' + hash : '');\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description appends the parameters to the given url and returns the changed url\r\n\t * @param {String} url the url to which the parameters will be added\r\n\t * @param {Object} params\r\n\t */\r\n\tappendParamsToUrl: function (url, params) {\r\n\t\tvar _url = url;\r\n\t\t_.each(params, function (value, name) {\r\n\t\t\t_url = this.appendParamToURL(_url, name, value);\r\n\t\t}.bind(this));\r\n\r\n\t\treturn _url;\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description extract the query string from URL\r\n\t * @param {String} url the url to extra query string from\r\n\t **/\r\n\tgetQueryString: function (url) {\r\n\t\tvar qs;\r\n\t\tif (!_.isString(url)) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tvar a = document.createElement('a');\r\n\t\ta.href = url;\r\n\t\tif (a.search) {\r\n\t\t\tqs = a.search.substr(1); // remove the leading ?\r\n\t\t}\r\n\t\treturn qs;\r\n\t},\r\n\r\n\tupdateQueryStringParam: function (url, paramName, newVal) {\r\n\t\tvar _url = url;\r\n\r\n\t\tif (_url.indexOf(paramName) === -1) {\r\n\t\t\treturn _url;\r\n\t\t}\r\n\r\n\t\tvar newParamObj = new Object();\r\n\t\tnewParamObj[paramName] = newVal;\r\n\r\n\t\t_url = this.removeParamFromURL(_url, paramName);\r\n\t\t_url = this.appendParamsToUrl(_url, newParamObj);\r\n\r\n\t\treturn _url;\r\n\t},\r\n\r\n\tgetHashParam: function (paramName) {\r\n\t\tvar output = \"\";\r\n\r\n\t\tvar hashParams = window.location.hash.replace(\"#\", \"\").split(\"&\");\r\n\t\tfor (var i = 0; i < hashParams.length; i++) {\r\n\t\t\tif (hashParams[i].indexOf(paramName) > -1) {\r\n\t\t\t\toutput = hashParams[i].split(\"=\")[1];\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\treturn output;\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description\r\n\t * @param {String}\r\n\t * @param {String}\r\n\t */\r\n\telementInViewport: function (el, offsetToTop) {\r\n\t\tvar top = el.offsetTop,\r\n\t\t\tleft = el.offsetLeft,\r\n\t\t\twidth = el.offsetWidth,\r\n\t\t\theight = el.offsetHeight;\r\n\r\n\t\twhile (el.offsetParent) {\r\n\t\t\tel = el.offsetParent;\r\n\t\t\ttop += el.offsetTop;\r\n\t\t\tleft += el.offsetLeft;\r\n\t\t}\r\n\r\n\t\tif (typeof (offsetToTop) !== 'undefined') {\r\n\t\t\ttop -= offsetToTop;\r\n\t\t}\r\n\r\n\t\tif (window.pageXOffset !== null) {\r\n\t\t\treturn (\r\n\t\t\t\ttop < (window.pageYOffset + window.innerHeight) &&\r\n\t\t\t\tleft < (window.pageXOffset + window.innerWidth) &&\r\n\t\t\t\t(top + height) > window.pageYOffset &&\r\n\t\t\t\t(left + width) > window.pageXOffset\r\n\t\t\t);\r\n\t\t}\r\n\r\n\t\tif (document.compatMode === 'CSS1Compat') {\r\n\t\t\treturn (\r\n\t\t\t\ttop < (window.document.documentElement.scrollTop + window.document.documentElement.clientHeight) &&\r\n\t\t\t\tleft < (window.document.documentElement.scrollLeft + window.document.documentElement.clientWidth) &&\r\n\t\t\t\t(top + height) > window.document.documentElement.scrollTop &&\r\n\t\t\t\t(left + width) > window.document.documentElement.scrollLeft\r\n\t\t\t);\r\n\t\t}\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description Appends the parameter 'format=ajax' to a given path\r\n\t * @param {String} path the relative path\r\n\t */\r\n\tajaxUrl: function (path) {\r\n\t\treturn this.appendParamToURL(path, 'format', 'ajax');\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description\r\n\t * @param {String} url\r\n\t */\r\n\ttoAbsoluteUrl: function (url) {\r\n\t\tif (url.indexOf('http') !== 0 && url.charAt(0) !== '/') {\r\n\t\t\turl = '/' + url;\r\n\t\t}\r\n\t\treturn url;\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Loads css dynamically from given urls\r\n\t * @param {Array} urls Array of urls from which css will be dynamically loaded.\r\n\t */\r\n\tloadDynamicCss: function (urls) {\r\n\t\tvar i, len = urls.length;\r\n\t\tfor (i = 0; i < len; i++) {\r\n\t\t\tthis.loadedCssFiles.push(this.loadCssFile(urls[i]));\r\n\t\t}\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description Loads css file dynamically from given url\r\n\t * @param {String} url The url from which css file will be dynamically loaded.\r\n\t */\r\n\tloadCssFile: function (url) {\r\n\t\treturn $('<link/>').appendTo($('head')).attr({\r\n\t\t\ttype: 'text/css',\r\n\t\t\trel: 'stylesheet'\r\n\t\t}).attr('href', url); // for i.e. <9, href must be added after link has been appended to head\r\n\t},\r\n\t// array to keep track of the dynamically loaded CSS files\r\n\tloadedCssFiles: [],\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description Removes all css files which were dynamically loaded\r\n\t */\r\n\tclearDynamicCss: function () {\r\n\t\tvar i = this.loadedCssFiles.length;\r\n\t\twhile (0 > i--) {\r\n\t\t\t$(this.loadedCssFiles[i]).remove();\r\n\t\t}\r\n\t\tthis.loadedCssFiles = [];\r\n\t},\r\n\r\n\t/**\r\n\t * @function\r\n\t * @description Extracts all parameters from a given query string into an object\r\n\t * @param {String} qs The query string from which the parameters will be extracted\r\n\t */\r\n\tgetQueryStringParams: function (qs) {\r\n\t\tif (!qs || qs.length === 0) {\r\n\t\t\treturn {};\r\n\t\t}\r\n\t\tvar params = {},\r\n\t\t\tunescapedQS = decodeURIComponent(qs);\r\n\t\t// Use the String::replace method to iterate over each\r\n\t\t// name-value pair in the string.\r\n\t\tunescapedQS.replace(new RegExp('([^?=&]+)(=([^&]*))?', 'g'),\r\n\t\t\tfunction ($0, $1, $2, $3) {\r\n\t\t\t\tparams[$1] = $3;\r\n\t\t\t}\r\n\t\t);\r\n\t\treturn params;\r\n\t},\r\n\r\n\tfillAddressFields: function (address, $form) {\r\n\t\tfor (var field in address) {\r\n\t\t\tif (field === 'ID' || field === 'UUID' || field === 'key') {\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\t// if the key in address object ends with 'Code', remove that suffix\r\n\t\t\t// keys that ends with 'Code' are postalCode, stateCode and countryCode\r\n\t\t\t$form.find('[name$=\"' + field.replace('Code', '') + '\"]').val(address[field]);\r\n\t\t\t// update the state fields\r\n\t\t\tif (field === 'countryCode') {\r\n\t\t\t\t$form.find('[name$=\"country\"]').trigger('change');\r\n\t\t\t\t// retrigger state selection after country has changed\r\n\t\t\t\t// this results in duplication of the state code, but is a necessary evil\r\n\t\t\t\t// for now because sometimes countryCode comes after stateCode\r\n\t\t\t\t$form.find('[name$=\"state\"]').val(address.stateCode);\r\n\t\t\t}\r\n\t\t}\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Updates the number of the remaining character\r\n\t * based on the character limit in a text area\r\n\t */\r\n\tlimitCharacters: function () {\r\n\t\t$('form').find('textarea[data-character-limit]').each(function () {\r\n\t\t\tvar characterLimit = $(this).data('character-limit');\r\n\t\t\tvar charCountHtml = String.format(Resources.CHAR_LIMIT_MSG,\r\n\t\t\t\t'<span class=\"char-used-count\"> 0 </span>',\r\n\t\t\t\t'<span class=\"char-allowed-count\">' + characterLimit + '</span>');\r\n\r\n\t\t\t//if window size is small then char-count should be after\r\n\t\t\tvar containerPlacement = $(this).prev('div.char-count');\r\n\t\t\tvar containerInsert = $('<div class=\"char-count\"/>').insertBefore($(this));\r\n\r\n\t\t\tvar charCountContainer = containerPlacement;\r\n\t\t\tif (charCountContainer.length === 0) {\r\n\t\t\t\tcharCountContainer = containerInsert;\r\n\t\t\t}\r\n\t\t\tcharCountContainer.html(charCountHtml);\r\n\t\t\t// trigger the keydown event so that any existing character data is calculated\r\n\t\t\t$(this).trigger('change');\r\n\t\t});\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Binds the onclick-event to a delete button on a given container,\r\n\t * which opens a confirmation box with a given message\r\n\t * @param {String} container The name of element to which the function will be bind\r\n\t * @param {String} message The message the will be shown upon a click\r\n\t */\r\n\tsetDeleteConfirmation: function (container, message) {\r\n\t\t$(container).on('click', '.delete', function () {\r\n\t\t\treturn window.confirm(message);\r\n\t\t});\r\n\t},\r\n\t/**\r\n\t * @function\r\n\t * @description Scrolls a browser window to a given x point\r\n\t * @param {String} The x coordinate\r\n\t */\r\n\tscrollBrowser: function (xLocation) {\r\n\t\t$('html, body').animate({\r\n\t\t\tscrollTop: xLocation\r\n\t\t}, 500);\r\n\t},\r\n\r\n\tisMobile: function () {\r\n\t\tvar mobileAgentHash = ['mobile', 'tablet', 'phone', 'ipad', 'ipod', 'android', 'blackberry', 'windows ce', 'opera mini', 'palm'];\r\n\t\tvar idx = 0;\r\n\t\tvar isMobile = false;\r\n\t\tvar userAgent = (navigator.userAgent).toLowerCase();\r\n\r\n\t\twhile (mobileAgentHash[idx] && !isMobile) {\r\n\t\t\tisMobile = (userAgent.indexOf(mobileAgentHash[idx]) >= 0);\r\n\t\t\tidx++;\r\n\t\t}\r\n\t\treturn isMobile;\r\n\t},\r\n\r\n\t/**\r\n\t * @function getCookieSelector\r\n\t * @description Returns the cookie value\r\n\t **/\r\n\tgetCookieSelector: function (cookieName) {\r\n\t\tvar regularExpression = '(?:(?:^|.*;\\\\s*)' + cookieName + '\\\\s*\\\\=\\\\s*([^;]*).*$)|^.*$';\r\n\t\tvar regExp = new RegExp(regularExpression, '');\r\n\r\n\t\treturn document.cookie.replace(regExp, '$1');\r\n\t},\r\n\r\n\t/**\r\n\t * @function setCookie\r\n\t *\r\n\t * @param {string} key - The cookie name\r\n\t * @param {string} value - The cookie value\r\n\t * @param {integer} minutes - The number of minutes to expire the cookie\r\n\t **/\r\n\tsetCookie: function (key, value, minutes, samesite) {\r\n\t\tvar duration = '';\r\n\t\t\r\n\t\tif (minutes) {\r\n\t\t\tvar date = new Date();\r\n\r\n\t\t\tdate.setTime(date.getTime() + (minutes * 60 * 1000));\r\n\r\n\t\t\tduration = ' expires=' + date.toGMTString() + ';';\r\n\t\t}\r\n\t\tif (samesite != null) {\r\n\t\t\tswitch (samesite.toLowerCase()) \r\n\t\t\t{\r\n\t\t\t\tcase 'strict':\r\n\t\t\t\t\tdocument.cookie = key + '=' + value + ';' + duration + 'path=/' + ';samesite=' + samesite.toLowerCase();\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase 'lax':\r\n\t\t\t\t\tdocument.cookie = key + '=' + value + ';' + duration + 'path=/' + ';samesite=' + samesite.toLowerCase();\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase 'none':\r\n\t\t\t\t\tvar shouldSendSameSiteCookie = this.shouldSendSameSiteNone(navigator.userAgent) || false;\r\n\t\t\t\t\tif (shouldSendSameSiteCookie) {\r\n\t\t\t\t\t\tdocument.cookie = key + '=' + value + ';' + duration + 'path=/' + ';samesite=' + samesite.toLowerCase() + ';secure';\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tdocument.cookie = key + '=' + value + ';' + duration + 'path=/' + ';secure';\r\n\t\t\t\t\t}\t\t\t\t\t\t\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tdefault:\r\n\t\t\t\t\tdocument.cookie = key + '=' + value + ';' + duration + 'path=/';\r\n\t\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\tdocument.cookie = key + '=' + value + ';' + duration + 'path=/';\r\n\t\t}\r\n\t},\r\n\r\n\t/**\r\n\t * @function validateEmail\r\n\t *\r\n\t * @description Returns boolean\r\n\t * @param {string} emailAddress - The email address\r\n\t **/\r\n\tvalidateEmail: function (emailAddress) {\r\n\t\tvar emailRegExp = new RegExp('^[a-z0-9._%+-]+@[a-z0-9.-]+\\\\.[a-z]{2,3}$');\r\n\r\n\t\treturn emailRegExp.test(emailAddress);\r\n\t},\r\n\r\n\t/**\r\n\t * @function validateMessage\r\n\t *\r\n\t * @description Returns boolean\r\n\t * @param {string} message - The message\r\n\t **/\r\n\tvalidateMessage: function (message) {\r\n\t\tvar messageRegExp = /^[\\w\\.\\,\\!\\?\\;\\:\\(\\)\\'\\\" \\n]*$/;\r\n\r\n\t\treturn messageRegExp.test(message);\r\n\t},\r\n\r\n\t/**\r\n\t * @function maximizeCheckoutSummary\r\n\t *\r\n\t * @description Maximizes/Expands the Order Checkout Summary\r\n\t **/\r\n\tmaximizeCheckoutSummary: function () {\r\n\t\tif (SitePreferences.IS_CHECKOUT_MAXIMIZED) {\r\n\t\t\t$('.accordion-navigation').addClass('is-active');\r\n\t\t\t$('.accordion-title').attr('aria-expanded', true);\r\n\t\t\t$('.accordion-title').attr('aria-selected', true);\r\n\t\t\t$('#panel11a').css('display', 'block');\r\n\t\t}\r\n\t},\r\n\t/**\r\n\t * @function ieAnimation\r\n\t *\r\n\t * @description animation support for IE browser\r\n\t **/\r\n\tieAnimation: function () {\r\n\t\t$(\"html, body\").animate({\r\n\t\t\tscrollTop: $('.header-wrapper').offset().top\r\n\t\t}, 300, 'linear', function () {});\r\n\t},\r\n\t/**\r\n\t * @function checkInDialogView\r\n\t *\r\n\t * @description check if element is visible in dialog viewport\r\n\t **/\r\n\tcheckInDialogView: function(container,elem,partial) {\r\n\t\tvar container = container;\r\n\t\tvar contHeight = container.height();\r\n\t\tvar contTop = container.scrollTop();\r\n\t\tvar contBottom = contTop + contHeight ;\r\n\t \r\n\t\tvar elemTop = $(elem).offset().top - container.offset().top;\r\n\t\tvar elemBottom = elemTop + $(elem).height();\r\n\r\n\t\tvar isTotal = (elemTop >= 0 && elemBottom <=contHeight);\r\n\t\tvar isPart = ((elemTop < 0 && elemBottom > 0 ) || (elemTop > 0 && elemTop <= container.height())) && partial ;\r\n\r\n\t\treturn isTotal || isPart ;\r\n\t},\r\n\t/**\r\n\t * @function isInViewport\r\n\t *\r\n\t * @description check if element is visible in page viewport\r\n\t **/\r\n\tisInViewport: function(el) {\r\n\t\tif (typeof jQuery === \"function\" && el instanceof jQuery) {\r\n\t\t\tel = el[0];\r\n\t\t}\r\n\t\tvar rect = el.getBoundingClientRect();\r\n\t\treturn (\r\n\t\t\trect.top >= 0 &&\r\n\t\t\trect.left >= 0 &&\r\n\t\t\trect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /*or $(window).height() */\r\n\t\t\trect.right <= (window.innerWidth || document.documentElement.clientWidth) /*or $(window).width() */\r\n\t\t);\r\n\t},\r\n\t\r\n\t/**\r\n\t * @function shouldSendSameSiteNone\r\n\t *\r\n\t * @description \r\n\t * Check client compatibility for sending samesite attribute as none,\r\n\t * code to be removed once all latest browsers support samesite properly\r\n\t * \r\n\t * @param useragent\r\n\t **/ \r\n\tshouldSendSameSiteNone: function(useragent) {\r\n\t\treturn !this.isSameSiteNoneIncompatible(useragent);\r\n\t},\r\n\t\r\n\tisSameSiteNoneIncompatible: function(useragent) {\r\n\t return this.hasWebKitSameSiteBug(useragent) || this.dropsUnrecognizedSameSiteCookies(useragent);\r\n\t},\r\n\t\r\n\thasWebKitSameSiteBug: function(useragent) {\r\n\t return this.isIosVersion(12, useragent) || (this.isMacosxVersion(10, 14, useragent) && (this.isSafari(useragent) || this.isMacEmbeddedBrowser(useragent)));\r\n\t},\r\n\t\r\n\tdropsUnrecognizedSameSiteCookies: function(useragent) {\r\n\t return this.isChromiumBased(useragent) && this.isChromiumVersionAtLeast(51, useragent) && !this.isChromiumVersionAtLeast(67, useragent);\r\n\t},\r\n\t\r\n\tisIosVersion: function(major, useragent) {\r\n\t\tif (/iP(hone|od|ad)/.test(navigator.platform)) {\r\n\t\t\tvar v = (navigator.appVersion).match(/OS (\\d+)_(\\d+)_?(\\d+)?/);\r\n\t\t return v[1] == major.toString();\r\n\t\t} else {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t},\r\n\r\n\tisMacosxVersion: function(major, minor, useragent) {\t\t\r\n\t\tvar regex = /\\(Macintosh;.*Mac OS X (\\d+)_(\\d+)[_\\d]*.*\\) AppleWebKit\\//gm;\r\n\t\tvar m;\r\n\t\tvar macOSMajorV = 0, macOSMinorV = 0;\r\n\t\twhile ((m = regex.exec(useragent)) !== null) {\r\n\t\t if (m.index === regex.lastIndex) {\r\n\t\t regex.lastIndex++;\r\n\t\t }\r\n\t\t macOSMajorV = m[1];\r\n\t\t macOSMinorV = m[2];\r\n\t\t}\r\n\t\treturn (macOSMajorV == major.toString()) && (macOSMinorV == minor.toString());\r\n\t},\r\n\t\r\n\tisSafari: function(useragent) {\r\n\t\tvar safari_regex = /Version\\/.* Safari\\//gm;\r\n\t\treturn useragent.match(safari_regex) && !this.isChromiumBased(useragent);\r\n\t},\r\n\t\r\n\tisMacEmbeddedBrowser: function(useragent) {\r\n\t var regex = /^Mozilla\\/[\\.\\d]+ \\(Macintosh;.*Mac OS X [_\\d]+\\) AppleWebKit\\/[\\.\\d]+ \\(KHTML, like Gecko\\)/gm;\r\n\t return regex.test(useragent);\r\n\t},\r\n\t\r\n\tisChromiumBased: function(useragent) {\r\n\t\tvar regex = /Chrom(e|ium)/gm;\r\n\t return regex.test(useragent);\r\n\t},\r\n\t\r\n\tisChromiumVersionAtLeast: function(major, useragent) {\r\n\t\tvar regex = /Chrom[^ \\/]+\\/(\\d+)[\\.\\d]*/gm;\r\n\t\tvar m, version;\r\n\t\twhile ((m = regex.exec(useragent)) !== null) {\r\n\t\t if (m.index === regex.lastIndex) {\r\n\t\t regex.lastIndex++;\r\n\t\t }\r\n\t\t version = m[1];\r\n\t\t}\r\n\t return version >= major\r\n\t},\r\n\r\n\tcapitalizeFirstLetters: function(title) {\r\n\t\treturn title.replace(/\\w\\S*/g, function(text) {\r\n\t\t\treturn text.charAt(0).toUpperCase() + text.substr(1).toLowerCase();\r\n\t\t});\r\n\t},\r\n\r\n\tisTouchScreen: function() {\r\n\t\treturn ('ontouchstart' in window || 'ontouch' in window);\r\n\t},\r\n\t/**\r\n * Single Page Checkout current Steps maintained.\r\n */\r\n singlePageNextCheckoutStep: function (spcsteps) {\r\n \t$('.checkout-progress-container .step').removeClass('active');\r\n \t$('.button-checkoutstep').hide();\r\n \tlet $ShippingCol = $('.spc-shipping');\r\n \tlet $BillingCol = $('.spc-billing');\r\n \tlet $OrderSummaryCol = $('.spc-summary');\r\n\t\tif (spcsteps == 2 && spcsteps !== undefined) {\r\n\t\t\t$ShippingCol.removeClass('section-overlay').addClass('active inprogress');\t\t\t\r\n\t\t\t$BillingCol.addClass('section-overlay');\r\n\t\t\t$OrderSummaryCol.addClass('section-overlay'); \r\n\t\t\t\r\n\t\t} else if (spcsteps == 3 && spcsteps !== undefined) {\r\n\t\t\t$ShippingCol.addClass('section-overlay').css('pointer-events','all');\r\n\t\t\t$BillingCol.removeClass('section-overlay').addClass('active inprogress');\t\t\t\r\n\t\t\t$OrderSummaryCol.addClass('section-overlay');\r\n\t\t\t$('.button-checkoutstep.shipping').show();\r\n\t\t} else if (spcsteps == 4 && spcsteps !== undefined) {\r\n\t\t\t$ShippingCol.addClass('section-overlay');\t\t\t\r\n\t\t\t$BillingCol.addClass('section-overlay');\r\n\t\t\t$BillingCol.find('.creditcard-form-container').addClass('revalidateccnum');\r\n\t\t\t$OrderSummaryCol.removeClass('section-overlay').addClass('active inprogress'); \r\n\t\t\t$('.button-checkoutstep').show();\r\n\t\t} else {\r\n\t\t\t$ShippingCol.addClass('section-overlay');\r\n\t\t\t$ShippingCol.addClass('inprogress');\r\n\t\t\t$BillingCol.addClass('section-overlay');\r\n\t\t\t$OrderSummaryCol.addClass('section-overlay');\r\n\t\t}\r\n\t},\r\n\tdisplayCVNErrorMessage: function (display) {\r\n\t\tif(display!==undefined && display!='' && display == 'show'){\r\n\t\t\t$('.creditcard-tile.selected .cvnvalidationerror.errorshow.error').removeClass('hide').show();\r\n $('.creditcard-tile.selected .cvnvalidationerror.errorshow.error').html(Resources.VALIDATE_CVN);\r\n\t\t} else {\r\n\t\t\t$('.creditcard-tile.selected .cvnvalidationerror.errorshow.error').html('');\r\n\t\t $('.creditcard-tile.selected .cvnvalidationerror.errorshow.error').hide();\r\n\t\t $('input:radio[name=dwfrm_billing_paymentMethods_selectedPaymentMethodID][value=CREDIT_CARD]').attr('checked', true);\r\n\t\t} \t\t\r\n\t},\r\n\tsetSpcCheckoutSteps: function(steps) {\r\n\t\tvar steps = (steps!==undefined && steps > 0 && steps!== null)? steps : 1;\r\n\t\twindow.SessionAttributes.SPC_CHKOUTSTEPS = steps;\r\n\t\t$('.spcCheckoutSteps').val(steps);\r\n\t},\r\n\tformFieldFocusOnError: function(form){\r\n\t\tif (!$(form).validate().form()) { \r\n\t\t var $curObj = $(form).find('.form-row').find('.input-select.error, .input-text.error').first();\r\n\t $curObj.trigger(\"focus\");\r\n\t }\t\r\n\t},\r\n\t/**\r\n * Setting Payment Credit OR Debit card's CVV length\r\n * through BM sitepref Configuration.\r\n * */\r\n setCheckoutPaymentCardCVVLength: function(cardType) { \t\r\n \tvar setCVVCardLength = {\r\n 'minLength': 3,\r\n \t\t 'maxLength' : 4\r\n \t}; \t\r\n \tif (SitePreferences.SET_PAYMENT_CARD_CVVNUMLEN !='' && \r\n \t\tSitePreferences.SET_PAYMENT_CARD_CVVNUMLEN !=undefined && \r\n \t\tSitePreferences.SET_PAYMENT_CARD_CVVNUMLEN != null && \r\n \t\tcardType != '' && cardType!=undefined) {\r\n \t\tvar getCVVCardLength = JSON.parse(SitePreferences.SET_PAYMENT_CARD_CVVNUMLEN); \r\n \t\tif (cardType == 'visa') {\r\n setCVVCardLength = getCVVCardLength.visa;\r\n } else if(cardType == 'amex') {\r\n \tsetCVVCardLength = getCVVCardLength.amex;\r\n } else if(cardType == 'mastercard') {\r\n \tsetCVVCardLength = getCVVCardLength.mastercard;\r\n } else if(cardType == 'unionpay') {\r\n \tsetCVVCardLength = getCVVCardLength.unionpay;\r\n } else if(cardType == 'discover') {\r\n \tsetCVVCardLength = getCVVCardLength.discover;\r\n } \t\t\r\n \t} \r\n return setCVVCardLength;\t\r\n },\r\n\r\n /**\r\n * SelectBox for singlepage checkout section\r\n * */\r\n\tselectbox: function() {\r\n\t\t$(document).on('click','.spc-container .selected-option', function(){\r\n \t\tvar $h = 0;\r\n \t\tvar $this = $(this);\r\n \t\tif($this.siblings('select').is(':disabled')){return false;}\r\n\r\n\t\t\t$('.custom-select.current_item select').trigger('blur');\r\n\t\t\t$('.custom-select').not($this.closest('.custom-select')).removeClass('current_item');\r\n\t\t\t$this.toggleClass('expanded');\r\n\t\t\t$this.siblings('.selection-list').css('top', $this.outerHeight() - 1);\r\n\t\t\t$this.closest('.custom-select').toggleClass('current_item');\r\n\r\n \t\tif(!$this.closest('.custom-select').hasClass('current_item')){\r\n \t\t\t$this.siblings('select').trigger('blur');\r\n \t\t\tif(!util.isMobile()){\r\n \t\t\t\t$this.siblings('select').addClass('focus_none').trigger('focus');\r\n \t\t\t}\r\n \t\t}\r\n\r\n \t\tif($this.siblings('.selection-list').find('li').length > 10){\r\n\t \t\t$.each($this.siblings('.selection-list').find('li:visible').slice(0,10), function(){\r\n\t \t\t\t$h += $(this).outerHeight();\r\n\t \t\t\t$this.siblings('.selection-list').height($h - 1);\r\n\t \t\t});\r\n\r\n\t \t\tvar h = 0;\r\n\t \t\t$.each($this.closest('.custom-select').find('.selection-list li:visible').splice(0, $this.closest('.custom-select').find('.selection-list li.selected:visible').index() - 1),function(){ h+=$(this).outerHeight();})\r\n\t \t\t$this.siblings('.selection-list').scrollTop(h);\r\n\r\n \t\t}else{\r\n \t\t\t$this.siblings('.selection-list').height(\"auto\");\r\n \t\t}\r\n \t\tif ($(window).width() > 767) {\r\n \t \tif($('.plp-content .plp-refine-main .selection-list').is(':visible')) {\r\n \t \t\t$('.selected-option.selected').addClass('active-refine');\r\n \t \t}\r\n \t \telse{\r\n \t \t\t$('.selected-option.selected').removeClass('active-refine');\r\n \t \t}\r\n \t\t}\r\n \t\t//e.stopPropogation();\r\n \t}).on('click','.spc-container .selection-list li', function(){\r\n \t\tvar $item = $(this).closest('.custom-select');\r\n \t\t\t$item.find('li').removeClass('hover selected');\r\n \t\t\t$(this).addClass('selected');\r\n\t \t\t$item.find('select option').eq($(this).index()).prop('selected', true);\r\n\t \t\t$item.find('.selected-option').html($(this).html());\r\n\t \t\t$('.selection-list li .shipping-name i').addClass('hide')\r\n\t $('.selection-list li[data-value='+$('#shippingMethodSelect').val()+'] .shipping-name i').removeClass('hide');\r\n\t \t\t$item.find('.selected-option .icon-checkmark').removeClass('hide');\r\n\t \t\t$item.find('.selected-option').removeClass('expanded');\r\n\t \t\t$item.removeClass('current_item');\r\n\t \t\t$('.error-form.date-card').hide();\r\n\t \t\t$item.find('select').trigger('change');\r\n\t \t\t$item.find('select').trigger('blur');\r\n\t \t\tif(!util.isMobile()){\r\n\t \t\t\t$item.find('select').addClass('focus_none').trigger('focus');\r\n \t\t\t}\r\n \t})\r\n\t}\r\n};\r\n\r\nmodule.exports = util;\n},{\"lodash\":137}],94:[function(require,module,exports){\n'use strict';\r\n\r\nvar formPrepare = require('./pages/singlepagecheckout/formPrepare');\r\n\r\nvar naPhone = /^\\(?([2-9][0-8][0-9])\\)?[\\-\\. ]?([2-9][0-9]{2})[\\-\\. ]?([0-9]{4})(\\s*x[0-9]+)?$/;\r\nvar regex = {\r\n phone: {\r\n us: naPhone,\r\n ca: naPhone,\r\n fr: /^0[1-6]{1}(([0-9]{2}){4})|((\\s[0-9]{2}){4})|((-[0-9]{2}){4})$/,\r\n it: /^(([0-9]{2,4})([-\\s\\/]{0,1})([0-9]{4,8}))?$/,\r\n jp: /^(0\\d{1,4}- ?)?\\d{1,4}-\\d{4}$/,\r\n cn: /.*/,\r\n gb: /^((\\(?0\\d{4}\\)?\\s?\\d{3}\\s?\\d{3})|(\\(?0\\d{3}\\)?\\s?\\d{3}\\s?\\d{4})|(\\(?0\\d{2}\\)?\\s?\\d{4}\\s?\\d{4}))(\\s?\\#(\\d{4}|\\d{3}))?$/,\r\n other: /^\\(?([0-9][0-8][0-9])\\)?[\\-\\. ]?([2-9][0-9]{2})[\\-\\. ]?([0-9]{4})(\\s*x[0-9]+)?$/\r\n },\r\n postal: {\r\n us: /^\\d{5}(-\\d{4})?$/,\r\n ca: /^[ABCEGHJKLMNPRSTVXY]{1}\\d{1}[A-Z]{1} *\\d{1}[A-Z]{1}\\d{1}$/,\r\n fr: /^(F-)?((2[A|B])|[0-9]{2})[0-9]{3}$/,\r\n it: /^([0-9]){5}$/,\r\n jp: /^([0-9]){3}[-]([0-9]){4}$/,\r\n cn: /^([0-9]){6}$/,\r\n gb: /^([A-PR-UWYZ0-9][A-HK-Y0-9][AEHMNPRTVXY0-9]?[ABEHMNPRVWXY0-9]? {1,2}[0-9][ABD-HJLN-UW-Z]{2}|GIR 0AA)$/,\r\n other: /^\\d{5}(-\\d{4})?$/\r\n },\r\n notCC: /^(?!(([0-9 -]){13,19})).*$/,\r\n name: /^(?!-)[a-zA-Z\\s.-]*$/,\r\n simpletext: /^[0-9a-zA-Z .#,'-]*$/,\r\n password: /^(?=.{8,})(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[\\W])/,\r\n email: /^(([^<>()\\[\\]\\\\.,;:\\s@\"]+(\\.[^<>()\\[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/,\r\n hasPOBox: /^ *(((box|bin)[-. \\/\\\\]?\\d+)|(.*p[ \\s]?[ \\.]? ?(o|0)[ \\s]?[-. \\/\\\\]? *-?((box|bin)|b|(#|num)?\\d+))|(p(ost)? *(o(ff(ice)?)?)? *((box|bin)|b)? *\\d+)|(p *-?\\/?(o)? *-?box)|Post Box|post office|post office box|((box|bin)|b) *(number|num|#)? *\\d*\\d+)/i,\r\n message: /^[\\w\\.\\,\\!\\?\\;\\:\\(\\)\\'\\\" \\n]*$/,\r\n ordernumber: /^[0-9a-z\\s-\\(\\)#]*$/i,\r\n cvn: /^\\d{3,4}$/,\r\n regcustpclCVNSPC: /^\\d{3,4}$/,\r\n alphanumeric: /^[a-z0-9]+$/i,\r\n addr2regex: /^[0-9a-zA-Z .,'#]*$/,\r\n revalidateccnum: /^(([0-9]*)|(?:[*]{9,12})(?:[0-9]{4}))$/\r\n};\r\n// global form validator settings\r\nvar settings = {\r\n errorClass: 'error',\r\n errorElement: 'span',\r\n onkeyup: function (element) {\r\n if (SitePreferences.ENABLE_SINGLE_PAGE_CHECKOUT && $('.regcustpclCVN.regcustpclCVNSPC').length > 0 && !this.checkable(element)) {\r\n this.element(element);\r\n } else { return false;}\r\n },\r\n onfocusout: function (element) {\r\n if (!this.checkable(element)) {\r\n this.element(element);\r\n }\r\n if(this.numberOfInvalids() === 0){\r\n if($('.payment-method-radio:checked').val() === 'NEW_CARD'){\r\n return false;\r\n } else {\r\n if($(this.currentForm).find('button[type=\"submit\"]').prop('disabled') && $(this.currentForm).find('.error-placement').length === 0){\r\n $(this.currentForm).find('button[type=\"submit\"]').removeAttr('disabled');\r\n }\r\n if($(this.currentForm).find('button[type=\"submit\"][value=\"Continue\"]').prop('disabled')){\r\n $(this.currentForm).find('button[type=\"submit\"][value=\"Continue\"]').removeAttr('disabled');\r\n }\r\n }\r\n }\r\n },\r\n errorPlacement: function(error, element) {\r\n\t\tif($(element).parents('.form-row').find('.error-placement.error-added').length > 0){\r\n $(element).parents('.form-row').find('.error-placement').html(error);\r\n } else {\r\n $(element).parents('.form-row').find('.error-placement').remove();\r\n $(\"<div class='error-placement error-added'></div>\").insertAfter($(element).parent()).html(error).slideDown('slow');\r\n }\r\n stateValidation();\r\n },\r\n highlight: function(element, errorClass, validClass) {\r\n $(element).parents(\".form-row:not(.expiration-date)\").addClass(errorClass).removeClass(validClass);\r\n if($(element).val() !== ''){\r\n\t\t\t$(element).parents(\".form-row\").addClass('valid');\r\n }\r\n if(!$(element).parents(\".form-row\").hasClass('error')){\r\n $(element).parents(\".form-row\").find('.error-placement').remove();\r\n }\r\n },\r\n unhighlight: function(element, errorClass, validClass) {\r\n $(element).parents(\".form-row:not(.expiration-date)\").removeClass(errorClass).addClass(validClass);\r\n if($(element).val() === ''){\r\n\t\t\t$(element).parents(\".form-row\").removeClass('valid');\r\n }\r\n if(!$(element).parents(\".form-row\").hasClass('error')){\r\n $(element).parents(\".form-row\").find('.error-placement').remove();\r\n }\r\n },\r\n ignore: \":hidden, .ignore\"\r\n};\r\n\r\n/**\r\n * @function\r\n * @description Validates a given credit card if it has the correct format\r\n * @param {String} value of credit card which will be validated\r\n */\r\nvar luhnCheck = (function (arr) {\r\n return function (ccNum) {\r\n var len = ccNum.length;\r\n var bit = 1;\r\n var sum = 0;\r\n var val;\r\n\r\n while (len) {\r\n val = parseInt(ccNum.charAt(--len), 10);\r\n sum += (bit ^= 1) ? arr[val] : val;\r\n }\r\n\r\n return sum && sum % 10 === 0;\r\n };\r\n}([0, 2, 4, 6, 8, 1, 3, 5, 7, 9]));\r\n\r\n/**\r\n * @function\r\n * @description Validates a given phone number against the countries phone regex\r\n * @param {String} value The phone number which will be validated\r\n * @param {String} el The input field\r\n */\r\nvar validatePhone = function (value, el) {\r\n var country = $(el).closest('form').find('.country option:selected').val()\r\n\r\n if (country == undefined || country.length === 0 || !regex.phone[country.toLowerCase()]) {\r\n var country = 'other';\r\n }\r\n \r\n var rgx = regex.phone[country.toLowerCase()];\r\n var isOptional = this.optional(el);\r\n var isValid = rgx.test($.trim(value));\r\n \r\n // format the phone number\r\n value = value.replace(/[^\\d]/g, \"\");\r\n $(el).val(value.replace(/^(\\d{3})[\\s-]*(\\d{3})[\\s-]*(\\d+)$/, \"($1) $2-$3\")); \r\n return isOptional || isValid;\r\n};\r\n\r\n/**\r\n * @function\r\n * @description Validates that a Address2 is not a Address2\r\n * @param {String} value The owner field which will be validated\r\n * @param {String} el The input field\r\n */\r\nvar validateAddress2 = function (value) {\r\n var isValid = regex.addr2regex.test($.trim(value));\r\n return isValid;\r\n};\r\n\r\n/**\r\n * @function\r\n * @description Validates that a credit card owner is not a Credit card number\r\n * @param {String} value The owner field which will be validated\r\n * @param {String} el The input field\r\n */\r\nvar validateOwner = function (value) {\r\n var isValid = regex.notCC.test($.trim(value));\r\n return isValid;\r\n};\r\n\r\n/**\r\n * @function\r\n * @description Validates that a name contains no special characters, except for \"-\"\r\n * @param {String} value The owner field which will be validated\r\n * @param {String} el The input field\r\n */\r\nvar validateName = function (value) {\r\n var isValid = regex.name.test($.trim(value));\r\n return isValid;\r\n};\r\n\r\n/**\r\n * Add phone validation method to jQuery validation plugin.\r\n * Text fields must have 'phone' css class to be validated as phone\r\n */\r\n$.validator.addMethod('phone', validatePhone, Resources.INVALID_PHONE);\r\n\r\n/**\r\n * Add CCOwner validation method to jQuery validation plugin.\r\n * Text fields must have 'owner' css class to be validated as not a credit card\r\n */\r\n$.validator.addMethod('owner', validateName, Resources.INVALID_OWNER);\r\n\r\n/**\r\n* Add Address2 validation method to jQuery validation plugin.\r\n* Text fields must have 'address2' css class to be validated as address2\r\n*/\r\n$.validator.addMethod('address2', validateAddress2, Resources.INVALID_ADDRESS2);\r\n\r\n/**\r\n * Add First and Last Name validation method to jQuery validation plugin.\r\n * Text fields must have 'firstname' or 'lastname' css class to be validated.\r\n */\r\n$.validator.addMethod('firstname', validateName, Resources.INVALID_FIRSTNAME);\r\n$.validator.addMethod('lastname', validateName, Resources.INVALID_LASTNAME);\r\n$.validator.addMethod('fullname', validateName, simpleTextMessage);\r\n\r\n$.validator.addMethod('simpletext', function (value) {\r\n var isValid = regex.simpletext.test($.trim(value));\r\n return isValid;\r\n}, simpleTextMessage);\r\n\r\n$.validator.addClassRules({\r\n city: {\r\n \tsimpletext: true\r\n },\r\n address1: {\r\n \tsimpletext: true,\r\n \taddress: true\r\n },\r\n \r\n province: {\r\n \tsimpletext: true\r\n }\r\n});\r\n\r\n/**\r\n * Add Alphanumeric method to jQuery validation plugin.\r\n * Text fields must have 'alphanumeric' css class to be validated.\r\n */\r\n$.validator.addMethod('alphanumeric', function(value){\r\n\tvar isValid = regex.alphanumeric.test($.trim(value));\r\n\treturn isValid;\r\n}, simpleTextMessage);\r\n\r\n/**\r\n * Modify password validation method of jQuery validation plugin.\r\n * Text fields must have 'password' css class to be validated.\r\n */\r\n$.validator.addMethod('create-password', function(value){\r\n\tvar isValid = regex.password.test($.trim(value));\r\n\treturn isValid;\r\n}, Resources.VALIDATE_PASSWORD);\r\n\r\n/**\r\n * Modify email validation method of jQuery validation plugin.\r\n * Text fields must have 'email' css class to be validated.\r\n */\r\n$.validator.addMethod('email', function(value){\r\n\tvar isValid = regex.email.test($.trim(value));\r\n\treturn isValid;\r\n}, Resources.VALIDATE_EMAIL);\r\n\r\n\r\n/**\r\n * Add gift cert amount validation method to jQuery validation plugin.\r\n * Text fields must have 'gift-cert-amont' css class to be validated\r\n */\r\n$.validator.addMethod('gift-cert-amount', function (value, el) {\r\n var isOptional = this.optional(el);\r\n var isValid = (!isNaN(value)) && (parseFloat(value) >= 5) && (parseFloat(value) <= 5000);\r\n return isOptional || isValid;\r\n}, Resources.GIFT_CERT_AMOUNT_INVALID);\r\n\r\n/**\r\n * Add positive number validation method to jQuery validation plugin.\r\n * Text fields must have 'positivenumber' css class to be validated as positivenumber\r\n */\r\n$.validator.addMethod('positivenumber', function (value) {\r\n if ($.trim(value).length === 0) { return true; }\r\n return (!isNaN(value) && Number(value) >= 0);\r\n}, ''); // '' should be replaced with error message if needed\r\n\r\n/**\r\n * Add CC number validation method to jQuery validation plugin.\r\n * Text fields must have 'number' css class to be validated\r\n */\r\n$.validator.addMethod('number', function (value) {\t// number == Credit card number\r\n var isValid;\r\n var reValidateCCLen = $('.spc-billing .creditcard-form-container.revalidateccnum .form-row.cc-number').length;\r\n reValidateCCLen = (reValidateCCLen > 0)? reValidateCCLen : 0;\r\n if (SitePreferences.ENABLE_SINGLE_PAGE_CHECKOUT && reValidateCCLen > 0) {\r\n\t\tisValid = regex.revalidateccnum.test($.trim(value));\r\n\t} else {\r\n\t\tisValid = luhnCheck($.trim(value));\r\n\t}\r\n\t \r\n\treturn isValid;\r\n}, Resources.VALIDATE_NUMBER);\r\n\r\n/**\r\n * Add CVN number validation method to jQuery validation plugin.\r\n * Text fields must have 'cvn' css class to be validated\r\n */\r\n$.validator.addMethod('cvn', function (value) {\r\n\tvar minLen = $('.cvn').attr('minlength');\r\n\tminLen = ((minLen!==undefined && minLen !='' && minLen!==null))? minLen : 0;\r\n\tvar maxLen = $('.cvn').attr('maxlength');\r\n\tmaxLen = (maxLen!==undefined && maxLen !='' && maxLen!==null)? maxLen : 0;\t\r\n\tvar isValid;\r\n\tif(minLen == 0 && maxLen == 0){\r\n\t\tisValid = regex.cvn.test($.trim(value));\r\n\t} else {\r\n\t\tvar confRegxCvn = new RegExp('^[0-9]{'+minLen+','+maxLen+'}$');\r\n\t\tisValid = confRegxCvn.test($.trim(value));\r\n\t}\r\n\r\n\treturn isValid;\r\n}, Resources.VALIDATE_CVN); \r\n\r\n$.validator.addMethod('regcustpclCVNSPC', function (value) {\r\n\tif( $(document).find('.selectable-payment-method-options').find(':checked').val() == 'AFTERPAY_PBI'){\r\n return true; \r\n } else {\r\n\t\tvar minLen = $('.regcustpclCVNSPC').attr('minlength');\r\n\t\tminLen = ((minLen!==undefined && minLen !='' && minLen!==null))? minLen : 0;\r\n\t\tvar maxLen = $('.regcustpclCVNSPC').attr('maxlength');\r\n\t\tmaxLen = (maxLen!==undefined && maxLen !='' && maxLen!==null)? maxLen : 0;\t\r\n\t\tvar isValid;\r\n\t\tif(minLen == 0 && maxLen == 0){\r\n\t\t\tisValid = regex.regcustpclCVNSPC.test($.trim(value));\r\n\t\t} else {\r\n\t\t\tvar confRegxCvn = new RegExp('^[0-9]{'+minLen+','+maxLen+'}$');\r\n\t\t\tisValid = confRegxCvn.test($.trim(value));\r\n\t\t}\t\r\n\t\treturn isValid;\r\n }\r\n}, Resources.VALIDATE_CVN);\r\n\r\n/**\r\n * Add Order number validation method to jQuery validation plugin.\r\n * Text fields must have 'ordernumber' css class to be validated\r\n */\r\n$.validator.addMethod('ordernumber', function (value) {\r\n\tvar isValid = regex.ordernumber.test($.trim(value));\r\n\treturn isValid;\r\n}, Resources.INVALID_ORDER_NUMBER);\r\n\r\n/**\r\n * Add equal value validation method to jQuery validation plugin.\r\n * Text fields must have 'equal-to' css class to be validated\r\n */\r\n$.validator.addMethod('equal-to', function (value, el) {\r\n\tvar equalTo = $(el).attr('equal-to');\r\n\tvar $equalToEl = $(el).closest('form').find(equalTo);\r\n\t\r\n\treturn value === $equalToEl.val();\r\n\t\r\n}, function(value, el){\r\n\tvar message = $(el).attr('data-required-text');\r\n return message || Resources.VALIDATE_EQUALTO\r\n});\r\n\r\n/**\r\n * Add address validation method to jQuery validation plugin.\r\n * Text fields must have 'address1' css class to be validated\r\n */\r\n$.validator.addMethod('address1', function (value, el) {\r\n\t// check 'PO BOX' value in string and complement result\r\n\tvar isValid = true;\r\n\t\r\n\t// If false, adress1 field containing \"Po Box\" or similar strings will be rejected\r\n\tif (!SitePreferences.ENABLE_POBOX_ADDRESS) {\r\n\t\tif (!SitePreferences.ENABLE_POBOX_SHIPPING && $(el).attr('name').indexOf('shipping') > -1) {\r\n\t\t\tisValid = !$.trim(value).match(regex.hasPOBox);\r\n\t\t} else if (!SitePreferences.ENABLE_POBOX_BILLING && $(el).attr('name').indexOf('billing') > -1) {\r\n\t\t\tisValid = !$.trim(value).match(regex.hasPOBox);\r\n\t\t}\r\n\t}\r\n \r\n return isValid;\r\n}, Resources.ADDRESS_PO_BOX_ERROR);\r\n\r\n/**\r\n * Add address validation method to jQuery validation plugin.\r\n * Text fields must have 'address2' css class to be validated\r\n */\r\n$.validator.addMethod('address2', function (value, el) {\r\n\t// check 'PO BOX' value in string and complement result\r\n\tvar isValid = true;\r\n\t\r\n\t// If false, adress1 field containing \"Po Box\" or similar strings will be rejected\r\n\tif (!SitePreferences.ENABLE_POBOX_ADDRESS) {\r\n\t\tif (!SitePreferences.ENABLE_POBOX_SHIPPING && $(el).attr('name').indexOf('shipping') > -1) {\r\n\t\t\tisValid = !$.trim(value).match(regex.hasPOBox);\r\n\t\t} else if (!SitePreferences.ENABLE_POBOX_BILLING && $(el).attr('name').indexOf('billing') > -1) {\r\n\t\t\tisValid = !$.trim(value).match(regex.hasPOBox);\r\n\t\t}\r\n\t}\r\n \r\n return isValid;\r\n}, Resources.ADDRESS_PO_BOX_ERROR);\r\n\r\n/**\r\n * Add zipcode validation method to jQuery validation plugin.\r\n * Text fields must have 'zipcode' css class to be validated\r\n */\r\n$.validator.addMethod('postal', function (value, el) {\r\n\tvar $form = $(el).closest('form');\r\n\tvar $country = $form.find('select[name$=\"_country\"]');\r\n\tvar selectedCountry = ($country.length > 0 && $country.val() != undefined && $country.val() != '') ? $country.val().toLowerCase() : 'us';\r\n\t\r\n\tvar rgx = null;\r\n\tvar isValid = false;\r\n\tif($(el).hasClass('global-zip')){\r\n\t\t// if universal, it accepts both US and CN values\r\n\t\tisValid = regex.postal['us'].test($.trim(value)) || regex.postal['cn'].test($.trim(value));\r\n\t} else {\r\n\t\trgx = regex.postal[selectedCountry];\r\n\t\tisValid = (rgx!=undefined && rgx!='' && rgx!=null)? rgx.test($.trim(value)) : false;\r\n\t\tif (isValid == true) {\r\n\t\t\t$(el).closest('.checkout-shipping').find('#EditAddressForm .apply-button,.spcShippingContinueBtn').removeAttr('disabled');\r\n\t\t}\r\n\t\telse{\r\n\t\t\t$(el).closest('.checkout-shipping').find('#EditAddressForm .apply-button,.spcShippingContinueBtn').attr('disabled',true);\r\n\t\t}\r\n\t}\r\n //showing Global Shipping error delivery message for SPC\r\n\tlet $otherUSErrEL = $('.spc-shipping.active .otherthan-us-in-shippingerrmsg.error-form');\r\n\t$otherUSErrEL.hide();\r\n\tif (SitePreferences.ENABLE_SINGLE_PAGE_CHECKOUT && $otherUSErrEL.length >0) {\r\n if ((value.length >=0) && !isValid) {\r\n\t\t\t$otherUSErrEL.removeClass('hide').show();\t\t\r\n } else {\r\n $otherUSErrEL.hide();\r\n\t\t}\t\r\n }\r\n\t\r\n\t\r\n\treturn isValid;\r\n}, Resources.INVALID_ZIP);\r\n\r\n/**\r\n * Add postcode validation method to jQuery validation plugin.\r\n * Text fields must have 'postcode' css class to be validated\r\n * Adding this for China addresses\r\n */\r\n$.validator.addMethod('postcode', function (value, el) {\r\n\tvar $form = $(el).closest('form');\r\n\tvar $country = $form.find('select[name$=\"_country\"]');\r\n\tvar selectedCountry = $country.length > 0 ? $country.val() : 'us'; \r\n\t\r\n\tvar rgx = regex.postal[selectedCountry];\r\n\tvar isValid = rgx.test($.trim(value));\r\n\t\r\n\treturn isValid;\r\n}, Resources.INVALID_POSTAL);\r\n\r\n/**\r\n * Add message validation method to jQuery validation plugin.\r\n * Text fields must have 'message' css class to be validated\r\n */\r\n$.validator.addMethod('message', function (value, el) {\r\n var isValid = regex.message.test($.trim(value));\r\n return isValid;\r\n}, Resources.INVALID_MESSAGE);\r\n\r\n/**\r\n * Add credit cards expiration date validation method to jQuery validation plugin.\r\n * Text fields must have 'card-expiration' css class to be validated.\r\n * This should be revised after all credit cards validations are unified\r\n */\r\n$.validator.addMethod('card-expiration', function (value, el) {\r\n var isValid = true;\r\n var element = $(el);\r\n var month = null;\r\n var year = null;\r\n var now = new Date();\r\n\tvar nowMonth = now.getMonth() + 1; \r\n var nowYear = now.getFullYear();\r\n\r\n if (element.hasClass('month')) {\r\n month = element.val();\r\n year = element.closest('form').find('.card-expiration.year').val();\r\n } else {\r\n month = element.closest('form').find('.card-expiration.month').val();\r\n year = element.val();\r\n }\r\n\r\n if (month && year){\r\n\t\tif (year < nowYear || (year == nowYear && month < nowMonth)) {\r\n isValid = false;\r\n\t\t}\r\n }\r\n\r\n return isValid;\r\n}, Resources.VALIDATE_CARDEXPIRY);\r\n\r\n\r\nvar requiredMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n return message || Resources.VALIDATE_REQUIRED\r\n};\r\n\r\nvar simpleTextMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || Resources.VALIDATE_REQUIRED\r\n};\r\n\r\nvar passwordMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || Resources.VALIDATE_PASSWORD\r\n};\r\n\r\nvar maxLengthMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || $.validator.format(Resources.VALIDATE_MAXLENGTH)\r\n};\r\n\r\nvar minLengthMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || $.validator.format(Resources.VALIDATE_MINLENGTH)\r\n};\r\n\r\nvar stateValidation = function(){\r\n\tvar customstateRow = $('.state.form-row label');\r\n\tif( $('.state select option:selected').val() == '' || $('.state .ui-selectmenu-text').text() == \"Select State\"){\r\n $('.state span.ui-selectmenu-button, .state').addClass('dropdownerror');\r\n\t} else {\r\n\t\t$('.state span.ui-selectmenu-button, .state').removeClass('dropdownerror');\r\n\t}\r\n};\r\n\r\n$.extend($.validator.messages, {\r\n required: requiredMessage,\r\n remote: Resources.VALIDATE_REMOTE,\r\n email: Resources.VALIDATE_EMAIL,\r\n address1: Resources.ADDRESS_PO_BOX_ERROR,\r\n password: passwordMessage,\r\n url: Resources.VALIDATE_URL,\r\n date: Resources.VALIDATE_DATE,\r\n dateISO: Resources.VALIDATE_DATEISO,\r\n number: Resources.VALIDATE_NUMBER,\r\n digits: Resources.VALIDATE_DIGITS,\r\n creditcard: Resources.VALIDATE_CREDITCARD,\r\n equalTo: Resources.VALIDATE_EQUALTO,\r\n maxlength: maxLengthMessage,\r\n minlength: minLengthMessage,\r\n rangelength: $.validator.format(Resources.VALIDATE_RANGELENGTH),\r\n range: $.validator.format(Resources.VALIDATE_RANGE),\r\n max: $.validator.format(Resources.VALIDATE_MAX),\r\n min: $.validator.format(Resources.VALIDATE_MIN),\r\n postal: Resources.INVALID_ZIP,\r\n message: Resources.INVALID_MESSAGE,\r\n fullname: simpleTextMessage,\r\n simpletext: simpleTextMessage,\r\n alphanumeric: simpleTextMessage\r\n});\r\n// Updated code to populate green tick check if the password meets the requirements.\r\nvar validator = {\r\n regex: regex,\r\n settings: settings,\r\n init: function () {\r\n var _self = this;\r\n $('form:not(.suppress)').each(function () {\r\n \t_self.initForm(this);\r\n });\r\n $(document).on('blur focusout keydown', '.postal', function(e) {\r\n \tlet postalValue = $(this).val();\r\n \tlet $otherUSErrEL = $('.spc-shipping.active .otherthan-us-in-shippingerrmsg.error-form');\r\n if (postalValue !== undefined && postalValue=='' && postalValue.length==0) { \t\r\n \t$otherUSErrEL.hide();\r\n } \r\n });\r\n $('.cvn, .regcustpclCVN').on('blur focusout keypress keyup', function(e) {\r\n var keycode = e.keyCode || e.which;\r\n if (keycode != 13 && keycode != 8 && keycode != 0 && (keycode < 48 || keycode > 57)) {\r\n return false;\r\n } \r\n });\r\n },\r\n initForm: function (f, submitHandler) {\r\n \tvar _self = this;\r\n var $form = $(f);\r\n \tvar $submitForm = $form.find('button[type=\"submit\"]:not(.ignore)');\r\n \tvar fp = formPrepare();\r\n \tif(submitHandler){\r\n \t$.extend( _self.settings, {\"submitHandler\":submitHandler}); \r\n \t}\r\n \tfp.init({\r\n \t\tformSelector: $form,\r\n \t\tcontinueSelector: $submitForm\r\n }, _self.settings);\r\n \r\n // Trigger validation for the other expiration date field when one of them is changed\r\n // This should be revised after all credit cards validations are unified\r\n $('.card-expiration').on('change', function(){\r\n var elements = $('.card-expiration').not($(this));\r\n elements.removeData('previousValue').valid();\r\n });\r\n \r\n $form.find('.input-text').each(function(){\r\n if($(this).val() !== ''){\r\n $(this).parents('.form-row').addClass('valid');\r\n } else {\r\n $(this).parents('.form-row').removeClass('valid');\r\n }\r\n });\r\n },\r\n initStateValidation:function(e) {\r\n\t\t$('.state .ui-selectmenu-button, .state select').on('blur', function() {\r\n\t\t\t(document.documentMode || /Edge/.test(navigator.userAgent)) ? '' : $( \"select\" ).selectmenu( \"refresh\" );\r\n\t\t\tif ($('.default-billing-address').hasClass('hidden')) {\r\n\t\t\t\tstateValidation();\r\n\t\t\t}\r\n\t\t});\r\n\t\t$('.state select').on('selectmenuchange', function () {\r\n\t\t\tstateValidation();\r\n\t\t});\r\n\t}\r\n};\r\n\r\nmodule.exports = validator;\r\n\n},{\"./pages/singlepagecheckout/formPrepare\":63}],95:[function(require,module,exports){\n'use strict';\r\n\r\nvar formPrepare = require('./pages/checkout/formPrepare');\r\n\r\nvar naPhone = /^\\(?([2-9][0-8][0-9])\\)?[\\-\\. ]?([2-9][0-9]{2})[\\-\\. ]?([0-9]{4})(\\s*x[0-9]+)?$/;\r\nvar regex = {\r\n\tphone: {\r\n\t\tus: naPhone,\r\n\t\tca: naPhone,\r\n\t\tfr: /^0[1-6]{1}(([0-9]{2}){4})|((\\s[0-9]{2}){4})|((-[0-9]{2}){4})$/,\r\n\t\tit: /^(([0-9]{2,4})([-\\s\\/]{0,1})([0-9]{4,8}))?$/,\r\n\t\tjp: /^(0\\d{1,4}- ?)?\\d{1,4}-\\d{4}$/,\r\n\t\tcn: /.*/,\r\n\t\tgb: /^((\\(?0\\d{4}\\)?\\s?\\d{3}\\s?\\d{3})|(\\(?0\\d{3}\\)?\\s?\\d{3}\\s?\\d{4})|(\\(?0\\d{2}\\)?\\s?\\d{4}\\s?\\d{4}))(\\s?\\#(\\d{4}|\\d{3}))?$/,\r\n\t\tother: /^\\(?([0-9][0-8][0-9])\\)?[\\-\\. ]?([2-9][0-9]{2})[\\-\\. ]?([0-9]{4})(\\s*x[0-9]+)?$/\r\n\t},\r\n\tpostal: {\r\n\t\tus: /^\\d{5}(-\\d{4})?$/,\r\n\t\tca: /^[ABCEGHJKLMNPRSTVXY]{1}\\d{1}[A-Z]{1} *\\d{1}[A-Z]{1}\\d{1}$/,\r\n\t\tfr: /^(F-)?((2[A|B])|[0-9]{2})[0-9]{3}$/,\r\n\t\tit: /^([0-9]){5}$/,\r\n\t\tjp: /^([0-9]){3}[-]([0-9]){4}$/,\r\n\t\tcn: /^([0-9]){6}$/,\r\n\t\tgb: /^([A-PR-UWYZ0-9][A-HK-Y0-9][AEHMNPRTVXY0-9]?[ABEHMNPRVWXY0-9]? {1,2}[0-9][ABD-HJLN-UW-Z]{2}|GIR 0AA)$/,\r\n\t\tother: /^\\d{5}(-\\d{4})?$/\r\n\t},\r\n\tnotCC: /^(?!(([0-9 -]){13,19})).*$/,\r\n\tname: /^[a-zA-Z\\s.-]*$/,\r\n\tsimpletext: /^[0-9a-zA-Z .,'-]*$/,\r\n\tpassword: /^(?=.{8,})(?=.*[a-zA-Z])(?=.*[0-9])(?=.*[\\W])/,\r\n\temail: /^[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,3}$/i,\r\n\thasPOBox: /[p]+(ost)*\\.*\\s*[o|0]+(ffice)*\\.*\\s*b[o|0]x/ig,\r\n\tmessage: /^[\\w\\.\\,\\!\\?\\;\\:\\(\\)\\'\\\" \\n]*$/,\r\n\tordernumber: /^[0-9a-z\\s-\\(\\)#]*$/i,\r\n\tcardcvv: {\r\n\t\t3: /^\\d{3}$/,\r\n\t\t4: /^\\d{4}$/\r\n\t},\r\n\talphanumeric: /^[a-z0-9]+$/i,\r\n\taddr2regex: /^[0-9a-zA-Z .,'#]*$/\r\n};\r\n// global form validator settings\r\nvar settings = {\r\n\terrorClass: 'error',\r\n\terrorElement: 'span',\r\n\tonkeyup: false,\r\n\tonfocusout: function (element) {\r\n\t\tif (!this.checkable(element)) {\r\n\t\t\tthis.element(element);\r\n\t\t}\r\n\t},\r\n\terrorPlacement: function(error, element) {\r\n\t\t$(element).parents('.form-row').find('.error-placement').remove();\r\n\t\tif($(element).parent().find('select').length == 0){\r\n\t\t\t$(\"<div class='error-placement'><i class='error-icon'></i><span class='error'>\"+$(error).html()+\"</span></div>\").insertBefore($(element).parent());\r\n\t\t} else{\r\n\t\t\tstateValidation();\r\n\t\t}\r\n\t},\r\n\thighlight: function(element, errorClass, validClass) {\r\n\t\t$(element).addClass(errorClass).parents(\".form-row\").addClass(errorClass).removeClass(validClass);\r\n\t\tif($(element).val() !== ''){\r\n\t\t\t$(element).parents(\".form-row\").addClass('valid');\r\n\t\t}\r\n },\r\n unhighlight: function(element, errorClass, validClass) {\r\n\t\t$(element).removeClass(errorClass).parents(\".form-row\").removeClass(errorClass).addClass(validClass);\r\n\t\tif($(element).val() === ''){\r\n\t\t\t$(element).parents(\".form-row\").removeClass('valid');\r\n\t\t}\r\n\t},\r\n\tignore: \":hidden, .ignore\"\r\n};\r\n\r\n/**\r\n * @function\r\n * @description Validates a given credit card if it has the correct format\r\n * @param {String} value of credit card which will be validated\r\n */\r\nvar luhnCheck = (function (arr) {\r\n\treturn function (ccNum) {\r\n\t\tvar len = ccNum.length;\r\n\t\tvar bit = 1;\r\n\t\tvar sum = 0;\r\n\t\tvar val;\r\n\r\n\t\twhile (len) {\r\n\t\t\tval = parseInt(ccNum.charAt(--len), 10);\r\n\t\t\tsum += (bit ^= 1) ? arr[val] : val;\r\n\t\t}\r\n\r\n\t\treturn sum && sum % 10 === 0;\r\n\t};\r\n}([0, 2, 4, 6, 8, 1, 3, 5, 7, 9]));\r\n\r\n/**\r\n * @function\r\n * @description Validates a given phone number against the countries phone regex\r\n * @param {String} value The phone number which will be validated\r\n * @param {String} el The input field\r\n */\r\nvar validatePhone = function (value, el) {\r\n\tvar country = $(el).closest('form').find('.country option:selected').val()\r\n\r\n\tif (country == undefined || country.length === 0 || !regex.phone[country.toLowerCase()]) {\r\n\t\tvar country = 'other';\r\n\t}\r\n\r\n\tvar rgx = regex.phone[country.toLowerCase()];\r\n\tvar isOptional = this.optional(el);\r\n\tvar isValid = rgx.test($.trim(value));\r\n\r\n\t// format the phone number\r\n\t$(el).val(value.replace(/^(\\d{3})[\\s-]*(\\d{3})[\\s-]*(\\d+)$/, \"($1) $2-$3\"));\r\n\r\n\treturn isOptional || isValid;\r\n};\r\n\r\n/**\r\n * @function\r\n * @description Validates that a Address2 is not a Address2\r\n * @param {String} value The owner field which will be validated\r\n * @param {String} el The input field\r\n */\r\nvar validateAddress2 = function (value) {\r\n\tvar isValid = regex.addr2regex.test($.trim(value));\r\n\treturn isValid;\r\n};\r\n\r\n/**\r\n * @function\r\n * @description Validates that a credit card owner is not a Credit card number\r\n * @param {String} value The owner field which will be validated\r\n * @param {String} el The input field\r\n */\r\nvar validateOwner = function (value) {\r\n\tvar isValid = regex.notCC.test($.trim(value));\r\n\treturn isValid;\r\n};\r\n\r\n/**\r\n * @function\r\n * @description Validates that a name contains no special characters, except for \"-\"\r\n * @param {String} value The owner field which will be validated\r\n * @param {String} el The input field\r\n */\r\nvar validateName = function (value) {\r\n\tvar isValid = regex.name.test($.trim(value));\r\n\treturn isValid;\r\n};\r\n\r\n/**\r\n * Add phone validation method to jQuery validation plugin.\r\n * Text fields must have 'phone' css class to be validated as phone\r\n */\r\n$.validator.addMethod('phone', validatePhone, Resources.INVALID_PHONE);\r\n\r\n/**\r\n * Add CCOwner validation method to jQuery validation plugin.\r\n * Text fields must have 'owner' css class to be validated as not a credit card\r\n */\r\n$.validator.addMethod('owner', validateName, Resources.INVALID_OWNER);\r\n\r\n/**\r\n* Add Address2 validation method to jQuery validation plugin.\r\n* Text fields must have 'address2' css class to be validated as address2\r\n*/\r\n$.validator.addMethod('address2', validateAddress2, Resources.INVALID_ADDRESS2);\r\n\r\n/**\r\n * Add First and Last Name validation method to jQuery validation plugin.\r\n * Text fields must have 'firstname' or 'lastname' css class to be validated.\r\n */\r\n$.validator.addMethod('firstname', validateName, Resources.INVALID_FIRSTNAME);\r\n$.validator.addMethod('lastname', validateName, Resources.INVALID_LASTNAME);\r\n$.validator.addMethod('fullname', validateName, simpleTextMessage);\r\n\r\n$.validator.addMethod('simpletext', function (value) {\r\n\tvar isValid = regex.simpletext.test($.trim(value));\r\n\treturn isValid;\r\n}, simpleTextMessage);\r\n\r\n$.validator.addClassRules({\r\n\tcity: {\r\n\t\tsimpletext: true\r\n\t},\r\n\taddress1: {\r\n\t\tsimpletext: true,\r\n\t\taddress: true\r\n\t},\r\n\tprovince: {\r\n\t\tsimpletext: true\r\n\t}\r\n});\r\n\r\n/**\r\n * Add Alphanumeric method to jQuery validation plugin.\r\n * Text fields must have 'alphanumeric' css class to be validated.\r\n */\r\n$.validator.addMethod('alphanumeric', function(value){\r\n\tvar isValid = regex.alphanumeric.test($.trim(value));\r\n\treturn isValid;\r\n}, simpleTextMessage);\r\n\r\n/**\r\n * Modify password validation method of jQuery validation plugin.\r\n * Text fields must have 'password' css class to be validated.\r\n */\r\n$.validator.addMethod('create-password', function(value){\r\n\tvar isValid = regex.password.test($.trim(value));\r\n\treturn isValid;\r\n}, Resources.VALIDATE_PASSWORD);\r\n\r\n/**\r\n * Modify email validation method of jQuery validation plugin.\r\n * Text fields must have 'email' css class to be validated.\r\n */\r\n$.validator.addMethod('email', function(value){\r\n\tvar isValid = regex.email.test($.trim(value));\r\n\treturn isValid;\r\n}, Resources.VALIDATE_EMAIL);\r\n\r\n\r\n/**\r\n * Add gift cert amount validation method to jQuery validation plugin.\r\n * Text fields must have 'gift-cert-amont' css class to be validated\r\n */\r\n$.validator.addMethod('gift-cert-amount', function (value, el) {\r\n\tvar isOptional = this.optional(el);\r\n\tvar isValid = (!isNaN(value)) && (parseFloat(value) >= 5) && (parseFloat(value) <= 5000);\r\n\treturn isOptional || isValid;\r\n}, Resources.GIFT_CERT_AMOUNT_INVALID);\r\n\r\n/**\r\n * Add positive number validation method to jQuery validation plugin.\r\n * Text fields must have 'positivenumber' css class to be validated as positivenumber\r\n */\r\n$.validator.addMethod('positivenumber', function (value) {\r\n\tif ($.trim(value).length === 0) { return true; }\r\n\treturn (!isNaN(value) && Number(value) >= 0);\r\n}, ''); // '' should be replaced with error message if needed\r\n\r\n/**\r\n * Add CC number validation method to jQuery validation plugin.\r\n * Text fields must have 'number' css class to be validated\r\n */\r\n$.validator.addMethod('number', function (value) {\t// number == Credit card number\r\n\tvar isValid = luhnCheck($.trim(value));\r\n\treturn isValid;\r\n}, Resources.VALIDATE_NUMBER);\r\n\r\n/**\r\n * Add CVN number validation method to jQuery validation plugin.\r\n * Text fields must have 'cvn' css class to be validated\r\n */\r\n$.validator.addMethod('cvn', function (value, el) {\r\n\tvar cvnParent = $('.creditcard-tile.selected');\r\n\tif($(el).parents().hasClass('creditcard-tile-checkout')) {\r\n\tvar cvnParent = $('.creditcard-tile.selected');\r\n\t\tif($(el).parents('cvnParent').find('.cc-number').hasClass('is_amex')) {\r\n\t\t\t$(el).parents('cvnParent').find('.saved-cvn input').attr('maxlength','4');\r\n\t\t} else {\r\n\t\t\t$(el).parents('cvnParent').find('.saved-cvn input').attr('maxlength','3');\r\n\t\t}\r\n\t}\r\n\telse {\r\n\t\tif($(el).parents('.cvn').siblings('.cc-number').hasClass('is_amex') || $('.cc-number input.number').val() === '') {\r\n\t\t\t$(el).attr('maxlength','4');\r\n\t\t} else {\r\n\t\t\t$(el).attr('maxlength','3');\r\n\t\t}\r\n\t}\r\n\r\n\tvar cardMaxlength = $(el).attr('maxlength');\r\n\tif (!regex.cardcvv[cardMaxlength]) {\r\n\t\treturn true;\r\n\t}\r\n\tvar rgx = regex.cardcvv[cardMaxlength];\r\n\tvar isValid = rgx.test($.trim(value));\r\n\treturn isValid;\r\n}, Resources.VALIDATE_CVN);\r\n\r\n/**\r\n * Add Order number validation method to jQuery validation plugin.\r\n * Text fields must have 'ordernumber' css class to be validated\r\n */\r\n$.validator.addMethod('ordernumber', function (value) {\r\n\tvar isValid = regex.ordernumber.test($.trim(value));\r\n\treturn isValid;\r\n}, Resources.INVALID_ORDER_NUMBER);\r\n\r\n/**\r\n * Add equal value validation method to jQuery validation plugin.\r\n * Text fields must have 'equal-to' css class to be validated\r\n */\r\n$.validator.addMethod('equal-to', function (value, el) {\r\n\tvar equalTo = $(el).attr('equal-to');\r\n\tvar $equalToEl = $(el).closest('form').find(equalTo);\r\n\t\r\n\treturn value === $equalToEl.val();\r\n\t\r\n}, function(value, el){\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || Resources.VALIDATE_EQUALTO\r\n});\r\n\r\n/**\r\n * Add address validation method to jQuery validation plugin.\r\n * Text fields must have 'address1' css class to be validated\r\n */\r\n$.validator.addMethod('address', function (value, el) {\r\n\t// check 'PO BOX' value in string and complement result\r\n\tvar isValid = !$.trim(value).match(regex.hasPOBox);\r\n\r\n\treturn isValid;\r\n}, Resources.ADDRESS_PO_BOX_ERROR);\r\n\r\n/**\r\n * Add zipcode validation method to jQuery validation plugin.\r\n * Text fields must have 'zipcode' css class to be validated\r\n */\r\n$.validator.addMethod('postal', function (value, el) {\r\n\tvar $form = $(el).closest('form');\r\n\tvar $country = $form.find('select[name$=\"_country\"]');\r\n\tvar selectedCountry = $country.length > 0 ? $country.val().toLowerCase() : 'us';\r\n\t\r\n\tvar rgx = null;\r\n\tvar isValid = false;\r\n\tif($(el).hasClass('global-zip')){\r\n\t\t// if universal, it accepts both US and CN values\r\n\t\tisValid = regex.postal['us'].test($.trim(value)) || regex.postal['cn'].test($.trim(value));\r\n\t} else {\r\n\t\trgx = regex.postal[selectedCountry];\r\n\t\tisValid = rgx.test($.trim(value));\r\n\t}\r\n\t\r\n\treturn isValid;\r\n}, Resources.INVALID_ZIP);\r\n\r\n/**\r\n * Add postcode validation method to jQuery validation plugin.\r\n * Text fields must have 'postcode' css class to be validated\r\n * Adding this for China addresses\r\n */\r\n$.validator.addMethod('postcode', function (value, el) {\r\n\tvar $form = $(el).closest('form');\r\n\tvar $country = $form.find('select[name$=\"_country\"]');\r\n\tvar selectedCountry = $country.length > 0 ? $country.val() : 'us'; \r\n\t\r\n\tvar rgx = regex.postal[selectedCountry];\r\n\tvar isValid = rgx.test($.trim(value));\r\n\t\r\n\treturn isValid;\r\n}, Resources.INVALID_POSTAL);\r\n\r\n/**\r\n * Add message validation method to jQuery validation plugin.\r\n * Text fields must have 'message' css class to be validated\r\n */\r\n$.validator.addMethod('message', function (value, el) {\r\n\tvar isValid = regex.message.test($.trim(value));\r\n\treturn isValid;\r\n}, Resources.INVALID_MESSAGE);\r\n\r\n\r\nvar requiredMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || Resources.VALIDATE_REQUIRED\r\n};\r\n\r\nvar simpleTextMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || Resources.VALIDATE_REQUIRED\r\n};\r\n\r\nvar passwordMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || Resources.VALIDATE_PASSWORD\r\n};\r\n\r\nvar maxLengthMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || $.validator.format(Resources.VALIDATE_MAXLENGTH)\r\n};\r\n\r\nvar minLengthMessage = function(value, el) {\r\n\tvar message = $(el).attr('data-required-text');\r\n\treturn message || $.validator.format(Resources.VALIDATE_MINLENGTH)\r\n};\r\nvar stateValidation = function(){\r\n\tvar customstateRow = $('.state.form-row label');\r\n\tif( $('.state select option:selected').val() == '' || $('.state .ui-selectmenu-text').text() == \"Select State\"){\r\n\t\tcustomstateRow.next('.error-placement').remove();\r\n\t\t $('<div class=\"error-placement\"><i class=\"error-icon error-icon-dropdown\"></i><span class=\"error\">'+ Resources.INVALID_STATE +'</span></div>').insertAfter(customstateRow);\r\n\t\t $('.state span.ui-selectmenu-button, .state').addClass('dropdownerror');\r\n\t} else {\r\n\t\t $('.state .error-placement').remove();\r\n\t\t $('.state span.ui-selectmenu-button, .state').removeClass('dropdownerror');\r\n\t}\r\n}\r\n\r\n$.extend($.validator.messages, {\r\n\trequired: requiredMessage,\r\n\tremote: Resources.VALIDATE_REMOTE,\r\n\temail: Resources.VALIDATE_EMAIL,\r\n\taddress1: Resources.ADDRESS_PO_BOX_ERROR,\r\n\tpassword: passwordMessage,\r\n\turl: Resources.VALIDATE_URL,\r\n\tdate: Resources.VALIDATE_DATE,\r\n\tdateISO: Resources.VALIDATE_DATEISO,\r\n\tnumber: Resources.VALIDATE_NUMBER,\r\n\tdigits: Resources.VALIDATE_DIGITS,\r\n\tcreditcard: Resources.VALIDATE_CREDITCARD,\r\n\tequalTo: Resources.VALIDATE_EQUALTO,\r\n\tmaxlength: maxLengthMessage,\r\n\tminlength: minLengthMessage,\r\n\trangelength: $.validator.format(Resources.VALIDATE_RANGELENGTH),\r\n\trange: $.validator.format(Resources.VALIDATE_RANGE),\r\n\tmax: $.validator.format(Resources.VALIDATE_MAX),\r\n\tmin: $.validator.format(Resources.VALIDATE_MIN),\r\n\tpostal: Resources.INVALID_ZIP,\r\n\tmessage: Resources.INVALID_MESSAGE,\r\n\tfullname: simpleTextMessage,\r\n\tsimpletext: simpleTextMessage,\r\n\talphanumeric: simpleTextMessage\r\n});\r\n// Updated code to populate green tick check if the password meets the requirements.\r\nvar validator = {\r\n\tregex: regex,\r\n\tsettings: settings,\r\n\tinit: function () {\r\n\t\tvar _self = this;\r\n\t\t$('form:not(.suppress)').each(function () {\r\n\t\t\t_self.initForm(this);\r\n\t\t}).on('blur', '.create-password', function(){\r\n\t\t\tvar isValid = regex.password.test($.trim($(this).val())),\r\n\t\t\t\tcurrentItem = $(this),\r\n\t\t\t\tparentOfCurrent = currentItem.parent('.field-wrapper'),\r\n\t\t\t\ttopParentofCurrent = parentOfCurrent.parent('.form-row');\r\n\r\n\t\t\tif(isValid == true) {\r\n\t\t\t\ttopParentofCurrent.find('.error-placement').remove();\r\n\t\t\t\tparentOfCurrent.addClass('ticmark').find('.create-password').removeClass('error');\r\n\t\t\t} else {\r\n\t\t\t\tparentOfCurrent.removeClass('ticmark');\r\n\t\t\t}\r\n\t\t}).on('blur','.passwordconfirm, .newpasswordconfirm', function () {\r\n\t\t\tvar currentItem = $(this),\r\n\t\t\t\tcurrentPassword = $('.create-password').val(),\r\n\t\t\t\tconfirmPassword = $('.passwordconfirm,.newpasswordconfirm').val(),\r\n\t\t\t\tparentOfCurrent = currentItem.parent('.field-wrapper'),\r\n\t\t\t\ttopParentofCurrent = parentOfCurrent.parent('.form-row'),\r\n\t\t\t\texistError = $('.create-password').parent('.field-wrapper').find('span.error').length;\r\n\r\n\t\t\tif((confirmPassword !== '' && currentPassword === confirmPassword) && existError == 0) {\r\n\t\t\t\ttopParentofCurrent.find('.error-placement').remove();\r\n\t\t\t\tparentOfCurrent.addClass('ticmark').find('.passwordconfirm').removeClass('error');\r\n\t\t\t} else {\r\n\t\t\t\tparentOfCurrent.removeClass('ticmark');\r\n\t\t\t}\r\n\t\t});\r\n\t},\r\n\tinitForm: function (f) {\r\n\t\tvar _self = this;\r\n\t\tvar $form = $(f);\r\n\t\tvar $submitForm = $form.find('button[type=\"submit\"]:not(.ignore)');\r\n\t\tvar fp = formPrepare();\r\n\t\tfp.init({\r\n\t\t\tformSelector: $form,\r\n\t\t\tcontinueSelector: $submitForm\r\n\t\t}, _self.settings);\r\n\r\n\t\t$form.find('.input-text').each(function(){\r\n if($(this).val() !== ''){\r\n $(this).parents('.form-row').addClass('valid');\r\n } else {\r\n $(this).parents('.form-row').removeClass('valid');\r\n }\r\n });\r\n\t},\r\n\tinitStateValidation:function(e) {\r\n\t\t$('.state .ui-selectmenu-button, .state select').on('blur', function() {\r\n\t\t\t(document.documentMode || /Edge/.test(navigator.userAgent)) ? '' : $( \"select\" ).selectmenu( \"refresh\" );\r\n\t\t\tif ($('.default-billing-address').hasClass('hidden')) {\r\n\t\t\t\tstateValidation();\r\n\t\t\t}\r\n\t\t});\r\n\t\t$('.state .ui-selectmenu-button').on('blur', function () {\r\n\t\t\tstateValidation();\r\n\t\t});\r\n\t}\r\n};\r\n\r\nmodule.exports = validator;\r\n\n},{\"./pages/checkout/formPrepare\":38}],96:[function(require,module,exports){\nvar modal = require('./modal').global;\r\n\r\nmodule.exports = { \r\n\tinitialize: function () {\r\n\t\t//bind video play,pause buttons with respective video playbacks\r\n\t\t$('.play-pause-btn').on('click', function() {\r\n\t\t\tvar $this = $(this),\r\n\t\t\t\t$linkedVideo = document.getElementById($(this).data('videoid'));\r\n\t\t\tif($linkedVideo !== undefined && $linkedVideo !== null) {\r\n\t\t\t\tif($this.hasClass('active')){\r\n\t\t\t\t\t$linkedVideo.pause();\r\n\t\t\t\t}\r\n\t\t\t\telse{\r\n\t\t\t\t\t$linkedVideo.play();\r\n\t\t\t\t}\r\n\t\t\t\t$this.toggleClass('active');\r\n\t\t\t}\r\n\t\r\n\t\t\t//Add class to hide picture tag once video played\r\n\t\t\t$this.parent().addClass('hide-poster');\r\n\t\t\t\r\n\t\t\t//link end event for playing video\r\n\t\t\tif($linkedVideo !== undefined && $linkedVideo !== null) {\r\n\t\t\t\t$linkedVideo.onended = function(){\r\n\t\t\t\t\t$this.removeClass('active');\r\n\t\t\t\t};\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\t$('.modal-close').on('click', function() {\r\n\t\t\tvar $linkedVideo = document.getElementById($(this).data('videoid'));\r\n\t\t\tif($linkedVideo !== undefined && $linkedVideo !== null) {\r\n\t\t\t\t$linkedVideo.pause();\r\n\t\t\t}\r\n\t\t});\r\n\t\t\r\n\t\t$('#category-hero .slick-arrow').on('click', function() {\r\n\t\t\tvar playPauseButton = $(this).parent('.slick-slider').find('.slick-active .play-pause-btn');\r\n\t\t\tvar $linkedVideo = document.getElementById(playPauseButton.data('videoid'));\r\n\t\t\tif($linkedVideo !== undefined && $linkedVideo !== null) {\r\n\t\t\t\t$linkedVideo.pause();\r\n\t\t\t\tplayPauseButton.removeClass('active');\r\n\t\t\t}\r\n\t\t});\r\n\t},\r\n\r\n\tinit: function (cb) {\r\n\t\tif((typeof window.YT !== \"undefined\") && (typeof cb !== 'undefined')) {\r\n\t\t\treturn cb();\r\n\t\t}\r\n\r\n\t\twindow.onYouTubeIframeAPIReady = cb;\r\n\r\n\t\t// load youtube iframe api\r\n\t\tvar tag = document.createElement(\"script\");\r\n\r\n\t\ttag.async = true;\r\n\t\ttag.src = \"https://www.youtube.com/iframe_api\";\r\n\r\n\t\tvar firstScriptTag = document.getElementsByTagName('script')[0];\r\n\t\tfirstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\r\n\t},\r\n\r\n\tplayInline: function ($ele, videoId) {\r\n\t\tvar eleId = $ele.attr(\"id\");\r\n\t\tif(!eleId || !videoId) { return; }\r\n\r\n\t\tnew YT.Player(eleId, {\r\n\t\t\tvideoId: videoId,\r\n\t\t\twidth: $ele.width(),\r\n\t\t\theight: $ele.height(),\r\n\t\t\tplayerVars: {rel: 0},\r\n\t\t\tevents: {\r\n\t\t\t\tonReady: function (evt) {\r\n\t\t\t\t\tvar player = evt.target;\r\n\t\t\t\t\tplayer.playVideo();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t})\r\n\t},\r\n\r\n\tplayInModal: function (videoId) {\r\n\t\t if(!videoId) { return; }\r\n\r\n\t\tmodal.setContent('<div class=\"responsive-embed\"><div id=\"video-player\"></div></div>');\r\n\r\n\t\tnew YT.Player(\"video-player\", {\r\n\t\t\tvideoId: videoId,\r\n\t\t\tevents: {\r\n\t\t\t\tonReady: function (evt) {\r\n\t\t\t\t\tvar player = evt.target;\r\n\t\t\t\t\tmodal.events.onOpen(function () {\r\n\t\t\t\t\t\tvar modalBodyWidth = $(\".modal-body\").width();\r\n\t\t\t\t\t\tplayer.playVideo();\r\n\t\t\t\t\t});\r\n\t\t\t\t\tmodal.events.onClose(function () { player.destroy(); });\r\n\t\t\t\t\tmodal.open();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t})\r\n\t}\r\n};\n},{\"./modal\":27}],97:[function(require,module,exports){\n'use strict';\r\nvar t;\r\nvar productid;\r\nvar mode;\r\nvar selectedShades = [];\r\nvar splitvarvalue = 50;\r\nvar product = $('#giaranProduct').attr('data-value');\r\nvar eyeLook = $('#giaranEyeLook').attr('data-value');\r\nvar fc;\r\nvar permission = false;\r\nvar userAgent = (navigator.userAgent).toLowerCase();\r\nvar clickedliveCam = false;\r\nvar width = $(window).width();\r\nvar calculatedSize;\r\nvar outCanvas = document.getElementById(\"outputCanvas\");\r\nvar outContext = outCanvas.getContext(\"2d\");\r\nvar tCanvas = document.createElement('canvas');\r\nvar tContext = tCanvas.getContext(\"2d\");\r\nvar mCanvas = document.createElement('canvas');\r\nvar splitAnimateCount = 0;\r\nvar bottomPostion;\r\nvar screen = 0;\r\nvar count = 4;\r\nvar stopCamera = false;\r\nvar counter_timer;\r\nvar isswatchChange = false;\r\nvar isMultiRetake = false;\r\nvar isCloseDownload = false;\r\nvar isUploadShadeApplied = false;\r\n// Below two variables are using for switching split to normal view during the download.\r\nvar isViewSwitchedDuringDownload = false;\r\nvar preSplitvarvalue = 0;\r\nvar uploadImageTimeInterval;\r\nvar imageUploadTimer;\r\n\r\nvar tryOnContainer = $('#product-tryiton-container'),\r\n\twebcamStatus = $('#webcam-status');\r\n\r\nvar constraints = {\r\n\tvideo: {\r\n\t\twidth: 640,\r\n\t\theight: 480,\r\n\t\tframeRate: 30,\r\n\t\tfacingMode: 'user'\r\n\t}\r\n};\r\n\r\nvar constraints2 = {\r\n\tfacingMode: {\r\n\t\texact: \"user\"\r\n\t},\r\n\tvideo: {\r\n\t\twidth: 640,\r\n\t\theight: 480\r\n\t}\r\n};\r\n\r\nfunction checkGiaranMobileConf() {\r\n\tvar mobileAgentHash = ['mobile', 'tablet', 'phone', 'ipad', 'ipod', 'android', 'blackberry', 'windows ce', 'opera mini', 'palm'];\r\n\tvar idx = 0;\r\n\tvar isMobile = false;\r\n\tvar userAgent = (navigator.userAgent).toLowerCase();\r\n\r\n\twhile (mobileAgentHash[idx] && !isMobile) {\r\n\t\tisMobile = (userAgent.indexOf(mobileAgentHash[idx]) >= 0);\r\n\t\tidx++;\r\n\t}\r\n\treturn isMobile;\r\n};\r\n\r\nif (checkGiaranMobileConf()) {\r\n\tfc = constraints;\r\n} else {\r\n\tfc = constraints2;\r\n}\r\n\r\nfunction isPortrait() {\r\n\treturn window.innerHeight > window.innerWidth;\r\n}\r\n\r\nfunction isLandscape() {\r\n\treturn (window.orientation === 90 || window.orientation === -90);\r\n}\r\n\r\n//On zoom and orientation change to start camera\r\nfunction onResize() {\r\n\tif($(\"#tryon-countdown\").hasClass('show') || count == 0){\r\n\t\tclearInterval(counter_timer);\r\n\t\tcount = 0;\r\n\t\tif($(\"#tryon-countdown\").hasClass('show')) {\r\n\t\t\t$(\"#tryon-countdown\").removeClass('show');\r\n\t\t}\r\n\t\t$(\"#tryon-preview-controls\").removeClass('show');\r\n\t\t$(\".tryItOn-user-functionality\").removeClass('hide');\r\n\t\tif($(\".multiVideo-overlay\").hasClass('remove-overlay')) {\r\n\t\t\t$(\".multiVideo-overlay\").removeClass('remove-overlay');\r\n\t\t}\r\n\t\tif($(\".tryiton-swatch\").hasClass('hideSwatchMobile')){\r\n\t\t\t$(\".tryiton-swatch\").removeClass('hideSwatchMobile');\r\n\t\t}\r\n\t\tif(webcamStatus.attr('mode') == 'multi') {\r\n\t\t\tisMultiRetake = false;\r\n\t\t}\r\n\t\tstopCamera = false;\r\n\t\tonSwatchChange();\r\n\r\n\t\tif($(\".canvas-cancel\").hasClass('hideCanvasCancel')) {\r\n\t\t\t$(\".canvas-cancel\").removeClass('hideCanvasCancel')\r\n\t\t}\r\n\t\t$(\".download-cancel\").removeClass('showDownloadCancel');\r\n\t}\r\n}\r\n\r\nfunction onDownloadClick() {\r\n\t\tvar download = $(\"#download-placeholder\");\r\n\t\tvar downcanvas = document.getElementById(\"outputCanvas\");\r\n\t\tvar html2CanvasSettings;\r\n\t\tvar html2CanvasHeight;\r\n\t\tvar html2CanvasWidth;\r\n\t\r\n\t\tif(window.innerWidth > 768) {\r\n\t\t\tvar scrollElement = $('html');\r\n\t\r\n\t\t\ttryOnContainer.addClass('download-preview-screen');\r\n\t\r\n\t\t\tif (/Edge/.test(navigator.userAgent)) {\r\n\t\t\t\twindow.scrollTo(0, 0);\r\n\t\t\t}\r\n\t\r\n\t\t\tif (/^((?!chrome|android).)*safari/i.test(navigator.userAgent) && !/(Mac)/i.test(navigator.platform)) {\r\n\t\t\t\tscrollElement = $('body');\r\n\t\t\t}\r\n\t\r\n\t\t\tscrollElement.animate({\r\n\t\t\t\tscrollTop: 0\r\n\t\t\t}, 600, function() {\r\n\t\t\t\t$('#try-on-video').css('max-width',$('#try-on-video').width());\r\n\t\t\t\t$(\"html\").addClass(\"hide-scrollbar\"); //hide scrollbar because it is showing left white padding\r\n\t\r\n\t\t\t\thtml2CanvasWidth = Math.floor($('#try-on-video').width());\r\n\t\t\t\thtml2CanvasHeight = Math.floor($('#try-on-video').height());\r\n\t\r\n\t\t\t\tif (webcamStatus.attr('mode') === 'normal' || webcamStatus.attr('mode') === 'split') {\r\n\t\t\t\t\thtml2CanvasSettings = {\r\n\t\t\t\t\t\tallowTaint: false,\r\n\t\t\t\t\t\tuseCORS: true,\r\n\t\t\t\t\t\timageTimeout: 5000,\r\n\t\t\t\t\t\twidth: html2CanvasWidth,\r\n\t\t\t\t\t\theight: html2CanvasHeight,\r\n\t\t\t\t\t\tonclone: function(documentClone) {\r\n\t\t\t\t\t\t\t// target elements you want to change on the \"documentClone\" object\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.download-info').style.display = 'block';\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\r\n\t\t\t\tif (webcamStatus.attr('mode') === 'multi') {\r\n\t\t\t\t\thtml2CanvasSettings = {\r\n\t\t\t\t\t\tallowTaint: false,\r\n\t\t\t\t\t\tuseCORS: true,\r\n\t\t\t\t\t\timageTimeout: 5000,\r\n\t\t\t\t\t\twidth: html2CanvasWidth,\r\n\t\t\t\t\t\theight: html2CanvasHeight,\r\n\t\t\t\t\t\tonclone: function(documentClone) {\r\n\t\t\t\t\t\t\t// target elements you want to change on the \"documentClone\" object\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.download-info').style.display = 'block';\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.download-color-swatch').style.display = 'none';\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.download-color-name').style.display = 'none';\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.multiView-seperator').style.display = 'block';\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\r\n\t\t\t\tvar tag = document.getElementById('try-on-video');\r\n\t\t\t\tvar p = html2canvas(tag, html2CanvasSettings);\r\n\t\r\n\t\t\t\tp.then(function(canvas) {\r\n\t\t\t\t\tresetControls();\r\n\t\t\t\t\tvar link = document.createElement(\"a\");\r\n\t\t\t\t\tif (/(iPad|iPhone|iPod)/g.test(navigator.userAgent)) { //iOS = Iphone, Ipad, etc.\r\n\t\t\t\t\t\tvar dataurl = canvas.toDataURL(\"image/jpeg\");\r\n\t\t\t\t\t\tlink.href = dataurl;\r\n\t\t\t\t\t} else if (/Edge/.test(navigator.userAgent)) {\r\n\t\t\t\t\t\tcanvas.isDrawingMode = false;\r\n\t\t\t\t\t\tvar blob = new Blob([b64toBlob(canvas.toDataURL('image/jpeg').replace(/^data:image\\/(jpeg);base64,/, \"\"), \"image/jpeg\")], {\r\n\t\t\t\t\t\t\ttype: \"image/jpeg\"\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t\tif (webcamStatus.attr('mode') === 'multi') {\r\n\t\t\t\t\t\t\tsaveAs(blob, \"Try-On-multiView.jpeg\");\r\n\t\t\t\t\t\t} else if (getShadeName() !== \"\") {\r\n\t\t\t\t\t\t\tsaveAs(blob, \"Try-On-\" + getShadeName().trim() + \".jpeg\");\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tsaveAs(blob, \"Try-On.jpeg\");\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tvar image = canvas.toDataURL(\"image/jpeg\").replace(\"image/jpeg\", \"image/octet-stream\");\r\n\t\t\t\t\t\tlink.href = image;\r\n\t\t\t\t\t\tif (webcamStatus.attr('mode') === 'multi') {\r\n\t\t\t\t\t\t\tlink.download = \"Try-On-multiView.jpeg\";\r\n\t\t\t\t\t\t} else if (getShadeName() !== \"\") {\r\n\t\t\t\t\t\t\tlink.download = \"Try-On-\" + getShadeName() + \".jpeg\";\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tlink.download = \"Try-On.jpeg\";\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\r\n\t\t\t\t\tlink.click();\r\n\t\t\t\t\t$(\"html\").removeClass(\"hide-scrollbar\");\r\n\t\t\t\t\t$('#try-on-video').removeAttr('style');\r\n\t\r\n\t\t\t\t\tsetTimeout(function() {\r\n\t\t\t\t\t\ttryOnContainer.removeClass('download-preview-screen');\r\n\t\t\t\t\t}, 1000);\r\n\t\t\t\t});\r\n\t\t\t});\r\n\t\t}\r\n\t\r\n\t\tif(window.innerWidth < 769) {\r\n\t\t\t$('.virtual-try-on-swatches, .selected-color-container').css('visibility', 'hidden');\r\n\t\t\tsetTimeout(function() {\r\n\t\t\t\thtml2CanvasWidth = Math.floor($('#try-on-video').width());\r\n\t\t\t\thtml2CanvasHeight = Math.floor(window.innerHeight);\r\n\t\r\n\t\t\t\tif (webcamStatus.attr('mode') === 'normal' || webcamStatus.attr('mode') === 'split') {\r\n\t\t\t\t\thtml2CanvasSettings = {\r\n\t\t\t\t\t\tallowTaint: false,\r\n\t\t\t\t\t\tuseCORS: true,\r\n\t\t\t\t\t\timageTimeout: 5000,\r\n\t\t\t\t\t\twidth: html2CanvasWidth,\r\n\t\t\t\t\t\theight: html2CanvasHeight - 5,\r\n\t\t\t\t\t\tscrollX: 0,\r\n\t\t\t\t\t\tscrollY: 0,\r\n\t\t\t\t\t\tonclone: function(documentClone) {\r\n\t\t\t\t\t\t\t// target elements you want to change on the \"documentClone\" object\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.download-info').style.display = 'block';\r\n\t\t\t\t\t\t\tif ($('.giarn-selected-color-container').length > 0) {\r\n\t\t\t\t\t\t\t\tdocumentClone.querySelector('.giarn-selected-color-container').style.display = 'none';\r\n\t\t\t\t\t\t\t}\t\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\r\n\t\t\t\tif (webcamStatus.attr('mode') === 'multi') {\r\n\t\t\t\t\tvar multiViewCanvasHeight;\r\n\t\t\t\t\tif(tryOnContainer.hasClass('uploaded-image-screen')) {\r\n\t\t\t\t\t\tmultiViewCanvasHeight = $('.imageOutputCanvas').height() + $('.download-info').height();\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tmultiViewCanvasHeight = $('.outputCanvas').height() + $('.download-info').height();\r\n\t\t\t\t\t}\r\n\t\t\t\t\t\r\n\t\t\t\t\tif (/(iPad|iPhone|iPod)/g.test(navigator.userAgent)) { //iOS = Iphone, Ipad, etc.\r\n\t\t\t\t\t\t$('.multiView-screen .color-name').addClass('downloading');\r\n\t\t\t\t\t\tif(tryOnContainer.hasClass('uploaded-image-screen')) {\r\n\t\t\t\t\t\t\tbottomPostion = (window.innerHeight - $('.imageOutputCanvas').height() - $('.download-info').height() + 5) + 'px';\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tbottomPostion = (window.innerHeight - $('.outputCanvas').height() - $('.download-info').height() + 5) + 'px';\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tif(tryOnContainer.hasClass('uploaded-image-screen')) {\r\n\t\t\t\t\t\t\tbottomPostion = (window.innerHeight - $('.imageOutputCanvas').height() - $('.download-info').height()) + 'px';\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tbottomPostion = (window.innerHeight - $('.outputCanvas').height() - $('.download-info').height()) + 'px';\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\thtml2CanvasSettings = {\r\n\t\t\t\t\t\tallowTaint: false,\r\n\t\t\t\t\t\tuseCORS: true,\r\n\t\t\t\t\t\timageTimeout: 3000,\r\n\t\t\t\t\t\twidth: html2CanvasWidth,\r\n\t\t\t\t\t\theight: multiViewCanvasHeight,\r\n\t\t\t\t\t\tscrollX: 0,\r\n\t\t\t\t\t\tscrollY: 0,\r\n\t\t\t\t\t\tonclone: function(documentClone) {\r\n\t\t\t\t\t\t\t// target elements you want to change on the \"documentClone\" object\r\n\t\t\t\t\t\t\tif ($('.giarn-selected-color-container').length > 0) {\r\n\t\t\t\t\t\t\t\tdocumentClone.querySelector('.giarn-selected-color-container').style.display = 'none';\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.download-info').style.display = 'block';\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.multiView-seperator').style.display = 'block';\r\n\t\t\t\t\t\t\tdocumentClone.querySelector('.download-info').style.bottom = bottomPostion;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\r\n\t\t\t\tvar tag = document.getElementById('try-on-video');\r\n\t\t\t\tvar p = html2canvas(tag, html2CanvasSettings);\r\n\t\r\n\t\t\t\tp.then(function(canvas) {\r\n\t\t\t\t\tresetControls();\r\n\t\t\t\t\tvar link = document.createElement(\"a\");\r\n\t\t\t\t\tif (/(iPad|iPhone|iPod)/g.test(navigator.userAgent)) { //iOS = Iphone, Ipad, etc.\r\n\t\t\t\t\t\tvar dataurl = canvas.toDataURL(\"image/jpeg\");\r\n\t\t\t\t\t\tlink.href = dataurl;\r\n\t\t\t\t\t} else if (/Edge/.test(navigator.userAgent)) {\r\n\t\t\t\t\t\tcanvas.isDrawingMode = false;\r\n\t\t\t\t\t\tvar blob = new Blob([b64toBlob(canvas.toDataURL('image/jpeg').replace(/^data:image\\/(jpeg);base64,/, \"\"), \"image/jpeg\")], {\r\n\t\t\t\t\t\t\ttype: \"image/jpeg\"\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t\tif (webcamStatus.attr('mode') === 'multi') {\r\n\t\t\t\t\t\t\tsaveAs(blob, \"Try-On-multiView.jpeg\");\r\n\t\t\t\t\t\t} else if (getShadeName() !== \"\") {\r\n\t\t\t\t\t\t\tsaveAs(blob, \"Try-On-\" + getShadeName().trim() + \".jpeg\");\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tsaveAs(blob, \"Try-On.jpeg\");\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tvar image = canvas.toDataURL(\"image/jpeg\").replace(\"image/jpeg\", \"image/octet-stream\");\r\n\t\t\t\t\t\tlink.href = image;\r\n\t\t\t\t\t\tif (webcamStatus.attr('mode') === 'multi') {\r\n\t\t\t\t\t\t\tlink.download = \"Try-On-multiView.jpeg\";\r\n\t\t\t\t\t\t} else if (getShadeName() !== \"\") {\r\n\t\t\t\t\t\t\tlink.download = \"Try-On-\" + getShadeName() + \".jpeg\";\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tlink.download = \"Try-On.jpeg\";\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\tlink.click(link);\r\n\t\t\t\t\t$('.multiView-screen .color-name').removeClass('downloading');\r\n\t\t\t\t\t$(\"html\").removeClass(\"hide-scrollbar\");\r\n\t\t\t\t});\r\n\t\t\t}, 100);\r\n\t\t}\r\n\t\tisUploadShadeApplied = false;\r\n}\r\n\r\nwindow.addEventListener(\"orientationchange\", function () {\r\n\tvar isAndroid = navigator.userAgent.toLowerCase().indexOf(\"android\") > -1\r\n\tif(!isAndroid) {\r\n\t\tif (clickedliveCam) {\r\n\t\t\tsetTimeout(function () {\r\n\t\t\t\tvar video = document.querySelector(\"#videoElement\");\r\n\t\t\t\tcalculatedSize = calculateSize(video);\r\n\t\t\t}, 500);\r\n\t\t}\r\n\t}\r\n\r\n\tif (clickedliveCam && mode == 'split') {\r\n\t\tsetTimeout(function () {\r\n\t\t\tsplitvarvalue = 50;\r\n\t\t\tinitComparisons();\r\n\t\t}, 100);\r\n\t}\r\n\r\n\tonResize();\r\n\r\n\t//Close try on menu on orientation change\r\n\t$('.try-on-video, .tryiton-controlers').removeClass('arOpenMenu');\r\n\t$('.arTryOnBtnWrapper').removeClass('openMenu');\r\n\r\n\t//Split arrow animation stop on orientation change\r\n\tif (splitAnimateCount !== 0) {\r\n\t\t$('.split-slider i').removeClass('animating');\r\n\t}\r\n\r\n\tif(window.innerWidth < 768 && isPortrait && mode == 'multi' && navigator.userAgent.match(/(iPhone)/) && tryOnContainer.hasClass('uploaded-image-screen')) {\r\n\t\ttryOnContainer.addClass('orientation-change-loader');\r\n\t}\r\n\r\n\t//Opening crop screen on orientation change, When user is on crop screen and image uploaded screen.\r\n\tretainImageUploadScreen();\r\n}, false); \r\n\r\nfunction checkwebcam() {\r\n\tif (navigator.mediaDevices.getUserMedia) {\r\n\t\tnavigator.mediaDevices.getUserMedia(fc)\r\n\t\t\t.then(function (stream) {\r\n\t\t\t\tpermission = true;\r\n\t\t\t\ttry {\r\n\t\t\t\t\tcheckgiaranloaded();\r\n\t\t\t\t} catch (err) { }\r\n\t\t\t})\r\n\t\t\t.catch(function (error) {\r\n\t\t\t\tpermission = false;\r\n\t\t\t\t$('body').removeClass('giaran-body');\r\n\t\t\t\t$('.try-on-wrapper a.trigger-tryon-modal').trigger('click');\r\n\t\t\t});\r\n\t}\r\n}\r\n\r\nfunction onSwatchChange() {\r\n\tvar activeScreen = webcamStatus.attr('active-screen');\r\n\tstopCamera = false;\r\n\ttryOnContainer = $('#product-tryiton-container');\r\n\r\n\tif(webcamStatus.attr(\"clicked\") == 1 && $(window).innerWidth()>768) {\r\n\t\tisswatchChange = true;\r\n\t\tisMultiRetake = false;\r\n\t}\r\n\r\n\t//Retain previous active screen\r\n\ttryOnContainer.addClass(activeScreen);\r\n\tif(activeScreen == 'uploaded-image-screen' && !tryOnContainer.hasClass('download-preview-screen')) {\r\n\t\tsetTimeout(function () {\r\n\t\t\tretainModeChanges();\r\n\t\t\tclearInterval(uploadImageTimeInterval);\r\n\t\t\tdrawImageOnCanvas();\r\n\t\t}, 300);\r\n\t} else if(activeScreen == 'uploading-screen' || activeScreen == 'crop-screen') {\r\n\t\tcropImage($('#uploaded-image').attr('src'));\r\n\t}\r\n\r\n\t$('.try-it-on .afterClick').removeClass('hide').addClass('show');\r\n\t$('.try-it-on').addClass('exitEnabled');\r\n\tvar id = $('.product-number span').data('pid');\r\n\tmode = webcamStatus.attr('mode');\r\n\t$('.tryItOn-user-functionality button').removeClass('active');\r\n\t$('.tryiton-controlers').removeClass('multi-view-active');\r\n\tproductid = id;\r\n\tscreen = 0;\r\n\r\n\tif (mode == 'multi') {\r\n\t\t$('.multiVideo-overlay').addClass('show');\r\n\t\tmultisplit();\r\n\t\tvar targetScreen = $('#multisplit').attr('target');\r\n\t\tscreen = parseInt(targetScreen - 1);\r\n\t\tselectedShades[targetScreen - 1] = getColorShade();\r\n\t\t$('.multiView-screen[screen=\"' + targetScreen + '\"]').addClass('active');\r\n\t\t$('.multiVideo-overlay').removeClass('hide').addClass('show');\r\n\t\t$('#multiSplit').addClass('active');\r\n\t\t$('.tryiton-controlers').addClass('multi-view-active');\r\n\t\t$('.download-info').removeClass('normal').addClass('multi');\r\n\r\n\t\tif (selectedShades.length > 0) {\r\n\t\t\tif (selectedShades[0] !== '' && selectedShades[0] !== undefined) {\r\n\t\t\t\t$('#multiView-screen-1').addClass('color-applied');\r\n\t\t\t\t$('#multiView-screen-1 span').html(selectedShades[0]).css('visibility', 'visible');\r\n\t\t\t}\r\n\t\t\tif (selectedShades[1] !== '' && selectedShades[1] !== undefined) {\r\n\t\t\t\t$('#multiView-screen-2').addClass('color-applied');\r\n\t\t\t\t$('#multiView-screen-2 span').html(selectedShades[1]).css('visibility', 'visible');\r\n\t\t\t}\r\n\t\t\tif (selectedShades[2] !== '' && selectedShades[2] !== undefined) {\r\n\t\t\t\t$('#multiView-screen-3').addClass('color-applied');\r\n\t\t\t\t$('#multiView-screen-3 span').html(selectedShades[2]).css('visibility', 'visible');\r\n\t\t\t}\r\n\t\t\tif (selectedShades[3] !== '' && selectedShades[3] !== undefined) {\r\n\t\t\t\t$('#multiView-screen-4').addClass('color-applied');\r\n\t\t\t\t$('#multiView-screen-4 span').html(selectedShades[3]).css('visibility', 'visible');\r\n\t\t\t}\r\n\t\t}\r\n\t\t$(\".addall-fav\").addClass('show');\r\n\t\t$(\".add-fav\").addClass('hide');\r\n\t}\r\n\r\n\tif (mode == 'split') {\r\n\t\t$(\"#beforeAfter .img_placeHolder, #beforeAfter\").addClass(\"active\");\r\n\t\tsplitvarvalue = 50;\r\n\t\tinitComparisons();\r\n\t\t$('.download-info').removeClass('multi').addClass('normal');\r\n\t\t$(\".addall-fav\").removeClass('show');\r\n\t\t$(\".add-fav\").removeClass('hide');\r\n\t}\r\n\r\n\tif (mode == 'normal') {\r\n\t\t$('#normalView').addClass('active');\r\n\t\t$('.download-info').removeClass('multi').addClass('normal');\r\n\t\t$(\".addall-fav\").removeClass('show');\r\n\t\t$(\".add-fav\").removeClass('hide');\r\n\t}\r\n\r\n\tstockChecker();\r\n\r\n\tif ($('.product-number span').data('pid') == $('.product-number span').data('masterid')) {\r\n\t\t$('#multiSplit').removeClass('show').addClass('hide');\r\n\t}\r\n\r\n\toutCanvas = document.getElementById(\"outputCanvas\");\r\n\toutContext = outCanvas.getContext(\"2d\");\r\n\ttCanvas = document.createElement('canvas');\r\n\ttContext = tCanvas.getContext(\"2d\");\r\n\tmCanvas = document.createElement('canvas');\r\n\ttCanvas.id = 'tCanvas';\r\n\ttCanvas.width = 800;\r\n\ttCanvas.height = 800;\r\n\tvar video = document.querySelector(\"#videoElement\");\r\n\r\n\tif(!$('.product-tryiton-container').hasClass('uploaded-image-screen')) {\r\n\t\tif (navigator.mediaDevices.getUserMedia) {\r\n\t\t\tnavigator.mediaDevices.getUserMedia(fc)\r\n\t\t\t\t.then(function (stream) {\r\n\t\t\t\t\tvideo.srcObject = stream;\r\n\t\t\t\t\tvar b = setInterval(function () {\r\n\t\t\t\t\t\tif (video.readyState >= 3) {\r\n\t\t\t\t\t\t\tcalculatedSize = calculateSize(video);\r\n\t\t\t\t\t\t\tstartStream();\r\n\t\t\t\t\t\t\tclearInterval(b);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}, 500);\r\n\t\t\t\t\tuserMediaLoading(true);\r\n\t\t\t\t})\r\n\t\t\t\t.catch(function (err) {\r\n\t\t\t\t\talert(err);\r\n\t\t\t\t});\r\n\t\t}\r\n\t}\r\n\r\n\t// Hacks for Mobile Safari\r\n\tvideo.setAttribute(\"playsinline\", true);\r\n\tvideo.setAttribute(\"controls\", true);\r\n\tsetTimeout(function () {\r\n\t\tvideo.removeAttribute(\"controls\");\r\n\t});\r\n\r\n\t//Restrict the shade to be applied on preview screen\r\n\tif(!tryOnContainer.hasClass('preview-screen') && !tryOnContainer.hasClass('welcome-screen')) {\r\n\t\tif (product == 'lips') {\r\n\t\t\tonLipChange(productid, screen);\r\n\t\t} else if (product == 'eyes') {\r\n\t\t\tonEyeChange(productid, eyeLook, screen);\r\n\t\t}\r\n\t}\r\n\tvar toggle = true;\r\n\tfunction startStream() {\r\n\t\ttContext.drawImage(video, calculatedSize.x_coordinate, calculatedSize.y_coordinate, calculatedSize.renderable_width, calculatedSize.renderable_height, 0, 0, tCanvas.width, tCanvas.height);\r\n\t\tmode = webcamStatus.attr('mode');\r\n\t\tif (MODULE_LOADED && toggle) {\r\n\t\t\tif (mode == 'multi') {\r\n\t\t\t\tgiaranRunMultiProcess(tCanvas, outCanvas);\r\n\t\t\t} else if (mode == 'split') {\r\n\t\t\t\tgiaranRunSplitProcess(tCanvas, outCanvas, splitvarvalue);\r\n\t\t\t} else {\r\n\t\t\t\tgiaranRunProcess(tCanvas, outCanvas);\r\n\t\t\t}\r\n\r\n\t\t\toutContext.drawImage(outCanvas, 0, 0, outCanvas.width, outCanvas.height, 0, 0, calculatedSize.calculatedWidth, calculatedSize.calculatedHeight);\r\n\t\t}\r\n\t\ttoggle = !toggle;\r\n\t\tif(!stopCamera) {\r\n\t\t\tt = requestAnimationFrame(startStream);\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunction retainModeChanges() {\r\n\tmode = webcamStatus.attr('mode');\r\n\tif (mode === 'multi') {\r\n\t\tif(!isMultiRetake) {\r\n\t\t\tif(window.innerWidth > 768) {\r\n\t\t\t\t$('.videoCanvas-wrapper, .multiVideo-overlay').css('height', $('.try-on-video').outerHeight() - $('.download-info').outerHeight());\r\n\t\t\t} else {\r\n\t\t\t\t$('.videoCanvas-wrapper, .multiVideo-overlay').css('height', $('.try-on-video').outerHeight() - $('.tryiton-controlers').outerHeight());\r\n\t\t\t}\r\n\t\t}\r\n\t} else if (mode === 'split') {\r\n\t\t$('.videoCanvas-wrapper').css('height', '100%');\r\n\t\tif (window.innerWidth <= 768) {\r\n\t\t\t$('.img-comp-slider').css('height', $('.try-on-video').outerHeight() - $('.tryiton-controlers').outerHeight());\r\n\t\t} else {\r\n\t\t\t$('.img-comp-slider').css('height', '100%');\r\n\t\t}\r\n\t} else {\r\n\t\t$('.videoCanvas-wrapper').css('height', '100%');\r\n\t}\r\n}\r\n\r\nfunction calculateSize(video) {\r\n\ttCanvas.id = \"tCanvas\";\r\n\tif (window.innerWidth < 1024) {\r\n\t\tif (webcamStatus.attr('mode') == 'split' && window.innerWidth < 1024) {\r\n\t\t\tif (window.innerWidth < 768) {\r\n\t\t\t\ttCanvas.width = Math.min(video.videoWidth, video.videoHeight);\r\n\t\t\t\ttCanvas.height = Math.min(video.videoWidth, video.videoHeight) * 2.3;\r\n\t\t\t} else {\r\n\t\t\t\ttCanvas.width = Math.min(video.videoWidth, video.videoHeight) * 1.3;\r\n\t\t\t\ttCanvas.height = Math.min(video.videoWidth, video.videoHeight) * 1.8; \r\n\t\t\t}\r\n\t\t} else if (webcamStatus.attr('mode') == 'multi' && window.innerWidth < 1024) {\r\n\t\t\tif (window.innerWidth < 768) {\r\n\t\t\t\ttCanvas.width = Math.min(video.videoWidth, video.videoHeight);\r\n\t\t\t\ttCanvas.height = Math.min(video.videoWidth, video.videoHeight) * 1.2;\r\n\t\t\t} else {\r\n\t\t\t\ttCanvas.width = Math.min(video.videoWidth, video.videoHeight) * 1.3;\r\n\t\t\t\ttCanvas.height = Math.min(video.videoWidth, video.videoHeight) * 1.5;\r\n\t\t\t}\r\n\t\t}\r\n\t} else {\r\n\t\ttCanvas.width = Math.min(video.videoWidth, video.videoHeight) * 1.5;\r\n\t\ttCanvas.height = Math.min(video.videoWidth, video.videoHeight) * 1.6;\r\n\t}\r\n\r\n\tvar width_ratio = tCanvas.width / video.videoWidth;\r\n\tvar height_ratio = tCanvas.height / video.videoHeight;\r\n\tvar ratio = Math.max(width_ratio, height_ratio);\r\n\tvar renderable_width = tCanvas.width / ratio;\r\n\tvar renderable_height = tCanvas.height / ratio;\r\n\tvar x_coordinate = (video.videoWidth - renderable_width) / 2;\r\n\tvar y_coordinate = (video.videoHeight - renderable_height) / 2;\r\n\r\n\tretainModeChanges();\r\n\r\n\tvar calculatedWidth = parseInt($('.videoCanvas-wrapper').outerWidth());\r\n\tvar calculatedHeight = parseInt($('.videoCanvas-wrapper').outerHeight());\r\n\tvar mcanvaswidth = Math.min(video.videoWidth, video.videoHeight) * 1.25;\r\n\tvar mcanvasheight = mcanvaswidth * (calculatedHeight / calculatedWidth);\r\n\tmCanvas.width = mcanvaswidth;\r\n\tmCanvas.height = mcanvasheight;\r\n\t$('#outputCanvas').attr('width', calculatedWidth);\r\n\t$('#outputCanvas').attr('height', calculatedHeight);\r\n\t$('#imageOutputCanvas').attr('width', calculatedWidth);\r\n\t$('#imageOutputCanvas').attr('height', calculatedHeight);\r\n\tif (navigator.userAgent.match(/iPad/i) != null && isLandscape()) { \r\n\t\t$('#outputCanvas').attr('width', calculatedWidth - 1);\r\n\t\t$('#imageOutputCanvas').attr('width', calculatedWidth - 1);\r\n\t} else if(navigator.userAgent.match(/iPhone/i) != null && isPortrait()) {\r\n\t\t$('#outputCanvas').attr('width', calculatedWidth + 1);\r\n\t\t$('#imageOutputCanvas').attr('width', calculatedWidth + 1);\r\n\t} else {\r\n\t\t$('#outputCanvas').attr('width', Number(Math.round(calculatedWidth - 0.8 + 'e2')+'e-2'));\r\n\t\t$('#imageOutputCanvas').attr('width', Number(Math.round(calculatedWidth - 0.8 + 'e2')+'e-2'));\r\n\t}\r\n\r\n\t//Call drawImageOnCanvas function to start the timer again in split and multi mode.\r\n\tif(tryOnContainer.hasClass('uploaded-image-screen')) {\r\n\t\tclearInterval(uploadImageTimeInterval);\r\n\t\tdrawImageOnCanvas();\r\n\t}\r\n\r\n\treturn {\r\n\t\trenderable_width: renderable_width,\r\n\t\trenderable_height: renderable_height,\r\n\t\tcalculatedWidth: calculatedWidth,\r\n\t\tcalculatedHeight: calculatedHeight,\r\n\t\tx_coordinate: x_coordinate,\r\n\t\ty_coordinate: y_coordinate,\r\n\t\tratio: ratio\r\n\t};\r\n}\r\n\r\nfunction getShadeName() {\r\n\tvar shadeName;\r\n\tvar outofstock = $('#giaranProduct').data('oosmsg');\r\n\tvar index = $('#selected-color .color-name').text().indexOf(outofstock);\r\n\tif (index != -1) {\r\n\t\tshadeName = $('#selected-color .color-name').text().replace(outofstock, '').replace('-', '');\r\n\t} else {\r\n\t\tshadeName = $('#selected-color .color-name').text().trim();\r\n\t}\r\n\treturn shadeName;\r\n}\r\n\r\nfunction getColorShade() {\r\n\tvar colorShade = $('#selected-color').html();\r\n\treturn colorShade;\r\n}\r\n\r\nfunction turnoffcamera() {\r\n\tcancelAnimationFrame(t);\r\n\tvar videoElem = document.getElementById(\"videoElement\");\r\n\tvar stream = videoElem.srcObject;\r\n\tif (stream) {\r\n\t\tvar tracks = stream.getTracks();\r\n\t\ttracks.forEach(function (track) {\r\n\t\t\ttrack.stop();\r\n\t\t\treturn;\r\n\t\t});\r\n\t}\r\n\tvideoElem.pause();\r\n\tvideoElem.srcObject = null;\r\n\tvideoElem.removeAttribute(\"playsinline\");\r\n}\r\n\r\nfunction onLipChange(v, layer) {\r\n\tsetLipColor(v, layer);\r\n\tif (v === 'none') {\r\n\t\tgiaranToggleLips(false);\r\n\t} else {\r\n\t\tgiaranToggleLips(true);\r\n\t}\r\n}\r\n\r\nfunction onEyeChange(v, look, screen) {\r\n\tvar template = \"\";\r\n\tvar maskname = look;\r\n\tif (v == 0) {\r\n\t\tgiaranToggleEyes(0);\r\n\t} else {\r\n\t\tgiaranToggleEyes(1);\r\n\t\tgiaranSetEyes(v, maskname, screen);\r\n\t}\r\n\tgiaranToggleEyes(1);\r\n}\r\n\r\nfunction checkgiaranloaded() {\r\n\tvar giaranloaded = $('#giaranwasmpath').attr('data-giaranloaded');\r\n\tif (giaranloaded == 1) {\r\n\t\topen_webcam();\r\n\t} else {\r\n\t\tuserMediaLoading(false);\r\n\t\t$('.try-it-on').addClass('exitEnabled');\r\n\t\t$('#product-content').addClass('try-on-activate');\r\n\t\tsetTimeout(function () {\r\n\t\t\tcheckgiaranloaded();\r\n\t\t}, 1000);\r\n\t}\r\n}\r\n\r\nfunction multisplit() {\r\n\tvar layer = $('#multisplit').attr('target');\r\n\t$('#multisplit').attr(\"screen-\" + layer, productid);\r\n}\r\n\r\nfunction resetMultiSplit() {\r\n\t//Reset all screen when user comes to multi view.\r\n\t$('.multiView-screen').removeClass('active color-applied');\r\n\t$('#multisplit').attr('target', '1');\r\n\t$('.color-code').css('visibility', 'hidden').empty();\r\n\tselectedShades.length = 0;\r\n\tvar j = 1;\r\n\tfor(var i = 0; i < 4; i++) {\r\n\t\tif (product == 'lips') {\r\n\t\t\tonLipChange('none', i);\r\n\t\t}\r\n\t\tif (product == 'eyes') {\r\n\t\t\tonEyeChange('none', eyeLook, i);\r\n\t\t}\r\n\t\t$('#multisplit').attr('screen-' + j , '')\r\n\t\tj++;\r\n\t}\r\n}\r\n\r\nfunction stockChecker() {\r\n\tvar selectedColors, inStock = true;\r\n\tif (webcamStatus.attr('mode') === 'multi') {\r\n\t\tfor(var i=1; i <= 4; i++) {\r\n\t\t\tselectedColors = $('#multiView-screen-' + i + ' .color-name').data('selectedcolorcode');\r\n\t\t\tif(selectedColors !== undefined) {\r\n\t\t\t\tif($('.product-info li[data-selectedcolor=\"' + selectedColors + '\"]').hasClass('unselectable')) {\r\n\t\t\t\t\tinStock = false;\r\n\t\t\t\t} else {\r\n\t\t\t\t\tinStock = true;\r\n\t\t\t\t\tbreak;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t} else if (webcamStatus.attr('mode') === 'normal' || webcamStatus.attr('mode') === 'split') {\r\n\t\tselectedColors = $('.tryiton-swatch .gairan-swatch-name').data('selectedcolorcode');\r\n\t\tif(selectedColors !== undefined) {\r\n\t\t\tif($('.product-info li[data-selectedcolor=\"' + selectedColors + '\"]').hasClass('unselectable')) {\r\n\t\t\t\tinStock = false;\r\n\t\t\t}\r\n\t\t}\r\n\t\tif($('#addToBag').hasClass('out-of-stock')) {\r\n\t\t\tinStock = false;\r\n\t\t}\r\n\t}\r\n\r\n\t// Disabled button when not in stock.\r\n\tif(inStock) {\r\n\t\t$('#addToBag').removeClass('disable');\r\n\t} else {\r\n\t\t$('#addToBag').addClass('disable');\r\n\t\t$('.addtobag-modal .stock-msg').text(Resources.OUT_OF_STOCK);\r\n\t}\r\n}\r\n\r\nfunction userMediaLoading(toShow) {\r\n\tif (toShow) {\r\n\t\tsetTimeout(function () {\r\n\t\t\t$('#product-tryiton-container').removeClass('js-loading variation-change');\r\n\t\t}, 1000);\r\n\t} else {\r\n\t\t$('#product-tryiton-container').addClass('js-loading');\r\n\t}\r\n}\r\n\r\nfunction splitArrowsAnimation() {\r\n\tif (splitAnimateCount == 0) {\r\n\t\tsplitAnimateCount++;\r\n\t\t$('.split-slider i').addClass('animating');\r\n\t\t$('.try-on-video').on('touchstart click', function () {\r\n\t\t\t$('.split-slider i').removeClass('animating');\r\n\t\t});\r\n\t\t$('.img-comp-slider').on('touchstart mousedown', function () {\r\n\t\t\t$('.split-slider i').removeClass('animating');\r\n\t\t});\r\n\t}\r\n}\r\n\r\nfunction initComparisons() {\r\n\tvar x;\r\n\t$(\".img-comp-overlay, .img-comp-slider\").removeClass('hide').addClass('show');\r\n\t$(\".img-comp-overlay\").css('width', '100%');\r\n\r\n\tx = $(\".img-comp-overlay\");\r\n\tcompareImages(x);\r\n\r\n\tfunction compareImages(img) {\r\n\t\tvar slider, clicked = 0,\r\n\t\t\tw, h;\r\n\t\tw = img.outerWidth();\r\n\t\th = img.outerHeight();\r\n\t\tvar width = (w / 2) + \"px\";\r\n\t\timg.css('width', width);\r\n\t\tslider = $('.img-comp-slider');\r\n\t\tvar left = (w / 2) - (slider.outerWidth() / 2);\r\n\t\tslider.css('left', left + 'px');\r\n\t\tslider.on(\"mousedown\", slideReady);\r\n\t\twindow.addEventListener(\"mouseup\", slideFinish);\r\n\t\tslider.on(\"touchstart\", slideReady);\r\n\t\twindow.addEventListener(\"touchstop\", slideFinish);\r\n\t\twindow.addEventListener(\"touchend\", touchEnd);\r\n\r\n\t\tfunction slideReady(e) {\r\n\t\t\te.preventDefault();\r\n\t\t\tclicked = 1;\r\n\t\t\twindow.addEventListener(\"mousemove\", slideMove);\r\n\t\t\twindow.addEventListener(\"touchmove\", slideMove);\r\n\t\t}\r\n\r\n\t\tfunction slideFinish(e) {\r\n\t\t\tif($('.crop-screen').length == 0) {\r\n\t\t\t\te.preventDefault();\r\n\t\t\t\te.stopPropagation();\r\n\t\t\t\tclicked = 0;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tfunction touchEnd(e) {\r\n\t\t\tif (e.cancelable) {\r\n\t\t\t\tclicked = 0;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tfunction slideMove(e) {\r\n\t\t\tvar pos;\r\n\t\t\tif (clicked == 0) return false;\r\n\t\t\tpos = getCursorPos(e);\r\n\t\t\tif (pos < 0) pos = 0;\r\n\t\t\tif (pos > w) pos = w;\r\n\t\t\tslide(pos);\r\n\t\t}\r\n\r\n\t\tfunction getCursorPos(e) {\r\n\t\t\tvar a, x = 0,\r\n\t\t\t\txPos = 0;\r\n\t\t\te = e || window.event;\r\n\t\t\ta = img.get(0).getBoundingClientRect();\r\n\t\t\tif (e.type == 'touchstart' || e.type == 'touchmove' || e.type == 'touchstop') {\r\n\t\t\t\tvar touch = e.touches[0];\r\n\t\t\t\txPos = touch.pageX;\r\n\t\t\t} else if (e.type == 'mousedown' || e.type == 'mouseup' || e.type == 'mousemove') {\r\n\t\t\t\txPos = e.pageX;\r\n\t\t\t}\r\n\t\t\tx = xPos - a.left;\r\n\t\t\tx = x - window.pageXOffset;\r\n\t\t\treturn x;\r\n\t\t}\r\n\r\n\t\tfunction slide(x) {\r\n\t\t\timg.css('width', x + 'px');\r\n\t\t\tvar y = img.outerWidth() - (slider.outerWidth() / 2);\r\n\t\t\tslider.css('left', y + \"px\");\r\n\t\t\tvar percentage = Math.round((x / w) * 100);\r\n\t\t\tsplitvarvalue = percentage;\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunction b64toBlob(b64Data, contentType, sliceSize) {\r\n\tcontentType = contentType || '';\r\n\tsliceSize = sliceSize || 512;\r\n\tvar byteCharacters = atob(b64Data);\r\n\tvar byteArrays = [];\r\n\r\n\tfor (var offset = 0; offset < byteCharacters.length; offset += sliceSize) {\r\n\t\tvar slice = byteCharacters.slice(offset, offset + sliceSize);\r\n\r\n\t\tvar byteNumbers = new Array(slice.length);\r\n\t\tfor (var i = 0; i < slice.length; i++) {\r\n\t\t\tbyteNumbers[i] = slice.charCodeAt(i);\r\n\t\t}\r\n\r\n\t\tvar byteArray = new Uint8Array(byteNumbers);\r\n\r\n\t\tbyteArrays.push(byteArray);\r\n\t}\r\n\r\n\tvar blob = new Blob(byteArrays, {\r\n\t\ttype: contentType\r\n\t});\r\n\treturn blob;\r\n}\r\n\r\nfunction open_webcam() {\r\n\tvar webcam = webcamStatus.attr('value');\r\n\tif (webcam == 0) {\r\n\t\tuserMediaLoading(false);\r\n\t\twebcamStatus.attr(\"value\", \"1\");\r\n\t\tonSwatchChange();\r\n\t}\r\n}\r\n\r\n/**\r\n * @function\r\n * @description Deep linking Handler.\r\n */\r\nfunction triggerVirtualTryOn() {\r\n\tvar isVirtualTryOnEnable = $(\"#virtualtryon\").val();\r\n\tif (isVirtualTryOnEnable) {\r\n\t\t$('button.try-it-on').trigger('click');\r\n\t}\r\n}\r\n\r\nfunction welcomeMessageHandler() {\r\n\tvar welcomeMessageTimer = SitePreferences.GIARAN_STATICLOADER*1000;\r\n\ttryOnContainer.addClass('welcome-screen');\r\n\twebcamStatus.attr('active-screen', 'welcome-screen');\r\n\tsetTimeout(function() {\r\n\t\ttryOnContainer.removeClass('welcome-screen').addClass('preview-screen');\r\n\t\twebcamStatus.attr('active-screen', 'preview-screen');\r\n\t}, welcomeMessageTimer);\r\n}\r\n\r\nfunction timer() {\r\n\tif(count == 0) {\r\n\t\tcount = 4;\r\n\t}\r\n\tcount = count - 1;\r\n\t$(\"#tryon-countdown\").addClass('show');\r\n\tif(webcamStatus.attr('mode') == 'split'){\r\n\t\t$('#normalView').trigger('click');\r\n\t\tif($('.arTryOnBtnWrapper').hasClass('openMenu')) {\r\n\t\t\t$('.arTryOnBtnWrapper').removeClass('openMenu');\r\n\t\t}\r\n\t}\r\n\tif (count <= 0) {\r\n\t\t$(\"#tryon-countdown\").removeClass('show');\r\n\t\t$(\".download-cancel\").addClass('showDownloadCancel');\r\n\t\tclearInterval(counter_timer);\r\n\t\tif(!isswatchChange && !isCloseDownload) {\r\n\t\t\tstopCamera = true;\r\n\t\t\t$(\"#tryon-preview-controls\").addClass('show');\r\n\t\t\tif(webcamStatus.attr('mode') == 'multi'){\r\n\t\t\t\t$(\".multiVideo-overlay\").addClass(\"remove-overlay\");\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\tstopCamera = false;\r\n\t\t\tif( $(\".download-cancel\").hasClass('showDownloadCancel')){\r\n\t\t\t\t$(\".download-cancel\").removeClass('showDownloadCancel')\r\n\t\t\t}\r\n\t\t}\r\n\t\tisCloseDownload = false;\r\n\t\treturn;\r\n\t}\r\n\t$(\"#tryon-countdown\").text(count)\r\n}\r\n\r\nfunction resetControls() {\r\n\tif(webcamStatus.attr('mode') == 'multi'){\r\n\t\t$(\".multiVideo-overlay\").removeClass(\"remove-overlay\");\r\n\t}\r\n\t$(\"#tryon-preview-controls\").removeClass('show');\r\n\t$('.virtual-try-on-swatches, .selected-color-container').css('visibility', 'visible');\r\n\t$(\".tryItOn-user-functionality\").removeClass('hide');\r\n\t$(\".download-cancel\").removeClass('showDownloadCancel');\r\n\t$(\".canvas-cancel\").removeClass('hideCanvasCancel');\r\n\tonSwatchChange();\r\n}\r\n\r\nfunction drawImageOnCanvas() {\r\n\tvar liveCanvas = document.getElementById('outputCanvas'),\r\n\t\tcalculatedWidth = parseInt($('.videoCanvas-wrapper').outerWidth()),\r\n\t\tcalculatedHeight = parseInt($('.videoCanvas-wrapper').outerHeight()),\r\n\t\tmemoryCanvas = document.createElement('canvas'),\r\n\t\tmemoryContext = memoryCanvas.getContext('2d'),\r\n\t\toutputCanvas = document.getElementById('imageOutputCanvas'),\r\n\t\toutputContext = outputCanvas.getContext('2d');\r\n\r\n\tmemoryCanvas.width = calculatedWidth;\r\n\tmemoryCanvas.height = calculatedHeight;\r\n\toutputCanvas.width = calculatedWidth;\r\n\toutputCanvas.height = calculatedHeight;\r\n\r\n\t//In quad view getting a line on left\r\n\tif(mode == 'multi' && ((calculatedWidth % 2) !== 0)) {\r\n\t\tmemoryCanvas.width = calculatedWidth - 1;\r\n\t\toutputCanvas.width = calculatedWidth - 1;\r\n\t}\r\n\r\n\tclearInterval(uploadImageTimeInterval);\r\n\r\n\tvar image = new Image();\r\n\tif(mode == 'multi') {\r\n\t\timage.src = $('#cropped-img-multi').attr('src');\r\n\t} else {\r\n\t\timage.src = $('#cropped-img-normal').attr('src');\r\n\t}\r\n\timage.onload = function() {\r\n\t\toutputContext.drawImage(image, 0, 0);\r\n\t};\r\n\r\n\tif (product == 'lips') {\r\n\t\tonLipChange(productid, screen);\r\n\t} else if (product == 'eyes') {\r\n\t\tonEyeChange(productid, eyeLook, screen);\r\n\t}\r\n\r\n\t$('.product-tryiton-container').removeClass('crop-screen').addClass('uploaded-image-screen');\r\n\twebcamStatus.attr('active-screen', 'uploaded-image-screen');\r\n\r\n\tvar posX = calculatedWidth * -1, toggle = true;\r\n\tuploadImageTimeInterval = setInterval(function () {\r\n\t\tif(!$('.product-tryiton-container').hasClass('uploaded-image-screen')) {\r\n\t\t\tclearInterval(uploadImageTimeInterval);\r\n\t\t}\r\n\r\n\t\tmemoryContext.scale(-1, 1);\r\n\t\tmemoryContext.drawImage(image, posX, 0);\r\n\r\n\t\tmode = webcamStatus.attr('mode');\r\n\t\tif (MODULE_LOADED && toggle) {\r\n\t\t\tif (mode == 'multi') {\r\n\t\t\t\tgiaranRunMultiProcess(memoryCanvas, outputCanvas);\r\n\t\t\t} else if (mode == 'split') {\r\n\t\t\t\tgiaranRunSplitProcess(memoryCanvas, outputCanvas, splitvarvalue);\r\n\t\t\t} else {\r\n\t\t\t\tgiaranRunProcess(memoryCanvas, outputCanvas);\r\n\t\t\t}\r\n\t\t\toutputContext.drawImage(outputCanvas, 0, 0);\r\n\t\t}\r\n\t}, 500);\r\n\r\n\t/*\r\n\t * Stop timer after 5s on default view to remove the lipstick/eyeliner flicker effect.\r\n\t * Timer continue on split/multi mode to apply the lipstick/eyeliner on slider drag and on quad change.\r\n\t */\r\n\tsetTimeout(function() {\r\n\t\tif (mode == 'normal') {\r\n\t\t\tclearInterval(uploadImageTimeInterval);\r\n\t\t}\r\n\t}, 5000);\r\n\r\n\tuserMediaLoading(true);\r\n\r\n\tif(tryOnContainer.hasClass('orientation-change-loader')) {\r\n\t\tsetTimeout(function() {\r\n\t\t\ttryOnContainer.removeClass('orientation-change-loader');\r\n\t\t}, 500);\r\n\t}\r\n}\r\n\r\nfunction cropImage(url) {\r\n\tvar basic = $('#crop-container'),\r\n\t\tcalculatedWidth = parseInt($('.videoCanvas-wrapper').outerWidth()),\r\n\t\tcalculatedHeight = parseInt($('.videoCanvas-wrapper').outerHeight()),\r\n\t\tcropWidth = calculatedWidth,\r\n\t\tcropHeight = calculatedHeight;\r\n\r\n\tif(mode == 'multi') {\r\n\t\tcalculatedWidth = parseInt($('#try-on-video').outerWidth());\r\n\t\tcalculatedHeight = parseInt($('#try-on-video').outerHeight());\r\n\t\tif(window.innerWidth > 768) {\r\n\t\t\tcropWidth = calculatedWidth;\r\n\t\t\tcropHeight = calculatedHeight;\r\n\t\t}\r\n\t}\r\n\r\n\tturnoffcamera();\r\n\r\n\tbasic\r\n\t.croppie('destroy')\r\n\t.width(calculatedWidth)\r\n\t.height(calculatedHeight)\r\n\t.croppie({\r\n\t\tviewport: {\r\n\t\t\twidth: cropWidth / 1.8,\r\n\t\t\theight: cropHeight / 1.8\r\n\t\t},\r\n\t\tenableExif: true\r\n\t}).croppie('bind', {\r\n\t\turl: url\r\n\t});\r\n\r\n\t$('#cropImageBtn').off().on('click', function (ev) {\r\n\t\tif (mode === 'multi' && !isMultiRetake) {\r\n\t\t\tif(window.innerWidth > 768) {\r\n\t\t\t\t$('.videoCanvas-wrapper, .multiVideo-overlay').css('height', $('.try-on-video').outerHeight() - $('.download-info').outerHeight());\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t/*\r\n\t\t * Variation change during the crop screen,\r\n\t\t * Camera will turn on, as the user has not reached the photo upload screen.\r\n\t\t * Hence, turning off the camera once the user crops the photo.\r\n\t\t */\r\n\t\tturnoffcamera();\r\n\r\n\t\tbasic.croppie('result', {\r\n\t\t\ttype: 'base64',\r\n\t\t\tformat: 'jpeg',\r\n\t\t\tsize: {width: cropWidth, height: cropHeight}\r\n\t\t}).then(function (resp) {\r\n\t\t\ttryOnContainer.addClass('js-loading');\r\n\r\n\t\t\tif(window.innerWidth <= 768) {\r\n\t\t\t\tif(mode == 'multi') {\r\n\t\t\t\t\t$('#cropped-img-multi').attr('src', resp);\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$('#cropped-img-normal').attr('src', resp);\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\t$('#cropped-img-multi, #cropped-img-normal').attr('src', resp);\r\n\t\t\t}\r\n\r\n\t\t\tclearInterval(uploadImageTimeInterval);\r\n\t\t\tdrawImageOnCanvas();\r\n\t\t});\r\n\t});\r\n}\r\n\r\nfunction retainImageUploadScreen() {\r\n\tvar activeScreen = webcamStatus.attr('active-screen');\r\n\r\n\tif(activeScreen == 'uploading-screen' || activeScreen == 'crop-screen' || (activeScreen == 'uploaded-image-screen' && window.innerWidth >= 768)) {\r\n\t\ttryOnContainer.addClass('js-loading');\r\n\r\n\t\t//reset cropped images.\r\n\t\t$('.giaranimagepath img:not(#uploaded-image)').attr('src', '');\r\n\r\n\t\tsetTimeout(function() {\r\n\t\t\ttryOnContainer.removeClass('uploaded-image-screen').addClass('crop-screen');\r\n\r\n\t\t\tcropImage($('#uploaded-image').attr('src'));\r\n\r\n\t\t\ttryOnContainer.removeClass('js-loading');\r\n\t\t},500);\r\n\t}\r\n}\r\n\r\n$(document).on('click', '#liveCamera, #uploadNewPhoto, #uploadPhoto', function() {\r\n\t$('.arTryOnBtnWrapper').removeClass('openMenu');\r\n\t$('.tryiton-controlers').removeClass('arOpenMenu');\r\n})\r\n.on('click', '.upload-image-link, #uploadNewPhoto, #uploadPhoto', function() {\r\n\t$('#loadButton').trigger('click');\r\n})\r\n.on('change', '#loadButton', function() {\r\n\tvar $this = this;\r\n\r\n\tif ($this.files && $this.files[0]) {\r\n\t\tif(this.files[0].type.indexOf('image') == -1) {\r\n\t\t\t$('#loadButton').val('');\r\n\t\t\talert(Resources.INVELID_TYPE);\r\n\t\t} else {\r\n\t\t\tturnoffcamera();\r\n\t\t\t$('#crop-container').croppie('destroy');\r\n\t\t\ttryOnContainer.removeClass('preview-screen live-camera uploaded-image-screen').addClass('uploading-screen');\r\n\t\t\twebcamStatus.attr('active-screen', 'uploading-screen');\r\n\t\t\timageUploadTimer = setTimeout(function() {\r\n\t\t\t\t//As soon as timer ends crop screen will be activated.\r\n\t\t\t\ttryOnContainer.addClass('crop-screen');\r\n\t\t\t\twebcamStatus.attr('active-screen', 'crop-screen');\r\n\r\n\t\t\t\t//reset cropped images src\r\n\t\t\t\t$('.giaranimagepath img').attr('src', '');\r\n\r\n\t\t\t\tvar reader = new FileReader();\r\n\t\t\t\treader.onload = function (e) {\r\n\t\t\t\t\t//On timer ends and after file upload, loader will be removed.\r\n\t\t\t\t\ttryOnContainer.removeClass('uploading-screen');\r\n\r\n\t\t\t\t\t$('#uploaded-image').attr('src', e.target.result);\r\n\t\r\n\t\t\t\t\tcropImage(e.target.result);\r\n\t\r\n\t\t\t\t\t$('#loadButton').val('');\r\n\t\t\t\t}\r\n\t\t\t\treader.readAsDataURL($this.files[0]);\r\n\t\t\t}, 6000);\r\n\t\t}\r\n\t}\r\n})\r\n.on('click', '.live-camera-link, .choose-a-shade', function() {\r\n\ttryOnContainer.removeClass('preview-screen uploaded-image-screen').addClass('live-camera');\r\n\twebcamStatus.attr('active-screen', 'live-camera');\r\n\t$('.arTryOnBtnWrapper').removeClass('openMenu');\r\n\t\r\n\tif(tryOnContainer.hasClass('live-camera')) {\r\n\t\tclickedliveCam = true;\r\n\t\tif($(this).hasClass(\"live-camera-link\")) {\r\n\t\t\tonSwatchChange();\r\n\t\t}\r\n\t\tif (product == 'lips') {\r\n\t\t\tonLipChange(productid, screen);\r\n\t\t} else if (product == 'eyes') {\r\n\t\t\tonEyeChange(productid, eyeLook, screen);\r\n\t\t}\r\n\t}\r\n})\r\n.on('click', '.try-it-on:not(.exitEnabled)', function () {\r\n\twelcomeMessageHandler();\r\n\tclickedliveCam = true;\r\n\tif ($('#giaranwasmpath').attr('data-loadedjs') == 0) {\r\n\t\t$('#giaranwasmpath').attr('data-loadedjs', '1')\r\n\t\tvar script = document.createElement(\"script\");\r\n\t\tscript.type = \"text/javascript\";\r\n\t\tscript.src = $('#giaranwasmpath').attr('data-giaranurl');\r\n\t\tdocument.getElementById(\"giaranwasmpath\").appendChild(script);\r\n\t}\r\n\tif ($('#webcam-status').attr('value') == 0) {\r\n\t\tcheckwebcam();\r\n\t\tif (permission) {\r\n\t\t\t$('#product-content').addClass('try-on-activate');\r\n\t\t\t$('.try-it-on').addClass('exitEnabled');\r\n\t\t\tcheckgiaranloaded();\r\n\t\t}\r\n\t\t$('body').addClass('giaran-body');\r\n\t}\r\n})\r\n/*\r\n * VR try on close handler.\r\n */\r\n.on('click', '.close-try-it-on, .try-it-on.exitEnabled', function () {\r\n\t$('#product-content').removeClass('try-on-activate');\r\n\ttryOnContainer.removeClass('welcome-screen preview-screen live-camera crop-screen uploading-screen uploaded-image-screen');\r\n\r\n\t//Stop image loader setTimeout execution on try on close.\r\n\tif(imageUploadTimer !== undefined) {\r\n\t\tclearTimeout(imageUploadTimer);\r\n\t}\r\n\t$('#loadButton').val('');\r\n\r\n\t//reset cropped images src\r\n\t$('.giaranimagepath img').attr('src', '');\r\n\r\n\tisViewSwitchedDuringDownload = false;\r\n\tclickedliveCam = false;\r\n\tif($(\"#tryon-countdown\").hasClass('show')) {\r\n\t\tisCloseDownload = true;\r\n\t}\r\n\tif (product == 'lips') {\r\n\t\tonLipChange('none', screen);\r\n\t} else if (product == 'eyes') {\r\n\t\tonEyeChange('none', eyeLook, screen);\r\n\t}\r\n\r\n\r\n\t$(\"#beforeAfter .img_placeHolder\").removeClass(\"active\");\r\n\tturnoffcamera();\r\n\twebcamStatus.attr('value', '0');\r\n\twebcamStatus.attr('active-screen', '');\r\n\twebcamStatus.attr('mode', 'normal');\r\n\t$('.multiVideo-overlay').removeClass('show').addClass('hide');\r\n\t$('.try-it-on .afterClick').removeClass('show').addClass('hide');\r\n\t$('.try-it-on').removeClass('exitEnabled');\r\n\t$(\".img-comp-overlay, .img-comp-slider\").removeClass('show').addClass('hide');\r\n\r\n\t// Reset split animation\r\n\tsplitAnimateCount = 0;\r\n\t$('.try-on-video').off('touchstart click');\r\n\t$('.img-comp-slider').off('touchstart mousedown');\r\n\tif($(\"#tryon-preview-controls\").hasClass('show')) {\r\n\t\t$(\"#tryon-preview-controls\").removeClass('show');\r\n\t}\r\n\tif($(\".tryItOn-user-functionality\").hasClass('hide')) {\r\n\t\t$(\".tryItOn-user-functionality\").removeClass('hide');\r\n\t}\r\n\tstopCamera = false;\r\n\tisMultiRetake = false; \r\n\twebcamStatus.attr(\"clicked\" , 0);\r\n\tif($(\".canvas-cancel\").hasClass('hideCanvasCancel')) {\r\n\t\t$(\".canvas-cancel\").removeClass('hideCanvasCancel');\r\n\t}\r\n\tif($(\".download-cancel\").hasClass('showDownloadCancel')) {\r\n\t\t$(\".download-cancel\").removeClass('showDownloadCancel');\r\n\t}\r\n\tif($(\".tryiton-swatch\").hasClass('hideSwatchMobile')){\r\n\t\t$(\".tryiton-swatch\").removeClass('hideSwatchMobile');\r\n\t}\r\n\tif($(\".multiVideo-overlay\").hasClass('remove-overlay')) {\r\n\t\t$(\".multiVideo-overlay\").removeClass('remove-overlay');\r\n\t}\r\n\r\n\tif(window.innerWidth < 769) {\r\n\t\tif($('button.addToBag').hasClass('productAdded')) {\r\n\t\t\twindow.location.href = Urls.cartShow;\r\n\t\t}\r\n\t}\r\n\tif($(\".addall-fav\").hasClass('show')) {\r\n\t\t$(\".addall-fav\").removeClass('show');\r\n\t}\r\n\tif($(\".add-fav\").hasClass('hide')) {\r\n\t\t$(\".add-fav\").removeClass('hide');\r\n\t}\r\n\t$('body').removeClass('giaran-body');\r\n})\r\n/*\r\n * VR try on default/normal view handler.\r\n */\r\n.on('click', '#normalView', function () {\r\n\tisViewSwitchedDuringDownload = false;\r\n\twebcamStatus.attr('mode', 'normal');\r\n\tcalculatedSize = calculateSize(document.querySelector('#videoElement'));\r\n\r\n\tif(window.innerWidth <= 768 && tryOnContainer.hasClass('uploaded-image-screen') && $('#cropped-img-normal').attr('src') == '') {\r\n\t\ttryOnContainer.removeClass('uploaded-image-screen').addClass('crop-screen');\r\n\t\tcropImage($('#uploaded-image').attr('src'));\r\n\t}\r\n\r\n\t$('.img-comp-overlay, .img-comp-slider').removeClass('show').addClass('hide');\r\n\t$('#beforeAfter .img_placeHolder').removeClass(\"active\");\r\n\t$('.multiVideo-overlay').removeClass('show').addClass('hide');\r\n\t$('.tryiton-controlers').removeClass('multi-view-active');\r\n\t$('#normalView').addClass('active').siblings().removeClass('active');\r\n\tif (product == 'lips') {\r\n\t\tonLipChange(productid, 0);\r\n\t} else if (product == 'eyes') {\r\n\t\tonEyeChange(productid, eyeLook, 0);\r\n\t}\r\n\t$('.download-info').removeClass('multi').addClass('normal');\r\n\tif($(\".addall-fav\").hasClass('show')) {\r\n\t\t$(\".addall-fav\").removeClass('show');\r\n\t}\r\n\tif($(\".add-fav\").hasClass('hide')) {\r\n\t\t$(\".add-fav\").removeClass('hide')\r\n\t}\r\n\tstockChecker();\r\n})\r\n/*\r\n * VR try on split/beforeAfter view handler.\r\n */\r\n.on('click', '#beforeAfter', function () {\r\n\tif(!isViewSwitchedDuringDownload) {\r\n\t\tsplitvarvalue = 50;\r\n\t} else {\r\n\t\tsplitvarvalue = preSplitvarvalue;\r\n\t}\r\n\r\n\twebcamStatus.attr(\"mode\", \"split\");\r\n\tcalculatedSize = calculateSize(document.querySelector(\"#videoElement\"));\r\n\r\n\tif(window.innerWidth <= 768 && tryOnContainer.hasClass('uploaded-image-screen') && $('#cropped-img-normal').attr('src') == '') {\r\n\t\ttryOnContainer.removeClass('uploaded-image-screen').addClass('crop-screen');\r\n\t\tcropImage($('#uploaded-image').attr('src'));\r\n\t}\r\n\r\n\t$(\".img-comp-overlay, .img-comp-slider\").removeClass('hide').addClass('show');\r\n\r\n\tif(!isViewSwitchedDuringDownload) {\r\n\t\tinitComparisons();\r\n\t}\r\n\tsplitArrowsAnimation();\r\n\r\n\tif (product == 'lips') {\r\n\t\tonLipChange(productid, 0);\r\n\t} else if (product == 'eyes') {\r\n\t\tonEyeChange(productid, eyeLook, 0);\r\n\t}\r\n\r\n\t$(\"#beforeAfter .img_placeHolder\").addClass(\"active\");\r\n\t$('.multiVideo-overlay').removeClass('show').addClass('hide');\r\n\t$('.tryiton-controlers').removeClass('multi-view-active');\r\n\t$('#beforeAfter').addClass('active').siblings().removeClass('active');\r\n\tisViewSwitchedDuringDownload = false;\r\n\t$('.download-info').removeClass('multi').addClass('normal');\r\n\tif($(\".addall-fav\").hasClass('show')) {\r\n\t\t$(\".addall-fav\").removeClass('show');\r\n\t}\r\n\tif($(\".add-fav\").hasClass('hide')) {\r\n\t\t$(\".add-fav\").removeClass('hide');\r\n\t}\r\n\tstockChecker();\r\n})\r\n/*\r\n * VR try on Multi/Quad view handler.\r\n */\r\n.on('click', '#multiSplit:not(.active)', function () {\r\n\tif(tryOnContainer.hasClass('uploaded-image-screen') && $('#cropped-img-multi').attr('src') !== '') {\r\n\t\ttryOnContainer.addClass('multi-view-loader')\r\n\t}\r\n\r\n\tcount = 4 ;\r\n\r\n\tresetMultiSplit();\r\n\r\n\tisViewSwitchedDuringDownload = false;\r\n\twebcamStatus.attr('mode', 'multi');\r\n\tcalculatedSize = calculateSize(document.querySelector('#videoElement'));\r\n\r\n\tif(window.innerWidth <= 768 && tryOnContainer.hasClass('uploaded-image-screen') && $('#cropped-img-multi').attr('src') == '') {\r\n\t\ttryOnContainer.removeClass('uploaded-image-screen').addClass('crop-screen');\r\n\t\tcropImage($('#uploaded-image').attr('src'));\r\n\t}\r\n\r\n\t$('.img-comp-overlay, .img-comp-slider').removeClass('show').addClass('hide');\r\n\t$('#beforeAfter .img_placeHolder').removeClass(\"active\");\r\n\t$('#multiSplit').addClass('active').siblings().removeClass('active');\r\n\t$('.tryiton-controlers').addClass('multi-view-active');\r\n\t$('.download-info').removeClass('normal').addClass('multi');\r\n\t$('.multiVideo-overlay').removeClass('hide').addClass('show');\r\n\r\n\t//Triggering first screen click to select it when multi view enabled.\r\n\t$('#multiView-screen-1').trigger('click');\r\n\tstockChecker();\r\n\r\n\t$(\".addall-fav\").addClass('show');\r\n\t$(\".add-fav\").addClass('hide');\r\n\r\n\tif(tryOnContainer.hasClass('multi-view-loader')) {\r\n\t\tsetTimeout(function() {tryOnContainer.removeClass('multi-view-loader')}, 500);\r\n\t}\r\n})\r\n/*\r\n * VR try on Multi/Quad view tap to select handler.\r\n */\r\n.on('touchstart click', '.multiView-screen', function (e) {\r\n\tscreen = $(this).attr('screen')-1;\r\n\tif($(this).parent().hasClass('remove-overlay')) {\r\n\t\te.preventDefault();\r\n\t}\r\n\telse {\r\n\t\t$(this).siblings('.multiView-screen').removeClass('active');\r\n\t\t$(this).addClass('active');\r\n\t\tif($(this).hasClass('color-applied')) {\r\n\t\t\tvar selectedColorcode = $('#selected-color').data('selectedcolorcode');\r\n\t\t\tvar quadrantColorCode = $(this).find('.color-name').data('selectedcolorcode');\r\n\t\t\tif(selectedColorcode !== quadrantColorCode) {\r\n\t\t\t\t$('.product-info li[data-selectedcolor=\"' + quadrantColorCode + '\"] .swatchanchor').trigger('click');\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\t$(this).addClass('color-applied');\r\n\t\t\tselectedShades[screen] = getColorShade();\r\n\t\t\t$(this).find('.color-code').html(selectedShades[screen]).css('visibility', 'visible');\r\n\r\n\t\t\tif (product == 'lips') {\r\n\t\t\t\tonLipChange(productid, screen);\r\n\t\t\t} else if (product == 'eyes') {\r\n\t\t\t\tonEyeChange(productid, eyeLook, screen);\r\n\t\t\t}\r\n\t\t}\r\n\t\t$('#multisplit').attr(\"target\", $(this).attr('screen'));\r\n\t\tmultisplit();\r\n\t}\r\n})\r\n/*\r\n * VR try on download handler.\r\n */\r\n.on('click', '.tryon-download', function () {\r\n\tif(tryOnContainer.hasClass('uploaded-image-screen')) {\r\n\t\tif($('#try-on-video').hasClass('arOpenMenu')) { \r\n\t\t\t$('#try-on-video').removeClass('arOpenMenu');\r\n\t\t} \r\n\t\tif($(\".tryiton-controlers\").hasClass('arOpenMenu')){ \r\n\t\t\t$(\".tryiton-controlers\").removeClass('arOpenMenu');\r\n\t\t} \r\n\t\t$(\".multiView-screen > span\").css('bottom','-2px');\r\n\t\t$('.arTryOnBtnWrapper').removeClass('openMenu');\r\n\t}\r\n\r\n\tif($(\".tryiton-swatch\").hasClass('hideSwatchMobile')){\r\n\t\t$(\".tryiton-swatch\").removeClass('hideSwatchMobile');\r\n\t}\r\n\r\n\t// Below code will switch to normal view for downloading the default jpg on split mode.\r\n\tif(webcamStatus.attr('mode') === 'split') {\r\n\t\tpreSplitvarvalue = splitvarvalue;\r\n\t\t$('#normalView').trigger('click');\r\n\t\t$('.arTryOnBtnWrapper').removeClass('openMenu');\r\n\t\tisViewSwitchedDuringDownload = true;\r\n\t\tisUploadShadeApplied = true;\r\n\t}\r\n\r\n\tif(tryOnContainer.hasClass('uploaded-image-screen')) {\r\n\t\tsetTimeout(function() {\r\n\t\t\tonDownloadClick();\r\n\t\t}, 4000);\r\n\t}\r\n\telse {\r\n\t\tonDownloadClick();\r\n\t}\r\n})\r\n.on('click' , '#canvasDownload', function(){\r\n\tif($('#try-on-video').hasClass('arOpenMenu')) { \r\n\t\t$('#try-on-video').removeClass('arOpenMenu');\r\n\t} \r\n\tif($(\".tryiton-controlers\").hasClass('arOpenMenu')){ \r\n\t\t$(\".tryiton-controlers\").removeClass('arOpenMenu');\r\n\t} \r\n\t$(\".multiView-screen > span\").css('bottom','-2px');\r\n\t$('.arTryOnBtnWrapper').removeClass('openMenu');\r\n\tisswatchChange = false;\r\n\t$(\".tryItOn-user-functionality\").addClass('hide');\r\n\t$(\".tryiton-swatch\").addClass('hideSwatchMobile');\r\n\t$(\".canvas-cancel\").addClass('hideCanvasCancel');\r\n\tcounter_timer = setInterval(timer(), 1000);\r\n\tcounter_timer = setInterval(timer, 1000);\r\n})\r\n.on('touchstart click' , '#tryon-retake' , function() {\r\n\tif(webcamStatus.attr('mode') == 'multi') {\r\n\t\tisMultiRetake = true;\r\n\t}\r\n\r\n\tif(!tryOnContainer.hasClass('uploaded-image-screen')) {\r\n\t\tonSwatchChange();\r\n\t}\r\n\r\n\t$(\"#tryon-preview-controls\").removeClass('show');\r\n\t$(\".download-cancel\").removeClass('showDownloadCancel');\r\n\tif(webcamStatus.attr('mode') == 'multi'){\r\n\t\t$(\".multiVideo-overlay\").removeClass(\"remove-overlay\");\r\n\t}\r\n\tisswatchChange = false;\r\n\tsetTimeout(function(){\r\n\t\tcounter_timer = setInterval(timer(), 1000);\r\n\t\tcounter_timer = setInterval(timer, 1000);\r\n\t} , 700)\r\n});\r\n\r\nvar isAndroidView = navigator.userAgent.toLowerCase().indexOf(\"android\") > -1;\r\n$(window).resize(function () {\r\n\tif ($(window).width() != width && checkGiaranMobileConf() == false && clickedliveCam && !isAndroidView) {\r\n\t\tvar video = document.querySelector(\"#videoElement\");\r\n\t\tcalculatedSize = calculateSize(video);\r\n\t\twidth = $(window).width();\r\n\t\tonResize();\r\n\t}\r\n}).on('load', function () {\r\n\ttriggerVirtualTryOn();\r\n}); \r\n\r\n\r\nwindow.giaranapp = {\r\n\tonSwatchChange: onSwatchChange,\r\n\tturnoffcamera: turnoffcamera\r\n};\n},{}],98:[function(require,module,exports){\n\"use strict\";\n\n// rawAsap provides everything we need except exception management.\nvar rawAsap = require(\"./raw\");\n// RawTasks are recycled to reduce GC churn.\nvar freeTasks = [];\n// We queue errors to ensure they are thrown in right order (FIFO).\n// Array-as-queue is good enough here, since we are just dealing with exceptions.\nvar pendingErrors = [];\nvar requestErrorThrow = rawAsap.makeRequestCallFromTimer(throwFirstError);\n\nfunction throwFirstError() {\n if (pendingErrors.length) {\n throw pendingErrors.shift();\n }\n}\n\n/**\n * Calls a task as soon as possible after returning, in its own event, with priority\n * over other events like animation, reflow, and repaint. An error thrown from an\n * event will not interrupt, nor even substantially slow down the processing of\n * other events, but will be rather postponed to a lower priority event.\n * @param {{call}} task A callable object, typically a function that takes no\n * arguments.\n */\nmodule.exports = asap;\nfunction asap(task) {\n var rawTask;\n if (freeTasks.length) {\n rawTask = freeTasks.pop();\n } else {\n rawTask = new RawTask();\n }\n rawTask.task = task;\n rawAsap(rawTask);\n}\n\n// We wrap tasks with recyclable task objects. A task object implements\n// `call`, just like a function.\nfunction RawTask() {\n this.task = null;\n}\n\n// The sole purpose of wrapping the task is to catch the exception and recycle\n// the task object after its single use.\nRawTask.prototype.call = function () {\n try {\n this.task.call();\n } catch (error) {\n if (asap.onerror) {\n // This hook exists purely for testing purposes.\n // Its name will be periodically randomized to break any code that\n // depends on its existence.\n asap.onerror(error);\n } else {\n // In a web browser, exceptions are not fatal. However, to avoid\n // slowing down the queue of pending tasks, we rethrow the error in a\n // lower priority turn.\n pendingErrors.push(error);\n requestErrorThrow();\n }\n } finally {\n this.task = null;\n freeTasks[freeTasks.length] = this;\n }\n};\n\n},{\"./raw\":99}],99:[function(require,module,exports){\n(function (global){(function (){\n\"use strict\";\n\n// Use the fastest means possible to execute a task in its own turn, with\n// priority over other events including IO, animation, reflow, and redraw\n// events in browsers.\n//\n// An exception thrown by a task will permanently interrupt the processing of\n// subsequent tasks. The higher level `asap` function ensures that if an\n// exception is thrown by a task, that the task queue will continue flushing as\n// soon as possible, but if you use `rawAsap` directly, you are responsible to\n// either ensure that no exceptions are thrown from your task, or to manually\n// call `rawAsap.requestFlush` if an exception is thrown.\nmodule.exports = rawAsap;\nfunction rawAsap(task) {\n if (!queue.length) {\n requestFlush();\n flushing = true;\n }\n // Equivalent to push, but avoids a function call.\n queue[queue.length] = task;\n}\n\nvar queue = [];\n// Once a flush has been requested, no further calls to `requestFlush` are\n// necessary until the next `flush` completes.\nvar flushing = false;\n// `requestFlush` is an implementation-specific method that attempts to kick\n// off a `flush` event as quickly as possible. `flush` will attempt to exhaust\n// the event queue before yielding to the browser's own event loop.\nvar requestFlush;\n// The position of the next task to execute in the task queue. This is\n// preserved between calls to `flush` so that it can be resumed if\n// a task throws an exception.\nvar index = 0;\n// If a task schedules additional tasks recursively, the task queue can grow\n// unbounded. To prevent memory exhaustion, the task queue will periodically\n// truncate already-completed tasks.\nvar capacity = 1024;\n\n// The flush function processes all tasks that have been scheduled with\n// `rawAsap` unless and until one of those tasks throws an exception.\n// If a task throws an exception, `flush` ensures that its state will remain\n// consistent and will resume where it left off when called again.\n// However, `flush` does not make any arrangements to be called again if an\n// exception is thrown.\nfunction flush() {\n while (index < queue.length) {\n var currentIndex = index;\n // Advance the index before calling the task. This ensures that we will\n // begin flushing on the next task the task throws an error.\n index = index + 1;\n queue[currentIndex].call();\n // Prevent leaking memory for long chains of recursive calls to `asap`.\n // If we call `asap` within tasks scheduled by `asap`, the queue will\n // grow, but to avoid an O(n) walk for every task we execute, we don't\n // shift tasks off the queue after they have been executed.\n // Instead, we periodically shift 1024 tasks off the queue.\n if (index > capacity) {\n // Manually shift all values starting at the index back to the\n // beginning of the queue.\n for (var scan = 0, newLength = queue.length - index; scan < newLength; scan++) {\n queue[scan] = queue[scan + index];\n }\n queue.length -= index;\n index = 0;\n }\n }\n queue.length = 0;\n index = 0;\n flushing = false;\n}\n\n// `requestFlush` is implemented using a strategy based on data collected from\n// every available SauceLabs Selenium web driver worker at time of writing.\n// https://docs.google.com/spreadsheets/d/1mG-5UYGup5qxGdEMWkhP6BWCz053NUb2E1QoUTU16uA/edit#gid=783724593\n\n// Safari 6 and 6.1 for desktop, iPad, and iPhone are the only browsers that\n// have WebKitMutationObserver but not un-prefixed MutationObserver.\n// Must use `global` or `self` instead of `window` to work in both frames and web\n// workers. `global` is a provision of Browserify, Mr, Mrs, or Mop.\n\n/* globals self */\nvar scope = typeof global !== \"undefined\" ? global : self;\nvar BrowserMutationObserver = scope.MutationObserver || scope.WebKitMutationObserver;\n\n// MutationObservers are desirable because they have high priority and work\n// reliably everywhere they are implemented.\n// They are implemented in all modern browsers.\n//\n// - Android 4-4.3\n// - Chrome 26-34\n// - Firefox 14-29\n// - Internet Explorer 11\n// - iPad Safari 6-7.1\n// - iPhone Safari 7-7.1\n// - Safari 6-7\nif (typeof BrowserMutationObserver === \"function\") {\n requestFlush = makeRequestCallFromMutationObserver(flush);\n\n// MessageChannels are desirable because they give direct access to the HTML\n// task queue, are implemented in Internet Explorer 10, Safari 5.0-1, and Opera\n// 11-12, and in web workers in many engines.\n// Although message channels yield to any queued rendering and IO tasks, they\n// would be better than imposing the 4ms delay of timers.\n// However, they do not work reliably in Internet Explorer or Safari.\n\n// Internet Explorer 10 is the only browser that has setImmediate but does\n// not have MutationObservers.\n// Although setImmediate yields to the browser's renderer, it would be\n// preferrable to falling back to setTimeout since it does not have\n// the minimum 4ms penalty.\n// Unfortunately there appears to be a bug in Internet Explorer 10 Mobile (and\n// Desktop to a lesser extent) that renders both setImmediate and\n// MessageChannel useless for the purposes of ASAP.\n// https://github.com/kriskowal/q/issues/396\n\n// Timers are implemented universally.\n// We fall back to timers in workers in most engines, and in foreground\n// contexts in the following browsers.\n// However, note that even this simple case requires nuances to operate in a\n// broad spectrum of browsers.\n//\n// - Firefox 3-13\n// - Internet Explorer 6-9\n// - iPad Safari 4.3\n// - Lynx 2.8.7\n} else {\n requestFlush = makeRequestCallFromTimer(flush);\n}\n\n// `requestFlush` requests that the high priority event queue be flushed as\n// soon as possible.\n// This is useful to prevent an error thrown in a task from stalling the event\n// queue if the exception handled by Node.js’s\n// `process.on(\"uncaughtException\")` or by a domain.\nrawAsap.requestFlush = requestFlush;\n\n// To request a high priority event, we induce a mutation observer by toggling\n// the text of a text node between \"1\" and \"-1\".\nfunction makeRequestCallFromMutationObserver(callback) {\n var toggle = 1;\n var observer = new BrowserMutationObserver(callback);\n var node = document.createTextNode(\"\");\n observer.observe(node, {characterData: true});\n return function requestCall() {\n toggle = -toggle;\n node.data = toggle;\n };\n}\n\n// The message channel technique was discovered by Malte Ubl and was the\n// original foundation for this library.\n// http://www.nonblocking.io/2011/06/windownexttick.html\n\n// Safari 6.0.5 (at least) intermittently fails to create message ports on a\n// page's first load. Thankfully, this version of Safari supports\n// MutationObservers, so we don't need to fall back in that case.\n\n// function makeRequestCallFromMessageChannel(callback) {\n// var channel = new MessageChannel();\n// channel.port1.onmessage = callback;\n// return function requestCall() {\n// channel.port2.postMessage(0);\n// };\n// }\n\n// For reasons explained above, we are also unable to use `setImmediate`\n// under any circumstances.\n// Even if we were, there is another bug in Internet Explorer 10.\n// It is not sufficient to assign `setImmediate` to `requestFlush` because\n// `setImmediate` must be called *by name* and therefore must be wrapped in a\n// closure.\n// Never forget.\n\n// function makeRequestCallFromSetImmediate(callback) {\n// return function requestCall() {\n// setImmediate(callback);\n// };\n// }\n\n// Safari 6.0 has a problem where timers will get lost while the user is\n// scrolling. This problem does not impact ASAP because Safari 6.0 supports\n// mutation observers, so that implementation is used instead.\n// However, if we ever elect to use timers in Safari, the prevalent work-around\n// is to add a scroll event listener that calls for a flush.\n\n// `setTimeout` does not call the passed callback if the delay is less than\n// approximately 7 in web workers in Firefox 8 through 18, and sometimes not\n// even then.\n\nfunction makeRequestCallFromTimer(callback) {\n return function requestCall() {\n // We dispatch a timeout with a specified delay of 0 for engines that\n // can reliably accommodate that request. This will usually be snapped\n // to a 4 milisecond delay, but once we're flushing, there's no delay\n // between events.\n var timeoutHandle = setTimeout(handleTimer, 0);\n // However, since this timer gets frequently dropped in Firefox\n // workers, we enlist an interval handle that will try to fire\n // an event 20 times per second until it succeeds.\n var intervalHandle = setInterval(handleTimer, 50);\n\n function handleTimer() {\n // Whichever timer succeeds will cancel both timers and\n // execute the callback.\n clearTimeout(timeoutHandle);\n clearInterval(intervalHandle);\n callback();\n }\n };\n}\n\n// This is for `asap.js` only.\n// Its name will be periodically randomized to break any code that depends on\n// its existence.\nrawAsap.makeRequestCallFromTimer = makeRequestCallFromTimer;\n\n// ASAP was originally a nextTick shim included in Q. This was factored out\n// into this ASAP package. It was later adapted to RSVP which made further\n// amendments. These decisions, particularly to marginalize MessageChannel and\n// to capture the MutationObserver implementation in a closure, were integrated\n// back into ASAP proper.\n// https://github.com/tildeio/rsvp.js/blob/cddf7232546a9cf858524b75cde6f9edf72620a7/lib/rsvp/asap.js\n\n}).call(this)}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n},{}],100:[function(require,module,exports){\n\n},{}],101:[function(require,module,exports){\n'use strict';\n\nvar bind = require('function-bind');\n\nvar $apply = require('./functionApply');\nvar $call = require('./functionCall');\nvar $reflectApply = require('./reflectApply');\n\n/** @type {import('./actualApply')} */\nmodule.exports = $reflectApply || bind.call($call, $apply);\n\n},{\"./functionApply\":103,\"./functionCall\":104,\"./reflectApply\":106,\"function-bind\":124}],102:[function(require,module,exports){\n'use strict';\n\nvar bind = require('function-bind');\nvar $apply = require('./functionApply');\nvar actualApply = require('./actualApply');\n\n/** @type {import('./applyBind')} */\nmodule.exports = function applyBind() {\n\treturn actualApply(bind, $apply, arguments);\n};\n\n},{\"./actualApply\":101,\"./functionApply\":103,\"function-bind\":124}],103:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./functionApply')} */\nmodule.exports = Function.prototype.apply;\n\n},{}],104:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./functionCall')} */\nmodule.exports = Function.prototype.call;\n\n},{}],105:[function(require,module,exports){\n'use strict';\n\nvar bind = require('function-bind');\nvar $TypeError = require('es-errors/type');\n\nvar $call = require('./functionCall');\nvar $actualApply = require('./actualApply');\n\n/** @type {import('.')} */\nmodule.exports = function callBindBasic(args) {\n\tif (args.length < 1 || typeof args[0] !== 'function') {\n\t\tthrow new $TypeError('a function is required');\n\t}\n\treturn $actualApply(bind, $call, args);\n};\n\n},{\"./actualApply\":101,\"./functionCall\":104,\"es-errors/type\":119,\"function-bind\":124}],106:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./reflectApply')} */\nmodule.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;\n\n},{}],107:[function(require,module,exports){\n'use strict';\n\nvar GetIntrinsic = require('get-intrinsic');\n\nvar callBind = require('./');\n\nvar $indexOf = callBind(GetIntrinsic('String.prototype.indexOf'));\n\nmodule.exports = function callBoundIntrinsic(name, allowMissing) {\n\tvar intrinsic = GetIntrinsic(name, !!allowMissing);\n\tif (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) {\n\t\treturn callBind(intrinsic);\n\t}\n\treturn intrinsic;\n};\n\n},{\"./\":108,\"get-intrinsic\":125}],108:[function(require,module,exports){\n'use strict';\n\nvar setFunctionLength = require('set-function-length');\n\nvar $defineProperty = require('es-define-property');\n\nvar callBindBasic = require('call-bind-apply-helpers');\nvar applyBind = require('call-bind-apply-helpers/applyBind');\n\nmodule.exports = function callBind(originalFunction) {\n\tvar func = callBindBasic(arguments);\n\tvar adjustedLength = originalFunction.length - (arguments.length - 1);\n\treturn setFunctionLength(\n\t\tfunc,\n\t\t1 + (adjustedLength > 0 ? adjustedLength : 0),\n\t\ttrue\n\t);\n};\n\nif ($defineProperty) {\n\t$defineProperty(module.exports, 'apply', { value: applyBind });\n} else {\n\tmodule.exports.apply = applyBind;\n}\n\n},{\"call-bind-apply-helpers\":105,\"call-bind-apply-helpers/applyBind\":102,\"es-define-property\":113,\"set-function-length\":155}],109:[function(require,module,exports){\n(function (setImmediate){(function (){\n/*************************\r\n * Croppie\r\n * Copyright 2019\r\n * Foliotek\r\n * Version: 2.6.5\r\n *************************/\r\n(function (root, factory) {\r\n if (typeof define === 'function' && define.amd) {\r\n // AMD. Register as an anonymous module.\r\n define(factory);\r\n } else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {\r\n // CommonJS\r\n module.exports = factory();\r\n } else {\r\n // Browser globals\r\n root.Croppie = factory();\r\n }\r\n}(typeof self !== 'undefined' ? self : this, function () {\r\n\r\n /* Polyfills */\r\n if (typeof Promise !== 'function') {\r\n /*! promise-polyfill 3.1.0 */\r\n !function(a){function b(a,b){return function(){a.apply(b,arguments)}}function c(a){if(\"object\"!==typeof this)throw new TypeError(\"Promises must be constructed via new\");if(\"function\"!==typeof a)throw new TypeError(\"not a function\");this._state=null,this._value=null,this._deferreds=[],i(a,b(e,this),b(f,this))}function d(a){var b=this;return null===this._state?void this._deferreds.push(a):void k(function(){var c=b._state?a.onFulfilled:a.onRejected;if(null===c)return void(b._state?a.resolve:a.reject)(b._value);var d;try{d=c(b._value)}catch(e){return void a.reject(e)}a.resolve(d)})}function e(a){try{if(a===this)throw new TypeError(\"A promise cannot be resolved with itself.\");if(a&&(\"object\"===typeof a||\"function\"===typeof a)){var c=a.then;if(\"function\"===typeof c)return void i(b(c,a),b(e,this),b(f,this))}this._state=!0,this._value=a,g.call(this)}catch(d){f.call(this,d)}}function f(a){this._state=!1,this._value=a,g.call(this)}function g(){for(var a=0,b=this._deferreds.length;b>a;a++)d.call(this,this._deferreds[a]);this._deferreds=null}function h(a,b,c,d){this.onFulfilled=\"function\"===typeof a?a:null,this.onRejected=\"function\"===typeof b?b:null,this.resolve=c,this.reject=d}function i(a,b,c){var d=!1;try{a(function(a){d||(d=!0,b(a))},function(a){d||(d=!0,c(a))})}catch(e){if(d)return;d=!0,c(e)}}var j=setTimeout,k=\"function\"===typeof setImmediate&&setImmediate||function(a){j(a,1)},l=Array.isArray||function(a){return\"[object Array]\"===Object.prototype.toString.call(a)};c.prototype[\"catch\"]=function(a){return this.then(null,a)},c.prototype.then=function(a,b){var e=this;return new c(function(c,f){d.call(e,new h(a,b,c,f))})},c.all=function(){var a=Array.prototype.slice.call(1===arguments.length&&l(arguments[0])?arguments[0]:arguments);return new c(function(b,c){function d(f,g){try{if(g&&(\"object\"===typeof g||\"function\"===typeof g)){var h=g.then;if(\"function\"===typeof h)return void h.call(g,function(a){d(f,a)},c)}a[f]=g,0===--e&&b(a)}catch(i){c(i)}}if(0===a.length)return b([]);for(var e=a.length,f=0;f<a.length;f++)d(f,a[f])})},c.resolve=function(a){return a&&\"object\"===typeof a&&a.constructor===c?a:new c(function(b){b(a)})},c.reject=function(a){return new c(function(b,c){c(a)})},c.race=function(a){return new c(function(b,c){for(var d=0,e=a.length;e>d;d++)a[d].then(b,c)})},c._setImmediateFn=function(a){k=a},\"undefined\"!==typeof module&&module.exports?module.exports=c:a.Promise||(a.Promise=c)}(this);\r\n }\r\n\r\n if (typeof window !== 'undefined' && typeof window.CustomEvent !== \"function\") {\r\n (function(){\r\n function CustomEvent ( event, params ) {\r\n params = params || { bubbles: false, cancelable: false, detail: undefined };\r\n var evt = document.createEvent( 'CustomEvent' );\r\n evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );\r\n return evt;\r\n }\r\n CustomEvent.prototype = window.Event.prototype;\r\n window.CustomEvent = CustomEvent;\r\n }());\r\n }\r\n\r\n if (typeof HTMLCanvasElement !== 'undefined' && !HTMLCanvasElement.prototype.toBlob) {\r\n Object.defineProperty(HTMLCanvasElement.prototype, 'toBlob', {\r\n value: function (callback, type, quality) {\r\n var binStr = atob( this.toDataURL(type, quality).split(',')[1] ),\r\n len = binStr.length,\r\n arr = new Uint8Array(len);\r\n\r\n for (var i=0; i<len; i++ ) {\r\n arr[i] = binStr.charCodeAt(i);\r\n }\r\n\r\n callback( new Blob( [arr], {type: type || 'image/png'} ) );\r\n }\r\n });\r\n }\r\n /* End Polyfills */\r\n\r\n var cssPrefixes = ['Webkit', 'Moz', 'ms'],\r\n emptyStyles = typeof document !== 'undefined' ? document.createElement('div').style : {},\r\n EXIF_NORM = [1,8,3,6],\r\n EXIF_FLIP = [2,7,4,5],\r\n CSS_TRANS_ORG,\r\n CSS_TRANSFORM,\r\n CSS_USERSELECT;\r\n\r\n function vendorPrefix(prop) {\r\n if (prop in emptyStyles) {\r\n return prop;\r\n }\r\n\r\n var capProp = prop[0].toUpperCase() + prop.slice(1),\r\n i = cssPrefixes.length;\r\n\r\n while (i--) {\r\n prop = cssPrefixes[i] + capProp;\r\n if (prop in emptyStyles) {\r\n return prop;\r\n }\r\n }\r\n }\r\n\r\n CSS_TRANSFORM = vendorPrefix('transform');\r\n CSS_TRANS_ORG = vendorPrefix('transformOrigin');\r\n CSS_USERSELECT = vendorPrefix('userSelect');\r\n\r\n function getExifOffset(ornt, rotate) {\r\n var arr = EXIF_NORM.indexOf(ornt) > -1 ? EXIF_NORM : EXIF_FLIP,\r\n index = arr.indexOf(ornt),\r\n offset = (rotate / 90) % arr.length;// 180 = 2%4 = 2 shift exif by 2 indexes\r\n\r\n return arr[(arr.length + index + (offset % arr.length)) % arr.length];\r\n }\r\n\r\n // Credits to : Andrew Dupont - http://andrewdupont.net/2009/08/28/deep-extending-objects-in-javascript/\r\n function deepExtend(destination, source) {\r\n destination = destination || {};\r\n for (var property in source) {\r\n if (source[property] && source[property].constructor && source[property].constructor === Object) {\r\n destination[property] = destination[property] || {};\r\n deepExtend(destination[property], source[property]);\r\n } else {\r\n destination[property] = source[property];\r\n }\r\n }\r\n return destination;\r\n }\r\n\r\n function clone(object) {\r\n return deepExtend({}, object);\r\n }\r\n\r\n function debounce(func, wait, immediate) {\r\n var timeout;\r\n return function () {\r\n var context = this, args = arguments;\r\n var later = function () {\r\n timeout = null;\r\n if (!immediate) func.apply(context, args);\r\n };\r\n var callNow = immediate && !timeout;\r\n clearTimeout(timeout);\r\n timeout = setTimeout(later, wait);\r\n if (callNow) func.apply(context, args);\r\n };\r\n }\r\n\r\n function dispatchChange(element) {\r\n if (\"createEvent\" in document) {\r\n var evt = document.createEvent(\"HTMLEvents\");\r\n evt.initEvent(\"change\", false, true);\r\n element.dispatchEvent(evt);\r\n }\r\n else {\r\n element.fireEvent(\"onchange\");\r\n }\r\n }\r\n\r\n //http://jsperf.com/vanilla-css\r\n function css(el, styles, val) {\r\n if (typeof (styles) === 'string') {\r\n var tmp = styles;\r\n styles = {};\r\n styles[tmp] = val;\r\n }\r\n\r\n for (var prop in styles) {\r\n el.style[prop] = styles[prop];\r\n }\r\n }\r\n\r\n function addClass(el, c) {\r\n if (el.classList) {\r\n el.classList.add(c);\r\n }\r\n else {\r\n el.className += ' ' + c;\r\n }\r\n }\r\n\r\n function removeClass(el, c) {\r\n if (el.classList) {\r\n el.classList.remove(c);\r\n }\r\n else {\r\n el.className = el.className.replace(c, '');\r\n }\r\n }\r\n\r\n function setAttributes(el, attrs) {\r\n for (var key in attrs) {\r\n el.setAttribute(key, attrs[key]);\r\n }\r\n }\r\n\r\n function num(v) {\r\n return parseInt(v, 10);\r\n }\r\n\r\n /* Utilities */\r\n function loadImage(src, doExif) {\r\n if (!src) { throw 'Source image missing'; }\r\n \r\n var img = new Image();\r\n img.style.opacity = '0';\r\n return new Promise(function (resolve, reject) {\r\n function _resolve() {\r\n img.style.opacity = '1';\r\n setTimeout(function () {\r\n resolve(img);\r\n }, 1);\r\n }\r\n\r\n img.removeAttribute('crossOrigin');\r\n if (src.match(/^https?:\\/\\/|^\\/\\//)) {\r\n img.setAttribute('crossOrigin', 'anonymous');\r\n }\r\n\r\n img.onload = function () {\r\n if (doExif) {\r\n EXIF.getData(img, function () {\r\n _resolve();\r\n });\r\n }\r\n else {\r\n _resolve();\r\n }\r\n };\r\n img.onerror = function (ev) {\r\n img.style.opacity = 1;\r\n setTimeout(function () {\r\n reject(ev);\r\n }, 1);\r\n };\r\n img.src = src;\r\n });\r\n }\r\n\r\n function naturalImageDimensions(img, ornt) {\r\n var w = img.naturalWidth;\r\n var h = img.naturalHeight;\r\n var orient = ornt || getExifOrientation(img);\r\n if (orient && orient >= 5) {\r\n var x= w;\r\n w = h;\r\n h = x;\r\n }\r\n return { width: w, height: h };\r\n }\r\n\r\n /* CSS Transform Prototype */\r\n var TRANSLATE_OPTS = {\r\n 'translate3d': {\r\n suffix: ', 0px'\r\n },\r\n 'translate': {\r\n suffix: ''\r\n }\r\n };\r\n var Transform = function (x, y, scale) {\r\n this.x = parseFloat(x);\r\n this.y = parseFloat(y);\r\n this.scale = parseFloat(scale);\r\n };\r\n\r\n Transform.parse = function (v) {\r\n if (v.style) {\r\n return Transform.parse(v.style[CSS_TRANSFORM]);\r\n }\r\n else if (v.indexOf('matrix') > -1 || v.indexOf('none') > -1) {\r\n return Transform.fromMatrix(v);\r\n }\r\n else {\r\n return Transform.fromString(v);\r\n }\r\n };\r\n\r\n Transform.fromMatrix = function (v) {\r\n var vals = v.substring(7).split(',');\r\n if (!vals.length || v === 'none') {\r\n vals = [1, 0, 0, 1, 0, 0];\r\n }\r\n\r\n return new Transform(num(vals[4]), num(vals[5]), parseFloat(vals[0]));\r\n };\r\n\r\n Transform.fromString = function (v) {\r\n var values = v.split(') '),\r\n translate = values[0].substring(Croppie.globals.translate.length + 1).split(','),\r\n scale = values.length > 1 ? values[1].substring(6) : 1,\r\n x = translate.length > 1 ? translate[0] : 0,\r\n y = translate.length > 1 ? translate[1] : 0;\r\n\r\n return new Transform(x, y, scale);\r\n };\r\n\r\n Transform.prototype.toString = function () {\r\n var suffix = TRANSLATE_OPTS[Croppie.globals.translate].suffix || '';\r\n return Croppie.globals.translate + '(' + this.x + 'px, ' + this.y + 'px' + suffix + ') scale(' + this.scale + ')';\r\n };\r\n\r\n var TransformOrigin = function (el) {\r\n if (!el || !el.style[CSS_TRANS_ORG]) {\r\n this.x = 0;\r\n this.y = 0;\r\n return;\r\n }\r\n var css = el.style[CSS_TRANS_ORG].split(' ');\r\n this.x = parseFloat(css[0]);\r\n this.y = parseFloat(css[1]);\r\n };\r\n\r\n TransformOrigin.prototype.toString = function () {\r\n return this.x + 'px ' + this.y + 'px';\r\n };\r\n\r\n function getExifOrientation (img) {\r\n return img.exifdata && img.exifdata.Orientation ? num(img.exifdata.Orientation) : 1;\r\n }\r\n\r\n function drawCanvas(canvas, img, orientation) {\r\n var width = img.width,\r\n height = img.height,\r\n ctx = canvas.getContext('2d');\r\n\r\n canvas.width = img.width;\r\n canvas.height = img.height;\r\n\r\n ctx.save();\r\n switch (orientation) {\r\n case 2:\r\n ctx.translate(width, 0);\r\n ctx.scale(-1, 1);\r\n break;\r\n\r\n case 3:\r\n ctx.translate(width, height);\r\n ctx.rotate(180*Math.PI/180);\r\n break;\r\n\r\n case 4:\r\n ctx.translate(0, height);\r\n ctx.scale(1, -1);\r\n break;\r\n\r\n case 5:\r\n canvas.width = height;\r\n canvas.height = width;\r\n ctx.rotate(90*Math.PI/180);\r\n ctx.scale(1, -1);\r\n break;\r\n\r\n case 6:\r\n canvas.width = height;\r\n canvas.height = width;\r\n ctx.rotate(90*Math.PI/180);\r\n ctx.translate(0, -height);\r\n break;\r\n\r\n case 7:\r\n canvas.width = height;\r\n canvas.height = width;\r\n ctx.rotate(-90*Math.PI/180);\r\n ctx.translate(-width, height);\r\n ctx.scale(1, -1);\r\n break;\r\n\r\n case 8:\r\n canvas.width = height;\r\n canvas.height = width;\r\n ctx.translate(0, width);\r\n ctx.rotate(-90*Math.PI/180);\r\n break;\r\n }\r\n ctx.drawImage(img, 0,0, width, height);\r\n ctx.restore();\r\n }\r\n\r\n /* Private Methods */\r\n function _create() {\r\n var self = this,\r\n contClass = 'croppie-container',\r\n customViewportClass = self.options.viewport.type ? 'cr-vp-' + self.options.viewport.type : null,\r\n boundary, img, viewport, overlay, bw, bh;\r\n\r\n self.options.useCanvas = self.options.enableOrientation || _hasExif.call(self);\r\n // Properties on class\r\n self.data = {};\r\n self.elements = {};\r\n\r\n boundary = self.elements.boundary = document.createElement('div');\r\n viewport = self.elements.viewport = document.createElement('div');\r\n img = self.elements.img = document.createElement('img');\r\n overlay = self.elements.overlay = document.createElement('div');\r\n\r\n if (self.options.useCanvas) {\r\n self.elements.canvas = document.createElement('canvas');\r\n self.elements.preview = self.elements.canvas;\r\n }\r\n else {\r\n self.elements.preview = img;\r\n }\r\n\r\n addClass(boundary, 'cr-boundary');\r\n boundary.setAttribute('aria-dropeffect', 'none');\r\n bw = self.options.boundary.width;\r\n bh = self.options.boundary.height;\r\n css(boundary, {\r\n width: (bw + (isNaN(bw) ? '' : 'px')),\r\n height: (bh + (isNaN(bh) ? '' : 'px'))\r\n });\r\n\r\n addClass(viewport, 'cr-viewport');\r\n if (customViewportClass) {\r\n addClass(viewport, customViewportClass);\r\n }\r\n css(viewport, {\r\n width: self.options.viewport.width + 'px',\r\n height: self.options.viewport.height + 'px'\r\n });\r\n viewport.setAttribute('tabindex', 0);\r\n\r\n addClass(self.elements.preview, 'cr-image');\r\n setAttributes(self.elements.preview, { 'alt': 'preview', 'aria-grabbed': 'false' });\r\n addClass(overlay, 'cr-overlay');\r\n\r\n self.element.appendChild(boundary);\r\n boundary.appendChild(self.elements.preview);\r\n boundary.appendChild(viewport);\r\n boundary.appendChild(overlay);\r\n\r\n addClass(self.element, contClass);\r\n if (self.options.customClass) {\r\n addClass(self.element, self.options.customClass);\r\n }\r\n\r\n _initDraggable.call(this);\r\n\r\n if (self.options.enableZoom) {\r\n _initializeZoom.call(self);\r\n }\r\n\r\n // if (self.options.enableOrientation) {\r\n // _initRotationControls.call(self);\r\n // }\r\n\r\n if (self.options.enableResize) {\r\n _initializeResize.call(self);\r\n }\r\n }\r\n\r\n // function _initRotationControls () {\r\n // var self = this,\r\n // wrap, btnLeft, btnRight, iLeft, iRight;\r\n\r\n // wrap = document.createElement('div');\r\n // self.elements.orientationBtnLeft = btnLeft = document.createElement('button');\r\n // self.elements.orientationBtnRight = btnRight = document.createElement('button');\r\n\r\n // wrap.appendChild(btnLeft);\r\n // wrap.appendChild(btnRight);\r\n\r\n // iLeft = document.createElement('i');\r\n // iRight = document.createElement('i');\r\n // btnLeft.appendChild(iLeft);\r\n // btnRight.appendChild(iRight);\r\n\r\n // addClass(wrap, 'cr-rotate-controls');\r\n // addClass(btnLeft, 'cr-rotate-l');\r\n // addClass(btnRight, 'cr-rotate-r');\r\n\r\n // self.elements.boundary.appendChild(wrap);\r\n\r\n // btnLeft.addEventListener('click', function () {\r\n // self.rotate(-90);\r\n // });\r\n // btnRight.addEventListener('click', function () {\r\n // self.rotate(90);\r\n // });\r\n // }\r\n\r\n function _hasExif() {\r\n return this.options.enableExif && window.EXIF;\r\n }\r\n\r\n function _initializeResize () {\r\n var self = this;\r\n var wrap = document.createElement('div');\r\n var isDragging = false;\r\n var direction;\r\n var originalX;\r\n var originalY;\r\n var minSize = 50;\r\n var maxWidth;\r\n var maxHeight;\r\n var vr;\r\n var hr;\r\n\r\n addClass(wrap, 'cr-resizer');\r\n css(wrap, {\r\n width: this.options.viewport.width + 'px',\r\n height: this.options.viewport.height + 'px'\r\n });\r\n\r\n if (this.options.resizeControls.height) {\r\n vr = document.createElement('div');\r\n addClass(vr, 'cr-resizer-vertical');\r\n wrap.appendChild(vr);\r\n }\r\n\r\n if (this.options.resizeControls.width) {\r\n hr = document.createElement('div');\r\n addClass(hr, 'cr-resizer-horisontal');\r\n wrap.appendChild(hr);\r\n }\r\n\r\n function mouseDown(ev) {\r\n if (ev.button !== undefined && ev.button !== 0) return;\r\n\r\n ev.preventDefault();\r\n if (isDragging) {\r\n return;\r\n }\r\n\r\n var overlayRect = self.elements.overlay.getBoundingClientRect();\r\n\r\n isDragging = true;\r\n originalX = ev.pageX;\r\n originalY = ev.pageY;\r\n direction = ev.currentTarget.className.indexOf('vertical') !== -1 ? 'v' : 'h';\r\n maxWidth = overlayRect.width;\r\n maxHeight = overlayRect.height;\r\n\r\n if (ev.touches) {\r\n var touches = ev.touches[0];\r\n originalX = touches.pageX;\r\n originalY = touches.pageY;\r\n }\r\n\r\n window.addEventListener('mousemove', mouseMove);\r\n window.addEventListener('touchmove', mouseMove);\r\n window.addEventListener('mouseup', mouseUp);\r\n window.addEventListener('touchend', mouseUp);\r\n document.body.style[CSS_USERSELECT] = 'none';\r\n }\r\n\r\n function mouseMove(ev) {\r\n var pageX = ev.pageX;\r\n var pageY = ev.pageY;\r\n\r\n ev.preventDefault();\r\n\r\n if (ev.touches) {\r\n var touches = ev.touches[0];\r\n pageX = touches.pageX;\r\n pageY = touches.pageY;\r\n }\r\n\r\n var deltaX = pageX - originalX;\r\n var deltaY = pageY - originalY;\r\n var newHeight = self.options.viewport.height + deltaY;\r\n var newWidth = self.options.viewport.width + deltaX;\r\n\r\n if (direction === 'v' && newHeight >= minSize && newHeight <= maxHeight) {\r\n css(wrap, {\r\n height: newHeight + 'px'\r\n });\r\n\r\n self.options.boundary.height += deltaY;\r\n css(self.elements.boundary, {\r\n height: self.options.boundary.height + 'px'\r\n });\r\n\r\n self.options.viewport.height += deltaY;\r\n css(self.elements.viewport, {\r\n height: self.options.viewport.height + 'px'\r\n });\r\n }\r\n else if (direction === 'h' && newWidth >= minSize && newWidth <= maxWidth) {\r\n css(wrap, {\r\n width: newWidth + 'px'\r\n });\r\n\r\n self.options.boundary.width += deltaX;\r\n css(self.elements.boundary, {\r\n width: self.options.boundary.width + 'px'\r\n });\r\n\r\n self.options.viewport.width += deltaX;\r\n css(self.elements.viewport, {\r\n width: self.options.viewport.width + 'px'\r\n });\r\n }\r\n\r\n _updateOverlay.call(self);\r\n _updateZoomLimits.call(self);\r\n _updateCenterPoint.call(self);\r\n _triggerUpdate.call(self);\r\n originalY = pageY;\r\n originalX = pageX;\r\n }\r\n\r\n function mouseUp() {\r\n isDragging = false;\r\n window.removeEventListener('mousemove', mouseMove);\r\n window.removeEventListener('touchmove', mouseMove);\r\n window.removeEventListener('mouseup', mouseUp);\r\n window.removeEventListener('touchend', mouseUp);\r\n document.body.style[CSS_USERSELECT] = '';\r\n }\r\n\r\n if (vr) {\r\n vr.addEventListener('mousedown', mouseDown);\r\n vr.addEventListener('touchstart', mouseDown);\r\n }\r\n\r\n if (hr) {\r\n hr.addEventListener('mousedown', mouseDown);\r\n hr.addEventListener('touchstart', mouseDown);\r\n }\r\n\r\n this.elements.boundary.appendChild(wrap);\r\n }\r\n\r\n function _setZoomerVal(v) {\r\n if (this.options.enableZoom) {\r\n var z = this.elements.zoomer,\r\n val = fix(v, 4);\r\n\r\n z.value = Math.max(parseFloat(z.min), Math.min(parseFloat(z.max), val)).toString();\r\n }\r\n }\r\n\r\n function _initializeZoom() {\r\n var self = this,\r\n wrap = self.elements.zoomerWrap = document.createElement('div'),\r\n zoomer = self.elements.zoomer = document.createElement('input');\r\n\r\n addClass(wrap, 'cr-slider-wrap');\r\n addClass(zoomer, 'cr-slider');\r\n zoomer.type = 'range';\r\n zoomer.step = '0.0001';\r\n zoomer.value = '1';\r\n zoomer.style.display = self.options.showZoomer ? '' : 'none';\r\n zoomer.setAttribute('aria-label', 'zoom');\r\n\r\n self.element.appendChild(wrap);\r\n wrap.appendChild(zoomer);\r\n\r\n self._currentZoom = 1;\r\n\r\n function change() {\r\n _onZoom.call(self, {\r\n value: parseFloat(zoomer.value),\r\n origin: new TransformOrigin(self.elements.preview),\r\n viewportRect: self.elements.viewport.getBoundingClientRect(),\r\n transform: Transform.parse(self.elements.preview)\r\n });\r\n }\r\n\r\n function scroll(ev) {\r\n var delta, targetZoom;\r\n\r\n if(self.options.mouseWheelZoom === 'ctrl' && ev.ctrlKey !== true){\r\n return 0;\r\n } else if (ev.wheelDelta) {\r\n delta = ev.wheelDelta / 1200; //wheelDelta min: -120 max: 120 // max x 10 x 2\r\n } else if (ev.deltaY) {\r\n delta = ev.deltaY / 1060; //deltaY min: -53 max: 53 // max x 10 x 2\r\n } else if (ev.detail) {\r\n delta = ev.detail / -60; //delta min: -3 max: 3 // max x 10 x 2\r\n } else {\r\n delta = 0;\r\n }\r\n\r\n targetZoom = self._currentZoom + (delta * self._currentZoom);\r\n\r\n ev.preventDefault();\r\n _setZoomerVal.call(self, targetZoom);\r\n change.call(self);\r\n }\r\n\r\n self.elements.zoomer.addEventListener('input', change);// this is being fired twice on keypress\r\n self.elements.zoomer.addEventListener('change', change);\r\n\r\n if (self.options.mouseWheelZoom) {\r\n self.elements.boundary.addEventListener('mousewheel', scroll);\r\n self.elements.boundary.addEventListener('DOMMouseScroll', scroll);\r\n }\r\n }\r\n\r\n function _onZoom(ui) {\r\n var self = this,\r\n transform = ui ? ui.transform : Transform.parse(self.elements.preview),\r\n vpRect = ui ? ui.viewportRect : self.elements.viewport.getBoundingClientRect(),\r\n origin = ui ? ui.origin : new TransformOrigin(self.elements.preview);\r\n\r\n function applyCss() {\r\n var transCss = {};\r\n transCss[CSS_TRANSFORM] = transform.toString();\r\n transCss[CSS_TRANS_ORG] = origin.toString();\r\n css(self.elements.preview, transCss);\r\n }\r\n\r\n self._currentZoom = ui ? ui.value : self._currentZoom;\r\n transform.scale = self._currentZoom;\r\n self.elements.zoomer.setAttribute('aria-valuenow', self._currentZoom);\r\n applyCss();\r\n\r\n if (self.options.enforceBoundary) {\r\n var boundaries = _getVirtualBoundaries.call(self, vpRect),\r\n transBoundaries = boundaries.translate,\r\n oBoundaries = boundaries.origin;\r\n\r\n if (transform.x >= transBoundaries.maxX) {\r\n origin.x = oBoundaries.minX;\r\n transform.x = transBoundaries.maxX;\r\n }\r\n\r\n if (transform.x <= transBoundaries.minX) {\r\n origin.x = oBoundaries.maxX;\r\n transform.x = transBoundaries.minX;\r\n }\r\n\r\n if (transform.y >= transBoundaries.maxY) {\r\n origin.y = oBoundaries.minY;\r\n transform.y = transBoundaries.maxY;\r\n }\r\n\r\n if (transform.y <= transBoundaries.minY) {\r\n origin.y = oBoundaries.maxY;\r\n transform.y = transBoundaries.minY;\r\n }\r\n }\r\n applyCss();\r\n _debouncedOverlay.call(self);\r\n _triggerUpdate.call(self);\r\n }\r\n\r\n function _getVirtualBoundaries(viewport) {\r\n var self = this,\r\n scale = self._currentZoom,\r\n vpWidth = viewport.width,\r\n vpHeight = viewport.height,\r\n centerFromBoundaryX = self.elements.boundary.clientWidth / 2,\r\n centerFromBoundaryY = self.elements.boundary.clientHeight / 2,\r\n imgRect = self.elements.preview.getBoundingClientRect(),\r\n curImgWidth = imgRect.width,\r\n curImgHeight = imgRect.height,\r\n halfWidth = vpWidth / 2,\r\n halfHeight = vpHeight / 2;\r\n\r\n var maxX = ((halfWidth / scale) - centerFromBoundaryX) * -1;\r\n var minX = maxX - ((curImgWidth * (1 / scale)) - (vpWidth * (1 / scale)));\r\n\r\n var maxY = ((halfHeight / scale) - centerFromBoundaryY) * -1;\r\n var minY = maxY - ((curImgHeight * (1 / scale)) - (vpHeight * (1 / scale)));\r\n\r\n var originMinX = (1 / scale) * halfWidth;\r\n var originMaxX = (curImgWidth * (1 / scale)) - originMinX;\r\n\r\n var originMinY = (1 / scale) * halfHeight;\r\n var originMaxY = (curImgHeight * (1 / scale)) - originMinY;\r\n\r\n return {\r\n translate: {\r\n maxX: maxX,\r\n minX: minX,\r\n maxY: maxY,\r\n minY: minY\r\n },\r\n origin: {\r\n maxX: originMaxX,\r\n minX: originMinX,\r\n maxY: originMaxY,\r\n minY: originMinY\r\n }\r\n };\r\n }\r\n\r\n function _updateCenterPoint(rotate) {\r\n var self = this,\r\n scale = self._currentZoom,\r\n data = self.elements.preview.getBoundingClientRect(),\r\n vpData = self.elements.viewport.getBoundingClientRect(),\r\n transform = Transform.parse(self.elements.preview.style[CSS_TRANSFORM]),\r\n pc = new TransformOrigin(self.elements.preview),\r\n top = (vpData.top - data.top) + (vpData.height / 2),\r\n left = (vpData.left - data.left) + (vpData.width / 2),\r\n center = {},\r\n adj = {};\r\n\r\n if (rotate) {\r\n var cx = pc.x;\r\n var cy = pc.y;\r\n var tx = transform.x;\r\n var ty = transform.y;\r\n\r\n center.y = cx;\r\n center.x = cy;\r\n transform.y = tx;\r\n transform.x = ty;\r\n }\r\n else {\r\n center.y = top / scale;\r\n center.x = left / scale;\r\n\r\n adj.y = (center.y - pc.y) * (1 - scale);\r\n adj.x = (center.x - pc.x) * (1 - scale);\r\n\r\n transform.x -= adj.x;\r\n transform.y -= adj.y;\r\n }\r\n\r\n var newCss = {};\r\n newCss[CSS_TRANS_ORG] = center.x + 'px ' + center.y + 'px';\r\n newCss[CSS_TRANSFORM] = transform.toString();\r\n css(self.elements.preview, newCss);\r\n }\r\n\r\n function _initDraggable() {\r\n var self = this,\r\n isDragging = false,\r\n originalX,\r\n originalY,\r\n originalDistance,\r\n vpRect,\r\n transform;\r\n\r\n function assignTransformCoordinates(deltaX, deltaY) {\r\n var imgRect = self.elements.preview.getBoundingClientRect(),\r\n top = transform.y + deltaY,\r\n left = transform.x + deltaX;\r\n\r\n if (self.options.enforceBoundary) {\r\n if (vpRect.top > imgRect.top + deltaY && vpRect.bottom < imgRect.bottom + deltaY) {\r\n transform.y = top;\r\n }\r\n\r\n if (vpRect.left > imgRect.left + deltaX && vpRect.right < imgRect.right + deltaX) {\r\n transform.x = left;\r\n }\r\n }\r\n else {\r\n transform.y = top;\r\n transform.x = left;\r\n }\r\n }\r\n\r\n function toggleGrabState(isDragging) {\r\n self.elements.preview.setAttribute('aria-grabbed', isDragging);\r\n self.elements.boundary.setAttribute('aria-dropeffect', isDragging? 'move': 'none');\r\n }\r\n\r\n function keyDown(ev) {\r\n var LEFT_ARROW = 37,\r\n UP_ARROW = 38,\r\n RIGHT_ARROW = 39,\r\n DOWN_ARROW = 40;\r\n\r\n if (ev.shiftKey && (ev.keyCode === UP_ARROW || ev.keyCode === DOWN_ARROW)) {\r\n var zoom;\r\n if (ev.keyCode === UP_ARROW) {\r\n zoom = parseFloat(self.elements.zoomer.value) + parseFloat(self.elements.zoomer.step)\r\n }\r\n else {\r\n zoom = parseFloat(self.elements.zoomer.value) - parseFloat(self.elements.zoomer.step)\r\n }\r\n self.setZoom(zoom);\r\n }\r\n else if (self.options.enableKeyMovement && (ev.keyCode >= 37 && ev.keyCode <= 40)) {\r\n ev.preventDefault();\r\n var movement = parseKeyDown(ev.keyCode);\r\n\r\n transform = Transform.parse(self.elements.preview);\r\n document.body.style[CSS_USERSELECT] = 'none';\r\n vpRect = self.elements.viewport.getBoundingClientRect();\r\n keyMove(movement);\r\n }\r\n\r\n function parseKeyDown(key) {\r\n switch (key) {\r\n case LEFT_ARROW:\r\n return [1, 0];\r\n case UP_ARROW:\r\n return [0, 1];\r\n case RIGHT_ARROW:\r\n return [-1, 0];\r\n case DOWN_ARROW:\r\n return [0, -1];\r\n }\r\n }\r\n }\r\n\r\n function keyMove(movement) {\r\n var deltaX = movement[0],\r\n deltaY = movement[1],\r\n newCss = {};\r\n\r\n assignTransformCoordinates(deltaX, deltaY);\r\n\r\n newCss[CSS_TRANSFORM] = transform.toString();\r\n css(self.elements.preview, newCss);\r\n _updateOverlay.call(self);\r\n document.body.style[CSS_USERSELECT] = '';\r\n _updateCenterPoint.call(self);\r\n _triggerUpdate.call(self);\r\n originalDistance = 0;\r\n }\r\n\r\n function mouseDown(ev) {\r\n if (ev.button !== undefined && ev.button !== 0) return;\r\n\r\n ev.preventDefault();\r\n if (isDragging) return;\r\n isDragging = true;\r\n originalX = ev.pageX;\r\n originalY = ev.pageY;\r\n\r\n if (ev.touches) {\r\n var touches = ev.touches[0];\r\n originalX = touches.pageX;\r\n originalY = touches.pageY;\r\n }\r\n toggleGrabState(isDragging);\r\n transform = Transform.parse(self.elements.preview);\r\n window.addEventListener('mousemove', mouseMove);\r\n window.addEventListener('touchmove', mouseMove);\r\n window.addEventListener('mouseup', mouseUp);\r\n window.addEventListener('touchend', mouseUp);\r\n document.body.style[CSS_USERSELECT] = 'none';\r\n vpRect = self.elements.viewport.getBoundingClientRect();\r\n }\r\n\r\n function mouseMove(ev) {\r\n ev.preventDefault();\r\n var pageX = ev.pageX,\r\n pageY = ev.pageY;\r\n\r\n if (ev.touches) {\r\n var touches = ev.touches[0];\r\n pageX = touches.pageX;\r\n pageY = touches.pageY;\r\n }\r\n\r\n var deltaX = pageX - originalX,\r\n deltaY = pageY - originalY,\r\n newCss = {};\r\n\r\n if (ev.type === 'touchmove') {\r\n if (ev.touches.length > 1) {\r\n var touch1 = ev.touches[0];\r\n var touch2 = ev.touches[1];\r\n var dist = Math.sqrt((touch1.pageX - touch2.pageX) * (touch1.pageX - touch2.pageX) + (touch1.pageY - touch2.pageY) * (touch1.pageY - touch2.pageY));\r\n\r\n if (!originalDistance) {\r\n originalDistance = dist / self._currentZoom;\r\n }\r\n\r\n var scale = dist / originalDistance;\r\n\r\n _setZoomerVal.call(self, scale);\r\n dispatchChange(self.elements.zoomer);\r\n return;\r\n }\r\n }\r\n\r\n assignTransformCoordinates(deltaX, deltaY);\r\n\r\n newCss[CSS_TRANSFORM] = transform.toString();\r\n css(self.elements.preview, newCss);\r\n _updateOverlay.call(self);\r\n originalY = pageY;\r\n originalX = pageX;\r\n }\r\n\r\n function mouseUp() {\r\n isDragging = false;\r\n toggleGrabState(isDragging);\r\n window.removeEventListener('mousemove', mouseMove);\r\n window.removeEventListener('touchmove', mouseMove);\r\n window.removeEventListener('mouseup', mouseUp);\r\n window.removeEventListener('touchend', mouseUp);\r\n document.body.style[CSS_USERSELECT] = '';\r\n _updateCenterPoint.call(self);\r\n _triggerUpdate.call(self);\r\n originalDistance = 0;\r\n }\r\n\r\n self.elements.overlay.addEventListener('mousedown', mouseDown);\r\n self.elements.viewport.addEventListener('keydown', keyDown);\r\n self.elements.overlay.addEventListener('touchstart', mouseDown);\r\n }\r\n\r\n function _updateOverlay() {\r\n if (!this.elements) return; // since this is debounced, it can be fired after destroy\r\n var self = this,\r\n boundRect = self.elements.boundary.getBoundingClientRect(),\r\n imgData = self.elements.preview.getBoundingClientRect();\r\n\r\n css(self.elements.overlay, {\r\n width: imgData.width + 'px',\r\n height: imgData.height + 'px',\r\n top: (imgData.top - boundRect.top) + 'px',\r\n left: (imgData.left - boundRect.left) + 'px'\r\n });\r\n }\r\n var _debouncedOverlay = debounce(_updateOverlay, 500);\r\n\r\n function _triggerUpdate() {\r\n var self = this,\r\n data = self.get();\r\n\r\n if (!_isVisible.call(self)) {\r\n return;\r\n }\r\n\r\n self.options.update.call(self, data);\r\n if (self.$ && typeof Prototype === 'undefined') {\r\n self.$(self.element).trigger('update.croppie', data);\r\n }\r\n else {\r\n var ev;\r\n if (window.CustomEvent) {\r\n ev = new CustomEvent('update', { detail: data });\r\n } else {\r\n ev = document.createEvent('CustomEvent');\r\n ev.initCustomEvent('update', true, true, data);\r\n }\r\n\r\n self.element.dispatchEvent(ev);\r\n }\r\n }\r\n\r\n function _isVisible() {\r\n return this.elements.preview.offsetHeight > 0 && this.elements.preview.offsetWidth > 0;\r\n }\r\n\r\n function _updatePropertiesFromImage() {\r\n var self = this,\r\n initialZoom = 1,\r\n cssReset = {},\r\n img = self.elements.preview,\r\n imgData,\r\n transformReset = new Transform(0, 0, initialZoom),\r\n originReset = new TransformOrigin(),\r\n isVisible = _isVisible.call(self);\r\n\r\n if (!isVisible || self.data.bound) {// if the croppie isn't visible or it doesn't need binding\r\n return;\r\n }\r\n\r\n self.data.bound = true;\r\n cssReset[CSS_TRANSFORM] = transformReset.toString();\r\n cssReset[CSS_TRANS_ORG] = originReset.toString();\r\n cssReset['opacity'] = 1;\r\n css(img, cssReset);\r\n\r\n imgData = self.elements.preview.getBoundingClientRect();\r\n\r\n self._originalImageWidth = imgData.width;\r\n self._originalImageHeight = imgData.height;\r\n self.data.orientation = _hasExif.call(self) ? getExifOrientation(self.elements.img) : self.data.orientation;\r\n\r\n if (self.options.enableZoom) {\r\n _updateZoomLimits.call(self, true);\r\n }\r\n else {\r\n self._currentZoom = initialZoom;\r\n }\r\n\r\n transformReset.scale = self._currentZoom;\r\n cssReset[CSS_TRANSFORM] = transformReset.toString();\r\n css(img, cssReset);\r\n\r\n if (self.data.points.length) {\r\n _bindPoints.call(self, self.data.points);\r\n }\r\n else {\r\n _centerImage.call(self);\r\n }\r\n\r\n _updateCenterPoint.call(self);\r\n _updateOverlay.call(self);\r\n }\r\n\r\n function _updateZoomLimits (initial) {\r\n var self = this,\r\n minZoom = Math.max(self.options.minZoom, 0) || 0,\r\n maxZoom = self.options.maxZoom || 1.5,\r\n initialZoom,\r\n defaultInitialZoom,\r\n zoomer = self.elements.zoomer,\r\n scale = parseFloat(zoomer.value),\r\n boundaryData = self.elements.boundary.getBoundingClientRect(),\r\n imgData = naturalImageDimensions(self.elements.img, self.data.orientation),\r\n vpData = self.elements.viewport.getBoundingClientRect(),\r\n minW,\r\n minH;\r\n if (self.options.enforceBoundary) {\r\n minW = vpData.width / imgData.width;\r\n minH = vpData.height / imgData.height;\r\n minZoom = Math.max(minW, minH);\r\n }\r\n\r\n if (minZoom >= maxZoom) {\r\n maxZoom = minZoom + 1;\r\n }\r\n\r\n zoomer.min = fix(minZoom, 4);\r\n zoomer.max = fix(maxZoom, 4);\r\n\r\n if (!initial && (scale < zoomer.min || scale > zoomer.max)) {\r\n _setZoomerVal.call(self, scale < zoomer.min ? zoomer.min : zoomer.max);\r\n }\r\n else if (initial) {\r\n defaultInitialZoom = Math.max((boundaryData.width / imgData.width), (boundaryData.height / imgData.height));\r\n initialZoom = self.data.boundZoom !== null ? self.data.boundZoom : defaultInitialZoom;\r\n _setZoomerVal.call(self, initialZoom);\r\n }\r\n\r\n dispatchChange(zoomer);\r\n }\r\n\r\n function _bindPoints(points) {\r\n if (points.length !== 4) {\r\n throw \"Croppie - Invalid number of points supplied: \" + points;\r\n }\r\n var self = this,\r\n pointsWidth = points[2] - points[0],\r\n // pointsHeight = points[3] - points[1],\r\n vpData = self.elements.viewport.getBoundingClientRect(),\r\n boundRect = self.elements.boundary.getBoundingClientRect(),\r\n vpOffset = {\r\n left: vpData.left - boundRect.left,\r\n top: vpData.top - boundRect.top\r\n },\r\n scale = vpData.width / pointsWidth,\r\n originTop = points[1],\r\n originLeft = points[0],\r\n transformTop = (-1 * points[1]) + vpOffset.top,\r\n transformLeft = (-1 * points[0]) + vpOffset.left,\r\n newCss = {};\r\n\r\n newCss[CSS_TRANS_ORG] = originLeft + 'px ' + originTop + 'px';\r\n newCss[CSS_TRANSFORM] = new Transform(transformLeft, transformTop, scale).toString();\r\n css(self.elements.preview, newCss);\r\n\r\n _setZoomerVal.call(self, scale);\r\n self._currentZoom = scale;\r\n }\r\n\r\n function _centerImage() {\r\n var self = this,\r\n imgDim = self.elements.preview.getBoundingClientRect(),\r\n vpDim = self.elements.viewport.getBoundingClientRect(),\r\n boundDim = self.elements.boundary.getBoundingClientRect(),\r\n vpLeft = vpDim.left - boundDim.left,\r\n vpTop = vpDim.top - boundDim.top,\r\n w = vpLeft - ((imgDim.width - vpDim.width) / 2),\r\n h = vpTop - ((imgDim.height - vpDim.height) / 2),\r\n transform = new Transform(w, h, self._currentZoom);\r\n\r\n css(self.elements.preview, CSS_TRANSFORM, transform.toString());\r\n }\r\n\r\n function _transferImageToCanvas(customOrientation) {\r\n var self = this,\r\n canvas = self.elements.canvas,\r\n img = self.elements.img,\r\n ctx = canvas.getContext('2d');\r\n\r\n ctx.clearRect(0, 0, canvas.width, canvas.height);\r\n canvas.width = img.width;\r\n canvas.height = img.height;\r\n\r\n var orientation = self.options.enableOrientation && customOrientation || getExifOrientation(img);\r\n drawCanvas(canvas, img, orientation);\r\n }\r\n\r\n function _getCanvas(data) {\r\n var self = this,\r\n points = data.points,\r\n left = num(points[0]),\r\n top = num(points[1]),\r\n right = num(points[2]),\r\n bottom = num(points[3]),\r\n width = right-left,\r\n height = bottom-top,\r\n circle = data.circle,\r\n canvas = document.createElement('canvas'),\r\n ctx = canvas.getContext('2d'),\r\n startX = 0,\r\n startY = 0,\r\n canvasWidth = data.outputWidth || width,\r\n canvasHeight = data.outputHeight || height;\r\n\r\n canvas.width = canvasWidth;\r\n canvas.height = canvasHeight;\r\n\r\n if (data.backgroundColor) {\r\n ctx.fillStyle = data.backgroundColor;\r\n ctx.fillRect(0, 0, canvasWidth, canvasHeight);\r\n }\r\n\r\n // By default assume we're going to draw the entire\r\n // source image onto the destination canvas.\r\n var sx = left,\r\n sy = top,\r\n sWidth = width,\r\n sHeight = height,\r\n dx = 0,\r\n dy = 0,\r\n dWidth = canvasWidth,\r\n dHeight = canvasHeight;\r\n\r\n //\r\n // Do not go outside of the original image's bounds along the x-axis.\r\n // Handle translations when projecting onto the destination canvas.\r\n //\r\n\r\n // The smallest possible source x-position is 0.\r\n if (left < 0) {\r\n sx = 0;\r\n dx = (Math.abs(left) / width) * canvasWidth;\r\n }\r\n\r\n // The largest possible source width is the original image's width.\r\n if (sWidth + sx > self._originalImageWidth) {\r\n sWidth = self._originalImageWidth - sx;\r\n dWidth = (sWidth / width) * canvasWidth;\r\n }\r\n\r\n //\r\n // Do not go outside of the original image's bounds along the y-axis.\r\n //\r\n\r\n // The smallest possible source y-position is 0.\r\n if (top < 0) {\r\n sy = 0;\r\n dy = (Math.abs(top) / height) * canvasHeight;\r\n }\r\n\r\n // The largest possible source height is the original image's height.\r\n if (sHeight + sy > self._originalImageHeight) {\r\n sHeight = self._originalImageHeight - sy;\r\n dHeight = (sHeight / height) * canvasHeight;\r\n }\r\n\r\n // console.table({ left, right, top, bottom, canvasWidth, canvasHeight, width, height, startX, startY, circle, sx, sy, dx, dy, sWidth, sHeight, dWidth, dHeight });\r\n\r\n ctx.drawImage(this.elements.preview, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight);\r\n if (circle) {\r\n ctx.fillStyle = '#fff';\r\n ctx.globalCompositeOperation = 'destination-in';\r\n ctx.beginPath();\r\n ctx.arc(canvas.width / 2, canvas.height / 2, canvas.width / 2, 0, Math.PI * 2, true);\r\n ctx.closePath();\r\n ctx.fill();\r\n }\r\n return canvas;\r\n }\r\n\r\n function _getHtmlResult(data) {\r\n var points = data.points,\r\n div = document.createElement('div'),\r\n img = document.createElement('img'),\r\n width = points[2] - points[0],\r\n height = points[3] - points[1];\r\n\r\n addClass(div, 'croppie-result');\r\n div.appendChild(img);\r\n css(img, {\r\n left: (-1 * points[0]) + 'px',\r\n top: (-1 * points[1]) + 'px'\r\n });\r\n img.src = data.url;\r\n css(div, {\r\n width: width + 'px',\r\n height: height + 'px'\r\n });\r\n\r\n return div;\r\n }\r\n\r\n function _getBase64Result(data) {\r\n return _getCanvas.call(this, data).toDataURL(data.format, data.quality);\r\n }\r\n\r\n function _getBlobResult(data) {\r\n var self = this;\r\n return new Promise(function (resolve) {\r\n _getCanvas.call(self, data).toBlob(function (blob) {\r\n resolve(blob);\r\n }, data.format, data.quality);\r\n });\r\n }\r\n\r\n function _replaceImage(img) {\r\n if (this.elements.img.parentNode) {\r\n Array.prototype.forEach.call(this.elements.img.classList, function(c) { img.classList.add(c); });\r\n this.elements.img.parentNode.replaceChild(img, this.elements.img);\r\n this.elements.preview = img; // if the img is attached to the DOM, they're not using the canvas\r\n }\r\n this.elements.img = img;\r\n }\r\n\r\n function _bind(options, cb) {\r\n var self = this,\r\n url,\r\n points = [],\r\n zoom = null,\r\n hasExif = _hasExif.call(self);\r\n\r\n if (typeof (options) === 'string') {\r\n url = options;\r\n options = {};\r\n }\r\n else if (Array.isArray(options)) {\r\n points = options.slice();\r\n }\r\n else if (typeof (options) === 'undefined' && self.data.url) { //refreshing\r\n _updatePropertiesFromImage.call(self);\r\n _triggerUpdate.call(self);\r\n return null;\r\n }\r\n else {\r\n url = options.url;\r\n points = options.points || [];\r\n zoom = typeof(options.zoom) === 'undefined' ? null : options.zoom;\r\n }\r\n\r\n self.data.bound = false;\r\n self.data.url = url || self.data.url;\r\n self.data.boundZoom = zoom;\r\n\r\n return loadImage(url, hasExif).then(function (img) {\r\n _replaceImage.call(self, img);\r\n if (!points.length) {\r\n var natDim = naturalImageDimensions(img);\r\n var rect = self.elements.viewport.getBoundingClientRect();\r\n var aspectRatio = rect.width / rect.height;\r\n var imgAspectRatio = natDim.width / natDim.height;\r\n var width, height;\r\n\r\n if (imgAspectRatio > aspectRatio) {\r\n height = natDim.height;\r\n width = height * aspectRatio;\r\n }\r\n else {\r\n width = natDim.width;\r\n height = natDim.height / aspectRatio;\r\n }\r\n\r\n var x0 = (natDim.width - width) / 2;\r\n var y0 = (natDim.height - height) / 2;\r\n var x1 = x0 + width;\r\n var y1 = y0 + height;\r\n self.data.points = [x0, y0, x1, y1];\r\n }\r\n else if (self.options.relative) {\r\n points = [\r\n points[0] * img.naturalWidth / 100,\r\n points[1] * img.naturalHeight / 100,\r\n points[2] * img.naturalWidth / 100,\r\n points[3] * img.naturalHeight / 100\r\n ];\r\n }\r\n\r\n self.data.orientation = options.orientation || 1;\r\n self.data.points = points.map(function (p) {\r\n return parseFloat(p);\r\n });\r\n if (self.options.useCanvas) {\r\n _transferImageToCanvas.call(self, self.data.orientation);\r\n }\r\n _updatePropertiesFromImage.call(self);\r\n _triggerUpdate.call(self);\r\n cb && cb();\r\n });\r\n }\r\n\r\n function fix(v, decimalPoints) {\r\n return parseFloat(v).toFixed(decimalPoints || 0);\r\n }\r\n\r\n function _get() {\r\n var self = this,\r\n imgData = self.elements.preview.getBoundingClientRect(),\r\n vpData = self.elements.viewport.getBoundingClientRect(),\r\n x1 = vpData.left - imgData.left,\r\n y1 = vpData.top - imgData.top,\r\n widthDiff = (vpData.width - self.elements.viewport.offsetWidth) / 2, //border\r\n heightDiff = (vpData.height - self.elements.viewport.offsetHeight) / 2,\r\n x2 = x1 + self.elements.viewport.offsetWidth + widthDiff,\r\n y2 = y1 + self.elements.viewport.offsetHeight + heightDiff,\r\n scale = self._currentZoom;\r\n\r\n if (scale === Infinity || isNaN(scale)) {\r\n scale = 1;\r\n }\r\n\r\n var max = self.options.enforceBoundary ? 0 : Number.NEGATIVE_INFINITY;\r\n x1 = Math.max(max, x1 / scale);\r\n y1 = Math.max(max, y1 / scale);\r\n x2 = Math.max(max, x2 / scale);\r\n y2 = Math.max(max, y2 / scale);\r\n\r\n return {\r\n points: [fix(x1), fix(y1), fix(x2), fix(y2)],\r\n zoom: scale,\r\n orientation: self.data.orientation\r\n };\r\n }\r\n\r\n var RESULT_DEFAULTS = {\r\n type: 'canvas',\r\n format: 'png',\r\n quality: 1\r\n },\r\n RESULT_FORMATS = ['jpeg', 'webp', 'png'];\r\n\r\n function _result(options) {\r\n var self = this,\r\n data = _get.call(self),\r\n opts = deepExtend(clone(RESULT_DEFAULTS), clone(options)),\r\n resultType = (typeof (options) === 'string' ? options : (opts.type || 'base64')),\r\n size = opts.size || 'viewport',\r\n format = opts.format,\r\n quality = opts.quality,\r\n backgroundColor = opts.backgroundColor,\r\n circle = typeof opts.circle === 'boolean' ? opts.circle : (self.options.viewport.type === 'circle'),\r\n vpRect = self.elements.viewport.getBoundingClientRect(),\r\n ratio = vpRect.width / vpRect.height,\r\n prom;\r\n\r\n if (size === 'viewport') {\r\n data.outputWidth = vpRect.width;\r\n data.outputHeight = vpRect.height;\r\n } else if (typeof size === 'object') {\r\n if (size.width && size.height) {\r\n data.outputWidth = size.width;\r\n data.outputHeight = size.height;\r\n } else if (size.width) {\r\n data.outputWidth = size.width;\r\n data.outputHeight = size.width / ratio;\r\n } else if (size.height) {\r\n data.outputWidth = size.height * ratio;\r\n data.outputHeight = size.height;\r\n }\r\n }\r\n\r\n if (RESULT_FORMATS.indexOf(format) > -1) {\r\n data.format = 'image/' + format;\r\n data.quality = quality;\r\n }\r\n\r\n data.circle = circle;\r\n data.url = self.data.url;\r\n data.backgroundColor = backgroundColor;\r\n\r\n prom = new Promise(function (resolve) {\r\n switch(resultType.toLowerCase())\r\n {\r\n case 'rawcanvas':\r\n resolve(_getCanvas.call(self, data));\r\n break;\r\n case 'canvas':\r\n case 'base64':\r\n resolve(_getBase64Result.call(self, data));\r\n break;\r\n case 'blob':\r\n _getBlobResult.call(self, data).then(resolve);\r\n break;\r\n default:\r\n resolve(_getHtmlResult.call(self, data));\r\n break;\r\n }\r\n });\r\n return prom;\r\n }\r\n\r\n function _refresh() {\r\n _updatePropertiesFromImage.call(this);\r\n }\r\n\r\n function _rotate(deg) {\r\n if (!this.options.useCanvas || !this.options.enableOrientation) {\r\n throw 'Croppie: Cannot rotate without enableOrientation && EXIF.js included';\r\n }\r\n\r\n var self = this,\r\n canvas = self.elements.canvas;\r\n\r\n self.data.orientation = getExifOffset(self.data.orientation, deg);\r\n drawCanvas(canvas, self.elements.img, self.data.orientation);\r\n _updateCenterPoint.call(self, true);\r\n _updateZoomLimits.call(self);\r\n\r\n // Reverses image dimensions if the degrees of rotation is not divisible by 180.\r\n if ((Math.abs(deg) / 90) % 2 === 1) {\r\n var oldHeight = self._originalImageHeight;\r\n var oldWidth = self._originalImageWidth;\r\n self._originalImageWidth = oldHeight;\r\n self._originalImageHeight = oldWidth;\r\n }\r\n }\r\n\r\n function _destroy() {\r\n var self = this;\r\n self.element.removeChild(self.elements.boundary);\r\n removeClass(self.element, 'croppie-container');\r\n if (self.options.enableZoom) {\r\n self.element.removeChild(self.elements.zoomerWrap);\r\n }\r\n delete self.elements;\r\n }\r\n\r\n if (typeof window !== 'undefined' && window.jQuery) {\r\n var $ = window.jQuery;\r\n $.fn.croppie = function (opts) {\r\n var ot = typeof opts;\r\n\r\n if (ot === 'string') {\r\n var args = Array.prototype.slice.call(arguments, 1);\r\n var singleInst = $(this).data('croppie');\r\n\r\n if (opts === 'get') {\r\n return singleInst.get();\r\n }\r\n else if (opts === 'result') {\r\n return singleInst.result.apply(singleInst, args);\r\n }\r\n else if (opts === 'bind') {\r\n return singleInst.bind.apply(singleInst, args);\r\n }\r\n\r\n return this.each(function () {\r\n var i = $(this).data('croppie');\r\n if (!i) return;\r\n\r\n var method = i[opts];\r\n if ($.isFunction(method)) {\r\n method.apply(i, args);\r\n if (opts === 'destroy') {\r\n $(this).removeData('croppie');\r\n }\r\n }\r\n else {\r\n throw 'Croppie ' + opts + ' method not found';\r\n }\r\n });\r\n }\r\n else {\r\n return this.each(function () {\r\n var i = new Croppie(this, opts);\r\n i.$ = $;\r\n $(this).data('croppie', i);\r\n });\r\n }\r\n };\r\n }\r\n\r\n function Croppie(element, opts) {\r\n if (element.className.indexOf('croppie-container') > -1) {\r\n throw new Error(\"Croppie: Can't initialize croppie more than once\");\r\n }\r\n this.element = element;\r\n this.options = deepExtend(clone(Croppie.defaults), opts);\r\n\r\n if (this.element.tagName.toLowerCase() === 'img') {\r\n var origImage = this.element;\r\n addClass(origImage, 'cr-original-image');\r\n setAttributes(origImage, {'aria-hidden' : 'true', 'alt' : '' });\r\n var replacementDiv = document.createElement('div');\r\n this.element.parentNode.appendChild(replacementDiv);\r\n replacementDiv.appendChild(origImage);\r\n this.element = replacementDiv;\r\n this.options.url = this.options.url || origImage.src;\r\n }\r\n\r\n _create.call(this);\r\n if (this.options.url) {\r\n var bindOpts = {\r\n url: this.options.url,\r\n points: this.options.points\r\n };\r\n delete this.options['url'];\r\n delete this.options['points'];\r\n _bind.call(this, bindOpts);\r\n }\r\n }\r\n\r\n Croppie.defaults = {\r\n viewport: {\r\n width: 100,\r\n height: 100,\r\n type: 'square'\r\n },\r\n boundary: { },\r\n orientationControls: {\r\n enabled: true,\r\n leftClass: '',\r\n rightClass: ''\r\n },\r\n resizeControls: {\r\n width: true,\r\n height: true\r\n },\r\n customClass: '',\r\n showZoomer: true,\r\n enableZoom: true,\r\n enableResize: false,\r\n mouseWheelZoom: true,\r\n enableExif: false,\r\n enforceBoundary: true,\r\n enableOrientation: false,\r\n enableKeyMovement: true,\r\n update: function () { }\r\n };\r\n\r\n Croppie.globals = {\r\n translate: 'translate3d'\r\n };\r\n\r\n deepExtend(Croppie.prototype, {\r\n bind: function (options, cb) {\r\n return _bind.call(this, options, cb);\r\n },\r\n get: function () {\r\n var data = _get.call(this);\r\n var points = data.points;\r\n if (this.options.relative) {\r\n points[0] /= this.elements.img.naturalWidth / 100;\r\n points[1] /= this.elements.img.naturalHeight / 100;\r\n points[2] /= this.elements.img.naturalWidth / 100;\r\n points[3] /= this.elements.img.naturalHeight / 100;\r\n }\r\n return data;\r\n },\r\n result: function (type) {\r\n return _result.call(this, type);\r\n },\r\n refresh: function () {\r\n return _refresh.call(this);\r\n },\r\n setZoom: function (v) {\r\n _setZoomerVal.call(this, v);\r\n dispatchChange(this.elements.zoomer);\r\n },\r\n rotate: function (deg) {\r\n _rotate.call(this, deg);\r\n },\r\n destroy: function () {\r\n return _destroy.call(this);\r\n }\r\n });\r\n return Croppie;\r\n}));\r\n\n}).call(this)}).call(this,require(\"timers\").setImmediate)\n},{\"timers\":159}],110:[function(require,module,exports){\n'use strict';\n\nvar $defineProperty = require('es-define-property');\n\nvar $SyntaxError = require('es-errors/syntax');\nvar $TypeError = require('es-errors/type');\n\nvar gopd = require('gopd');\n\n/** @type {import('.')} */\nmodule.exports = function defineDataProperty(\n\tobj,\n\tproperty,\n\tvalue\n) {\n\tif (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) {\n\t\tthrow new $TypeError('`obj` must be an object or a function`');\n\t}\n\tif (typeof property !== 'string' && typeof property !== 'symbol') {\n\t\tthrow new $TypeError('`property` must be a string or a symbol`');\n\t}\n\tif (arguments.length > 3 && typeof arguments[3] !== 'boolean' && arguments[3] !== null) {\n\t\tthrow new $TypeError('`nonEnumerable`, if provided, must be a boolean or null');\n\t}\n\tif (arguments.length > 4 && typeof arguments[4] !== 'boolean' && arguments[4] !== null) {\n\t\tthrow new $TypeError('`nonWritable`, if provided, must be a boolean or null');\n\t}\n\tif (arguments.length > 5 && typeof arguments[5] !== 'boolean' && arguments[5] !== null) {\n\t\tthrow new $TypeError('`nonConfigurable`, if provided, must be a boolean or null');\n\t}\n\tif (arguments.length > 6 && typeof arguments[6] !== 'boolean') {\n\t\tthrow new $TypeError('`loose`, if provided, must be a boolean');\n\t}\n\n\tvar nonEnumerable = arguments.length > 3 ? arguments[3] : null;\n\tvar nonWritable = arguments.length > 4 ? arguments[4] : null;\n\tvar nonConfigurable = arguments.length > 5 ? arguments[5] : null;\n\tvar loose = arguments.length > 6 ? arguments[6] : false;\n\n\t/* @type {false | TypedPropertyDescriptor<unknown>} */\n\tvar desc = !!gopd && gopd(obj, property);\n\n\tif ($defineProperty) {\n\t\t$defineProperty(obj, property, {\n\t\t\tconfigurable: nonConfigurable === null && desc ? desc.configurable : !nonConfigurable,\n\t\t\tenumerable: nonEnumerable === null && desc ? desc.enumerable : !nonEnumerable,\n\t\t\tvalue: value,\n\t\t\twritable: nonWritable === null && desc ? desc.writable : !nonWritable\n\t\t});\n\t} else if (loose || (!nonEnumerable && !nonWritable && !nonConfigurable)) {\n\t\t// must fall back to [[Set]], and was not explicitly asked to make non-enumerable, non-writable, or non-configurable\n\t\tobj[property] = value; // eslint-disable-line no-param-reassign\n\t} else {\n\t\tthrow new $SyntaxError('This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.');\n\t}\n};\n\n},{\"es-define-property\":113,\"es-errors/syntax\":118,\"es-errors/type\":119,\"gopd\":127}],111:[function(require,module,exports){\n/**\n * Dragdealer.js 0.10.0\n * http://github.com/skidding/dragdealer\n *\n * (c) 2010+ Ovidiu CherecheÈ™\n * http://skidding.mit-license.org\n */\n\n(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory);\n } else if (typeof module === 'object' && module.exports) {\n // Node. Does not work with strict CommonJS, but\n // only CommonJS-like enviroments that support module.exports,\n // like Node.\n module.exports.Dragdealer = factory();\n } else {\n // Browser globals\n root.Dragdealer = factory();\n }\n}(this, function () {\n\nvar Dragdealer = function(wrapper, options) {\n /**\n * Drag-based component that works around two basic DOM elements.\n *\n * - The wrapper: The top-level element with the .dragdealer class. We\n * create a Dragdealer instance with the wrapper as the\n * first constructor parameter (it can either receive the ID\n * of the wrapper, or the element itself.) The wrapper\n * establishes the dragging bounds.\n *\n * - The handle: A child of the wrapper element, div with a required\n * .handle class (may be overridden in options). This will be\n * the dragged element, constrained by the wrapper's bounds.\n *\n *\n * The handle can be both smaller or bigger than the wrapper.\n *\n * - When the handle is smaller, Dragdealer will act as a regular slider,\n * enabling the handle to be dragged from one side of the wrapper to\n * another.\n *\n * - When the handle is bigger, Dragdealer will act a mask for a draggable\n * surface, where the handle is the draggable surface contrained by the\n * smaller bounds of the wrapper. The drag action in this case is used\n * to reveal and \"discover\" partial content at a time.\n *\n *\n * Simple usage:\n *\n * // JavaScript\n * new Dragdealer('simple-slider');\n *\n * <!-- HTML -->\n * <div id=\"simple-slider\" class=\"dragdealer\">\n * <div class=\"handle\">drag me</div>\n * </div>\n *\n *\n * The second parameter of the Dragdealer constructor is an object used for\n * specifying any of the supported options. All of them are optional.\n *\n * - bool disabled=false: Init Dragdealer in a disabled state. The handle\n * will have a .disabled class.\n *\n * - bool horizontal=true: Enable horizontal dragging.\n *\n * - bool vertical=false: Enable vertical dragging.\n *\n * - number x=0: Initial horizontal (left) position. Accepts a float number\n * value between 0 and 1. Read below about positioning in\n * Dragdealer.\n *\n * - number y=0: Initial vertical (top) position. Accepts a float number\n * value between 0 and 1. Read below about positoning in\n * Dragdealer.\n *\n * - number steps=0: Limit the positioning of the handle within the bounds\n * of the wrapper, by defining a virtual grid made out of\n * a number of equally-spaced steps. This restricts\n * placing the handle anywhere in-between these steps.\n * E.g. setting 3 steps to a regular slider will only\n * allow you to move it to the left, to the right or\n * exactly in the middle.\n *\n * - bool snap=false: When a number of steps is set, snap the position of\n * the handle to its closest step instantly, even when\n * dragging.\n *\n * - number speed=0.1: Speed can be set between 0 and 1, with 1 being the\n * fastest. It represents how fast the handle will slide\n * to position after you mouse up.\n *\n * - bool slide=true: Slide handle after releasing it, depending on the\n * movement speed before the mouse/touch release. The\n * formula for calculating how much will the handle\n * slide after releasing it is defined by simply\n * extending the movement of the handle in the current\n * direction, with the last movement unit times four (a\n * movement unit is considered the distance crossed\n * since the last animation loop, which is currently\n * 25ms.) So if you were to drag the handle 50px in the\n * blink of an eye, it will slide another 200px in the\n * same direction. Steps interfere with this formula, as\n * the closest step is calculated before the sliding\n * distance.\n *\n * - bool loose=false: Loosen-up wrapper boundaries when dragging. This\n * allows the handle to be *slightly* dragged outside\n * the bounds of the wrapper, but slides it back to the\n * margins of the wrapper upon release. The formula for\n * calculating how much the handle exceeds the wrapper\n * bounds is made out of the actual drag distance\n * divided by 4. E.g. Pulling a slider outside its\n * frame by 100px will only position it 25px outside\n * the frame.\n *\n * - number top=0: Top padding between the wrapper and the handle.\n *\n * - number bottom=0: Bottom padding between the wrapper and the handle.\n *\n * - number left=0: Left padding between the wrapper and the handle.\n *\n * - number right=0: Right padding between the wrapper and the handle.\n *\n * - fn callback(x, y): Called when releasing handle, with the projected\n * x, y position of the handle. Projected value means\n * the value the slider will have after finishing a\n * sliding animation, caused by either a step\n * restriction or drag motion (see steps and slide\n * options.) This implies that the actual position of\n * the handle at the time this callback is called\n * might not yet reflect the x, y values received.\n *\n * - fn dragStopCallback(x,y): Same as callback(x,y) but only called after\n * a drag motion, not after setting the step\n * manually.\n *\n * - fn dragStartCallback(x,y): Same as dragStopCallback(x,y) but called at\n * the beginning of a drag motion and with the\n * sliders initial x, y values.\n *\n * - fn animationCallback(x, y): Called every animation loop, as long as\n * the handle is being dragged or in the\n * process of a sliding animation. The x, y\n * positional values received by this\n * callback reflect the exact position of the\n * handle DOM element, which includes\n * exceeding values (even negative values)\n * when the loose option is set true.\n *\n * - string handleClass='handle': Custom class of handle element.\n *\n * - bool css3=true: Use css3 transform in modern browsers instead of\n * absolute positioning.\n *\n * - fn customRequestAnimationFrame: Provide custom requestAnimationFrame\n * function (used in tests).\n * - fn customCancelAnimationFrame: Provide custom cancelAnimationFrame\n * function (used in tests).\n *\n * Dragdealer also has a few methods to interact with, post-initialization.\n *\n * - disable: Disable dragging of a Dragdealer instance. Just as with the\n * disabled option, the handle will receive a .disabled class\n *\n * - enable: Enable dragging of a Dragdealer instance. The .disabled class\n * of the handle will be removed.\n *\n * - reflow: Recalculate the wrapper bounds of a Dragdealer instance, used\n * when the wrapper is responsive and its parent container\n * changed its size, or after changing the size of the wrapper\n * directly.\n *\n * - getValue: Get the value of a Dragdealer instance programatically. The\n * value is returned as an [x, y] tuple and is the equivalent\n * of the (projected) value returned by the regular callback,\n * not animationCallback.\n *\n * - getStep: Same as getValue, but the value returned is in step\n * increments (see steps option)\n *\n * - setValue(x, y, snap=false): Set the value of a Dragdealer instance\n * programatically. The 3rd parameter allows\n * to snap the handle directly to the desired\n * value, without any sliding transition.\n *\n * - setStep(x, y, snap=false): Same as setValue, but the value is received\n * in step increments (see steps option)\n *\n *\n * Positioning in Dragdealer:\n *\n * Besides the top, bottom, left and right paddings, which represent a\n * number of pixels, Dragdealer uses a [0, 1]-based positioning. Both\n * horizontal and vertical positions are represented by ratios between 0\n * and 1. This allows the Dragdealer wrapper to have a responsive size and\n * not revolve around a specific number of pixels. This is how the x, y\n * options are set, what the callback args contain and what values the\n * setValue method expects. Once picked up, the ratios can be scaled and\n * mapped to match any real-life system of coordinates or dimensions.\n */\n this.options = this.applyDefaults(options || {});\n this.bindMethods();\n this.wrapper = this.getWrapperElement(wrapper);\n if (!this.wrapper) {\n return;\n }\n this.handle = this.getHandleElement(this.wrapper, this.options.handleClass);\n if (!this.handle) {\n return;\n }\n this.init();\n this.bindEventListeners();\n};\n\n\nDragdealer.prototype = {\n defaults: {\n disabled: false,\n horizontal: true,\n vertical: false,\n slide: true,\n steps: 0,\n snap: false,\n loose: false,\n speed: 0.1,\n xPrecision: 0,\n yPrecision: 0,\n handleClass: 'handle',\n css3: true,\n activeClass: 'active',\n tapping: true\n },\n init: function() {\n if (this.options.css3) {\n triggerWebkitHardwareAcceleration(this.handle);\n }\n this.value = {\n prev: [-1, -1],\n current: [this.options.x || 0, this.options.y || 0],\n target: [this.options.x || 0, this.options.y || 0]\n };\n this.offset = {\n wrapper: [0, 0],\n mouse: [0, 0],\n prev: [-999999, -999999],\n current: [0, 0],\n target: [0, 0]\n };\n this.dragStartPosition = {x: 0, y: 0};\n this.change = [0, 0];\n this.stepRatios = this.calculateStepRatios();\n\n this.activity = false;\n this.dragging = false;\n this.tapping = false;\n\n this.reflow();\n if (this.options.disabled) {\n this.disable();\n }\n },\n applyDefaults: function(options) {\n for (var k in this.defaults) {\n if (!options.hasOwnProperty(k)) {\n options[k] = this.defaults[k];\n }\n }\n return options;\n },\n getWrapperElement: function(wrapper) {\n if (typeof(wrapper) == 'string') {\n return document.getElementById(wrapper);\n } else {\n return wrapper;\n }\n },\n getHandleElement: function(wrapper, handleClass) {\n var childElements,\n handleClassMatcher,\n i;\n if (wrapper.getElementsByClassName) {\n childElements = wrapper.getElementsByClassName(handleClass);\n if (childElements.length > 0) {\n return childElements[0];\n }\n } else {\n handleClassMatcher = new RegExp('(^|\\\\s)' + handleClass + '(\\\\s|$)');\n childElements = wrapper.getElementsByTagName('*');\n for (i = 0; i < childElements.length; i++) {\n if (handleClassMatcher.test(childElements[i].className)) {\n return childElements[i];\n }\n }\n }\n },\n calculateStepRatios: function() {\n var stepRatios = [];\n if (this.options.steps >= 1) {\n for (var i = 0; i <= this.options.steps - 1; i++) {\n if (this.options.steps > 1) {\n stepRatios[i] = i / (this.options.steps - 1);\n } else {\n // A single step will always have a 0 value\n stepRatios[i] = 0;\n }\n }\n }\n return stepRatios;\n },\n setWrapperOffset: function() {\n this.offset.wrapper = Position.get(this.wrapper);\n },\n calculateBounds: function() {\n // Apply top/bottom/left and right padding options to wrapper extremities\n // when calculating its bounds\n var bounds = {\n top: this.options.top || 0,\n bottom: -(this.options.bottom || 0) + this.wrapper.offsetHeight,\n left: this.options.left || 0,\n right: -(this.options.right || 0) + this.wrapper.offsetWidth\n };\n // The available width and height represents the horizontal and vertical\n // space the handle has for moving. It is determined by the width and\n // height of the wrapper, minus the width and height of the handle\n bounds.availWidth = (bounds.right - bounds.left) - this.handle.offsetWidth;\n bounds.availHeight = (bounds.bottom - bounds.top) - this.handle.offsetHeight;\n return bounds;\n },\n calculateValuePrecision: function() {\n // The sliding transition works by dividing itself until it reaches a min\n // value step; because Dragdealer works with [0-1] values, we need this\n // \"min value step\" to represent a pixel when applied to the real handle\n // position within the DOM. The xPrecision/yPrecision options can be\n // specified to increase the granularity when we're controlling larger\n // objects from one of the callbacks\n var xPrecision = this.options.xPrecision || Math.abs(this.bounds.availWidth),\n yPrecision = this.options.yPrecision || Math.abs(this.bounds.availHeight);\n return [\n xPrecision ? 1 / xPrecision : 0,\n yPrecision ? 1 / yPrecision : 0\n ];\n },\n bindMethods: function() {\n if (typeof(this.options.customRequestAnimationFrame) === 'function') {\n this.requestAnimationFrame = bind(this.options.customRequestAnimationFrame, window);\n } else {\n this.requestAnimationFrame = bind(requestAnimationFrame, window);\n }\n if (typeof(this.options.customCancelAnimationFrame) === 'function') {\n this.cancelAnimationFrame = bind(this.options.customCancelAnimationFrame, window);\n } else {\n this.cancelAnimationFrame = bind(cancelAnimationFrame, window);\n }\n this.animateWithRequestAnimationFrame = bind(this.animateWithRequestAnimationFrame, this);\n this.animate = bind(this.animate, this);\n this.onHandleMouseDown = bind(this.onHandleMouseDown, this);\n this.onHandleTouchStart = bind(this.onHandleTouchStart, this);\n this.onDocumentMouseMove = bind(this.onDocumentMouseMove, this);\n this.onWrapperTouchMove = bind(this.onWrapperTouchMove, this);\n this.onWrapperMouseDown = bind(this.onWrapperMouseDown, this);\n this.onWrapperTouchStart = bind(this.onWrapperTouchStart, this);\n this.onDocumentMouseUp = bind(this.onDocumentMouseUp, this);\n this.onDocumentTouchEnd = bind(this.onDocumentTouchEnd, this);\n this.onHandleClick = bind(this.onHandleClick, this);\n this.onWindowResize = bind(this.onWindowResize, this);\n },\n bindEventListeners: function() {\n // Start dragging\n addEventListener(this.handle, 'mousedown', this.onHandleMouseDown);\n addEventListener(this.handle, 'touchstart', this.onHandleTouchStart);\n // While dragging\n addEventListener(document, 'mousemove', this.onDocumentMouseMove);\n addEventListener(this.wrapper, 'touchmove', this.onWrapperTouchMove);\n // Start tapping\n addEventListener(this.wrapper, 'mousedown', this.onWrapperMouseDown);\n addEventListener(this.wrapper, 'touchstart', this.onWrapperTouchStart);\n // Stop dragging/tapping\n addEventListener(document, 'mouseup', this.onDocumentMouseUp);\n addEventListener(document, 'touchend', this.onDocumentTouchEnd);\n\n addEventListener(this.handle, 'click', this.onHandleClick);\n addEventListener(window, 'resize', this.onWindowResize);\n\n this.animate(false, true);\n this.interval = this.requestAnimationFrame(this.animateWithRequestAnimationFrame);\n\n },\n unbindEventListeners: function() {\n removeEventListener(this.handle, 'mousedown', this.onHandleMouseDown);\n removeEventListener(this.handle, 'touchstart', this.onHandleTouchStart);\n removeEventListener(document, 'mousemove', this.onDocumentMouseMove);\n removeEventListener(this.wrapper, 'touchmove', this.onWrapperTouchMove);\n removeEventListener(this.wrapper, 'mousedown', this.onWrapperMouseDown);\n removeEventListener(this.wrapper, 'touchstart', this.onWrapperTouchStart);\n removeEventListener(document, 'mouseup', this.onDocumentMouseUp);\n removeEventListener(document, 'touchend', this.onDocumentTouchEnd);\n removeEventListener(this.handle, 'click', this.onHandleClick);\n removeEventListener(window, 'resize', this.onWindowResize);\n this.cancelAnimationFrame(this.interval);\n },\n onHandleMouseDown: function(e) {\n Cursor.refresh(e);\n preventEventDefaults(e);\n stopEventPropagation(e);\n this.activity = false;\n this.startDrag();\n },\n onHandleTouchStart: function(e) {\n Cursor.refresh(e);\n // Unlike in the `mousedown` event handler, we don't prevent defaults here,\n // because this would disable the dragging altogether. Instead, we prevent\n // it in the `touchmove` handler. Read more about touch events\n // https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Touch_events#Handling_clicks\n stopEventPropagation(e);\n this.activity = false;\n this.startDrag();\n },\n onDocumentMouseMove: function(e) {\n if ((e.clientX - this.dragStartPosition.x) === 0 &&\n (e.clientY - this.dragStartPosition.y) === 0) {\n // This is required on some Windows8 machines that get mouse move events without actual mouse movement\n return;\n }\n\n Cursor.refresh(e);\n if (this.dragging) {\n this.activity = true;\n preventEventDefaults(e);\n }\n },\n onWrapperTouchMove: function(e) {\n Cursor.refresh(e);\n // Dragging on a disabled axis (horizontal or vertical) shouldn't prevent\n // defaults on touch devices. !this.activity denotes this is the first move\n // inside a drag action; you can drag in any direction after this point if\n // the dragging wasn't stopped\n if (!this.activity && this.draggingOnDisabledAxis()) {\n if (this.dragging) {\n this.stopDrag();\n }\n return;\n }\n // Read comment in `onHandleTouchStart` above, to understand why we're\n // preventing defaults here and not there\n preventEventDefaults(e);\n this.activity = true;\n },\n onWrapperMouseDown: function(e) {\n Cursor.refresh(e);\n preventEventDefaults(e);\n this.startTap();\n },\n onWrapperTouchStart: function(e) {\n Cursor.refresh(e);\n preventEventDefaults(e);\n this.startTap();\n },\n onDocumentMouseUp: function(e) {\n this.stopDrag();\n this.stopTap();\n },\n onDocumentTouchEnd: function(e) {\n this.stopDrag();\n this.stopTap();\n },\n onHandleClick: function(e) {\n // We keep track if any dragging activity has been made between the\n // mouse/touch down and up events; based on this we allow or cancel a click\n // event from inside the handle. i.e. Click events shouldn't be triggered\n // when dragging, but should be allowed when clicking still\n if (this.activity) {\n preventEventDefaults(e);\n stopEventPropagation(e);\n }\n },\n onWindowResize: function(e) {\n this.reflow();\n },\n enable: function() {\n this.disabled = false;\n this.handle.className = this.handle.className.replace(/\\s?disabled/g, '');\n },\n disable: function() {\n this.disabled = true;\n this.handle.className += ' disabled';\n },\n reflow: function() {\n this.setWrapperOffset();\n this.bounds = this.calculateBounds();\n this.valuePrecision = this.calculateValuePrecision();\n this.updateOffsetFromValue();\n },\n getStep: function() {\n return [\n this.getStepNumber(this.value.target[0]),\n this.getStepNumber(this.value.target[1])\n ];\n },\n getStepWidth: function () {\n return Math.abs(this.bounds.availWidth / this.options.steps);\n },\n getValue: function() {\n return this.value.target;\n },\n setStep: function(x, y, snap) {\n this.setValue(\n this.options.steps && x > 1 ? (x - 1) / (this.options.steps - 1) : 0,\n this.options.steps && y > 1 ? (y - 1) / (this.options.steps - 1) : 0,\n snap\n );\n },\n setValue: function(x, y, snap) {\n this.setTargetValue([x, y || 0]);\n if (snap) {\n this.groupCopy(this.value.current, this.value.target);\n // Since the current value will be equal to the target one instantly, the\n // animate function won't get to run so we need to update the positions\n // and call the callbacks manually\n this.updateOffsetFromValue();\n this.callAnimationCallback();\n }\n },\n startTap: function() {\n if (this.disabled || !this.options.tapping) {\n return;\n }\n\n this.tapping = true;\n this.setWrapperOffset();\n\n //Check if the slider is a stepped snap slider:\n if (this.options.snap && this.options.steps) {\n //If we have a snap slider, it makes more sense that when a user click on the wrapper\n //the handle will snap to the closest step, instead of moving with a ratio until it\n //reaches the step.\n //Check for the closest step and set it as the current value\n var cursorXRatio = (Cursor.x - this.offset.wrapper[0]) / this.bounds.availWidth;\n var cursorYRatio = (Cursor.y - this.offset.wrapper[1]) / this.bounds.availHeight;\n this.setValue(this.getClosestStep(cursorXRatio), this.getClosestStep(cursorYRatio), true);\n } else {\n this.setTargetValueByOffset([\n Cursor.x - this.offset.wrapper[0] - (this.handle.offsetWidth / 2),\n Cursor.y - this.offset.wrapper[1] - (this.handle.offsetHeight / 2)\n ]);\n }\n },\n stopTap: function() {\n if (this.disabled || !this.tapping) {\n return;\n }\n this.tapping = false;\n\n this.setTargetValue(this.value.current);\n },\n startDrag: function() {\n if (this.disabled) {\n return;\n }\n this.dragging = true;\n this.setWrapperOffset();\n\n this.dragStartPosition = {x: Cursor.x, y: Cursor.y};\n this.offset.mouse = [\n Cursor.x - Position.get(this.handle)[0],\n Cursor.y - Position.get(this.handle)[1]\n ];\n if (!this.wrapper.className.match(this.options.activeClass)) {\n this.wrapper.className += ' ' + this.options.activeClass;\n }\n this.callDragStartCallback();\n },\n stopDrag: function() {\n if (this.disabled || !this.dragging) {\n return;\n }\n this.dragging = false;\n var deltaX = this.bounds.availWidth === 0 ? 0 :\n ((Cursor.x - this.dragStartPosition.x) / this.bounds.availWidth),\n deltaY = this.bounds.availHeight === 0 ? 0 :\n ((Cursor.y - this.dragStartPosition.y) / this.bounds.availHeight),\n delta = [deltaX, deltaY];\n\n var target = this.groupClone(this.value.current);\n if (this.options.slide) {\n var ratioChange = this.change;\n target[0] += ratioChange[0] * 4;\n target[1] += ratioChange[1] * 4;\n }\n this.setTargetValue(target);\n this.wrapper.className = this.wrapper.className.replace(' ' + this.options.activeClass, '');\n this.callDragStopCallback(delta);\n },\n callAnimationCallback: function() {\n var value = this.value.current;\n if (this.options.snap && this.options.steps > 1) {\n value = this.getClosestSteps(value);\n }\n if (!this.groupCompare(value, this.value.prev)) {\n if (typeof(this.options.animationCallback) == 'function') {\n this.options.animationCallback.call(this, value[0], value[1]);\n }\n this.groupCopy(this.value.prev, value);\n }\n },\n callTargetCallback: function() {\n if (typeof(this.options.callback) == 'function') {\n this.options.callback.call(this, this.value.target[0], this.value.target[1]);\n }\n },\n callDragStartCallback: function() {\n if (typeof(this.options.dragStartCallback) == 'function') {\n this.options.dragStartCallback.call(this, this.value.target[0], this.value.target[1]);\n }\n },\n callDragStopCallback: function(delta) {\n if (typeof(this.options.dragStopCallback) == 'function') {\n this.options.dragStopCallback.call(this, this.value.target[0], this.value.target[1], delta);\n }\n },\n animateWithRequestAnimationFrame: function (time) {\n if (time) {\n // using requestAnimationFrame\n this.timeOffset = this.timeStamp ? time - this.timeStamp : 0;\n this.timeStamp = time;\n } else {\n // using setTimeout(callback, 25) polyfill\n this.timeOffset = 25;\n }\n this.animate();\n this.interval = this.requestAnimationFrame(this.animateWithRequestAnimationFrame);\n },\n animate: function(direct, first) {\n if (direct && !this.dragging) {\n return;\n }\n if (this.dragging) {\n var prevTarget = this.groupClone(this.value.target);\n\n var offset = [\n Cursor.x - this.offset.wrapper[0] - this.offset.mouse[0],\n Cursor.y - this.offset.wrapper[1] - this.offset.mouse[1]\n ];\n this.setTargetValueByOffset(offset, this.options.loose);\n\n this.change = [\n this.value.target[0] - prevTarget[0],\n this.value.target[1] - prevTarget[1]\n ];\n }\n if (this.dragging || first) {\n this.groupCopy(this.value.current, this.value.target);\n }\n if (this.dragging || this.glide() || first) {\n this.updateOffsetFromValue();\n this.callAnimationCallback();\n }\n },\n glide: function() {\n var diff = [\n this.value.target[0] - this.value.current[0],\n this.value.target[1] - this.value.current[1]\n ];\n if (!diff[0] && !diff[1]) {\n return false;\n }\n if (Math.abs(diff[0]) > this.valuePrecision[0] ||\n Math.abs(diff[1]) > this.valuePrecision[1]) {\n this.value.current[0] += diff[0] * Math.min(this.options.speed * this.timeOffset / 25, 1);\n this.value.current[1] += diff[1] * Math.min(this.options.speed * this.timeOffset / 25, 1);\n } else {\n this.groupCopy(this.value.current, this.value.target);\n }\n return true;\n },\n updateOffsetFromValue: function() {\n if (!this.options.snap) {\n this.offset.current = this.getOffsetsByRatios(this.value.current);\n } else {\n this.offset.current = this.getOffsetsByRatios(\n this.getClosestSteps(this.value.current)\n );\n }\n if (!this.groupCompare(this.offset.current, this.offset.prev)) {\n this.renderHandlePosition();\n this.groupCopy(this.offset.prev, this.offset.current);\n }\n },\n renderHandlePosition: function() {\n\n var transform = '';\n if (this.options.css3 && StylePrefix.transform) {\n if (this.options.horizontal) {\n transform += 'translateX(' + this.offset.current[0] + 'px)';\n }\n if (this.options.vertical) {\n transform += ' translateY(' + this.offset.current[1] + 'px)';\n }\n this.handle.style[StylePrefix.transform] = transform;\n return;\n }\n\n if (this.options.horizontal) {\n this.handle.style.left = this.offset.current[0] + 'px';\n }\n if (this.options.vertical) {\n this.handle.style.top = this.offset.current[1] + 'px';\n }\n },\n setTargetValue: function(value, loose) {\n var target = loose ? this.getLooseValue(value) : this.getProperValue(value);\n\n this.groupCopy(this.value.target, target);\n this.offset.target = this.getOffsetsByRatios(target);\n\n this.callTargetCallback();\n },\n setTargetValueByOffset: function(offset, loose) {\n var value = this.getRatiosByOffsets(offset);\n var target = loose ? this.getLooseValue(value) : this.getProperValue(value);\n\n this.groupCopy(this.value.target, target);\n this.offset.target = this.getOffsetsByRatios(target);\n },\n getLooseValue: function(value) {\n var proper = this.getProperValue(value);\n return [\n proper[0] + ((value[0] - proper[0]) / 4),\n proper[1] + ((value[1] - proper[1]) / 4)\n ];\n },\n getProperValue: function(value) {\n var proper = this.groupClone(value);\n\n proper[0] = Math.max(proper[0], 0);\n proper[1] = Math.max(proper[1], 0);\n proper[0] = Math.min(proper[0], 1);\n proper[1] = Math.min(proper[1], 1);\n\n if ((!this.dragging && !this.tapping) || this.options.snap) {\n if (this.options.steps > 1) {\n proper = this.getClosestSteps(proper);\n }\n }\n return proper;\n },\n getRatiosByOffsets: function(group) {\n return [\n this.getRatioByOffset(group[0], this.bounds.availWidth, this.bounds.left),\n this.getRatioByOffset(group[1], this.bounds.availHeight, this.bounds.top)\n ];\n },\n getRatioByOffset: function(offset, range, padding) {\n return range ? (offset - padding) / range : 0;\n },\n getOffsetsByRatios: function(group) {\n return [\n this.getOffsetByRatio(group[0], this.bounds.availWidth, this.bounds.left),\n this.getOffsetByRatio(group[1], this.bounds.availHeight, this.bounds.top)\n ];\n },\n getOffsetByRatio: function(ratio, range, padding) {\n return Math.round(ratio * range) + padding;\n },\n getStepNumber: function(value) {\n // Translate a [0-1] value into a number from 1 to N steps (set using the\n // \"steps\" option)\n return this.getClosestStep(value) * (this.options.steps - 1) + 1;\n },\n getClosestSteps: function(group) {\n return [\n this.getClosestStep(group[0]),\n this.getClosestStep(group[1])\n ];\n },\n getClosestStep: function(value) {\n var k = 0;\n var min = 1;\n for (var i = 0; i <= this.options.steps - 1; i++) {\n if (Math.abs(this.stepRatios[i] - value) < min) {\n min = Math.abs(this.stepRatios[i] - value);\n k = i;\n }\n }\n return this.stepRatios[k];\n },\n groupCompare: function(a, b) {\n return a[0] == b[0] && a[1] == b[1];\n },\n groupCopy: function(a, b) {\n a[0] = b[0];\n a[1] = b[1];\n },\n groupClone: function(a) {\n return [a[0], a[1]];\n },\n draggingOnDisabledAxis: function() {\n return (!this.options.horizontal && Cursor.xDiff > Cursor.yDiff) ||\n (!this.options.vertical && Cursor.yDiff > Cursor.xDiff);\n }\n};\n\n\nvar bind = function(fn, context) {\n /**\n * CoffeeScript-like function to bind the scope of a method to an instance,\n * the context of that method, regardless from where it is called\n */\n return function() {\n return fn.apply(context, arguments);\n };\n};\n\n// Cross-browser vanilla JS event handling\n\nvar addEventListener = function(element, type, callback) {\n if (element.addEventListener) {\n element.addEventListener(type, callback, false);\n } else if (element.attachEvent) {\n element.attachEvent('on' + type, callback);\n }\n};\n\nvar removeEventListener = function(element, type, callback) {\n if (element.removeEventListener) {\n element.removeEventListener(type, callback, false);\n } else if (element.detachEvent) {\n element.detachEvent('on' + type, callback);\n }\n};\n\nvar preventEventDefaults = function(e) {\n if (!e) {\n e = window.event;\n }\n if (e.preventDefault) {\n e.preventDefault();\n }\n e.returnValue = false;\n};\n\nvar stopEventPropagation = function(e) {\n if (!e) {\n e = window.event;\n }\n if (e.stopPropagation) {\n e.stopPropagation();\n }\n e.cancelBubble = true;\n};\n\n\nvar Cursor = {\n /**\n * Abstraction for making the combined mouse or touch position available at\n * any time.\n *\n * It picks up the \"move\" events as an independent component and simply makes\n * the latest x and y mouse/touch position of the user available at any time,\n * which is requested with Cursor.x and Cursor.y respectively.\n *\n * It can receive both mouse and touch events consecutively, extracting the\n * relevant meta data from each type of event.\n *\n * Cursor.refresh(e) is called to update the global x and y values, with a\n * genuine MouseEvent or a TouchEvent from an event listener, e.g.\n * mousedown/up or touchstart/end\n */\n x: 0,\n y: 0,\n xDiff: 0,\n yDiff: 0,\n refresh: function(e) {\n if (!e) {\n e = window.event;\n }\n if (e.type == 'mousemove') {\n this.set(e);\n } else if (e.touches) {\n this.set(e.touches[0]);\n }\n },\n set: function(e) {\n var lastX = this.x,\n lastY = this.y;\n if (e.clientX || e.clientY) {\n this.x = e.clientX;\n this.y = e.clientY;\n } else if (e.pageX || e.pageY) {\n this.x = e.pageX - document.body.scrollLeft - document.documentElement.scrollLeft;\n this.y = e.pageY - document.body.scrollTop - document.documentElement.scrollTop;\n }\n this.xDiff = Math.abs(this.x - lastX);\n this.yDiff = Math.abs(this.y - lastY);\n }\n};\n\n\nvar Position = {\n /**\n * Helper for extracting position of a DOM element, relative to the viewport\n *\n * The get(obj) method accepts a DOM element as the only parameter, and\n * returns the position under a (x, y) tuple, as an array with two elements.\n */\n get: function(obj) {\n // Dragdealer relies on getBoundingClientRect to calculate element offsets,\n // but we want to be sure we don't throw any unhandled exceptions and break\n // other code from the page if running from in very old browser that doesn't\n // support this method\n var rect = {left: 0, top: 0};\n if (obj.getBoundingClientRect !== undefined) {\n rect = obj.getBoundingClientRect();\n }\n return [rect.left, rect.top];\n }\n};\n\n\nvar StylePrefix = {\n transform: getPrefixedStylePropName('transform'),\n perspective: getPrefixedStylePropName('perspective'),\n backfaceVisibility: getPrefixedStylePropName('backfaceVisibility')\n};\n\nfunction getPrefixedStylePropName(propName) {\n var domPrefixes = 'Webkit Moz ms O'.split(' '),\n elStyle = document.documentElement.style;\n if (elStyle[propName] !== undefined) return propName; // Is supported unprefixed\n propName = propName.charAt(0).toUpperCase() + propName.substr(1);\n for (var i = 0; i < domPrefixes.length; i++) {\n if (elStyle[domPrefixes[i] + propName] !== undefined) {\n return domPrefixes[i] + propName; // Is supported with prefix\n }\n }\n};\n\nfunction triggerWebkitHardwareAcceleration(element) {\n if (StylePrefix.backfaceVisibility && StylePrefix.perspective) {\n element.style[StylePrefix.perspective] = '1000px';\n element.style[StylePrefix.backfaceVisibility] = 'hidden';\n }\n};\n\nvar vendors = ['webkit', 'moz'];\nvar requestAnimationFrame = window.requestAnimationFrame;\nvar cancelAnimationFrame = window.cancelAnimationFrame;\n\nfor (var x = 0; x < vendors.length && !requestAnimationFrame; ++x) {\n requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];\n cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] ||\n window[vendors[x] + 'CancelRequestAnimationFrame'];\n}\n\nif (!requestAnimationFrame) {\n requestAnimationFrame = function (callback) {\n return setTimeout(callback, 25);\n };\n cancelAnimationFrame = clearTimeout;\n}\n\nreturn Dragdealer;\n\n}));\n\n},{}],112:[function(require,module,exports){\n'use strict';\n\nvar callBind = require('call-bind-apply-helpers');\nvar gOPD = require('gopd');\n\n// eslint-disable-next-line no-extra-parens, no-proto\nvar hasProtoAccessor = /** @type {{ __proto__?: typeof Array.prototype }} */ ([]).__proto__ === Array.prototype;\n\n// eslint-disable-next-line no-extra-parens\nvar desc = hasProtoAccessor && gOPD && gOPD(Object.prototype, /** @type {keyof typeof Object.prototype} */ ('__proto__'));\n\nvar $Object = Object;\nvar $getPrototypeOf = $Object.getPrototypeOf;\n\n/** @type {import('./get')} */\nmodule.exports = desc && typeof desc.get === 'function'\n\t? callBind([desc.get])\n\t: typeof $getPrototypeOf === 'function'\n\t\t? /** @type {import('./get')} */ function getDunder(value) {\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\treturn $getPrototypeOf(value == null ? value : $Object(value));\n\t\t}\n\t\t: false;\n\n},{\"call-bind-apply-helpers\":105,\"gopd\":127}],113:[function(require,module,exports){\n'use strict';\n\n/** @type {import('.')} */\nvar $defineProperty = Object.defineProperty || false;\nif ($defineProperty) {\n\ttry {\n\t\t$defineProperty({}, 'a', { value: 1 });\n\t} catch (e) {\n\t\t// IE 8 has a broken defineProperty\n\t\t$defineProperty = false;\n\t}\n}\n\nmodule.exports = $defineProperty;\n\n},{}],114:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./eval')} */\nmodule.exports = EvalError;\n\n},{}],115:[function(require,module,exports){\n'use strict';\n\n/** @type {import('.')} */\nmodule.exports = Error;\n\n},{}],116:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./range')} */\nmodule.exports = RangeError;\n\n},{}],117:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./ref')} */\nmodule.exports = ReferenceError;\n\n},{}],118:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./syntax')} */\nmodule.exports = SyntaxError;\n\n},{}],119:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./type')} */\nmodule.exports = TypeError;\n\n},{}],120:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./uri')} */\nmodule.exports = URIError;\n\n},{}],121:[function(require,module,exports){\n/*!\n * eventie v1.0.6\n * event binding helper\n * eventie.bind( elem, 'click', myFn )\n * eventie.unbind( elem, 'click', myFn )\n * MIT license\n */\n\n/*jshint browser: true, undef: true, unused: true */\n/*global define: false, module: false */\n\n( function( window ) {\n\n'use strict';\n\nvar docElem = document.documentElement;\n\nvar bind = function() {};\n\nfunction getIEEvent( obj ) {\n var event = window.event;\n // add event.target\n event.target = event.target || event.srcElement || obj;\n return event;\n}\n\nif ( docElem.addEventListener ) {\n bind = function( obj, type, fn ) {\n obj.addEventListener( type, fn, false );\n };\n} else if ( docElem.attachEvent ) {\n bind = function( obj, type, fn ) {\n obj[ type + fn ] = fn.handleEvent ?\n function() {\n var event = getIEEvent( obj );\n fn.handleEvent.call( fn, event );\n } :\n function() {\n var event = getIEEvent( obj );\n fn.call( obj, event );\n };\n obj.attachEvent( \"on\" + type, obj[ type + fn ] );\n };\n}\n\nvar unbind = function() {};\n\nif ( docElem.removeEventListener ) {\n unbind = function( obj, type, fn ) {\n obj.removeEventListener( type, fn, false );\n };\n} else if ( docElem.detachEvent ) {\n unbind = function( obj, type, fn ) {\n obj.detachEvent( \"on\" + type, obj[ type + fn ] );\n try {\n delete obj[ type + fn ];\n } catch ( err ) {\n // can't delete window object properties\n obj[ type + fn ] = undefined;\n }\n };\n}\n\nvar eventie = {\n bind: bind,\n unbind: unbind\n};\n\n// ----- module definition ----- //\n\nif ( typeof define === 'function' && define.amd ) {\n // AMD\n define( eventie );\n} else if ( typeof exports === 'object' ) {\n // CommonJS\n module.exports = eventie;\n} else {\n // browser global\n window.eventie = eventie;\n}\n\n})( window );\n\n},{}],122:[function(require,module,exports){\n(function() {\n\n var debug = false;\n\n var root = this;\n\n var EXIF = function(obj) {\n if (obj instanceof EXIF) return obj;\n if (!(this instanceof EXIF)) return new EXIF(obj);\n this.EXIFwrapped = obj;\n };\n\n if (typeof exports !== 'undefined') {\n if (typeof module !== 'undefined' && module.exports) {\n exports = module.exports = EXIF;\n }\n exports.EXIF = EXIF;\n } else {\n root.EXIF = EXIF;\n }\n\n var ExifTags = EXIF.Tags = {\n\n // version tags\n 0x9000 : \"ExifVersion\", // EXIF version\n 0xA000 : \"FlashpixVersion\", // Flashpix format version\n\n // colorspace tags\n 0xA001 : \"ColorSpace\", // Color space information tag\n\n // image configuration\n 0xA002 : \"PixelXDimension\", // Valid width of meaningful image\n 0xA003 : \"PixelYDimension\", // Valid height of meaningful image\n 0x9101 : \"ComponentsConfiguration\", // Information about channels\n 0x9102 : \"CompressedBitsPerPixel\", // Compressed bits per pixel\n\n // user information\n 0x927C : \"MakerNote\", // Any desired information written by the manufacturer\n 0x9286 : \"UserComment\", // Comments by user\n\n // related file\n 0xA004 : \"RelatedSoundFile\", // Name of related sound file\n\n // date and time\n 0x9003 : \"DateTimeOriginal\", // Date and time when the original image was generated\n 0x9004 : \"DateTimeDigitized\", // Date and time when the image was stored digitally\n 0x9290 : \"SubsecTime\", // Fractions of seconds for DateTime\n 0x9291 : \"SubsecTimeOriginal\", // Fractions of seconds for DateTimeOriginal\n 0x9292 : \"SubsecTimeDigitized\", // Fractions of seconds for DateTimeDigitized\n\n // picture-taking conditions\n 0x829A : \"ExposureTime\", // Exposure time (in seconds)\n 0x829D : \"FNumber\", // F number\n 0x8822 : \"ExposureProgram\", // Exposure program\n 0x8824 : \"SpectralSensitivity\", // Spectral sensitivity\n 0x8827 : \"ISOSpeedRatings\", // ISO speed rating\n 0x8828 : \"OECF\", // Optoelectric conversion factor\n 0x9201 : \"ShutterSpeedValue\", // Shutter speed\n 0x9202 : \"ApertureValue\", // Lens aperture\n 0x9203 : \"BrightnessValue\", // Value of brightness\n 0x9204 : \"ExposureBias\", // Exposure bias\n 0x9205 : \"MaxApertureValue\", // Smallest F number of lens\n 0x9206 : \"SubjectDistance\", // Distance to subject in meters\n 0x9207 : \"MeteringMode\", // Metering mode\n 0x9208 : \"LightSource\", // Kind of light source\n 0x9209 : \"Flash\", // Flash status\n 0x9214 : \"SubjectArea\", // Location and area of main subject\n 0x920A : \"FocalLength\", // Focal length of the lens in mm\n 0xA20B : \"FlashEnergy\", // Strobe energy in BCPS\n 0xA20C : \"SpatialFrequencyResponse\", //\n 0xA20E : \"FocalPlaneXResolution\", // Number of pixels in width direction per FocalPlaneResolutionUnit\n 0xA20F : \"FocalPlaneYResolution\", // Number of pixels in height direction per FocalPlaneResolutionUnit\n 0xA210 : \"FocalPlaneResolutionUnit\", // Unit for measuring FocalPlaneXResolution and FocalPlaneYResolution\n 0xA214 : \"SubjectLocation\", // Location of subject in image\n 0xA215 : \"ExposureIndex\", // Exposure index selected on camera\n 0xA217 : \"SensingMethod\", // Image sensor type\n 0xA300 : \"FileSource\", // Image source (3 == DSC)\n 0xA301 : \"SceneType\", // Scene type (1 == directly photographed)\n 0xA302 : \"CFAPattern\", // Color filter array geometric pattern\n 0xA401 : \"CustomRendered\", // Special processing\n 0xA402 : \"ExposureMode\", // Exposure mode\n 0xA403 : \"WhiteBalance\", // 1 = auto white balance, 2 = manual\n 0xA404 : \"DigitalZoomRation\", // Digital zoom ratio\n 0xA405 : \"FocalLengthIn35mmFilm\", // Equivalent foacl length assuming 35mm film camera (in mm)\n 0xA406 : \"SceneCaptureType\", // Type of scene\n 0xA407 : \"GainControl\", // Degree of overall image gain adjustment\n 0xA408 : \"Contrast\", // Direction of contrast processing applied by camera\n 0xA409 : \"Saturation\", // Direction of saturation processing applied by camera\n 0xA40A : \"Sharpness\", // Direction of sharpness processing applied by camera\n 0xA40B : \"DeviceSettingDescription\", //\n 0xA40C : \"SubjectDistanceRange\", // Distance to subject\n\n // other tags\n 0xA005 : \"InteroperabilityIFDPointer\",\n 0xA420 : \"ImageUniqueID\" // Identifier assigned uniquely to each image\n };\n\n var TiffTags = EXIF.TiffTags = {\n 0x0100 : \"ImageWidth\",\n 0x0101 : \"ImageHeight\",\n 0x8769 : \"ExifIFDPointer\",\n 0x8825 : \"GPSInfoIFDPointer\",\n 0xA005 : \"InteroperabilityIFDPointer\",\n 0x0102 : \"BitsPerSample\",\n 0x0103 : \"Compression\",\n 0x0106 : \"PhotometricInterpretation\",\n 0x0112 : \"Orientation\",\n 0x0115 : \"SamplesPerPixel\",\n 0x011C : \"PlanarConfiguration\",\n 0x0212 : \"YCbCrSubSampling\",\n 0x0213 : \"YCbCrPositioning\",\n 0x011A : \"XResolution\",\n 0x011B : \"YResolution\",\n 0x0128 : \"ResolutionUnit\",\n 0x0111 : \"StripOffsets\",\n 0x0116 : \"RowsPerStrip\",\n 0x0117 : \"StripByteCounts\",\n 0x0201 : \"JPEGInterchangeFormat\",\n 0x0202 : \"JPEGInterchangeFormatLength\",\n 0x012D : \"TransferFunction\",\n 0x013E : \"WhitePoint\",\n 0x013F : \"PrimaryChromaticities\",\n 0x0211 : \"YCbCrCoefficients\",\n 0x0214 : \"ReferenceBlackWhite\",\n 0x0132 : \"DateTime\",\n 0x010E : \"ImageDescription\",\n 0x010F : \"Make\",\n 0x0110 : \"Model\",\n 0x0131 : \"Software\",\n 0x013B : \"Artist\",\n 0x8298 : \"Copyright\"\n };\n\n var GPSTags = EXIF.GPSTags = {\n 0x0000 : \"GPSVersionID\",\n 0x0001 : \"GPSLatitudeRef\",\n 0x0002 : \"GPSLatitude\",\n 0x0003 : \"GPSLongitudeRef\",\n 0x0004 : \"GPSLongitude\",\n 0x0005 : \"GPSAltitudeRef\",\n 0x0006 : \"GPSAltitude\",\n 0x0007 : \"GPSTimeStamp\",\n 0x0008 : \"GPSSatellites\",\n 0x0009 : \"GPSStatus\",\n 0x000A : \"GPSMeasureMode\",\n 0x000B : \"GPSDOP\",\n 0x000C : \"GPSSpeedRef\",\n 0x000D : \"GPSSpeed\",\n 0x000E : \"GPSTrackRef\",\n 0x000F : \"GPSTrack\",\n 0x0010 : \"GPSImgDirectionRef\",\n 0x0011 : \"GPSImgDirection\",\n 0x0012 : \"GPSMapDatum\",\n 0x0013 : \"GPSDestLatitudeRef\",\n 0x0014 : \"GPSDestLatitude\",\n 0x0015 : \"GPSDestLongitudeRef\",\n 0x0016 : \"GPSDestLongitude\",\n 0x0017 : \"GPSDestBearingRef\",\n 0x0018 : \"GPSDestBearing\",\n 0x0019 : \"GPSDestDistanceRef\",\n 0x001A : \"GPSDestDistance\",\n 0x001B : \"GPSProcessingMethod\",\n 0x001C : \"GPSAreaInformation\",\n 0x001D : \"GPSDateStamp\",\n 0x001E : \"GPSDifferential\"\n };\n\n // EXIF 2.3 Spec\n var IFD1Tags = EXIF.IFD1Tags = {\n 0x0100: \"ImageWidth\",\n 0x0101: \"ImageHeight\",\n 0x0102: \"BitsPerSample\",\n 0x0103: \"Compression\",\n 0x0106: \"PhotometricInterpretation\",\n 0x0111: \"StripOffsets\",\n 0x0112: \"Orientation\",\n 0x0115: \"SamplesPerPixel\",\n 0x0116: \"RowsPerStrip\",\n 0x0117: \"StripByteCounts\",\n 0x011A: \"XResolution\",\n 0x011B: \"YResolution\",\n 0x011C: \"PlanarConfiguration\",\n 0x0128: \"ResolutionUnit\",\n 0x0201: \"JpegIFOffset\", // When image format is JPEG, this value show offset to JPEG data stored.(aka \"ThumbnailOffset\" or \"JPEGInterchangeFormat\")\n 0x0202: \"JpegIFByteCount\", // When image format is JPEG, this value shows data size of JPEG image (aka \"ThumbnailLength\" or \"JPEGInterchangeFormatLength\")\n 0x0211: \"YCbCrCoefficients\",\n 0x0212: \"YCbCrSubSampling\",\n 0x0213: \"YCbCrPositioning\",\n 0x0214: \"ReferenceBlackWhite\"\n };\n\n var StringValues = EXIF.StringValues = {\n ExposureProgram : {\n 0 : \"Not defined\",\n 1 : \"Manual\",\n 2 : \"Normal program\",\n 3 : \"Aperture priority\",\n 4 : \"Shutter priority\",\n 5 : \"Creative program\",\n 6 : \"Action program\",\n 7 : \"Portrait mode\",\n 8 : \"Landscape mode\"\n },\n MeteringMode : {\n 0 : \"Unknown\",\n 1 : \"Average\",\n 2 : \"CenterWeightedAverage\",\n 3 : \"Spot\",\n 4 : \"MultiSpot\",\n 5 : \"Pattern\",\n 6 : \"Partial\",\n 255 : \"Other\"\n },\n LightSource : {\n 0 : \"Unknown\",\n 1 : \"Daylight\",\n 2 : \"Fluorescent\",\n 3 : \"Tungsten (incandescent light)\",\n 4 : \"Flash\",\n 9 : \"Fine weather\",\n 10 : \"Cloudy weather\",\n 11 : \"Shade\",\n 12 : \"Daylight fluorescent (D 5700 - 7100K)\",\n 13 : \"Day white fluorescent (N 4600 - 5400K)\",\n 14 : \"Cool white fluorescent (W 3900 - 4500K)\",\n 15 : \"White fluorescent (WW 3200 - 3700K)\",\n 17 : \"Standard light A\",\n 18 : \"Standard light B\",\n 19 : \"Standard light C\",\n 20 : \"D55\",\n 21 : \"D65\",\n 22 : \"D75\",\n 23 : \"D50\",\n 24 : \"ISO studio tungsten\",\n 255 : \"Other\"\n },\n Flash : {\n 0x0000 : \"Flash did not fire\",\n 0x0001 : \"Flash fired\",\n 0x0005 : \"Strobe return light not detected\",\n 0x0007 : \"Strobe return light detected\",\n 0x0009 : \"Flash fired, compulsory flash mode\",\n 0x000D : \"Flash fired, compulsory flash mode, return light not detected\",\n 0x000F : \"Flash fired, compulsory flash mode, return light detected\",\n 0x0010 : \"Flash did not fire, compulsory flash mode\",\n 0x0018 : \"Flash did not fire, auto mode\",\n 0x0019 : \"Flash fired, auto mode\",\n 0x001D : \"Flash fired, auto mode, return light not detected\",\n 0x001F : \"Flash fired, auto mode, return light detected\",\n 0x0020 : \"No flash function\",\n 0x0041 : \"Flash fired, red-eye reduction mode\",\n 0x0045 : \"Flash fired, red-eye reduction mode, return light not detected\",\n 0x0047 : \"Flash fired, red-eye reduction mode, return light detected\",\n 0x0049 : \"Flash fired, compulsory flash mode, red-eye reduction mode\",\n 0x004D : \"Flash fired, compulsory flash mode, red-eye reduction mode, return light not detected\",\n 0x004F : \"Flash fired, compulsory flash mode, red-eye reduction mode, return light detected\",\n 0x0059 : \"Flash fired, auto mode, red-eye reduction mode\",\n 0x005D : \"Flash fired, auto mode, return light not detected, red-eye reduction mode\",\n 0x005F : \"Flash fired, auto mode, return light detected, red-eye reduction mode\"\n },\n SensingMethod : {\n 1 : \"Not defined\",\n 2 : \"One-chip color area sensor\",\n 3 : \"Two-chip color area sensor\",\n 4 : \"Three-chip color area sensor\",\n 5 : \"Color sequential area sensor\",\n 7 : \"Trilinear sensor\",\n 8 : \"Color sequential linear sensor\"\n },\n SceneCaptureType : {\n 0 : \"Standard\",\n 1 : \"Landscape\",\n 2 : \"Portrait\",\n 3 : \"Night scene\"\n },\n SceneType : {\n 1 : \"Directly photographed\"\n },\n CustomRendered : {\n 0 : \"Normal process\",\n 1 : \"Custom process\"\n },\n WhiteBalance : {\n 0 : \"Auto white balance\",\n 1 : \"Manual white balance\"\n },\n GainControl : {\n 0 : \"None\",\n 1 : \"Low gain up\",\n 2 : \"High gain up\",\n 3 : \"Low gain down\",\n 4 : \"High gain down\"\n },\n Contrast : {\n 0 : \"Normal\",\n 1 : \"Soft\",\n 2 : \"Hard\"\n },\n Saturation : {\n 0 : \"Normal\",\n 1 : \"Low saturation\",\n 2 : \"High saturation\"\n },\n Sharpness : {\n 0 : \"Normal\",\n 1 : \"Soft\",\n 2 : \"Hard\"\n },\n SubjectDistanceRange : {\n 0 : \"Unknown\",\n 1 : \"Macro\",\n 2 : \"Close view\",\n 3 : \"Distant view\"\n },\n FileSource : {\n 3 : \"DSC\"\n },\n\n Components : {\n 0 : \"\",\n 1 : \"Y\",\n 2 : \"Cb\",\n 3 : \"Cr\",\n 4 : \"R\",\n 5 : \"G\",\n 6 : \"B\"\n }\n };\n\n function addEvent(element, event, handler) {\n if (element.addEventListener) {\n element.addEventListener(event, handler, false);\n } else if (element.attachEvent) {\n element.attachEvent(\"on\" + event, handler);\n }\n }\n\n function imageHasData(img) {\n return !!(img.exifdata);\n }\n\n\n function base64ToArrayBuffer(base64, contentType) {\n contentType = contentType || base64.match(/^data\\:([^\\;]+)\\;base64,/mi)[1] || ''; // e.g. 'data:image/jpeg;base64,...' => 'image/jpeg'\n base64 = base64.replace(/^data\\:([^\\;]+)\\;base64,/gmi, '');\n var binary = atob(base64);\n var len = binary.length;\n var buffer = new ArrayBuffer(len);\n var view = new Uint8Array(buffer);\n for (var i = 0; i < len; i++) {\n view[i] = binary.charCodeAt(i);\n }\n return buffer;\n }\n\n function objectURLToBlob(url, callback) {\n var http = new XMLHttpRequest();\n http.open(\"GET\", url, true);\n http.responseType = \"blob\";\n http.onload = function(e) {\n if (this.status == 200 || this.status === 0) {\n callback(this.response);\n }\n };\n http.send();\n }\n\n function getImageData(img, callback) {\n function handleBinaryFile(binFile) {\n var data = findEXIFinJPEG(binFile);\n img.exifdata = data || {};\n var iptcdata = findIPTCinJPEG(binFile);\n img.iptcdata = iptcdata || {};\n if (EXIF.isXmpEnabled) {\n var xmpdata= findXMPinJPEG(binFile);\n img.xmpdata = xmpdata || {}; \n }\n if (callback) {\n callback.call(img);\n }\n }\n\n if (img.src) {\n if (/^data\\:/i.test(img.src)) { // Data URI\n var arrayBuffer = base64ToArrayBuffer(img.src);\n handleBinaryFile(arrayBuffer);\n\n } else if (/^blob\\:/i.test(img.src)) { // Object URL\n var fileReader = new FileReader();\n fileReader.onload = function(e) {\n handleBinaryFile(e.target.result);\n };\n objectURLToBlob(img.src, function (blob) {\n fileReader.readAsArrayBuffer(blob);\n });\n } else {\n var http = new XMLHttpRequest();\n http.onload = function() {\n if (this.status == 200 || this.status === 0) {\n handleBinaryFile(http.response);\n } else {\n throw \"Could not load image\";\n }\n http = null;\n };\n http.open(\"GET\", img.src, true);\n http.responseType = \"arraybuffer\";\n http.send(null);\n }\n } else if (self.FileReader && (img instanceof self.Blob || img instanceof self.File)) {\n var fileReader = new FileReader();\n fileReader.onload = function(e) {\n if (debug) console.log(\"Got file of length \" + e.target.result.byteLength);\n handleBinaryFile(e.target.result);\n };\n\n fileReader.readAsArrayBuffer(img);\n }\n }\n\n function findEXIFinJPEG(file) {\n var dataView = new DataView(file);\n\n if (debug) console.log(\"Got file of length \" + file.byteLength);\n if ((dataView.getUint8(0) != 0xFF) || (dataView.getUint8(1) != 0xD8)) {\n if (debug) console.log(\"Not a valid JPEG\");\n return false; // not a valid jpeg\n }\n\n var offset = 2,\n length = file.byteLength,\n marker;\n\n while (offset < length) {\n if (dataView.getUint8(offset) != 0xFF) {\n if (debug) console.log(\"Not a valid marker at offset \" + offset + \", found: \" + dataView.getUint8(offset));\n return false; // not a valid marker, something is wrong\n }\n\n marker = dataView.getUint8(offset + 1);\n if (debug) console.log(marker);\n\n // we could implement handling for other markers here,\n // but we're only looking for 0xFFE1 for EXIF data\n\n if (marker == 225) {\n if (debug) console.log(\"Found 0xFFE1 marker\");\n\n return readEXIFData(dataView, offset + 4, dataView.getUint16(offset + 2) - 2);\n\n // offset += 2 + file.getShortAt(offset+2, true);\n\n } else {\n offset += 2 + dataView.getUint16(offset+2);\n }\n\n }\n\n }\n\n function findIPTCinJPEG(file) {\n var dataView = new DataView(file);\n\n if (debug) console.log(\"Got file of length \" + file.byteLength);\n if ((dataView.getUint8(0) != 0xFF) || (dataView.getUint8(1) != 0xD8)) {\n if (debug) console.log(\"Not a valid JPEG\");\n return false; // not a valid jpeg\n }\n\n var offset = 2,\n length = file.byteLength;\n\n\n var isFieldSegmentStart = function(dataView, offset){\n return (\n dataView.getUint8(offset) === 0x38 &&\n dataView.getUint8(offset+1) === 0x42 &&\n dataView.getUint8(offset+2) === 0x49 &&\n dataView.getUint8(offset+3) === 0x4D &&\n dataView.getUint8(offset+4) === 0x04 &&\n dataView.getUint8(offset+5) === 0x04\n );\n };\n\n while (offset < length) {\n\n if ( isFieldSegmentStart(dataView, offset )){\n\n // Get the length of the name header (which is padded to an even number of bytes)\n var nameHeaderLength = dataView.getUint8(offset+7);\n if(nameHeaderLength % 2 !== 0) nameHeaderLength += 1;\n // Check for pre photoshop 6 format\n if(nameHeaderLength === 0) {\n // Always 4\n nameHeaderLength = 4;\n }\n\n var startOffset = offset + 8 + nameHeaderLength;\n var sectionLength = dataView.getUint16(offset + 6 + nameHeaderLength);\n\n return readIPTCData(file, startOffset, sectionLength);\n\n break;\n\n }\n\n\n // Not the marker, continue searching\n offset++;\n\n }\n\n }\n var IptcFieldMap = {\n 0x78 : 'caption',\n 0x6E : 'credit',\n 0x19 : 'keywords',\n 0x37 : 'dateCreated',\n 0x50 : 'byline',\n 0x55 : 'bylineTitle',\n 0x7A : 'captionWriter',\n 0x69 : 'headline',\n 0x74 : 'copyright',\n 0x0F : 'category'\n };\n function readIPTCData(file, startOffset, sectionLength){\n var dataView = new DataView(file);\n var data = {};\n var fieldValue, fieldName, dataSize, segmentType, segmentSize;\n var segmentStartPos = startOffset;\n while(segmentStartPos < startOffset+sectionLength) {\n if(dataView.getUint8(segmentStartPos) === 0x1C && dataView.getUint8(segmentStartPos+1) === 0x02){\n segmentType = dataView.getUint8(segmentStartPos+2);\n if(segmentType in IptcFieldMap) {\n dataSize = dataView.getInt16(segmentStartPos+3);\n segmentSize = dataSize + 5;\n fieldName = IptcFieldMap[segmentType];\n fieldValue = getStringFromDB(dataView, segmentStartPos+5, dataSize);\n // Check if we already stored a value with this name\n if(data.hasOwnProperty(fieldName)) {\n // Value already stored with this name, create multivalue field\n if(data[fieldName] instanceof Array) {\n data[fieldName].push(fieldValue);\n }\n else {\n data[fieldName] = [data[fieldName], fieldValue];\n }\n }\n else {\n data[fieldName] = fieldValue;\n }\n }\n\n }\n segmentStartPos++;\n }\n return data;\n }\n\n\n\n function readTags(file, tiffStart, dirStart, strings, bigEnd) {\n var entries = file.getUint16(dirStart, !bigEnd),\n tags = {},\n entryOffset, tag,\n i;\n\n for (i=0;i<entries;i++) {\n entryOffset = dirStart + i*12 + 2;\n tag = strings[file.getUint16(entryOffset, !bigEnd)];\n if (!tag && debug) console.log(\"Unknown tag: \" + file.getUint16(entryOffset, !bigEnd));\n tags[tag] = readTagValue(file, entryOffset, tiffStart, dirStart, bigEnd);\n }\n return tags;\n }\n\n\n function readTagValue(file, entryOffset, tiffStart, dirStart, bigEnd) {\n var type = file.getUint16(entryOffset+2, !bigEnd),\n numValues = file.getUint32(entryOffset+4, !bigEnd),\n valueOffset = file.getUint32(entryOffset+8, !bigEnd) + tiffStart,\n offset,\n vals, val, n,\n numerator, denominator;\n\n switch (type) {\n case 1: // byte, 8-bit unsigned int\n case 7: // undefined, 8-bit byte, value depending on field\n if (numValues == 1) {\n return file.getUint8(entryOffset + 8, !bigEnd);\n } else {\n offset = numValues > 4 ? valueOffset : (entryOffset + 8);\n vals = [];\n for (n=0;n<numValues;n++) {\n vals[n] = file.getUint8(offset + n);\n }\n return vals;\n }\n\n case 2: // ascii, 8-bit byte\n offset = numValues > 4 ? valueOffset : (entryOffset + 8);\n return getStringFromDB(file, offset, numValues-1);\n\n case 3: // short, 16 bit int\n if (numValues == 1) {\n return file.getUint16(entryOffset + 8, !bigEnd);\n } else {\n offset = numValues > 2 ? valueOffset : (entryOffset + 8);\n vals = [];\n for (n=0;n<numValues;n++) {\n vals[n] = file.getUint16(offset + 2*n, !bigEnd);\n }\n return vals;\n }\n\n case 4: // long, 32 bit int\n if (numValues == 1) {\n return file.getUint32(entryOffset + 8, !bigEnd);\n } else {\n vals = [];\n for (n=0;n<numValues;n++) {\n vals[n] = file.getUint32(valueOffset + 4*n, !bigEnd);\n }\n return vals;\n }\n\n case 5: // rational = two long values, first is numerator, second is denominator\n if (numValues == 1) {\n numerator = file.getUint32(valueOffset, !bigEnd);\n denominator = file.getUint32(valueOffset+4, !bigEnd);\n val = new Number(numerator / denominator);\n val.numerator = numerator;\n val.denominator = denominator;\n return val;\n } else {\n vals = [];\n for (n=0;n<numValues;n++) {\n numerator = file.getUint32(valueOffset + 8*n, !bigEnd);\n denominator = file.getUint32(valueOffset+4 + 8*n, !bigEnd);\n vals[n] = new Number(numerator / denominator);\n vals[n].numerator = numerator;\n vals[n].denominator = denominator;\n }\n return vals;\n }\n\n case 9: // slong, 32 bit signed int\n if (numValues == 1) {\n return file.getInt32(entryOffset + 8, !bigEnd);\n } else {\n vals = [];\n for (n=0;n<numValues;n++) {\n vals[n] = file.getInt32(valueOffset + 4*n, !bigEnd);\n }\n return vals;\n }\n\n case 10: // signed rational, two slongs, first is numerator, second is denominator\n if (numValues == 1) {\n return file.getInt32(valueOffset, !bigEnd) / file.getInt32(valueOffset+4, !bigEnd);\n } else {\n vals = [];\n for (n=0;n<numValues;n++) {\n vals[n] = file.getInt32(valueOffset + 8*n, !bigEnd) / file.getInt32(valueOffset+4 + 8*n, !bigEnd);\n }\n return vals;\n }\n }\n }\n\n /**\n * Given an IFD (Image File Directory) start offset\n * returns an offset to next IFD or 0 if it's the last IFD.\n */\n function getNextIFDOffset(dataView, dirStart, bigEnd){\n //the first 2bytes means the number of directory entries contains in this IFD\n var entries = dataView.getUint16(dirStart, !bigEnd);\n\n // After last directory entry, there is a 4bytes of data,\n // it means an offset to next IFD.\n // If its value is '0x00000000', it means this is the last IFD and there is no linked IFD.\n\n return dataView.getUint32(dirStart + 2 + entries * 12, !bigEnd); // each entry is 12 bytes long\n }\n\n function readThumbnailImage(dataView, tiffStart, firstIFDOffset, bigEnd){\n // get the IFD1 offset\n var IFD1OffsetPointer = getNextIFDOffset(dataView, tiffStart+firstIFDOffset, bigEnd);\n\n if (!IFD1OffsetPointer) {\n // console.log('******** IFD1Offset is empty, image thumb not found ********');\n return {};\n }\n else if (IFD1OffsetPointer > dataView.byteLength) { // this should not happen\n // console.log('******** IFD1Offset is outside the bounds of the DataView ********');\n return {};\n }\n // console.log('******* thumbnail IFD offset (IFD1) is: %s', IFD1OffsetPointer);\n\n var thumbTags = readTags(dataView, tiffStart, tiffStart + IFD1OffsetPointer, IFD1Tags, bigEnd)\n\n // EXIF 2.3 specification for JPEG format thumbnail\n\n // If the value of Compression(0x0103) Tag in IFD1 is '6', thumbnail image format is JPEG.\n // Most of Exif image uses JPEG format for thumbnail. In that case, you can get offset of thumbnail\n // by JpegIFOffset(0x0201) Tag in IFD1, size of thumbnail by JpegIFByteCount(0x0202) Tag.\n // Data format is ordinary JPEG format, starts from 0xFFD8 and ends by 0xFFD9. It seems that\n // JPEG format and 160x120pixels of size are recommended thumbnail format for Exif2.1 or later.\n\n if (thumbTags['Compression']) {\n // console.log('Thumbnail image found!');\n\n switch (thumbTags['Compression']) {\n case 6:\n // console.log('Thumbnail image format is JPEG');\n if (thumbTags.JpegIFOffset && thumbTags.JpegIFByteCount) {\n // extract the thumbnail\n var tOffset = tiffStart + thumbTags.JpegIFOffset;\n var tLength = thumbTags.JpegIFByteCount;\n thumbTags['blob'] = new Blob([new Uint8Array(dataView.buffer, tOffset, tLength)], {\n type: 'image/jpeg'\n });\n }\n break;\n\n case 1:\n console.log(\"Thumbnail image format is TIFF, which is not implemented.\");\n break;\n default:\n console.log(\"Unknown thumbnail image format '%s'\", thumbTags['Compression']);\n }\n }\n else if (thumbTags['PhotometricInterpretation'] == 2) {\n console.log(\"Thumbnail image format is RGB, which is not implemented.\");\n }\n return thumbTags;\n }\n\n function getStringFromDB(buffer, start, length) {\n var outstr = \"\";\n for (n = start; n < start+length; n++) {\n outstr += String.fromCharCode(buffer.getUint8(n));\n }\n return outstr;\n }\n\n function readEXIFData(file, start) {\n if (getStringFromDB(file, start, 4) != \"Exif\") {\n if (debug) console.log(\"Not valid EXIF data! \" + getStringFromDB(file, start, 4));\n return false;\n }\n\n var bigEnd,\n tags, tag,\n exifData, gpsData,\n tiffOffset = start + 6;\n\n // test for TIFF validity and endianness\n if (file.getUint16(tiffOffset) == 0x4949) {\n bigEnd = false;\n } else if (file.getUint16(tiffOffset) == 0x4D4D) {\n bigEnd = true;\n } else {\n if (debug) console.log(\"Not valid TIFF data! (no 0x4949 or 0x4D4D)\");\n return false;\n }\n\n if (file.getUint16(tiffOffset+2, !bigEnd) != 0x002A) {\n if (debug) console.log(\"Not valid TIFF data! (no 0x002A)\");\n return false;\n }\n\n var firstIFDOffset = file.getUint32(tiffOffset+4, !bigEnd);\n\n if (firstIFDOffset < 0x00000008) {\n if (debug) console.log(\"Not valid TIFF data! (First offset less than 8)\", file.getUint32(tiffOffset+4, !bigEnd));\n return false;\n }\n\n tags = readTags(file, tiffOffset, tiffOffset + firstIFDOffset, TiffTags, bigEnd);\n\n if (tags.ExifIFDPointer) {\n exifData = readTags(file, tiffOffset, tiffOffset + tags.ExifIFDPointer, ExifTags, bigEnd);\n for (tag in exifData) {\n switch (tag) {\n case \"LightSource\" :\n case \"Flash\" :\n case \"MeteringMode\" :\n case \"ExposureProgram\" :\n case \"SensingMethod\" :\n case \"SceneCaptureType\" :\n case \"SceneType\" :\n case \"CustomRendered\" :\n case \"WhiteBalance\" :\n case \"GainControl\" :\n case \"Contrast\" :\n case \"Saturation\" :\n case \"Sharpness\" :\n case \"SubjectDistanceRange\" :\n case \"FileSource\" :\n exifData[tag] = StringValues[tag][exifData[tag]];\n break;\n\n case \"ExifVersion\" :\n case \"FlashpixVersion\" :\n exifData[tag] = String.fromCharCode(exifData[tag][0], exifData[tag][1], exifData[tag][2], exifData[tag][3]);\n break;\n\n case \"ComponentsConfiguration\" :\n exifData[tag] =\n StringValues.Components[exifData[tag][0]] +\n StringValues.Components[exifData[tag][1]] +\n StringValues.Components[exifData[tag][2]] +\n StringValues.Components[exifData[tag][3]];\n break;\n }\n tags[tag] = exifData[tag];\n }\n }\n\n if (tags.GPSInfoIFDPointer) {\n gpsData = readTags(file, tiffOffset, tiffOffset + tags.GPSInfoIFDPointer, GPSTags, bigEnd);\n for (tag in gpsData) {\n switch (tag) {\n case \"GPSVersionID\" :\n gpsData[tag] = gpsData[tag][0] +\n \".\" + gpsData[tag][1] +\n \".\" + gpsData[tag][2] +\n \".\" + gpsData[tag][3];\n break;\n }\n tags[tag] = gpsData[tag];\n }\n }\n\n // extract thumbnail\n tags['thumbnail'] = readThumbnailImage(file, tiffOffset, firstIFDOffset, bigEnd);\n\n return tags;\n }\n\n function findXMPinJPEG(file) {\n\n if (!('DOMParser' in self)) {\n // console.warn('XML parsing not supported without DOMParser');\n return;\n }\n var dataView = new DataView(file);\n\n if (debug) console.log(\"Got file of length \" + file.byteLength);\n if ((dataView.getUint8(0) != 0xFF) || (dataView.getUint8(1) != 0xD8)) {\n if (debug) console.log(\"Not a valid JPEG\");\n return false; // not a valid jpeg\n }\n\n var offset = 2,\n length = file.byteLength,\n dom = new DOMParser();\n\n while (offset < (length-4)) {\n if (getStringFromDB(dataView, offset, 4) == \"http\") {\n var startOffset = offset - 1;\n var sectionLength = dataView.getUint16(offset - 2) - 1;\n var xmpString = getStringFromDB(dataView, startOffset, sectionLength)\n var xmpEndIndex = xmpString.indexOf('xmpmeta>') + 8;\n xmpString = xmpString.substring( xmpString.indexOf( '<x:xmpmeta' ), xmpEndIndex );\n\n var indexOfXmp = xmpString.indexOf('x:xmpmeta') + 10\n //Many custom written programs embed xmp/xml without any namespace. Following are some of them.\n //Without these namespaces, XML is thought to be invalid by parsers\n xmpString = xmpString.slice(0, indexOfXmp)\n + 'xmlns:Iptc4xmpCore=\"http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/\" '\n + 'xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" '\n + 'xmlns:tiff=\"http://ns.adobe.com/tiff/1.0/\" '\n + 'xmlns:plus=\"http://schemas.android.com/apk/lib/com.google.android.gms.plus\" '\n + 'xmlns:ext=\"http://www.gettyimages.com/xsltExtension/1.0\" '\n + 'xmlns:exif=\"http://ns.adobe.com/exif/1.0/\" '\n + 'xmlns:stEvt=\"http://ns.adobe.com/xap/1.0/sType/ResourceEvent#\" '\n + 'xmlns:stRef=\"http://ns.adobe.com/xap/1.0/sType/ResourceRef#\" '\n + 'xmlns:crs=\"http://ns.adobe.com/camera-raw-settings/1.0/\" '\n + 'xmlns:xapGImg=\"http://ns.adobe.com/xap/1.0/g/img/\" '\n + 'xmlns:Iptc4xmpExt=\"http://iptc.org/std/Iptc4xmpExt/2008-02-29/\" '\n + xmpString.slice(indexOfXmp)\n\n var domDocument = dom.parseFromString( xmpString, 'text/xml' );\n return xml2Object(domDocument);\n } else{\n offset++;\n }\n }\n }\n\n function xml2json(xml) {\n var json = {};\n \n if (xml.nodeType == 1) { // element node\n if (xml.attributes.length > 0) {\n json['@attributes'] = {};\n for (var j = 0; j < xml.attributes.length; j++) {\n var attribute = xml.attributes.item(j);\n json['@attributes'][attribute.nodeName] = attribute.nodeValue;\n }\n }\n } else if (xml.nodeType == 3) { // text node\n return xml.nodeValue;\n }\n \n // deal with children\n if (xml.hasChildNodes()) {\n for(var i = 0; i < xml.childNodes.length; i++) {\n var child = xml.childNodes.item(i);\n var nodeName = child.nodeName;\n if (json[nodeName] == null) {\n json[nodeName] = xml2json(child);\n } else {\n if (json[nodeName].push == null) {\n var old = json[nodeName];\n json[nodeName] = [];\n json[nodeName].push(old);\n }\n json[nodeName].push(xml2json(child));\n }\n }\n }\n \n return json;\n }\n\n function xml2Object(xml) {\n try {\n var obj = {};\n if (xml.children.length > 0) {\n for (var i = 0; i < xml.children.length; i++) {\n var item = xml.children.item(i);\n var attributes = item.attributes;\n for(var idx in attributes) {\n var itemAtt = attributes[idx];\n var dataKey = itemAtt.nodeName;\n var dataValue = itemAtt.nodeValue;\n\n if(dataKey !== undefined) {\n obj[dataKey] = dataValue;\n }\n }\n var nodeName = item.nodeName;\n\n if (typeof (obj[nodeName]) == \"undefined\") {\n obj[nodeName] = xml2json(item);\n } else {\n if (typeof (obj[nodeName].push) == \"undefined\") {\n var old = obj[nodeName];\n\n obj[nodeName] = [];\n obj[nodeName].push(old);\n }\n obj[nodeName].push(xml2json(item));\n }\n }\n } else {\n obj = xml.textContent;\n }\n return obj;\n } catch (e) {\n console.log(e.message);\n }\n }\n\n EXIF.enableXmp = function() {\n EXIF.isXmpEnabled = true;\n }\n\n EXIF.disableXmp = function() {\n EXIF.isXmpEnabled = false;\n }\n\n EXIF.getData = function(img, callback) {\n if (((self.Image && img instanceof self.Image)\n || (self.HTMLImageElement && img instanceof self.HTMLImageElement))\n && !img.complete)\n return false;\n\n if (!imageHasData(img)) {\n getImageData(img, callback);\n } else {\n if (callback) {\n callback.call(img);\n }\n }\n return true;\n }\n\n EXIF.getTag = function(img, tag) {\n if (!imageHasData(img)) return;\n return img.exifdata[tag];\n }\n \n EXIF.getIptcTag = function(img, tag) {\n if (!imageHasData(img)) return;\n return img.iptcdata[tag];\n }\n\n EXIF.getAllTags = function(img) {\n if (!imageHasData(img)) return {};\n var a,\n data = img.exifdata,\n tags = {};\n for (a in data) {\n if (data.hasOwnProperty(a)) {\n tags[a] = data[a];\n }\n }\n return tags;\n }\n \n EXIF.getAllIptcTags = function(img) {\n if (!imageHasData(img)) return {};\n var a,\n data = img.iptcdata,\n tags = {};\n for (a in data) {\n if (data.hasOwnProperty(a)) {\n tags[a] = data[a];\n }\n }\n return tags;\n }\n\n EXIF.pretty = function(img) {\n if (!imageHasData(img)) return \"\";\n var a,\n data = img.exifdata,\n strPretty = \"\";\n for (a in data) {\n if (data.hasOwnProperty(a)) {\n if (typeof data[a] == \"object\") {\n if (data[a] instanceof Number) {\n strPretty += a + \" : \" + data[a] + \" [\" + data[a].numerator + \"/\" + data[a].denominator + \"]\\r\\n\";\n } else {\n strPretty += a + \" : [\" + data[a].length + \" values]\\r\\n\";\n }\n } else {\n strPretty += a + \" : \" + data[a] + \"\\r\\n\";\n }\n }\n }\n return strPretty;\n }\n\n EXIF.readFromBinaryFile = function(file) {\n return findEXIFinJPEG(file);\n }\n\n if (typeof define === 'function' && define.amd) {\n define('exif-js', [], function() {\n return EXIF;\n });\n }\n}.call(this));\n\n\n},{}],123:[function(require,module,exports){\n'use strict';\n\n/* eslint no-invalid-this: 1 */\n\nvar ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';\nvar toStr = Object.prototype.toString;\nvar max = Math.max;\nvar funcType = '[object Function]';\n\nvar concatty = function concatty(a, b) {\n var arr = [];\n\n for (var i = 0; i < a.length; i += 1) {\n arr[i] = a[i];\n }\n for (var j = 0; j < b.length; j += 1) {\n arr[j + a.length] = b[j];\n }\n\n return arr;\n};\n\nvar slicy = function slicy(arrLike, offset) {\n var arr = [];\n for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) {\n arr[j] = arrLike[i];\n }\n return arr;\n};\n\nvar joiny = function (arr, joiner) {\n var str = '';\n for (var i = 0; i < arr.length; i += 1) {\n str += arr[i];\n if (i + 1 < arr.length) {\n str += joiner;\n }\n }\n return str;\n};\n\nmodule.exports = function bind(that) {\n var target = this;\n if (typeof target !== 'function' || toStr.apply(target) !== funcType) {\n throw new TypeError(ERROR_MESSAGE + target);\n }\n var args = slicy(arguments, 1);\n\n var bound;\n var binder = function () {\n if (this instanceof bound) {\n var result = target.apply(\n this,\n concatty(args, arguments)\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n }\n return target.apply(\n that,\n concatty(args, arguments)\n );\n\n };\n\n var boundLength = max(0, target.length - args.length);\n var boundArgs = [];\n for (var i = 0; i < boundLength; i++) {\n boundArgs[i] = '$' + i;\n }\n\n bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder);\n\n if (target.prototype) {\n var Empty = function Empty() {};\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n\n return bound;\n};\n\n},{}],124:[function(require,module,exports){\n'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = Function.prototype.bind || implementation;\n\n},{\"./implementation\":123}],125:[function(require,module,exports){\n'use strict';\n\nvar undefined;\n\nvar $Error = require('es-errors');\nvar $EvalError = require('es-errors/eval');\nvar $RangeError = require('es-errors/range');\nvar $ReferenceError = require('es-errors/ref');\nvar $SyntaxError = require('es-errors/syntax');\nvar $TypeError = require('es-errors/type');\nvar $URIError = require('es-errors/uri');\n\nvar $Function = Function;\n\n// eslint-disable-next-line consistent-return\nvar getEvalledConstructor = function (expressionSyntax) {\n\ttry {\n\t\treturn $Function('\"use strict\"; return (' + expressionSyntax + ').constructor;')();\n\t} catch (e) {}\n};\n\nvar $gOPD = require('gopd');\nvar $defineProperty = require('es-define-property');\n\nvar throwTypeError = function () {\n\tthrow new $TypeError();\n};\nvar ThrowTypeError = $gOPD\n\t? (function () {\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties\n\t\t\targuments.callee; // IE 8 does not throw here\n\t\t\treturn throwTypeError;\n\t\t} catch (calleeThrows) {\n\t\t\ttry {\n\t\t\t\t// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')\n\t\t\t\treturn $gOPD(arguments, 'callee').get;\n\t\t\t} catch (gOPDthrows) {\n\t\t\t\treturn throwTypeError;\n\t\t\t}\n\t\t}\n\t}())\n\t: throwTypeError;\n\nvar hasSymbols = require('has-symbols')();\nvar getDunderProto = require('dunder-proto/get');\n\nvar getProto = (typeof Reflect === 'function' && Reflect.getPrototypeOf)\n\t|| Object.getPrototypeOf\n\t|| getDunderProto;\n\nvar $apply = require('call-bind-apply-helpers/functionApply');\nvar $call = require('call-bind-apply-helpers/functionCall');\n\nvar needsEval = {};\n\nvar TypedArray = typeof Uint8Array === 'undefined' || !getProto ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t__proto__: null,\n\t'%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,\n\t'%Array%': Array,\n\t'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'%ArrayIteratorPrototype%': hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined,\n\t'%AsyncFromSyncIteratorPrototype%': undefined,\n\t'%AsyncFunction%': needsEval,\n\t'%AsyncGenerator%': needsEval,\n\t'%AsyncGeneratorFunction%': needsEval,\n\t'%AsyncIteratorPrototype%': needsEval,\n\t'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,\n\t'%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,\n\t'%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,\n\t'%Boolean%': Boolean,\n\t'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'%Date%': Date,\n\t'%decodeURI%': decodeURI,\n\t'%decodeURIComponent%': decodeURIComponent,\n\t'%encodeURI%': encodeURI,\n\t'%encodeURIComponent%': encodeURIComponent,\n\t'%Error%': $Error,\n\t'%eval%': eval, // eslint-disable-line no-eval\n\t'%EvalError%': $EvalError,\n\t'%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,\n\t'%Function%': $Function,\n\t'%GeneratorFunction%': needsEval,\n\t'%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'%isFinite%': isFinite,\n\t'%isNaN%': isNaN,\n\t'%IteratorPrototype%': hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'%JSON%': typeof JSON === 'object' ? JSON : undefined,\n\t'%Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'%Math%': Math,\n\t'%Number%': Number,\n\t'%Object%': Object,\n\t'%Object.getOwnPropertyDescriptor%': $gOPD,\n\t'%parseFloat%': parseFloat,\n\t'%parseInt%': parseInt,\n\t'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'%RangeError%': $RangeError,\n\t'%ReferenceError%': $ReferenceError,\n\t'%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'%RegExp%': RegExp,\n\t'%Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'%String%': String,\n\t'%StringIteratorPrototype%': hasSymbols && getProto ? getProto(''[Symbol.iterator]()) : undefined,\n\t'%Symbol%': hasSymbols ? Symbol : undefined,\n\t'%SyntaxError%': $SyntaxError,\n\t'%ThrowTypeError%': ThrowTypeError,\n\t'%TypedArray%': TypedArray,\n\t'%TypeError%': $TypeError,\n\t'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'%URIError%': $URIError,\n\t'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,\n\t'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet,\n\n\t'%Function.prototype.call%': $call,\n\t'%Function.prototype.apply%': $apply,\n\t'%Object.defineProperty%': $defineProperty\n};\n\nif (getProto) {\n\ttry {\n\t\tnull.error; // eslint-disable-line no-unused-expressions\n\t} catch (e) {\n\t\t// https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229\n\t\tvar errorProto = getProto(getProto(e));\n\t\tINTRINSICS['%Error.prototype%'] = errorProto;\n\t}\n}\n\nvar doEval = function doEval(name) {\n\tvar value;\n\tif (name === '%AsyncFunction%') {\n\t\tvalue = getEvalledConstructor('async function () {}');\n\t} else if (name === '%GeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('function* () {}');\n\t} else if (name === '%AsyncGeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('async function* () {}');\n\t} else if (name === '%AsyncGenerator%') {\n\t\tvar fn = doEval('%AsyncGeneratorFunction%');\n\t\tif (fn) {\n\t\t\tvalue = fn.prototype;\n\t\t}\n\t} else if (name === '%AsyncIteratorPrototype%') {\n\t\tvar gen = doEval('%AsyncGenerator%');\n\t\tif (gen && getProto) {\n\t\t\tvalue = getProto(gen.prototype);\n\t\t}\n\t}\n\n\tINTRINSICS[name] = value;\n\n\treturn value;\n};\n\nvar LEGACY_ALIASES = {\n\t__proto__: null,\n\t'%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],\n\t'%ArrayPrototype%': ['Array', 'prototype'],\n\t'%ArrayProto_entries%': ['Array', 'prototype', 'entries'],\n\t'%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],\n\t'%ArrayProto_keys%': ['Array', 'prototype', 'keys'],\n\t'%ArrayProto_values%': ['Array', 'prototype', 'values'],\n\t'%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],\n\t'%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],\n\t'%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],\n\t'%BooleanPrototype%': ['Boolean', 'prototype'],\n\t'%DataViewPrototype%': ['DataView', 'prototype'],\n\t'%DatePrototype%': ['Date', 'prototype'],\n\t'%ErrorPrototype%': ['Error', 'prototype'],\n\t'%EvalErrorPrototype%': ['EvalError', 'prototype'],\n\t'%Float32ArrayPrototype%': ['Float32Array', 'prototype'],\n\t'%Float64ArrayPrototype%': ['Float64Array', 'prototype'],\n\t'%FunctionPrototype%': ['Function', 'prototype'],\n\t'%Generator%': ['GeneratorFunction', 'prototype'],\n\t'%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],\n\t'%Int8ArrayPrototype%': ['Int8Array', 'prototype'],\n\t'%Int16ArrayPrototype%': ['Int16Array', 'prototype'],\n\t'%Int32ArrayPrototype%': ['Int32Array', 'prototype'],\n\t'%JSONParse%': ['JSON', 'parse'],\n\t'%JSONStringify%': ['JSON', 'stringify'],\n\t'%MapPrototype%': ['Map', 'prototype'],\n\t'%NumberPrototype%': ['Number', 'prototype'],\n\t'%ObjectPrototype%': ['Object', 'prototype'],\n\t'%ObjProto_toString%': ['Object', 'prototype', 'toString'],\n\t'%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],\n\t'%PromisePrototype%': ['Promise', 'prototype'],\n\t'%PromiseProto_then%': ['Promise', 'prototype', 'then'],\n\t'%Promise_all%': ['Promise', 'all'],\n\t'%Promise_reject%': ['Promise', 'reject'],\n\t'%Promise_resolve%': ['Promise', 'resolve'],\n\t'%RangeErrorPrototype%': ['RangeError', 'prototype'],\n\t'%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],\n\t'%RegExpPrototype%': ['RegExp', 'prototype'],\n\t'%SetPrototype%': ['Set', 'prototype'],\n\t'%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],\n\t'%StringPrototype%': ['String', 'prototype'],\n\t'%SymbolPrototype%': ['Symbol', 'prototype'],\n\t'%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],\n\t'%TypedArrayPrototype%': ['TypedArray', 'prototype'],\n\t'%TypeErrorPrototype%': ['TypeError', 'prototype'],\n\t'%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],\n\t'%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],\n\t'%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],\n\t'%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],\n\t'%URIErrorPrototype%': ['URIError', 'prototype'],\n\t'%WeakMapPrototype%': ['WeakMap', 'prototype'],\n\t'%WeakSetPrototype%': ['WeakSet', 'prototype']\n};\n\nvar bind = require('function-bind');\nvar hasOwn = require('hasown');\nvar $concat = bind.call($call, Array.prototype.concat);\nvar $spliceApply = bind.call($apply, Array.prototype.splice);\nvar $replace = bind.call($call, String.prototype.replace);\nvar $strSlice = bind.call($call, String.prototype.slice);\nvar $exec = bind.call($call, RegExp.prototype.exec);\n\n/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */\nvar rePropName = /[^%.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|%$))/g;\nvar reEscapeChar = /\\\\(\\\\)?/g; /** Used to match backslashes in property paths. */\nvar stringToPath = function stringToPath(string) {\n\tvar first = $strSlice(string, 0, 1);\n\tvar last = $strSlice(string, -1);\n\tif (first === '%' && last !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected closing `%`');\n\t} else if (last === '%' && first !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected opening `%`');\n\t}\n\tvar result = [];\n\t$replace(string, rePropName, function (match, number, quote, subString) {\n\t\tresult[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;\n\t});\n\treturn result;\n};\n/* end adaptation */\n\nvar getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {\n\tvar intrinsicName = name;\n\tvar alias;\n\tif (hasOwn(LEGACY_ALIASES, intrinsicName)) {\n\t\talias = LEGACY_ALIASES[intrinsicName];\n\t\tintrinsicName = '%' + alias[0] + '%';\n\t}\n\n\tif (hasOwn(INTRINSICS, intrinsicName)) {\n\t\tvar value = INTRINSICS[intrinsicName];\n\t\tif (value === needsEval) {\n\t\t\tvalue = doEval(intrinsicName);\n\t\t}\n\t\tif (typeof value === 'undefined' && !allowMissing) {\n\t\t\tthrow new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t\t}\n\n\t\treturn {\n\t\t\talias: alias,\n\t\t\tname: intrinsicName,\n\t\t\tvalue: value\n\t\t};\n\t}\n\n\tthrow new $SyntaxError('intrinsic ' + name + ' does not exist!');\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (typeof name !== 'string' || name.length === 0) {\n\t\tthrow new $TypeError('intrinsic name must be a non-empty string');\n\t}\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new $TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tif ($exec(/^%?[^%]*%?$/, name) === null) {\n\t\tthrow new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');\n\t}\n\tvar parts = stringToPath(name);\n\tvar intrinsicBaseName = parts.length > 0 ? parts[0] : '';\n\n\tvar intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);\n\tvar intrinsicRealName = intrinsic.name;\n\tvar value = intrinsic.value;\n\tvar skipFurtherCaching = false;\n\n\tvar alias = intrinsic.alias;\n\tif (alias) {\n\t\tintrinsicBaseName = alias[0];\n\t\t$spliceApply(parts, $concat([0, 1], alias));\n\t}\n\n\tfor (var i = 1, isOwn = true; i < parts.length; i += 1) {\n\t\tvar part = parts[i];\n\t\tvar first = $strSlice(part, 0, 1);\n\t\tvar last = $strSlice(part, -1);\n\t\tif (\n\t\t\t(\n\t\t\t\t(first === '\"' || first === \"'\" || first === '`')\n\t\t\t\t|| (last === '\"' || last === \"'\" || last === '`')\n\t\t\t)\n\t\t\t&& first !== last\n\t\t) {\n\t\t\tthrow new $SyntaxError('property names with quotes must have matching quotes');\n\t\t}\n\t\tif (part === 'constructor' || !isOwn) {\n\t\t\tskipFurtherCaching = true;\n\t\t}\n\n\t\tintrinsicBaseName += '.' + part;\n\t\tintrinsicRealName = '%' + intrinsicBaseName + '%';\n\n\t\tif (hasOwn(INTRINSICS, intrinsicRealName)) {\n\t\t\tvalue = INTRINSICS[intrinsicRealName];\n\t\t} else if (value != null) {\n\t\t\tif (!(part in value)) {\n\t\t\t\tif (!allowMissing) {\n\t\t\t\t\tthrow new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');\n\t\t\t\t}\n\t\t\t\treturn void undefined;\n\t\t\t}\n\t\t\tif ($gOPD && (i + 1) >= parts.length) {\n\t\t\t\tvar desc = $gOPD(value, part);\n\t\t\t\tisOwn = !!desc;\n\n\t\t\t\t// By convention, when a data property is converted to an accessor\n\t\t\t\t// property to emulate a data property that does not suffer from\n\t\t\t\t// the override mistake, that accessor's getter is marked with\n\t\t\t\t// an `originalValue` property. Here, when we detect this, we\n\t\t\t\t// uphold the illusion by pretending to see that original data\n\t\t\t\t// property, i.e., returning the value rather than the getter\n\t\t\t\t// itself.\n\t\t\t\tif (isOwn && 'get' in desc && !('originalValue' in desc.get)) {\n\t\t\t\t\tvalue = desc.get;\n\t\t\t\t} else {\n\t\t\t\t\tvalue = value[part];\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tisOwn = hasOwn(value, part);\n\t\t\t\tvalue = value[part];\n\t\t\t}\n\n\t\t\tif (isOwn && !skipFurtherCaching) {\n\t\t\t\tINTRINSICS[intrinsicRealName] = value;\n\t\t\t}\n\t\t}\n\t}\n\treturn value;\n};\n\n},{\"call-bind-apply-helpers/functionApply\":103,\"call-bind-apply-helpers/functionCall\":104,\"dunder-proto/get\":112,\"es-define-property\":113,\"es-errors\":115,\"es-errors/eval\":114,\"es-errors/range\":116,\"es-errors/ref\":117,\"es-errors/syntax\":118,\"es-errors/type\":119,\"es-errors/uri\":120,\"function-bind\":124,\"gopd\":127,\"has-symbols\":129,\"hasown\":131}],126:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./gOPD')} */\nmodule.exports = Object.getOwnPropertyDescriptor;\n\n},{}],127:[function(require,module,exports){\n'use strict';\n\n/** @type {import('.')} */\nvar $gOPD = require('./gOPD');\n\nif ($gOPD) {\n\ttry {\n\t\t$gOPD([], 'length');\n\t} catch (e) {\n\t\t// IE 8 has a broken gOPD\n\t\t$gOPD = null;\n\t}\n}\n\nmodule.exports = $gOPD;\n\n},{\"./gOPD\":126}],128:[function(require,module,exports){\n'use strict';\n\nvar $defineProperty = require('es-define-property');\n\nvar hasPropertyDescriptors = function hasPropertyDescriptors() {\n\treturn !!$defineProperty;\n};\n\nhasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() {\n\t// node v0.6 has a bug where array lengths can be Set but not Defined\n\tif (!$defineProperty) {\n\t\treturn null;\n\t}\n\ttry {\n\t\treturn $defineProperty([], 'length', { value: 1 }).length !== 1;\n\t} catch (e) {\n\t\t// In Firefox 4-22, defining length on an array throws an exception.\n\t\treturn true;\n\t}\n};\n\nmodule.exports = hasPropertyDescriptors;\n\n},{\"es-define-property\":113}],129:[function(require,module,exports){\n'use strict';\n\nvar origSymbol = typeof Symbol !== 'undefined' && Symbol;\nvar hasSymbolSham = require('./shams');\n\n/** @type {import('.')} */\nmodule.exports = function hasNativeSymbols() {\n\tif (typeof origSymbol !== 'function') { return false; }\n\tif (typeof Symbol !== 'function') { return false; }\n\tif (typeof origSymbol('foo') !== 'symbol') { return false; }\n\tif (typeof Symbol('bar') !== 'symbol') { return false; }\n\n\treturn hasSymbolSham();\n};\n\n},{\"./shams\":130}],130:[function(require,module,exports){\n'use strict';\n\n/** @type {import('./shams')} */\n/* eslint complexity: [2, 18], max-statements: [2, 33] */\nmodule.exports = function hasSymbols() {\n\tif (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }\n\tif (typeof Symbol.iterator === 'symbol') { return true; }\n\n\t/** @type {{ [k in symbol]?: unknown }} */\n\tvar obj = {};\n\tvar sym = Symbol('test');\n\tvar symObj = Object(sym);\n\tif (typeof sym === 'string') { return false; }\n\n\tif (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }\n\tif (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }\n\n\t// temp disabled per https://github.com/ljharb/object.assign/issues/17\n\t// if (sym instanceof Symbol) { return false; }\n\t// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4\n\t// if (!(symObj instanceof Symbol)) { return false; }\n\n\t// if (typeof Symbol.prototype.toString !== 'function') { return false; }\n\t// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }\n\n\tvar symVal = 42;\n\tobj[sym] = symVal;\n\tfor (var _ in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop\n\tif (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }\n\n\tif (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }\n\n\tvar syms = Object.getOwnPropertySymbols(obj);\n\tif (syms.length !== 1 || syms[0] !== sym) { return false; }\n\n\tif (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }\n\n\tif (typeof Object.getOwnPropertyDescriptor === 'function') {\n\t\t// eslint-disable-next-line no-extra-parens\n\t\tvar descriptor = /** @type {PropertyDescriptor} */ (Object.getOwnPropertyDescriptor(obj, sym));\n\t\tif (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }\n\t}\n\n\treturn true;\n};\n\n},{}],131:[function(require,module,exports){\n'use strict';\n\nvar call = Function.prototype.call;\nvar $hasOwn = Object.prototype.hasOwnProperty;\nvar bind = require('function-bind');\n\n/** @type {import('.')} */\nmodule.exports = bind.call(call, $hasOwn);\n\n},{\"function-bind\":124}],132:[function(require,module,exports){\n/*!\n * html2canvas 1.4.1 <https://html2canvas.hertzen.com>\n * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>\n * Released under MIT License\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.html2canvas = factory());\n}(this, (function () { 'use strict';\n\n /*! *****************************************************************************\r\n Copyright (c) Microsoft Corporation.\r\n\r\n Permission to use, copy, modify, and/or distribute this software for any\r\n purpose with or without fee is hereby granted.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\n REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\n AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\n LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\n OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\n PERFORMANCE OF THIS SOFTWARE.\r\n ***************************************************************************** */\r\n /* global Reflect, Promise */\r\n\r\n var extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n };\r\n\r\n function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n }\r\n\r\n var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n };\r\n return __assign.apply(this, arguments);\r\n };\r\n\r\n function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n }\r\n\r\n function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n }\r\n\r\n function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || from);\r\n }\n\n var Bounds = /** @class */ (function () {\n function Bounds(left, top, width, height) {\n this.left = left;\n this.top = top;\n this.width = width;\n this.height = height;\n }\n Bounds.prototype.add = function (x, y, w, h) {\n return new Bounds(this.left + x, this.top + y, this.width + w, this.height + h);\n };\n Bounds.fromClientRect = function (context, clientRect) {\n return new Bounds(clientRect.left + context.windowBounds.left, clientRect.top + context.windowBounds.top, clientRect.width, clientRect.height);\n };\n Bounds.fromDOMRectList = function (context, domRectList) {\n var domRect = Array.from(domRectList).find(function (rect) { return rect.width !== 0; });\n return domRect\n ? new Bounds(domRect.left + context.windowBounds.left, domRect.top + context.windowBounds.top, domRect.width, domRect.height)\n : Bounds.EMPTY;\n };\n Bounds.EMPTY = new Bounds(0, 0, 0, 0);\n return Bounds;\n }());\n var parseBounds = function (context, node) {\n return Bounds.fromClientRect(context, node.getBoundingClientRect());\n };\n var parseDocumentSize = function (document) {\n var body = document.body;\n var documentElement = document.documentElement;\n if (!body || !documentElement) {\n throw new Error(\"Unable to get document size\");\n }\n var width = Math.max(Math.max(body.scrollWidth, documentElement.scrollWidth), Math.max(body.offsetWidth, documentElement.offsetWidth), Math.max(body.clientWidth, documentElement.clientWidth));\n var height = Math.max(Math.max(body.scrollHeight, documentElement.scrollHeight), Math.max(body.offsetHeight, documentElement.offsetHeight), Math.max(body.clientHeight, documentElement.clientHeight));\n return new Bounds(0, 0, width, height);\n };\n\n /*\n * css-line-break 2.1.0 <https://github.com/niklasvh/css-line-break#readme>\n * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>\n * Released under MIT License\n */\n var toCodePoints$1 = function (str) {\n var codePoints = [];\n var i = 0;\n var length = str.length;\n while (i < length) {\n var value = str.charCodeAt(i++);\n if (value >= 0xd800 && value <= 0xdbff && i < length) {\n var extra = str.charCodeAt(i++);\n if ((extra & 0xfc00) === 0xdc00) {\n codePoints.push(((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000);\n }\n else {\n codePoints.push(value);\n i--;\n }\n }\n else {\n codePoints.push(value);\n }\n }\n return codePoints;\n };\n var fromCodePoint$1 = function () {\n var codePoints = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n codePoints[_i] = arguments[_i];\n }\n if (String.fromCodePoint) {\n return String.fromCodePoint.apply(String, codePoints);\n }\n var length = codePoints.length;\n if (!length) {\n return '';\n }\n var codeUnits = [];\n var index = -1;\n var result = '';\n while (++index < length) {\n var codePoint = codePoints[index];\n if (codePoint <= 0xffff) {\n codeUnits.push(codePoint);\n }\n else {\n codePoint -= 0x10000;\n codeUnits.push((codePoint >> 10) + 0xd800, (codePoint % 0x400) + 0xdc00);\n }\n if (index + 1 === length || codeUnits.length > 0x4000) {\n result += String.fromCharCode.apply(String, codeUnits);\n codeUnits.length = 0;\n }\n }\n return result;\n };\n var chars$2 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n // Use a lookup table to find the index.\n var lookup$2 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\n for (var i$2 = 0; i$2 < chars$2.length; i$2++) {\n lookup$2[chars$2.charCodeAt(i$2)] = i$2;\n }\n\n /*\n * utrie 1.0.2 <https://github.com/niklasvh/utrie>\n * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>\n * Released under MIT License\n */\n var chars$1$1 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n // Use a lookup table to find the index.\n var lookup$1$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\n for (var i$1$1 = 0; i$1$1 < chars$1$1.length; i$1$1++) {\n lookup$1$1[chars$1$1.charCodeAt(i$1$1)] = i$1$1;\n }\n var decode$1 = function (base64) {\n var bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4;\n if (base64[base64.length - 1] === '=') {\n bufferLength--;\n if (base64[base64.length - 2] === '=') {\n bufferLength--;\n }\n }\n var buffer = typeof ArrayBuffer !== 'undefined' &&\n typeof Uint8Array !== 'undefined' &&\n typeof Uint8Array.prototype.slice !== 'undefined'\n ? new ArrayBuffer(bufferLength)\n : new Array(bufferLength);\n var bytes = Array.isArray(buffer) ? buffer : new Uint8Array(buffer);\n for (i = 0; i < len; i += 4) {\n encoded1 = lookup$1$1[base64.charCodeAt(i)];\n encoded2 = lookup$1$1[base64.charCodeAt(i + 1)];\n encoded3 = lookup$1$1[base64.charCodeAt(i + 2)];\n encoded4 = lookup$1$1[base64.charCodeAt(i + 3)];\n bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);\n bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);\n bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);\n }\n return buffer;\n };\n var polyUint16Array$1 = function (buffer) {\n var length = buffer.length;\n var bytes = [];\n for (var i = 0; i < length; i += 2) {\n bytes.push((buffer[i + 1] << 8) | buffer[i]);\n }\n return bytes;\n };\n var polyUint32Array$1 = function (buffer) {\n var length = buffer.length;\n var bytes = [];\n for (var i = 0; i < length; i += 4) {\n bytes.push((buffer[i + 3] << 24) | (buffer[i + 2] << 16) | (buffer[i + 1] << 8) | buffer[i]);\n }\n return bytes;\n };\n\n /** Shift size for getting the index-2 table offset. */\n var UTRIE2_SHIFT_2$1 = 5;\n /** Shift size for getting the index-1 table offset. */\n var UTRIE2_SHIFT_1$1 = 6 + 5;\n /**\n * Shift size for shifting left the index array values.\n * Increases possible data size with 16-bit index values at the cost\n * of compactability.\n * This requires data blocks to be aligned by UTRIE2_DATA_GRANULARITY.\n */\n var UTRIE2_INDEX_SHIFT$1 = 2;\n /**\n * Difference between the two shift sizes,\n * for getting an index-1 offset from an index-2 offset. 6=11-5\n */\n var UTRIE2_SHIFT_1_2$1 = UTRIE2_SHIFT_1$1 - UTRIE2_SHIFT_2$1;\n /**\n * The part of the index-2 table for U+D800..U+DBFF stores values for\n * lead surrogate code _units_ not code _points_.\n * Values for lead surrogate code _points_ are indexed with this portion of the table.\n * Length=32=0x20=0x400>>UTRIE2_SHIFT_2. (There are 1024=0x400 lead surrogates.)\n */\n var UTRIE2_LSCP_INDEX_2_OFFSET$1 = 0x10000 >> UTRIE2_SHIFT_2$1;\n /** Number of entries in a data block. 32=0x20 */\n var UTRIE2_DATA_BLOCK_LENGTH$1 = 1 << UTRIE2_SHIFT_2$1;\n /** Mask for getting the lower bits for the in-data-block offset. */\n var UTRIE2_DATA_MASK$1 = UTRIE2_DATA_BLOCK_LENGTH$1 - 1;\n var UTRIE2_LSCP_INDEX_2_LENGTH$1 = 0x400 >> UTRIE2_SHIFT_2$1;\n /** Count the lengths of both BMP pieces. 2080=0x820 */\n var UTRIE2_INDEX_2_BMP_LENGTH$1 = UTRIE2_LSCP_INDEX_2_OFFSET$1 + UTRIE2_LSCP_INDEX_2_LENGTH$1;\n /**\n * The 2-byte UTF-8 version of the index-2 table follows at offset 2080=0x820.\n * Length 32=0x20 for lead bytes C0..DF, regardless of UTRIE2_SHIFT_2.\n */\n var UTRIE2_UTF8_2B_INDEX_2_OFFSET$1 = UTRIE2_INDEX_2_BMP_LENGTH$1;\n var UTRIE2_UTF8_2B_INDEX_2_LENGTH$1 = 0x800 >> 6; /* U+0800 is the first code point after 2-byte UTF-8 */\n /**\n * The index-1 table, only used for supplementary code points, at offset 2112=0x840.\n * Variable length, for code points up to highStart, where the last single-value range starts.\n * Maximum length 512=0x200=0x100000>>UTRIE2_SHIFT_1.\n * (For 0x100000 supplementary code points U+10000..U+10ffff.)\n *\n * The part of the index-2 table for supplementary code points starts\n * after this index-1 table.\n *\n * Both the index-1 table and the following part of the index-2 table\n * are omitted completely if there is only BMP data.\n */\n var UTRIE2_INDEX_1_OFFSET$1 = UTRIE2_UTF8_2B_INDEX_2_OFFSET$1 + UTRIE2_UTF8_2B_INDEX_2_LENGTH$1;\n /**\n * Number of index-1 entries for the BMP. 32=0x20\n * This part of the index-1 table is omitted from the serialized form.\n */\n var UTRIE2_OMITTED_BMP_INDEX_1_LENGTH$1 = 0x10000 >> UTRIE2_SHIFT_1$1;\n /** Number of entries in an index-2 block. 64=0x40 */\n var UTRIE2_INDEX_2_BLOCK_LENGTH$1 = 1 << UTRIE2_SHIFT_1_2$1;\n /** Mask for getting the lower bits for the in-index-2-block offset. */\n var UTRIE2_INDEX_2_MASK$1 = UTRIE2_INDEX_2_BLOCK_LENGTH$1 - 1;\n var slice16$1 = function (view, start, end) {\n if (view.slice) {\n return view.slice(start, end);\n }\n return new Uint16Array(Array.prototype.slice.call(view, start, end));\n };\n var slice32$1 = function (view, start, end) {\n if (view.slice) {\n return view.slice(start, end);\n }\n return new Uint32Array(Array.prototype.slice.call(view, start, end));\n };\n var createTrieFromBase64$1 = function (base64, _byteLength) {\n var buffer = decode$1(base64);\n var view32 = Array.isArray(buffer) ? polyUint32Array$1(buffer) : new Uint32Array(buffer);\n var view16 = Array.isArray(buffer) ? polyUint16Array$1(buffer) : new Uint16Array(buffer);\n var headerLength = 24;\n var index = slice16$1(view16, headerLength / 2, view32[4] / 2);\n var data = view32[5] === 2\n ? slice16$1(view16, (headerLength + view32[4]) / 2)\n : slice32$1(view32, Math.ceil((headerLength + view32[4]) / 4));\n return new Trie$1(view32[0], view32[1], view32[2], view32[3], index, data);\n };\n var Trie$1 = /** @class */ (function () {\n function Trie(initialValue, errorValue, highStart, highValueIndex, index, data) {\n this.initialValue = initialValue;\n this.errorValue = errorValue;\n this.highStart = highStart;\n this.highValueIndex = highValueIndex;\n this.index = index;\n this.data = data;\n }\n /**\n * Get the value for a code point as stored in the Trie.\n *\n * @param codePoint the code point\n * @return the value\n */\n Trie.prototype.get = function (codePoint) {\n var ix;\n if (codePoint >= 0) {\n if (codePoint < 0x0d800 || (codePoint > 0x0dbff && codePoint <= 0x0ffff)) {\n // Ordinary BMP code point, excluding leading surrogates.\n // BMP uses a single level lookup. BMP index starts at offset 0 in the Trie2 index.\n // 16 bit data is stored in the index array itself.\n ix = this.index[codePoint >> UTRIE2_SHIFT_2$1];\n ix = (ix << UTRIE2_INDEX_SHIFT$1) + (codePoint & UTRIE2_DATA_MASK$1);\n return this.data[ix];\n }\n if (codePoint <= 0xffff) {\n // Lead Surrogate Code Point. A Separate index section is stored for\n // lead surrogate code units and code points.\n // The main index has the code unit data.\n // For this function, we need the code point data.\n // Note: this expression could be refactored for slightly improved efficiency, but\n // surrogate code points will be so rare in practice that it's not worth it.\n ix = this.index[UTRIE2_LSCP_INDEX_2_OFFSET$1 + ((codePoint - 0xd800) >> UTRIE2_SHIFT_2$1)];\n ix = (ix << UTRIE2_INDEX_SHIFT$1) + (codePoint & UTRIE2_DATA_MASK$1);\n return this.data[ix];\n }\n if (codePoint < this.highStart) {\n // Supplemental code point, use two-level lookup.\n ix = UTRIE2_INDEX_1_OFFSET$1 - UTRIE2_OMITTED_BMP_INDEX_1_LENGTH$1 + (codePoint >> UTRIE2_SHIFT_1$1);\n ix = this.index[ix];\n ix += (codePoint >> UTRIE2_SHIFT_2$1) & UTRIE2_INDEX_2_MASK$1;\n ix = this.index[ix];\n ix = (ix << UTRIE2_INDEX_SHIFT$1) + (codePoint & UTRIE2_DATA_MASK$1);\n return this.data[ix];\n }\n if (codePoint <= 0x10ffff) {\n return this.data[this.highValueIndex];\n }\n }\n // Fall through. The code point is outside of the legal range of 0..0x10ffff.\n return this.errorValue;\n };\n return Trie;\n }());\n\n /*\n * base64-arraybuffer 1.0.2 <https://github.com/niklasvh/base64-arraybuffer>\n * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>\n * Released under MIT License\n */\n var chars$3 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n // Use a lookup table to find the index.\n var lookup$3 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\n for (var i$3 = 0; i$3 < chars$3.length; i$3++) {\n lookup$3[chars$3.charCodeAt(i$3)] = i$3;\n }\n\n var base64$1 = 'KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA==';\n\n var LETTER_NUMBER_MODIFIER = 50;\n // Non-tailorable Line Breaking Classes\n var BK = 1; // Cause a line break (after)\n var CR$1 = 2; // Cause a line break (after), except between CR and LF\n var LF$1 = 3; // Cause a line break (after)\n var CM = 4; // Prohibit a line break between the character and the preceding character\n var NL = 5; // Cause a line break (after)\n var WJ = 7; // Prohibit line breaks before and after\n var ZW = 8; // Provide a break opportunity\n var GL = 9; // Prohibit line breaks before and after\n var SP = 10; // Enable indirect line breaks\n var ZWJ$1 = 11; // Prohibit line breaks within joiner sequences\n // Break Opportunities\n var B2 = 12; // Provide a line break opportunity before and after the character\n var BA = 13; // Generally provide a line break opportunity after the character\n var BB = 14; // Generally provide a line break opportunity before the character\n var HY = 15; // Provide a line break opportunity after the character, except in numeric context\n var CB = 16; // Provide a line break opportunity contingent on additional information\n // Characters Prohibiting Certain Breaks\n var CL = 17; // Prohibit line breaks before\n var CP = 18; // Prohibit line breaks before\n var EX = 19; // Prohibit line breaks before\n var IN = 20; // Allow only indirect line breaks between pairs\n var NS = 21; // Allow only indirect line breaks before\n var OP = 22; // Prohibit line breaks after\n var QU = 23; // Act like they are both opening and closing\n // Numeric Context\n var IS = 24; // Prevent breaks after any and before numeric\n var NU = 25; // Form numeric expressions for line breaking purposes\n var PO = 26; // Do not break following a numeric expression\n var PR = 27; // Do not break in front of a numeric expression\n var SY = 28; // Prevent a break before; and allow a break after\n // Other Characters\n var AI = 29; // Act like AL when the resolvedEAW is N; otherwise; act as ID\n var AL = 30; // Are alphabetic characters or symbols that are used with alphabetic characters\n var CJ = 31; // Treat as NS or ID for strict or normal breaking.\n var EB = 32; // Do not break from following Emoji Modifier\n var EM = 33; // Do not break from preceding Emoji Base\n var H2 = 34; // Form Korean syllable blocks\n var H3 = 35; // Form Korean syllable blocks\n var HL = 36; // Do not break around a following hyphen; otherwise act as Alphabetic\n var ID = 37; // Break before or after; except in some numeric context\n var JL = 38; // Form Korean syllable blocks\n var JV = 39; // Form Korean syllable blocks\n var JT = 40; // Form Korean syllable blocks\n var RI$1 = 41; // Keep pairs together. For pairs; break before and after other classes\n var SA = 42; // Provide a line break opportunity contingent on additional, language-specific context analysis\n var XX = 43; // Have as yet unknown line breaking behavior or unassigned code positions\n var ea_OP = [0x2329, 0xff08];\n var BREAK_MANDATORY = '!';\n var BREAK_NOT_ALLOWED$1 = '×';\n var BREAK_ALLOWED$1 = '÷';\n var UnicodeTrie$1 = createTrieFromBase64$1(base64$1);\n var ALPHABETICS = [AL, HL];\n var HARD_LINE_BREAKS = [BK, CR$1, LF$1, NL];\n var SPACE$1 = [SP, ZW];\n var PREFIX_POSTFIX = [PR, PO];\n var LINE_BREAKS = HARD_LINE_BREAKS.concat(SPACE$1);\n var KOREAN_SYLLABLE_BLOCK = [JL, JV, JT, H2, H3];\n var HYPHEN = [HY, BA];\n var codePointsToCharacterClasses = function (codePoints, lineBreak) {\n if (lineBreak === void 0) { lineBreak = 'strict'; }\n var types = [];\n var indices = [];\n var categories = [];\n codePoints.forEach(function (codePoint, index) {\n var classType = UnicodeTrie$1.get(codePoint);\n if (classType > LETTER_NUMBER_MODIFIER) {\n categories.push(true);\n classType -= LETTER_NUMBER_MODIFIER;\n }\n else {\n categories.push(false);\n }\n if (['normal', 'auto', 'loose'].indexOf(lineBreak) !== -1) {\n // U+2010, – U+2013, 〜 U+301C, ã‚ U+30A0\n if ([0x2010, 0x2013, 0x301c, 0x30a0].indexOf(codePoint) !== -1) {\n indices.push(index);\n return types.push(CB);\n }\n }\n if (classType === CM || classType === ZWJ$1) {\n // LB10 Treat any remaining combining mark or ZWJ as AL.\n if (index === 0) {\n indices.push(index);\n return types.push(AL);\n }\n // LB9 Do not break a combining character sequence; treat it as if it has the line breaking class of\n // the base character in all of the following rules. Treat ZWJ as if it were CM.\n var prev = types[index - 1];\n if (LINE_BREAKS.indexOf(prev) === -1) {\n indices.push(indices[index - 1]);\n return types.push(prev);\n }\n indices.push(index);\n return types.push(AL);\n }\n indices.push(index);\n if (classType === CJ) {\n return types.push(lineBreak === 'strict' ? NS : ID);\n }\n if (classType === SA) {\n return types.push(AL);\n }\n if (classType === AI) {\n return types.push(AL);\n }\n // For supplementary characters, a useful default is to treat characters in the range 10000..1FFFD as AL\n // and characters in the ranges 20000..2FFFD and 30000..3FFFD as ID, until the implementation can be revised\n // to take into account the actual line breaking properties for these characters.\n if (classType === XX) {\n if ((codePoint >= 0x20000 && codePoint <= 0x2fffd) || (codePoint >= 0x30000 && codePoint <= 0x3fffd)) {\n return types.push(ID);\n }\n else {\n return types.push(AL);\n }\n }\n types.push(classType);\n });\n return [indices, types, categories];\n };\n var isAdjacentWithSpaceIgnored = function (a, b, currentIndex, classTypes) {\n var current = classTypes[currentIndex];\n if (Array.isArray(a) ? a.indexOf(current) !== -1 : a === current) {\n var i = currentIndex;\n while (i <= classTypes.length) {\n i++;\n var next = classTypes[i];\n if (next === b) {\n return true;\n }\n if (next !== SP) {\n break;\n }\n }\n }\n if (current === SP) {\n var i = currentIndex;\n while (i > 0) {\n i--;\n var prev = classTypes[i];\n if (Array.isArray(a) ? a.indexOf(prev) !== -1 : a === prev) {\n var n = currentIndex;\n while (n <= classTypes.length) {\n n++;\n var next = classTypes[n];\n if (next === b) {\n return true;\n }\n if (next !== SP) {\n break;\n }\n }\n }\n if (prev !== SP) {\n break;\n }\n }\n }\n return false;\n };\n var previousNonSpaceClassType = function (currentIndex, classTypes) {\n var i = currentIndex;\n while (i >= 0) {\n var type = classTypes[i];\n if (type === SP) {\n i--;\n }\n else {\n return type;\n }\n }\n return 0;\n };\n var _lineBreakAtIndex = function (codePoints, classTypes, indicies, index, forbiddenBreaks) {\n if (indicies[index] === 0) {\n return BREAK_NOT_ALLOWED$1;\n }\n var currentIndex = index - 1;\n if (Array.isArray(forbiddenBreaks) && forbiddenBreaks[currentIndex] === true) {\n return BREAK_NOT_ALLOWED$1;\n }\n var beforeIndex = currentIndex - 1;\n var afterIndex = currentIndex + 1;\n var current = classTypes[currentIndex];\n // LB4 Always break after hard line breaks.\n // LB5 Treat CR followed by LF, as well as CR, LF, and NL as hard line breaks.\n var before = beforeIndex >= 0 ? classTypes[beforeIndex] : 0;\n var next = classTypes[afterIndex];\n if (current === CR$1 && next === LF$1) {\n return BREAK_NOT_ALLOWED$1;\n }\n if (HARD_LINE_BREAKS.indexOf(current) !== -1) {\n return BREAK_MANDATORY;\n }\n // LB6 Do not break before hard line breaks.\n if (HARD_LINE_BREAKS.indexOf(next) !== -1) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB7 Do not break before spaces or zero width space.\n if (SPACE$1.indexOf(next) !== -1) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB8 Break before any character following a zero-width space, even if one or more spaces intervene.\n if (previousNonSpaceClassType(currentIndex, classTypes) === ZW) {\n return BREAK_ALLOWED$1;\n }\n // LB8a Do not break after a zero width joiner.\n if (UnicodeTrie$1.get(codePoints[currentIndex]) === ZWJ$1) {\n return BREAK_NOT_ALLOWED$1;\n }\n // zwj emojis\n if ((current === EB || current === EM) && UnicodeTrie$1.get(codePoints[afterIndex]) === ZWJ$1) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB11 Do not break before or after Word joiner and related characters.\n if (current === WJ || next === WJ) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB12 Do not break after NBSP and related characters.\n if (current === GL) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB12a Do not break before NBSP and related characters, except after spaces and hyphens.\n if ([SP, BA, HY].indexOf(current) === -1 && next === GL) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB13 Do not break before ‘]’ or ‘!’ or ‘;’ or ‘/’, even after spaces.\n if ([CL, CP, EX, IS, SY].indexOf(next) !== -1) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB14 Do not break after ‘[’, even after spaces.\n if (previousNonSpaceClassType(currentIndex, classTypes) === OP) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB15 Do not break within ‘â€[’, even with intervening spaces.\n if (isAdjacentWithSpaceIgnored(QU, OP, currentIndex, classTypes)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB16 Do not break between closing punctuation and a nonstarter (lb=NS), even with intervening spaces.\n if (isAdjacentWithSpaceIgnored([CL, CP], NS, currentIndex, classTypes)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB17 Do not break within ‘——’, even with intervening spaces.\n if (isAdjacentWithSpaceIgnored(B2, B2, currentIndex, classTypes)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB18 Break after spaces.\n if (current === SP) {\n return BREAK_ALLOWED$1;\n }\n // LB19 Do not break before or after quotation marks, such as ‘ †’.\n if (current === QU || next === QU) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB20 Break before and after unresolved CB.\n if (next === CB || current === CB) {\n return BREAK_ALLOWED$1;\n }\n // LB21 Do not break before hyphen-minus, other hyphens, fixed-width spaces, small kana, and other non-starters, or after acute accents.\n if ([BA, HY, NS].indexOf(next) !== -1 || current === BB) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB21a Don't break after Hebrew + Hyphen.\n if (before === HL && HYPHEN.indexOf(current) !== -1) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB21b Don’t break between Solidus and Hebrew letters.\n if (current === SY && next === HL) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB22 Do not break before ellipsis.\n if (next === IN) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB23 Do not break between digits and letters.\n if ((ALPHABETICS.indexOf(next) !== -1 && current === NU) || (ALPHABETICS.indexOf(current) !== -1 && next === NU)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB23a Do not break between numeric prefixes and ideographs, or between ideographs and numeric postfixes.\n if ((current === PR && [ID, EB, EM].indexOf(next) !== -1) ||\n ([ID, EB, EM].indexOf(current) !== -1 && next === PO)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB24 Do not break between numeric prefix/postfix and letters, or between letters and prefix/postfix.\n if ((ALPHABETICS.indexOf(current) !== -1 && PREFIX_POSTFIX.indexOf(next) !== -1) ||\n (PREFIX_POSTFIX.indexOf(current) !== -1 && ALPHABETICS.indexOf(next) !== -1)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB25 Do not break between the following pairs of classes relevant to numbers:\n if (\n // (PR | PO) × ( OP | HY )? NU\n ([PR, PO].indexOf(current) !== -1 &&\n (next === NU || ([OP, HY].indexOf(next) !== -1 && classTypes[afterIndex + 1] === NU))) ||\n // ( OP | HY ) × NU\n ([OP, HY].indexOf(current) !== -1 && next === NU) ||\n // NU ×\t(NU | SY | IS)\n (current === NU && [NU, SY, IS].indexOf(next) !== -1)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // NU (NU | SY | IS)* × (NU | SY | IS | CL | CP)\n if ([NU, SY, IS, CL, CP].indexOf(next) !== -1) {\n var prevIndex = currentIndex;\n while (prevIndex >= 0) {\n var type = classTypes[prevIndex];\n if (type === NU) {\n return BREAK_NOT_ALLOWED$1;\n }\n else if ([SY, IS].indexOf(type) !== -1) {\n prevIndex--;\n }\n else {\n break;\n }\n }\n }\n // NU (NU | SY | IS)* (CL | CP)? × (PO | PR))\n if ([PR, PO].indexOf(next) !== -1) {\n var prevIndex = [CL, CP].indexOf(current) !== -1 ? beforeIndex : currentIndex;\n while (prevIndex >= 0) {\n var type = classTypes[prevIndex];\n if (type === NU) {\n return BREAK_NOT_ALLOWED$1;\n }\n else if ([SY, IS].indexOf(type) !== -1) {\n prevIndex--;\n }\n else {\n break;\n }\n }\n }\n // LB26 Do not break a Korean syllable.\n if ((JL === current && [JL, JV, H2, H3].indexOf(next) !== -1) ||\n ([JV, H2].indexOf(current) !== -1 && [JV, JT].indexOf(next) !== -1) ||\n ([JT, H3].indexOf(current) !== -1 && next === JT)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB27 Treat a Korean Syllable Block the same as ID.\n if ((KOREAN_SYLLABLE_BLOCK.indexOf(current) !== -1 && [IN, PO].indexOf(next) !== -1) ||\n (KOREAN_SYLLABLE_BLOCK.indexOf(next) !== -1 && current === PR)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB28 Do not break between alphabetics (“atâ€).\n if (ALPHABETICS.indexOf(current) !== -1 && ALPHABETICS.indexOf(next) !== -1) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB29 Do not break between numeric punctuation and alphabetics (“e.g.â€).\n if (current === IS && ALPHABETICS.indexOf(next) !== -1) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB30 Do not break between letters, numbers, or ordinary symbols and opening or closing parentheses.\n if ((ALPHABETICS.concat(NU).indexOf(current) !== -1 &&\n next === OP &&\n ea_OP.indexOf(codePoints[afterIndex]) === -1) ||\n (ALPHABETICS.concat(NU).indexOf(next) !== -1 && current === CP)) {\n return BREAK_NOT_ALLOWED$1;\n }\n // LB30a Break between two regional indicator symbols if and only if there are an even number of regional\n // indicators preceding the position of the break.\n if (current === RI$1 && next === RI$1) {\n var i = indicies[currentIndex];\n var count = 1;\n while (i > 0) {\n i--;\n if (classTypes[i] === RI$1) {\n count++;\n }\n else {\n break;\n }\n }\n if (count % 2 !== 0) {\n return BREAK_NOT_ALLOWED$1;\n }\n }\n // LB30b Do not break between an emoji base and an emoji modifier.\n if (current === EB && next === EM) {\n return BREAK_NOT_ALLOWED$1;\n }\n return BREAK_ALLOWED$1;\n };\n var cssFormattedClasses = function (codePoints, options) {\n if (!options) {\n options = { lineBreak: 'normal', wordBreak: 'normal' };\n }\n var _a = codePointsToCharacterClasses(codePoints, options.lineBreak), indicies = _a[0], classTypes = _a[1], isLetterNumber = _a[2];\n if (options.wordBreak === 'break-all' || options.wordBreak === 'break-word') {\n classTypes = classTypes.map(function (type) { return ([NU, AL, SA].indexOf(type) !== -1 ? ID : type); });\n }\n var forbiddenBreakpoints = options.wordBreak === 'keep-all'\n ? isLetterNumber.map(function (letterNumber, i) {\n return letterNumber && codePoints[i] >= 0x4e00 && codePoints[i] <= 0x9fff;\n })\n : undefined;\n return [indicies, classTypes, forbiddenBreakpoints];\n };\n var Break = /** @class */ (function () {\n function Break(codePoints, lineBreak, start, end) {\n this.codePoints = codePoints;\n this.required = lineBreak === BREAK_MANDATORY;\n this.start = start;\n this.end = end;\n }\n Break.prototype.slice = function () {\n return fromCodePoint$1.apply(void 0, this.codePoints.slice(this.start, this.end));\n };\n return Break;\n }());\n var LineBreaker = function (str, options) {\n var codePoints = toCodePoints$1(str);\n var _a = cssFormattedClasses(codePoints, options), indicies = _a[0], classTypes = _a[1], forbiddenBreakpoints = _a[2];\n var length = codePoints.length;\n var lastEnd = 0;\n var nextIndex = 0;\n return {\n next: function () {\n if (nextIndex >= length) {\n return { done: true, value: null };\n }\n var lineBreak = BREAK_NOT_ALLOWED$1;\n while (nextIndex < length &&\n (lineBreak = _lineBreakAtIndex(codePoints, classTypes, indicies, ++nextIndex, forbiddenBreakpoints)) ===\n BREAK_NOT_ALLOWED$1) { }\n if (lineBreak !== BREAK_NOT_ALLOWED$1 || nextIndex === length) {\n var value = new Break(codePoints, lineBreak, lastEnd, nextIndex);\n lastEnd = nextIndex;\n return { value: value, done: false };\n }\n return { done: true, value: null };\n },\n };\n };\n\n // https://www.w3.org/TR/css-syntax-3\n var FLAG_UNRESTRICTED = 1 << 0;\n var FLAG_ID = 1 << 1;\n var FLAG_INTEGER = 1 << 2;\n var FLAG_NUMBER = 1 << 3;\n var LINE_FEED = 0x000a;\n var SOLIDUS = 0x002f;\n var REVERSE_SOLIDUS = 0x005c;\n var CHARACTER_TABULATION = 0x0009;\n var SPACE = 0x0020;\n var QUOTATION_MARK = 0x0022;\n var EQUALS_SIGN = 0x003d;\n var NUMBER_SIGN = 0x0023;\n var DOLLAR_SIGN = 0x0024;\n var PERCENTAGE_SIGN = 0x0025;\n var APOSTROPHE = 0x0027;\n var LEFT_PARENTHESIS = 0x0028;\n var RIGHT_PARENTHESIS = 0x0029;\n var LOW_LINE = 0x005f;\n var HYPHEN_MINUS = 0x002d;\n var EXCLAMATION_MARK = 0x0021;\n var LESS_THAN_SIGN = 0x003c;\n var GREATER_THAN_SIGN = 0x003e;\n var COMMERCIAL_AT = 0x0040;\n var LEFT_SQUARE_BRACKET = 0x005b;\n var RIGHT_SQUARE_BRACKET = 0x005d;\n var CIRCUMFLEX_ACCENT = 0x003d;\n var LEFT_CURLY_BRACKET = 0x007b;\n var QUESTION_MARK = 0x003f;\n var RIGHT_CURLY_BRACKET = 0x007d;\n var VERTICAL_LINE = 0x007c;\n var TILDE = 0x007e;\n var CONTROL = 0x0080;\n var REPLACEMENT_CHARACTER = 0xfffd;\n var ASTERISK = 0x002a;\n var PLUS_SIGN = 0x002b;\n var COMMA = 0x002c;\n var COLON = 0x003a;\n var SEMICOLON = 0x003b;\n var FULL_STOP = 0x002e;\n var NULL = 0x0000;\n var BACKSPACE = 0x0008;\n var LINE_TABULATION = 0x000b;\n var SHIFT_OUT = 0x000e;\n var INFORMATION_SEPARATOR_ONE = 0x001f;\n var DELETE = 0x007f;\n var EOF = -1;\n var ZERO = 0x0030;\n var a = 0x0061;\n var e = 0x0065;\n var f = 0x0066;\n var u = 0x0075;\n var z = 0x007a;\n var A = 0x0041;\n var E = 0x0045;\n var F = 0x0046;\n var U = 0x0055;\n var Z = 0x005a;\n var isDigit = function (codePoint) { return codePoint >= ZERO && codePoint <= 0x0039; };\n var isSurrogateCodePoint = function (codePoint) { return codePoint >= 0xd800 && codePoint <= 0xdfff; };\n var isHex = function (codePoint) {\n return isDigit(codePoint) || (codePoint >= A && codePoint <= F) || (codePoint >= a && codePoint <= f);\n };\n var isLowerCaseLetter = function (codePoint) { return codePoint >= a && codePoint <= z; };\n var isUpperCaseLetter = function (codePoint) { return codePoint >= A && codePoint <= Z; };\n var isLetter = function (codePoint) { return isLowerCaseLetter(codePoint) || isUpperCaseLetter(codePoint); };\n var isNonASCIICodePoint = function (codePoint) { return codePoint >= CONTROL; };\n var isWhiteSpace = function (codePoint) {\n return codePoint === LINE_FEED || codePoint === CHARACTER_TABULATION || codePoint === SPACE;\n };\n var isNameStartCodePoint = function (codePoint) {\n return isLetter(codePoint) || isNonASCIICodePoint(codePoint) || codePoint === LOW_LINE;\n };\n var isNameCodePoint = function (codePoint) {\n return isNameStartCodePoint(codePoint) || isDigit(codePoint) || codePoint === HYPHEN_MINUS;\n };\n var isNonPrintableCodePoint = function (codePoint) {\n return ((codePoint >= NULL && codePoint <= BACKSPACE) ||\n codePoint === LINE_TABULATION ||\n (codePoint >= SHIFT_OUT && codePoint <= INFORMATION_SEPARATOR_ONE) ||\n codePoint === DELETE);\n };\n var isValidEscape = function (c1, c2) {\n if (c1 !== REVERSE_SOLIDUS) {\n return false;\n }\n return c2 !== LINE_FEED;\n };\n var isIdentifierStart = function (c1, c2, c3) {\n if (c1 === HYPHEN_MINUS) {\n return isNameStartCodePoint(c2) || isValidEscape(c2, c3);\n }\n else if (isNameStartCodePoint(c1)) {\n return true;\n }\n else if (c1 === REVERSE_SOLIDUS && isValidEscape(c1, c2)) {\n return true;\n }\n return false;\n };\n var isNumberStart = function (c1, c2, c3) {\n if (c1 === PLUS_SIGN || c1 === HYPHEN_MINUS) {\n if (isDigit(c2)) {\n return true;\n }\n return c2 === FULL_STOP && isDigit(c3);\n }\n if (c1 === FULL_STOP) {\n return isDigit(c2);\n }\n return isDigit(c1);\n };\n var stringToNumber = function (codePoints) {\n var c = 0;\n var sign = 1;\n if (codePoints[c] === PLUS_SIGN || codePoints[c] === HYPHEN_MINUS) {\n if (codePoints[c] === HYPHEN_MINUS) {\n sign = -1;\n }\n c++;\n }\n var integers = [];\n while (isDigit(codePoints[c])) {\n integers.push(codePoints[c++]);\n }\n var int = integers.length ? parseInt(fromCodePoint$1.apply(void 0, integers), 10) : 0;\n if (codePoints[c] === FULL_STOP) {\n c++;\n }\n var fraction = [];\n while (isDigit(codePoints[c])) {\n fraction.push(codePoints[c++]);\n }\n var fracd = fraction.length;\n var frac = fracd ? parseInt(fromCodePoint$1.apply(void 0, fraction), 10) : 0;\n if (codePoints[c] === E || codePoints[c] === e) {\n c++;\n }\n var expsign = 1;\n if (codePoints[c] === PLUS_SIGN || codePoints[c] === HYPHEN_MINUS) {\n if (codePoints[c] === HYPHEN_MINUS) {\n expsign = -1;\n }\n c++;\n }\n var exponent = [];\n while (isDigit(codePoints[c])) {\n exponent.push(codePoints[c++]);\n }\n var exp = exponent.length ? parseInt(fromCodePoint$1.apply(void 0, exponent), 10) : 0;\n return sign * (int + frac * Math.pow(10, -fracd)) * Math.pow(10, expsign * exp);\n };\n var LEFT_PARENTHESIS_TOKEN = {\n type: 2 /* LEFT_PARENTHESIS_TOKEN */\n };\n var RIGHT_PARENTHESIS_TOKEN = {\n type: 3 /* RIGHT_PARENTHESIS_TOKEN */\n };\n var COMMA_TOKEN = { type: 4 /* COMMA_TOKEN */ };\n var SUFFIX_MATCH_TOKEN = { type: 13 /* SUFFIX_MATCH_TOKEN */ };\n var PREFIX_MATCH_TOKEN = { type: 8 /* PREFIX_MATCH_TOKEN */ };\n var COLUMN_TOKEN = { type: 21 /* COLUMN_TOKEN */ };\n var DASH_MATCH_TOKEN = { type: 9 /* DASH_MATCH_TOKEN */ };\n var INCLUDE_MATCH_TOKEN = { type: 10 /* INCLUDE_MATCH_TOKEN */ };\n var LEFT_CURLY_BRACKET_TOKEN = {\n type: 11 /* LEFT_CURLY_BRACKET_TOKEN */\n };\n var RIGHT_CURLY_BRACKET_TOKEN = {\n type: 12 /* RIGHT_CURLY_BRACKET_TOKEN */\n };\n var SUBSTRING_MATCH_TOKEN = { type: 14 /* SUBSTRING_MATCH_TOKEN */ };\n var BAD_URL_TOKEN = { type: 23 /* BAD_URL_TOKEN */ };\n var BAD_STRING_TOKEN = { type: 1 /* BAD_STRING_TOKEN */ };\n var CDO_TOKEN = { type: 25 /* CDO_TOKEN */ };\n var CDC_TOKEN = { type: 24 /* CDC_TOKEN */ };\n var COLON_TOKEN = { type: 26 /* COLON_TOKEN */ };\n var SEMICOLON_TOKEN = { type: 27 /* SEMICOLON_TOKEN */ };\n var LEFT_SQUARE_BRACKET_TOKEN = {\n type: 28 /* LEFT_SQUARE_BRACKET_TOKEN */\n };\n var RIGHT_SQUARE_BRACKET_TOKEN = {\n type: 29 /* RIGHT_SQUARE_BRACKET_TOKEN */\n };\n var WHITESPACE_TOKEN = { type: 31 /* WHITESPACE_TOKEN */ };\n var EOF_TOKEN = { type: 32 /* EOF_TOKEN */ };\n var Tokenizer = /** @class */ (function () {\n function Tokenizer() {\n this._value = [];\n }\n Tokenizer.prototype.write = function (chunk) {\n this._value = this._value.concat(toCodePoints$1(chunk));\n };\n Tokenizer.prototype.read = function () {\n var tokens = [];\n var token = this.consumeToken();\n while (token !== EOF_TOKEN) {\n tokens.push(token);\n token = this.consumeToken();\n }\n return tokens;\n };\n Tokenizer.prototype.consumeToken = function () {\n var codePoint = this.consumeCodePoint();\n switch (codePoint) {\n case QUOTATION_MARK:\n return this.consumeStringToken(QUOTATION_MARK);\n case NUMBER_SIGN:\n var c1 = this.peekCodePoint(0);\n var c2 = this.peekCodePoint(1);\n var c3 = this.peekCodePoint(2);\n if (isNameCodePoint(c1) || isValidEscape(c2, c3)) {\n var flags = isIdentifierStart(c1, c2, c3) ? FLAG_ID : FLAG_UNRESTRICTED;\n var value = this.consumeName();\n return { type: 5 /* HASH_TOKEN */, value: value, flags: flags };\n }\n break;\n case DOLLAR_SIGN:\n if (this.peekCodePoint(0) === EQUALS_SIGN) {\n this.consumeCodePoint();\n return SUFFIX_MATCH_TOKEN;\n }\n break;\n case APOSTROPHE:\n return this.consumeStringToken(APOSTROPHE);\n case LEFT_PARENTHESIS:\n return LEFT_PARENTHESIS_TOKEN;\n case RIGHT_PARENTHESIS:\n return RIGHT_PARENTHESIS_TOKEN;\n case ASTERISK:\n if (this.peekCodePoint(0) === EQUALS_SIGN) {\n this.consumeCodePoint();\n return SUBSTRING_MATCH_TOKEN;\n }\n break;\n case PLUS_SIGN:\n if (isNumberStart(codePoint, this.peekCodePoint(0), this.peekCodePoint(1))) {\n this.reconsumeCodePoint(codePoint);\n return this.consumeNumericToken();\n }\n break;\n case COMMA:\n return COMMA_TOKEN;\n case HYPHEN_MINUS:\n var e1 = codePoint;\n var e2 = this.peekCodePoint(0);\n var e3 = this.peekCodePoint(1);\n if (isNumberStart(e1, e2, e3)) {\n this.reconsumeCodePoint(codePoint);\n return this.consumeNumericToken();\n }\n if (isIdentifierStart(e1, e2, e3)) {\n this.reconsumeCodePoint(codePoint);\n return this.consumeIdentLikeToken();\n }\n if (e2 === HYPHEN_MINUS && e3 === GREATER_THAN_SIGN) {\n this.consumeCodePoint();\n this.consumeCodePoint();\n return CDC_TOKEN;\n }\n break;\n case FULL_STOP:\n if (isNumberStart(codePoint, this.peekCodePoint(0), this.peekCodePoint(1))) {\n this.reconsumeCodePoint(codePoint);\n return this.consumeNumericToken();\n }\n break;\n case SOLIDUS:\n if (this.peekCodePoint(0) === ASTERISK) {\n this.consumeCodePoint();\n while (true) {\n var c = this.consumeCodePoint();\n if (c === ASTERISK) {\n c = this.consumeCodePoint();\n if (c === SOLIDUS) {\n return this.consumeToken();\n }\n }\n if (c === EOF) {\n return this.consumeToken();\n }\n }\n }\n break;\n case COLON:\n return COLON_TOKEN;\n case SEMICOLON:\n return SEMICOLON_TOKEN;\n case LESS_THAN_SIGN:\n if (this.peekCodePoint(0) === EXCLAMATION_MARK &&\n this.peekCodePoint(1) === HYPHEN_MINUS &&\n this.peekCodePoint(2) === HYPHEN_MINUS) {\n this.consumeCodePoint();\n this.consumeCodePoint();\n return CDO_TOKEN;\n }\n break;\n case COMMERCIAL_AT:\n var a1 = this.peekCodePoint(0);\n var a2 = this.peekCodePoint(1);\n var a3 = this.peekCodePoint(2);\n if (isIdentifierStart(a1, a2, a3)) {\n var value = this.consumeName();\n return { type: 7 /* AT_KEYWORD_TOKEN */, value: value };\n }\n break;\n case LEFT_SQUARE_BRACKET:\n return LEFT_SQUARE_BRACKET_TOKEN;\n case REVERSE_SOLIDUS:\n if (isValidEscape(codePoint, this.peekCodePoint(0))) {\n this.reconsumeCodePoint(codePoint);\n return this.consumeIdentLikeToken();\n }\n break;\n case RIGHT_SQUARE_BRACKET:\n return RIGHT_SQUARE_BRACKET_TOKEN;\n case CIRCUMFLEX_ACCENT:\n if (this.peekCodePoint(0) === EQUALS_SIGN) {\n this.consumeCodePoint();\n return PREFIX_MATCH_TOKEN;\n }\n break;\n case LEFT_CURLY_BRACKET:\n return LEFT_CURLY_BRACKET_TOKEN;\n case RIGHT_CURLY_BRACKET:\n return RIGHT_CURLY_BRACKET_TOKEN;\n case u:\n case U:\n var u1 = this.peekCodePoint(0);\n var u2 = this.peekCodePoint(1);\n if (u1 === PLUS_SIGN && (isHex(u2) || u2 === QUESTION_MARK)) {\n this.consumeCodePoint();\n this.consumeUnicodeRangeToken();\n }\n this.reconsumeCodePoint(codePoint);\n return this.consumeIdentLikeToken();\n case VERTICAL_LINE:\n if (this.peekCodePoint(0) === EQUALS_SIGN) {\n this.consumeCodePoint();\n return DASH_MATCH_TOKEN;\n }\n if (this.peekCodePoint(0) === VERTICAL_LINE) {\n this.consumeCodePoint();\n return COLUMN_TOKEN;\n }\n break;\n case TILDE:\n if (this.peekCodePoint(0) === EQUALS_SIGN) {\n this.consumeCodePoint();\n return INCLUDE_MATCH_TOKEN;\n }\n break;\n case EOF:\n return EOF_TOKEN;\n }\n if (isWhiteSpace(codePoint)) {\n this.consumeWhiteSpace();\n return WHITESPACE_TOKEN;\n }\n if (isDigit(codePoint)) {\n this.reconsumeCodePoint(codePoint);\n return this.consumeNumericToken();\n }\n if (isNameStartCodePoint(codePoint)) {\n this.reconsumeCodePoint(codePoint);\n return this.consumeIdentLikeToken();\n }\n return { type: 6 /* DELIM_TOKEN */, value: fromCodePoint$1(codePoint) };\n };\n Tokenizer.prototype.consumeCodePoint = function () {\n var value = this._value.shift();\n return typeof value === 'undefined' ? -1 : value;\n };\n Tokenizer.prototype.reconsumeCodePoint = function (codePoint) {\n this._value.unshift(codePoint);\n };\n Tokenizer.prototype.peekCodePoint = function (delta) {\n if (delta >= this._value.length) {\n return -1;\n }\n return this._value[delta];\n };\n Tokenizer.prototype.consumeUnicodeRangeToken = function () {\n var digits = [];\n var codePoint = this.consumeCodePoint();\n while (isHex(codePoint) && digits.length < 6) {\n digits.push(codePoint);\n codePoint = this.consumeCodePoint();\n }\n var questionMarks = false;\n while (codePoint === QUESTION_MARK && digits.length < 6) {\n digits.push(codePoint);\n codePoint = this.consumeCodePoint();\n questionMarks = true;\n }\n if (questionMarks) {\n var start_1 = parseInt(fromCodePoint$1.apply(void 0, digits.map(function (digit) { return (digit === QUESTION_MARK ? ZERO : digit); })), 16);\n var end = parseInt(fromCodePoint$1.apply(void 0, digits.map(function (digit) { return (digit === QUESTION_MARK ? F : digit); })), 16);\n return { type: 30 /* UNICODE_RANGE_TOKEN */, start: start_1, end: end };\n }\n var start = parseInt(fromCodePoint$1.apply(void 0, digits), 16);\n if (this.peekCodePoint(0) === HYPHEN_MINUS && isHex(this.peekCodePoint(1))) {\n this.consumeCodePoint();\n codePoint = this.consumeCodePoint();\n var endDigits = [];\n while (isHex(codePoint) && endDigits.length < 6) {\n endDigits.push(codePoint);\n codePoint = this.consumeCodePoint();\n }\n var end = parseInt(fromCodePoint$1.apply(void 0, endDigits), 16);\n return { type: 30 /* UNICODE_RANGE_TOKEN */, start: start, end: end };\n }\n else {\n return { type: 30 /* UNICODE_RANGE_TOKEN */, start: start, end: start };\n }\n };\n Tokenizer.prototype.consumeIdentLikeToken = function () {\n var value = this.consumeName();\n if (value.toLowerCase() === 'url' && this.peekCodePoint(0) === LEFT_PARENTHESIS) {\n this.consumeCodePoint();\n return this.consumeUrlToken();\n }\n else if (this.peekCodePoint(0) === LEFT_PARENTHESIS) {\n this.consumeCodePoint();\n return { type: 19 /* FUNCTION_TOKEN */, value: value };\n }\n return { type: 20 /* IDENT_TOKEN */, value: value };\n };\n Tokenizer.prototype.consumeUrlToken = function () {\n var value = [];\n this.consumeWhiteSpace();\n if (this.peekCodePoint(0) === EOF) {\n return { type: 22 /* URL_TOKEN */, value: '' };\n }\n var next = this.peekCodePoint(0);\n if (next === APOSTROPHE || next === QUOTATION_MARK) {\n var stringToken = this.consumeStringToken(this.consumeCodePoint());\n if (stringToken.type === 0 /* STRING_TOKEN */) {\n this.consumeWhiteSpace();\n if (this.peekCodePoint(0) === EOF || this.peekCodePoint(0) === RIGHT_PARENTHESIS) {\n this.consumeCodePoint();\n return { type: 22 /* URL_TOKEN */, value: stringToken.value };\n }\n }\n this.consumeBadUrlRemnants();\n return BAD_URL_TOKEN;\n }\n while (true) {\n var codePoint = this.consumeCodePoint();\n if (codePoint === EOF || codePoint === RIGHT_PARENTHESIS) {\n return { type: 22 /* URL_TOKEN */, value: fromCodePoint$1.apply(void 0, value) };\n }\n else if (isWhiteSpace(codePoint)) {\n this.consumeWhiteSpace();\n if (this.peekCodePoint(0) === EOF || this.peekCodePoint(0) === RIGHT_PARENTHESIS) {\n this.consumeCodePoint();\n return { type: 22 /* URL_TOKEN */, value: fromCodePoint$1.apply(void 0, value) };\n }\n this.consumeBadUrlRemnants();\n return BAD_URL_TOKEN;\n }\n else if (codePoint === QUOTATION_MARK ||\n codePoint === APOSTROPHE ||\n codePoint === LEFT_PARENTHESIS ||\n isNonPrintableCodePoint(codePoint)) {\n this.consumeBadUrlRemnants();\n return BAD_URL_TOKEN;\n }\n else if (codePoint === REVERSE_SOLIDUS) {\n if (isValidEscape(codePoint, this.peekCodePoint(0))) {\n value.push(this.consumeEscapedCodePoint());\n }\n else {\n this.consumeBadUrlRemnants();\n return BAD_URL_TOKEN;\n }\n }\n else {\n value.push(codePoint);\n }\n }\n };\n Tokenizer.prototype.consumeWhiteSpace = function () {\n while (isWhiteSpace(this.peekCodePoint(0))) {\n this.consumeCodePoint();\n }\n };\n Tokenizer.prototype.consumeBadUrlRemnants = function () {\n while (true) {\n var codePoint = this.consumeCodePoint();\n if (codePoint === RIGHT_PARENTHESIS || codePoint === EOF) {\n return;\n }\n if (isValidEscape(codePoint, this.peekCodePoint(0))) {\n this.consumeEscapedCodePoint();\n }\n }\n };\n Tokenizer.prototype.consumeStringSlice = function (count) {\n var SLICE_STACK_SIZE = 50000;\n var value = '';\n while (count > 0) {\n var amount = Math.min(SLICE_STACK_SIZE, count);\n value += fromCodePoint$1.apply(void 0, this._value.splice(0, amount));\n count -= amount;\n }\n this._value.shift();\n return value;\n };\n Tokenizer.prototype.consumeStringToken = function (endingCodePoint) {\n var value = '';\n var i = 0;\n do {\n var codePoint = this._value[i];\n if (codePoint === EOF || codePoint === undefined || codePoint === endingCodePoint) {\n value += this.consumeStringSlice(i);\n return { type: 0 /* STRING_TOKEN */, value: value };\n }\n if (codePoint === LINE_FEED) {\n this._value.splice(0, i);\n return BAD_STRING_TOKEN;\n }\n if (codePoint === REVERSE_SOLIDUS) {\n var next = this._value[i + 1];\n if (next !== EOF && next !== undefined) {\n if (next === LINE_FEED) {\n value += this.consumeStringSlice(i);\n i = -1;\n this._value.shift();\n }\n else if (isValidEscape(codePoint, next)) {\n value += this.consumeStringSlice(i);\n value += fromCodePoint$1(this.consumeEscapedCodePoint());\n i = -1;\n }\n }\n }\n i++;\n } while (true);\n };\n Tokenizer.prototype.consumeNumber = function () {\n var repr = [];\n var type = FLAG_INTEGER;\n var c1 = this.peekCodePoint(0);\n if (c1 === PLUS_SIGN || c1 === HYPHEN_MINUS) {\n repr.push(this.consumeCodePoint());\n }\n while (isDigit(this.peekCodePoint(0))) {\n repr.push(this.consumeCodePoint());\n }\n c1 = this.peekCodePoint(0);\n var c2 = this.peekCodePoint(1);\n if (c1 === FULL_STOP && isDigit(c2)) {\n repr.push(this.consumeCodePoint(), this.consumeCodePoint());\n type = FLAG_NUMBER;\n while (isDigit(this.peekCodePoint(0))) {\n repr.push(this.consumeCodePoint());\n }\n }\n c1 = this.peekCodePoint(0);\n c2 = this.peekCodePoint(1);\n var c3 = this.peekCodePoint(2);\n if ((c1 === E || c1 === e) && (((c2 === PLUS_SIGN || c2 === HYPHEN_MINUS) && isDigit(c3)) || isDigit(c2))) {\n repr.push(this.consumeCodePoint(), this.consumeCodePoint());\n type = FLAG_NUMBER;\n while (isDigit(this.peekCodePoint(0))) {\n repr.push(this.consumeCodePoint());\n }\n }\n return [stringToNumber(repr), type];\n };\n Tokenizer.prototype.consumeNumericToken = function () {\n var _a = this.consumeNumber(), number = _a[0], flags = _a[1];\n var c1 = this.peekCodePoint(0);\n var c2 = this.peekCodePoint(1);\n var c3 = this.peekCodePoint(2);\n if (isIdentifierStart(c1, c2, c3)) {\n var unit = this.consumeName();\n return { type: 15 /* DIMENSION_TOKEN */, number: number, flags: flags, unit: unit };\n }\n if (c1 === PERCENTAGE_SIGN) {\n this.consumeCodePoint();\n return { type: 16 /* PERCENTAGE_TOKEN */, number: number, flags: flags };\n }\n return { type: 17 /* NUMBER_TOKEN */, number: number, flags: flags };\n };\n Tokenizer.prototype.consumeEscapedCodePoint = function () {\n var codePoint = this.consumeCodePoint();\n if (isHex(codePoint)) {\n var hex = fromCodePoint$1(codePoint);\n while (isHex(this.peekCodePoint(0)) && hex.length < 6) {\n hex += fromCodePoint$1(this.consumeCodePoint());\n }\n if (isWhiteSpace(this.peekCodePoint(0))) {\n this.consumeCodePoint();\n }\n var hexCodePoint = parseInt(hex, 16);\n if (hexCodePoint === 0 || isSurrogateCodePoint(hexCodePoint) || hexCodePoint > 0x10ffff) {\n return REPLACEMENT_CHARACTER;\n }\n return hexCodePoint;\n }\n if (codePoint === EOF) {\n return REPLACEMENT_CHARACTER;\n }\n return codePoint;\n };\n Tokenizer.prototype.consumeName = function () {\n var result = '';\n while (true) {\n var codePoint = this.consumeCodePoint();\n if (isNameCodePoint(codePoint)) {\n result += fromCodePoint$1(codePoint);\n }\n else if (isValidEscape(codePoint, this.peekCodePoint(0))) {\n result += fromCodePoint$1(this.consumeEscapedCodePoint());\n }\n else {\n this.reconsumeCodePoint(codePoint);\n return result;\n }\n }\n };\n return Tokenizer;\n }());\n\n var Parser = /** @class */ (function () {\n function Parser(tokens) {\n this._tokens = tokens;\n }\n Parser.create = function (value) {\n var tokenizer = new Tokenizer();\n tokenizer.write(value);\n return new Parser(tokenizer.read());\n };\n Parser.parseValue = function (value) {\n return Parser.create(value).parseComponentValue();\n };\n Parser.parseValues = function (value) {\n return Parser.create(value).parseComponentValues();\n };\n Parser.prototype.parseComponentValue = function () {\n var token = this.consumeToken();\n while (token.type === 31 /* WHITESPACE_TOKEN */) {\n token = this.consumeToken();\n }\n if (token.type === 32 /* EOF_TOKEN */) {\n throw new SyntaxError(\"Error parsing CSS component value, unexpected EOF\");\n }\n this.reconsumeToken(token);\n var value = this.consumeComponentValue();\n do {\n token = this.consumeToken();\n } while (token.type === 31 /* WHITESPACE_TOKEN */);\n if (token.type === 32 /* EOF_TOKEN */) {\n return value;\n }\n throw new SyntaxError(\"Error parsing CSS component value, multiple values found when expecting only one\");\n };\n Parser.prototype.parseComponentValues = function () {\n var values = [];\n while (true) {\n var value = this.consumeComponentValue();\n if (value.type === 32 /* EOF_TOKEN */) {\n return values;\n }\n values.push(value);\n values.push();\n }\n };\n Parser.prototype.consumeComponentValue = function () {\n var token = this.consumeToken();\n switch (token.type) {\n case 11 /* LEFT_CURLY_BRACKET_TOKEN */:\n case 28 /* LEFT_SQUARE_BRACKET_TOKEN */:\n case 2 /* LEFT_PARENTHESIS_TOKEN */:\n return this.consumeSimpleBlock(token.type);\n case 19 /* FUNCTION_TOKEN */:\n return this.consumeFunction(token);\n }\n return token;\n };\n Parser.prototype.consumeSimpleBlock = function (type) {\n var block = { type: type, values: [] };\n var token = this.consumeToken();\n while (true) {\n if (token.type === 32 /* EOF_TOKEN */ || isEndingTokenFor(token, type)) {\n return block;\n }\n this.reconsumeToken(token);\n block.values.push(this.consumeComponentValue());\n token = this.consumeToken();\n }\n };\n Parser.prototype.consumeFunction = function (functionToken) {\n var cssFunction = {\n name: functionToken.value,\n values: [],\n type: 18 /* FUNCTION */\n };\n while (true) {\n var token = this.consumeToken();\n if (token.type === 32 /* EOF_TOKEN */ || token.type === 3 /* RIGHT_PARENTHESIS_TOKEN */) {\n return cssFunction;\n }\n this.reconsumeToken(token);\n cssFunction.values.push(this.consumeComponentValue());\n }\n };\n Parser.prototype.consumeToken = function () {\n var token = this._tokens.shift();\n return typeof token === 'undefined' ? EOF_TOKEN : token;\n };\n Parser.prototype.reconsumeToken = function (token) {\n this._tokens.unshift(token);\n };\n return Parser;\n }());\n var isDimensionToken = function (token) { return token.type === 15 /* DIMENSION_TOKEN */; };\n var isNumberToken = function (token) { return token.type === 17 /* NUMBER_TOKEN */; };\n var isIdentToken = function (token) { return token.type === 20 /* IDENT_TOKEN */; };\n var isStringToken = function (token) { return token.type === 0 /* STRING_TOKEN */; };\n var isIdentWithValue = function (token, value) {\n return isIdentToken(token) && token.value === value;\n };\n var nonWhiteSpace = function (token) { return token.type !== 31 /* WHITESPACE_TOKEN */; };\n var nonFunctionArgSeparator = function (token) {\n return token.type !== 31 /* WHITESPACE_TOKEN */ && token.type !== 4 /* COMMA_TOKEN */;\n };\n var parseFunctionArgs = function (tokens) {\n var args = [];\n var arg = [];\n tokens.forEach(function (token) {\n if (token.type === 4 /* COMMA_TOKEN */) {\n if (arg.length === 0) {\n throw new Error(\"Error parsing function args, zero tokens for arg\");\n }\n args.push(arg);\n arg = [];\n return;\n }\n if (token.type !== 31 /* WHITESPACE_TOKEN */) {\n arg.push(token);\n }\n });\n if (arg.length) {\n args.push(arg);\n }\n return args;\n };\n var isEndingTokenFor = function (token, type) {\n if (type === 11 /* LEFT_CURLY_BRACKET_TOKEN */ && token.type === 12 /* RIGHT_CURLY_BRACKET_TOKEN */) {\n return true;\n }\n if (type === 28 /* LEFT_SQUARE_BRACKET_TOKEN */ && token.type === 29 /* RIGHT_SQUARE_BRACKET_TOKEN */) {\n return true;\n }\n return type === 2 /* LEFT_PARENTHESIS_TOKEN */ && token.type === 3 /* RIGHT_PARENTHESIS_TOKEN */;\n };\n\n var isLength = function (token) {\n return token.type === 17 /* NUMBER_TOKEN */ || token.type === 15 /* DIMENSION_TOKEN */;\n };\n\n var isLengthPercentage = function (token) {\n return token.type === 16 /* PERCENTAGE_TOKEN */ || isLength(token);\n };\n var parseLengthPercentageTuple = function (tokens) {\n return tokens.length > 1 ? [tokens[0], tokens[1]] : [tokens[0]];\n };\n var ZERO_LENGTH = {\n type: 17 /* NUMBER_TOKEN */,\n number: 0,\n flags: FLAG_INTEGER\n };\n var FIFTY_PERCENT = {\n type: 16 /* PERCENTAGE_TOKEN */,\n number: 50,\n flags: FLAG_INTEGER\n };\n var HUNDRED_PERCENT = {\n type: 16 /* PERCENTAGE_TOKEN */,\n number: 100,\n flags: FLAG_INTEGER\n };\n var getAbsoluteValueForTuple = function (tuple, width, height) {\n var x = tuple[0], y = tuple[1];\n return [getAbsoluteValue(x, width), getAbsoluteValue(typeof y !== 'undefined' ? y : x, height)];\n };\n var getAbsoluteValue = function (token, parent) {\n if (token.type === 16 /* PERCENTAGE_TOKEN */) {\n return (token.number / 100) * parent;\n }\n if (isDimensionToken(token)) {\n switch (token.unit) {\n case 'rem':\n case 'em':\n return 16 * token.number; // TODO use correct font-size\n case 'px':\n default:\n return token.number;\n }\n }\n return token.number;\n };\n\n var DEG = 'deg';\n var GRAD = 'grad';\n var RAD = 'rad';\n var TURN = 'turn';\n var angle = {\n name: 'angle',\n parse: function (_context, value) {\n if (value.type === 15 /* DIMENSION_TOKEN */) {\n switch (value.unit) {\n case DEG:\n return (Math.PI * value.number) / 180;\n case GRAD:\n return (Math.PI / 200) * value.number;\n case RAD:\n return value.number;\n case TURN:\n return Math.PI * 2 * value.number;\n }\n }\n throw new Error(\"Unsupported angle type\");\n }\n };\n var isAngle = function (value) {\n if (value.type === 15 /* DIMENSION_TOKEN */) {\n if (value.unit === DEG || value.unit === GRAD || value.unit === RAD || value.unit === TURN) {\n return true;\n }\n }\n return false;\n };\n var parseNamedSide = function (tokens) {\n var sideOrCorner = tokens\n .filter(isIdentToken)\n .map(function (ident) { return ident.value; })\n .join(' ');\n switch (sideOrCorner) {\n case 'to bottom right':\n case 'to right bottom':\n case 'left top':\n case 'top left':\n return [ZERO_LENGTH, ZERO_LENGTH];\n case 'to top':\n case 'bottom':\n return deg(0);\n case 'to bottom left':\n case 'to left bottom':\n case 'right top':\n case 'top right':\n return [ZERO_LENGTH, HUNDRED_PERCENT];\n case 'to right':\n case 'left':\n return deg(90);\n case 'to top left':\n case 'to left top':\n case 'right bottom':\n case 'bottom right':\n return [HUNDRED_PERCENT, HUNDRED_PERCENT];\n case 'to bottom':\n case 'top':\n return deg(180);\n case 'to top right':\n case 'to right top':\n case 'left bottom':\n case 'bottom left':\n return [HUNDRED_PERCENT, ZERO_LENGTH];\n case 'to left':\n case 'right':\n return deg(270);\n }\n return 0;\n };\n var deg = function (deg) { return (Math.PI * deg) / 180; };\n\n var color$1 = {\n name: 'color',\n parse: function (context, value) {\n if (value.type === 18 /* FUNCTION */) {\n var colorFunction = SUPPORTED_COLOR_FUNCTIONS[value.name];\n if (typeof colorFunction === 'undefined') {\n throw new Error(\"Attempting to parse an unsupported color function \\\"\" + value.name + \"\\\"\");\n }\n return colorFunction(context, value.values);\n }\n if (value.type === 5 /* HASH_TOKEN */) {\n if (value.value.length === 3) {\n var r = value.value.substring(0, 1);\n var g = value.value.substring(1, 2);\n var b = value.value.substring(2, 3);\n return pack(parseInt(r + r, 16), parseInt(g + g, 16), parseInt(b + b, 16), 1);\n }\n if (value.value.length === 4) {\n var r = value.value.substring(0, 1);\n var g = value.value.substring(1, 2);\n var b = value.value.substring(2, 3);\n var a = value.value.substring(3, 4);\n return pack(parseInt(r + r, 16), parseInt(g + g, 16), parseInt(b + b, 16), parseInt(a + a, 16) / 255);\n }\n if (value.value.length === 6) {\n var r = value.value.substring(0, 2);\n var g = value.value.substring(2, 4);\n var b = value.value.substring(4, 6);\n return pack(parseInt(r, 16), parseInt(g, 16), parseInt(b, 16), 1);\n }\n if (value.value.length === 8) {\n var r = value.value.substring(0, 2);\n var g = value.value.substring(2, 4);\n var b = value.value.substring(4, 6);\n var a = value.value.substring(6, 8);\n return pack(parseInt(r, 16), parseInt(g, 16), parseInt(b, 16), parseInt(a, 16) / 255);\n }\n }\n if (value.type === 20 /* IDENT_TOKEN */) {\n var namedColor = COLORS[value.value.toUpperCase()];\n if (typeof namedColor !== 'undefined') {\n return namedColor;\n }\n }\n return COLORS.TRANSPARENT;\n }\n };\n var isTransparent = function (color) { return (0xff & color) === 0; };\n var asString = function (color) {\n var alpha = 0xff & color;\n var blue = 0xff & (color >> 8);\n var green = 0xff & (color >> 16);\n var red = 0xff & (color >> 24);\n return alpha < 255 ? \"rgba(\" + red + \",\" + green + \",\" + blue + \",\" + alpha / 255 + \")\" : \"rgb(\" + red + \",\" + green + \",\" + blue + \")\";\n };\n var pack = function (r, g, b, a) {\n return ((r << 24) | (g << 16) | (b << 8) | (Math.round(a * 255) << 0)) >>> 0;\n };\n var getTokenColorValue = function (token, i) {\n if (token.type === 17 /* NUMBER_TOKEN */) {\n return token.number;\n }\n if (token.type === 16 /* PERCENTAGE_TOKEN */) {\n var max = i === 3 ? 1 : 255;\n return i === 3 ? (token.number / 100) * max : Math.round((token.number / 100) * max);\n }\n return 0;\n };\n var rgb = function (_context, args) {\n var tokens = args.filter(nonFunctionArgSeparator);\n if (tokens.length === 3) {\n var _a = tokens.map(getTokenColorValue), r = _a[0], g = _a[1], b = _a[2];\n return pack(r, g, b, 1);\n }\n if (tokens.length === 4) {\n var _b = tokens.map(getTokenColorValue), r = _b[0], g = _b[1], b = _b[2], a = _b[3];\n return pack(r, g, b, a);\n }\n return 0;\n };\n function hue2rgb(t1, t2, hue) {\n if (hue < 0) {\n hue += 1;\n }\n if (hue >= 1) {\n hue -= 1;\n }\n if (hue < 1 / 6) {\n return (t2 - t1) * hue * 6 + t1;\n }\n else if (hue < 1 / 2) {\n return t2;\n }\n else if (hue < 2 / 3) {\n return (t2 - t1) * 6 * (2 / 3 - hue) + t1;\n }\n else {\n return t1;\n }\n }\n var hsl = function (context, args) {\n var tokens = args.filter(nonFunctionArgSeparator);\n var hue = tokens[0], saturation = tokens[1], lightness = tokens[2], alpha = tokens[3];\n var h = (hue.type === 17 /* NUMBER_TOKEN */ ? deg(hue.number) : angle.parse(context, hue)) / (Math.PI * 2);\n var s = isLengthPercentage(saturation) ? saturation.number / 100 : 0;\n var l = isLengthPercentage(lightness) ? lightness.number / 100 : 0;\n var a = typeof alpha !== 'undefined' && isLengthPercentage(alpha) ? getAbsoluteValue(alpha, 1) : 1;\n if (s === 0) {\n return pack(l * 255, l * 255, l * 255, 1);\n }\n var t2 = l <= 0.5 ? l * (s + 1) : l + s - l * s;\n var t1 = l * 2 - t2;\n var r = hue2rgb(t1, t2, h + 1 / 3);\n var g = hue2rgb(t1, t2, h);\n var b = hue2rgb(t1, t2, h - 1 / 3);\n return pack(r * 255, g * 255, b * 255, a);\n };\n var SUPPORTED_COLOR_FUNCTIONS = {\n hsl: hsl,\n hsla: hsl,\n rgb: rgb,\n rgba: rgb\n };\n var parseColor = function (context, value) {\n return color$1.parse(context, Parser.create(value).parseComponentValue());\n };\n var COLORS = {\n ALICEBLUE: 0xf0f8ffff,\n ANTIQUEWHITE: 0xfaebd7ff,\n AQUA: 0x00ffffff,\n AQUAMARINE: 0x7fffd4ff,\n AZURE: 0xf0ffffff,\n BEIGE: 0xf5f5dcff,\n BISQUE: 0xffe4c4ff,\n BLACK: 0x000000ff,\n BLANCHEDALMOND: 0xffebcdff,\n BLUE: 0x0000ffff,\n BLUEVIOLET: 0x8a2be2ff,\n BROWN: 0xa52a2aff,\n BURLYWOOD: 0xdeb887ff,\n CADETBLUE: 0x5f9ea0ff,\n CHARTREUSE: 0x7fff00ff,\n CHOCOLATE: 0xd2691eff,\n CORAL: 0xff7f50ff,\n CORNFLOWERBLUE: 0x6495edff,\n CORNSILK: 0xfff8dcff,\n CRIMSON: 0xdc143cff,\n CYAN: 0x00ffffff,\n DARKBLUE: 0x00008bff,\n DARKCYAN: 0x008b8bff,\n DARKGOLDENROD: 0xb886bbff,\n DARKGRAY: 0xa9a9a9ff,\n DARKGREEN: 0x006400ff,\n DARKGREY: 0xa9a9a9ff,\n DARKKHAKI: 0xbdb76bff,\n DARKMAGENTA: 0x8b008bff,\n DARKOLIVEGREEN: 0x556b2fff,\n DARKORANGE: 0xff8c00ff,\n DARKORCHID: 0x9932ccff,\n DARKRED: 0x8b0000ff,\n DARKSALMON: 0xe9967aff,\n DARKSEAGREEN: 0x8fbc8fff,\n DARKSLATEBLUE: 0x483d8bff,\n DARKSLATEGRAY: 0x2f4f4fff,\n DARKSLATEGREY: 0x2f4f4fff,\n DARKTURQUOISE: 0x00ced1ff,\n DARKVIOLET: 0x9400d3ff,\n DEEPPINK: 0xff1493ff,\n DEEPSKYBLUE: 0x00bfffff,\n DIMGRAY: 0x696969ff,\n DIMGREY: 0x696969ff,\n DODGERBLUE: 0x1e90ffff,\n FIREBRICK: 0xb22222ff,\n FLORALWHITE: 0xfffaf0ff,\n FORESTGREEN: 0x228b22ff,\n FUCHSIA: 0xff00ffff,\n GAINSBORO: 0xdcdcdcff,\n GHOSTWHITE: 0xf8f8ffff,\n GOLD: 0xffd700ff,\n GOLDENROD: 0xdaa520ff,\n GRAY: 0x808080ff,\n GREEN: 0x008000ff,\n GREENYELLOW: 0xadff2fff,\n GREY: 0x808080ff,\n HONEYDEW: 0xf0fff0ff,\n HOTPINK: 0xff69b4ff,\n INDIANRED: 0xcd5c5cff,\n INDIGO: 0x4b0082ff,\n IVORY: 0xfffff0ff,\n KHAKI: 0xf0e68cff,\n LAVENDER: 0xe6e6faff,\n LAVENDERBLUSH: 0xfff0f5ff,\n LAWNGREEN: 0x7cfc00ff,\n LEMONCHIFFON: 0xfffacdff,\n LIGHTBLUE: 0xadd8e6ff,\n LIGHTCORAL: 0xf08080ff,\n LIGHTCYAN: 0xe0ffffff,\n LIGHTGOLDENRODYELLOW: 0xfafad2ff,\n LIGHTGRAY: 0xd3d3d3ff,\n LIGHTGREEN: 0x90ee90ff,\n LIGHTGREY: 0xd3d3d3ff,\n LIGHTPINK: 0xffb6c1ff,\n LIGHTSALMON: 0xffa07aff,\n LIGHTSEAGREEN: 0x20b2aaff,\n LIGHTSKYBLUE: 0x87cefaff,\n LIGHTSLATEGRAY: 0x778899ff,\n LIGHTSLATEGREY: 0x778899ff,\n LIGHTSTEELBLUE: 0xb0c4deff,\n LIGHTYELLOW: 0xffffe0ff,\n LIME: 0x00ff00ff,\n LIMEGREEN: 0x32cd32ff,\n LINEN: 0xfaf0e6ff,\n MAGENTA: 0xff00ffff,\n MAROON: 0x800000ff,\n MEDIUMAQUAMARINE: 0x66cdaaff,\n MEDIUMBLUE: 0x0000cdff,\n MEDIUMORCHID: 0xba55d3ff,\n MEDIUMPURPLE: 0x9370dbff,\n MEDIUMSEAGREEN: 0x3cb371ff,\n MEDIUMSLATEBLUE: 0x7b68eeff,\n MEDIUMSPRINGGREEN: 0x00fa9aff,\n MEDIUMTURQUOISE: 0x48d1ccff,\n MEDIUMVIOLETRED: 0xc71585ff,\n MIDNIGHTBLUE: 0x191970ff,\n MINTCREAM: 0xf5fffaff,\n MISTYROSE: 0xffe4e1ff,\n MOCCASIN: 0xffe4b5ff,\n NAVAJOWHITE: 0xffdeadff,\n NAVY: 0x000080ff,\n OLDLACE: 0xfdf5e6ff,\n OLIVE: 0x808000ff,\n OLIVEDRAB: 0x6b8e23ff,\n ORANGE: 0xffa500ff,\n ORANGERED: 0xff4500ff,\n ORCHID: 0xda70d6ff,\n PALEGOLDENROD: 0xeee8aaff,\n PALEGREEN: 0x98fb98ff,\n PALETURQUOISE: 0xafeeeeff,\n PALEVIOLETRED: 0xdb7093ff,\n PAPAYAWHIP: 0xffefd5ff,\n PEACHPUFF: 0xffdab9ff,\n PERU: 0xcd853fff,\n PINK: 0xffc0cbff,\n PLUM: 0xdda0ddff,\n POWDERBLUE: 0xb0e0e6ff,\n PURPLE: 0x800080ff,\n REBECCAPURPLE: 0x663399ff,\n RED: 0xff0000ff,\n ROSYBROWN: 0xbc8f8fff,\n ROYALBLUE: 0x4169e1ff,\n SADDLEBROWN: 0x8b4513ff,\n SALMON: 0xfa8072ff,\n SANDYBROWN: 0xf4a460ff,\n SEAGREEN: 0x2e8b57ff,\n SEASHELL: 0xfff5eeff,\n SIENNA: 0xa0522dff,\n SILVER: 0xc0c0c0ff,\n SKYBLUE: 0x87ceebff,\n SLATEBLUE: 0x6a5acdff,\n SLATEGRAY: 0x708090ff,\n SLATEGREY: 0x708090ff,\n SNOW: 0xfffafaff,\n SPRINGGREEN: 0x00ff7fff,\n STEELBLUE: 0x4682b4ff,\n TAN: 0xd2b48cff,\n TEAL: 0x008080ff,\n THISTLE: 0xd8bfd8ff,\n TOMATO: 0xff6347ff,\n TRANSPARENT: 0x00000000,\n TURQUOISE: 0x40e0d0ff,\n VIOLET: 0xee82eeff,\n WHEAT: 0xf5deb3ff,\n WHITE: 0xffffffff,\n WHITESMOKE: 0xf5f5f5ff,\n YELLOW: 0xffff00ff,\n YELLOWGREEN: 0x9acd32ff\n };\n\n var backgroundClip = {\n name: 'background-clip',\n initialValue: 'border-box',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n return tokens.map(function (token) {\n if (isIdentToken(token)) {\n switch (token.value) {\n case 'padding-box':\n return 1 /* PADDING_BOX */;\n case 'content-box':\n return 2 /* CONTENT_BOX */;\n }\n }\n return 0 /* BORDER_BOX */;\n });\n }\n };\n\n var backgroundColor = {\n name: \"background-color\",\n initialValue: 'transparent',\n prefix: false,\n type: 3 /* TYPE_VALUE */,\n format: 'color'\n };\n\n var parseColorStop = function (context, args) {\n var color = color$1.parse(context, args[0]);\n var stop = args[1];\n return stop && isLengthPercentage(stop) ? { color: color, stop: stop } : { color: color, stop: null };\n };\n var processColorStops = function (stops, lineLength) {\n var first = stops[0];\n var last = stops[stops.length - 1];\n if (first.stop === null) {\n first.stop = ZERO_LENGTH;\n }\n if (last.stop === null) {\n last.stop = HUNDRED_PERCENT;\n }\n var processStops = [];\n var previous = 0;\n for (var i = 0; i < stops.length; i++) {\n var stop_1 = stops[i].stop;\n if (stop_1 !== null) {\n var absoluteValue = getAbsoluteValue(stop_1, lineLength);\n if (absoluteValue > previous) {\n processStops.push(absoluteValue);\n }\n else {\n processStops.push(previous);\n }\n previous = absoluteValue;\n }\n else {\n processStops.push(null);\n }\n }\n var gapBegin = null;\n for (var i = 0; i < processStops.length; i++) {\n var stop_2 = processStops[i];\n if (stop_2 === null) {\n if (gapBegin === null) {\n gapBegin = i;\n }\n }\n else if (gapBegin !== null) {\n var gapLength = i - gapBegin;\n var beforeGap = processStops[gapBegin - 1];\n var gapValue = (stop_2 - beforeGap) / (gapLength + 1);\n for (var g = 1; g <= gapLength; g++) {\n processStops[gapBegin + g - 1] = gapValue * g;\n }\n gapBegin = null;\n }\n }\n return stops.map(function (_a, i) {\n var color = _a.color;\n return { color: color, stop: Math.max(Math.min(1, processStops[i] / lineLength), 0) };\n });\n };\n var getAngleFromCorner = function (corner, width, height) {\n var centerX = width / 2;\n var centerY = height / 2;\n var x = getAbsoluteValue(corner[0], width) - centerX;\n var y = centerY - getAbsoluteValue(corner[1], height);\n return (Math.atan2(y, x) + Math.PI * 2) % (Math.PI * 2);\n };\n var calculateGradientDirection = function (angle, width, height) {\n var radian = typeof angle === 'number' ? angle : getAngleFromCorner(angle, width, height);\n var lineLength = Math.abs(width * Math.sin(radian)) + Math.abs(height * Math.cos(radian));\n var halfWidth = width / 2;\n var halfHeight = height / 2;\n var halfLineLength = lineLength / 2;\n var yDiff = Math.sin(radian - Math.PI / 2) * halfLineLength;\n var xDiff = Math.cos(radian - Math.PI / 2) * halfLineLength;\n return [lineLength, halfWidth - xDiff, halfWidth + xDiff, halfHeight - yDiff, halfHeight + yDiff];\n };\n var distance = function (a, b) { return Math.sqrt(a * a + b * b); };\n var findCorner = function (width, height, x, y, closest) {\n var corners = [\n [0, 0],\n [0, height],\n [width, 0],\n [width, height]\n ];\n return corners.reduce(function (stat, corner) {\n var cx = corner[0], cy = corner[1];\n var d = distance(x - cx, y - cy);\n if (closest ? d < stat.optimumDistance : d > stat.optimumDistance) {\n return {\n optimumCorner: corner,\n optimumDistance: d\n };\n }\n return stat;\n }, {\n optimumDistance: closest ? Infinity : -Infinity,\n optimumCorner: null\n }).optimumCorner;\n };\n var calculateRadius = function (gradient, x, y, width, height) {\n var rx = 0;\n var ry = 0;\n switch (gradient.size) {\n case 0 /* CLOSEST_SIDE */:\n // The ending shape is sized so that that it exactly meets the side of the gradient box closest to the gradient’s center.\n // If the shape is an ellipse, it exactly meets the closest side in each dimension.\n if (gradient.shape === 0 /* CIRCLE */) {\n rx = ry = Math.min(Math.abs(x), Math.abs(x - width), Math.abs(y), Math.abs(y - height));\n }\n else if (gradient.shape === 1 /* ELLIPSE */) {\n rx = Math.min(Math.abs(x), Math.abs(x - width));\n ry = Math.min(Math.abs(y), Math.abs(y - height));\n }\n break;\n case 2 /* CLOSEST_CORNER */:\n // The ending shape is sized so that that it passes through the corner of the gradient box closest to the gradient’s center.\n // If the shape is an ellipse, the ending shape is given the same aspect-ratio it would have if closest-side were specified.\n if (gradient.shape === 0 /* CIRCLE */) {\n rx = ry = Math.min(distance(x, y), distance(x, y - height), distance(x - width, y), distance(x - width, y - height));\n }\n else if (gradient.shape === 1 /* ELLIPSE */) {\n // Compute the ratio ry/rx (which is to be the same as for \"closest-side\")\n var c = Math.min(Math.abs(y), Math.abs(y - height)) / Math.min(Math.abs(x), Math.abs(x - width));\n var _a = findCorner(width, height, x, y, true), cx = _a[0], cy = _a[1];\n rx = distance(cx - x, (cy - y) / c);\n ry = c * rx;\n }\n break;\n case 1 /* FARTHEST_SIDE */:\n // Same as closest-side, except the ending shape is sized based on the farthest side(s)\n if (gradient.shape === 0 /* CIRCLE */) {\n rx = ry = Math.max(Math.abs(x), Math.abs(x - width), Math.abs(y), Math.abs(y - height));\n }\n else if (gradient.shape === 1 /* ELLIPSE */) {\n rx = Math.max(Math.abs(x), Math.abs(x - width));\n ry = Math.max(Math.abs(y), Math.abs(y - height));\n }\n break;\n case 3 /* FARTHEST_CORNER */:\n // Same as closest-corner, except the ending shape is sized based on the farthest corner.\n // If the shape is an ellipse, the ending shape is given the same aspect ratio it would have if farthest-side were specified.\n if (gradient.shape === 0 /* CIRCLE */) {\n rx = ry = Math.max(distance(x, y), distance(x, y - height), distance(x - width, y), distance(x - width, y - height));\n }\n else if (gradient.shape === 1 /* ELLIPSE */) {\n // Compute the ratio ry/rx (which is to be the same as for \"farthest-side\")\n var c = Math.max(Math.abs(y), Math.abs(y - height)) / Math.max(Math.abs(x), Math.abs(x - width));\n var _b = findCorner(width, height, x, y, false), cx = _b[0], cy = _b[1];\n rx = distance(cx - x, (cy - y) / c);\n ry = c * rx;\n }\n break;\n }\n if (Array.isArray(gradient.size)) {\n rx = getAbsoluteValue(gradient.size[0], width);\n ry = gradient.size.length === 2 ? getAbsoluteValue(gradient.size[1], height) : rx;\n }\n return [rx, ry];\n };\n\n var linearGradient = function (context, tokens) {\n var angle$1 = deg(180);\n var stops = [];\n parseFunctionArgs(tokens).forEach(function (arg, i) {\n if (i === 0) {\n var firstToken = arg[0];\n if (firstToken.type === 20 /* IDENT_TOKEN */ && firstToken.value === 'to') {\n angle$1 = parseNamedSide(arg);\n return;\n }\n else if (isAngle(firstToken)) {\n angle$1 = angle.parse(context, firstToken);\n return;\n }\n }\n var colorStop = parseColorStop(context, arg);\n stops.push(colorStop);\n });\n return { angle: angle$1, stops: stops, type: 1 /* LINEAR_GRADIENT */ };\n };\n\n var prefixLinearGradient = function (context, tokens) {\n var angle$1 = deg(180);\n var stops = [];\n parseFunctionArgs(tokens).forEach(function (arg, i) {\n if (i === 0) {\n var firstToken = arg[0];\n if (firstToken.type === 20 /* IDENT_TOKEN */ &&\n ['top', 'left', 'right', 'bottom'].indexOf(firstToken.value) !== -1) {\n angle$1 = parseNamedSide(arg);\n return;\n }\n else if (isAngle(firstToken)) {\n angle$1 = (angle.parse(context, firstToken) + deg(270)) % deg(360);\n return;\n }\n }\n var colorStop = parseColorStop(context, arg);\n stops.push(colorStop);\n });\n return {\n angle: angle$1,\n stops: stops,\n type: 1 /* LINEAR_GRADIENT */\n };\n };\n\n var webkitGradient = function (context, tokens) {\n var angle = deg(180);\n var stops = [];\n var type = 1 /* LINEAR_GRADIENT */;\n var shape = 0 /* CIRCLE */;\n var size = 3 /* FARTHEST_CORNER */;\n var position = [];\n parseFunctionArgs(tokens).forEach(function (arg, i) {\n var firstToken = arg[0];\n if (i === 0) {\n if (isIdentToken(firstToken) && firstToken.value === 'linear') {\n type = 1 /* LINEAR_GRADIENT */;\n return;\n }\n else if (isIdentToken(firstToken) && firstToken.value === 'radial') {\n type = 2 /* RADIAL_GRADIENT */;\n return;\n }\n }\n if (firstToken.type === 18 /* FUNCTION */) {\n if (firstToken.name === 'from') {\n var color = color$1.parse(context, firstToken.values[0]);\n stops.push({ stop: ZERO_LENGTH, color: color });\n }\n else if (firstToken.name === 'to') {\n var color = color$1.parse(context, firstToken.values[0]);\n stops.push({ stop: HUNDRED_PERCENT, color: color });\n }\n else if (firstToken.name === 'color-stop') {\n var values = firstToken.values.filter(nonFunctionArgSeparator);\n if (values.length === 2) {\n var color = color$1.parse(context, values[1]);\n var stop_1 = values[0];\n if (isNumberToken(stop_1)) {\n stops.push({\n stop: { type: 16 /* PERCENTAGE_TOKEN */, number: stop_1.number * 100, flags: stop_1.flags },\n color: color\n });\n }\n }\n }\n }\n });\n return type === 1 /* LINEAR_GRADIENT */\n ? {\n angle: (angle + deg(180)) % deg(360),\n stops: stops,\n type: type\n }\n : { size: size, shape: shape, stops: stops, position: position, type: type };\n };\n\n var CLOSEST_SIDE = 'closest-side';\n var FARTHEST_SIDE = 'farthest-side';\n var CLOSEST_CORNER = 'closest-corner';\n var FARTHEST_CORNER = 'farthest-corner';\n var CIRCLE = 'circle';\n var ELLIPSE = 'ellipse';\n var COVER = 'cover';\n var CONTAIN = 'contain';\n var radialGradient = function (context, tokens) {\n var shape = 0 /* CIRCLE */;\n var size = 3 /* FARTHEST_CORNER */;\n var stops = [];\n var position = [];\n parseFunctionArgs(tokens).forEach(function (arg, i) {\n var isColorStop = true;\n if (i === 0) {\n var isAtPosition_1 = false;\n isColorStop = arg.reduce(function (acc, token) {\n if (isAtPosition_1) {\n if (isIdentToken(token)) {\n switch (token.value) {\n case 'center':\n position.push(FIFTY_PERCENT);\n return acc;\n case 'top':\n case 'left':\n position.push(ZERO_LENGTH);\n return acc;\n case 'right':\n case 'bottom':\n position.push(HUNDRED_PERCENT);\n return acc;\n }\n }\n else if (isLengthPercentage(token) || isLength(token)) {\n position.push(token);\n }\n }\n else if (isIdentToken(token)) {\n switch (token.value) {\n case CIRCLE:\n shape = 0 /* CIRCLE */;\n return false;\n case ELLIPSE:\n shape = 1 /* ELLIPSE */;\n return false;\n case 'at':\n isAtPosition_1 = true;\n return false;\n case CLOSEST_SIDE:\n size = 0 /* CLOSEST_SIDE */;\n return false;\n case COVER:\n case FARTHEST_SIDE:\n size = 1 /* FARTHEST_SIDE */;\n return false;\n case CONTAIN:\n case CLOSEST_CORNER:\n size = 2 /* CLOSEST_CORNER */;\n return false;\n case FARTHEST_CORNER:\n size = 3 /* FARTHEST_CORNER */;\n return false;\n }\n }\n else if (isLength(token) || isLengthPercentage(token)) {\n if (!Array.isArray(size)) {\n size = [];\n }\n size.push(token);\n return false;\n }\n return acc;\n }, isColorStop);\n }\n if (isColorStop) {\n var colorStop = parseColorStop(context, arg);\n stops.push(colorStop);\n }\n });\n return { size: size, shape: shape, stops: stops, position: position, type: 2 /* RADIAL_GRADIENT */ };\n };\n\n var prefixRadialGradient = function (context, tokens) {\n var shape = 0 /* CIRCLE */;\n var size = 3 /* FARTHEST_CORNER */;\n var stops = [];\n var position = [];\n parseFunctionArgs(tokens).forEach(function (arg, i) {\n var isColorStop = true;\n if (i === 0) {\n isColorStop = arg.reduce(function (acc, token) {\n if (isIdentToken(token)) {\n switch (token.value) {\n case 'center':\n position.push(FIFTY_PERCENT);\n return false;\n case 'top':\n case 'left':\n position.push(ZERO_LENGTH);\n return false;\n case 'right':\n case 'bottom':\n position.push(HUNDRED_PERCENT);\n return false;\n }\n }\n else if (isLengthPercentage(token) || isLength(token)) {\n position.push(token);\n return false;\n }\n return acc;\n }, isColorStop);\n }\n else if (i === 1) {\n isColorStop = arg.reduce(function (acc, token) {\n if (isIdentToken(token)) {\n switch (token.value) {\n case CIRCLE:\n shape = 0 /* CIRCLE */;\n return false;\n case ELLIPSE:\n shape = 1 /* ELLIPSE */;\n return false;\n case CONTAIN:\n case CLOSEST_SIDE:\n size = 0 /* CLOSEST_SIDE */;\n return false;\n case FARTHEST_SIDE:\n size = 1 /* FARTHEST_SIDE */;\n return false;\n case CLOSEST_CORNER:\n size = 2 /* CLOSEST_CORNER */;\n return false;\n case COVER:\n case FARTHEST_CORNER:\n size = 3 /* FARTHEST_CORNER */;\n return false;\n }\n }\n else if (isLength(token) || isLengthPercentage(token)) {\n if (!Array.isArray(size)) {\n size = [];\n }\n size.push(token);\n return false;\n }\n return acc;\n }, isColorStop);\n }\n if (isColorStop) {\n var colorStop = parseColorStop(context, arg);\n stops.push(colorStop);\n }\n });\n return { size: size, shape: shape, stops: stops, position: position, type: 2 /* RADIAL_GRADIENT */ };\n };\n\n var isLinearGradient = function (background) {\n return background.type === 1 /* LINEAR_GRADIENT */;\n };\n var isRadialGradient = function (background) {\n return background.type === 2 /* RADIAL_GRADIENT */;\n };\n var image = {\n name: 'image',\n parse: function (context, value) {\n if (value.type === 22 /* URL_TOKEN */) {\n var image_1 = { url: value.value, type: 0 /* URL */ };\n context.cache.addImage(value.value);\n return image_1;\n }\n if (value.type === 18 /* FUNCTION */) {\n var imageFunction = SUPPORTED_IMAGE_FUNCTIONS[value.name];\n if (typeof imageFunction === 'undefined') {\n throw new Error(\"Attempting to parse an unsupported image function \\\"\" + value.name + \"\\\"\");\n }\n return imageFunction(context, value.values);\n }\n throw new Error(\"Unsupported image type \" + value.type);\n }\n };\n function isSupportedImage(value) {\n return (!(value.type === 20 /* IDENT_TOKEN */ && value.value === 'none') &&\n (value.type !== 18 /* FUNCTION */ || !!SUPPORTED_IMAGE_FUNCTIONS[value.name]));\n }\n var SUPPORTED_IMAGE_FUNCTIONS = {\n 'linear-gradient': linearGradient,\n '-moz-linear-gradient': prefixLinearGradient,\n '-ms-linear-gradient': prefixLinearGradient,\n '-o-linear-gradient': prefixLinearGradient,\n '-webkit-linear-gradient': prefixLinearGradient,\n 'radial-gradient': radialGradient,\n '-moz-radial-gradient': prefixRadialGradient,\n '-ms-radial-gradient': prefixRadialGradient,\n '-o-radial-gradient': prefixRadialGradient,\n '-webkit-radial-gradient': prefixRadialGradient,\n '-webkit-gradient': webkitGradient\n };\n\n var backgroundImage = {\n name: 'background-image',\n initialValue: 'none',\n type: 1 /* LIST */,\n prefix: false,\n parse: function (context, tokens) {\n if (tokens.length === 0) {\n return [];\n }\n var first = tokens[0];\n if (first.type === 20 /* IDENT_TOKEN */ && first.value === 'none') {\n return [];\n }\n return tokens\n .filter(function (value) { return nonFunctionArgSeparator(value) && isSupportedImage(value); })\n .map(function (value) { return image.parse(context, value); });\n }\n };\n\n var backgroundOrigin = {\n name: 'background-origin',\n initialValue: 'border-box',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n return tokens.map(function (token) {\n if (isIdentToken(token)) {\n switch (token.value) {\n case 'padding-box':\n return 1 /* PADDING_BOX */;\n case 'content-box':\n return 2 /* CONTENT_BOX */;\n }\n }\n return 0 /* BORDER_BOX */;\n });\n }\n };\n\n var backgroundPosition = {\n name: 'background-position',\n initialValue: '0% 0%',\n type: 1 /* LIST */,\n prefix: false,\n parse: function (_context, tokens) {\n return parseFunctionArgs(tokens)\n .map(function (values) { return values.filter(isLengthPercentage); })\n .map(parseLengthPercentageTuple);\n }\n };\n\n var backgroundRepeat = {\n name: 'background-repeat',\n initialValue: 'repeat',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n return parseFunctionArgs(tokens)\n .map(function (values) {\n return values\n .filter(isIdentToken)\n .map(function (token) { return token.value; })\n .join(' ');\n })\n .map(parseBackgroundRepeat);\n }\n };\n var parseBackgroundRepeat = function (value) {\n switch (value) {\n case 'no-repeat':\n return 1 /* NO_REPEAT */;\n case 'repeat-x':\n case 'repeat no-repeat':\n return 2 /* REPEAT_X */;\n case 'repeat-y':\n case 'no-repeat repeat':\n return 3 /* REPEAT_Y */;\n case 'repeat':\n default:\n return 0 /* REPEAT */;\n }\n };\n\n var BACKGROUND_SIZE;\n (function (BACKGROUND_SIZE) {\n BACKGROUND_SIZE[\"AUTO\"] = \"auto\";\n BACKGROUND_SIZE[\"CONTAIN\"] = \"contain\";\n BACKGROUND_SIZE[\"COVER\"] = \"cover\";\n })(BACKGROUND_SIZE || (BACKGROUND_SIZE = {}));\n var backgroundSize = {\n name: 'background-size',\n initialValue: '0',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n return parseFunctionArgs(tokens).map(function (values) { return values.filter(isBackgroundSizeInfoToken); });\n }\n };\n var isBackgroundSizeInfoToken = function (value) {\n return isIdentToken(value) || isLengthPercentage(value);\n };\n\n var borderColorForSide = function (side) { return ({\n name: \"border-\" + side + \"-color\",\n initialValue: 'transparent',\n prefix: false,\n type: 3 /* TYPE_VALUE */,\n format: 'color'\n }); };\n var borderTopColor = borderColorForSide('top');\n var borderRightColor = borderColorForSide('right');\n var borderBottomColor = borderColorForSide('bottom');\n var borderLeftColor = borderColorForSide('left');\n\n var borderRadiusForSide = function (side) { return ({\n name: \"border-radius-\" + side,\n initialValue: '0 0',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n return parseLengthPercentageTuple(tokens.filter(isLengthPercentage));\n }\n }); };\n var borderTopLeftRadius = borderRadiusForSide('top-left');\n var borderTopRightRadius = borderRadiusForSide('top-right');\n var borderBottomRightRadius = borderRadiusForSide('bottom-right');\n var borderBottomLeftRadius = borderRadiusForSide('bottom-left');\n\n var borderStyleForSide = function (side) { return ({\n name: \"border-\" + side + \"-style\",\n initialValue: 'solid',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, style) {\n switch (style) {\n case 'none':\n return 0 /* NONE */;\n case 'dashed':\n return 2 /* DASHED */;\n case 'dotted':\n return 3 /* DOTTED */;\n case 'double':\n return 4 /* DOUBLE */;\n }\n return 1 /* SOLID */;\n }\n }); };\n var borderTopStyle = borderStyleForSide('top');\n var borderRightStyle = borderStyleForSide('right');\n var borderBottomStyle = borderStyleForSide('bottom');\n var borderLeftStyle = borderStyleForSide('left');\n\n var borderWidthForSide = function (side) { return ({\n name: \"border-\" + side + \"-width\",\n initialValue: '0',\n type: 0 /* VALUE */,\n prefix: false,\n parse: function (_context, token) {\n if (isDimensionToken(token)) {\n return token.number;\n }\n return 0;\n }\n }); };\n var borderTopWidth = borderWidthForSide('top');\n var borderRightWidth = borderWidthForSide('right');\n var borderBottomWidth = borderWidthForSide('bottom');\n var borderLeftWidth = borderWidthForSide('left');\n\n var color = {\n name: \"color\",\n initialValue: 'transparent',\n prefix: false,\n type: 3 /* TYPE_VALUE */,\n format: 'color'\n };\n\n var direction = {\n name: 'direction',\n initialValue: 'ltr',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, direction) {\n switch (direction) {\n case 'rtl':\n return 1 /* RTL */;\n case 'ltr':\n default:\n return 0 /* LTR */;\n }\n }\n };\n\n var display = {\n name: 'display',\n initialValue: 'inline-block',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n return tokens.filter(isIdentToken).reduce(function (bit, token) {\n return bit | parseDisplayValue(token.value);\n }, 0 /* NONE */);\n }\n };\n var parseDisplayValue = function (display) {\n switch (display) {\n case 'block':\n case '-webkit-box':\n return 2 /* BLOCK */;\n case 'inline':\n return 4 /* INLINE */;\n case 'run-in':\n return 8 /* RUN_IN */;\n case 'flow':\n return 16 /* FLOW */;\n case 'flow-root':\n return 32 /* FLOW_ROOT */;\n case 'table':\n return 64 /* TABLE */;\n case 'flex':\n case '-webkit-flex':\n return 128 /* FLEX */;\n case 'grid':\n case '-ms-grid':\n return 256 /* GRID */;\n case 'ruby':\n return 512 /* RUBY */;\n case 'subgrid':\n return 1024 /* SUBGRID */;\n case 'list-item':\n return 2048 /* LIST_ITEM */;\n case 'table-row-group':\n return 4096 /* TABLE_ROW_GROUP */;\n case 'table-header-group':\n return 8192 /* TABLE_HEADER_GROUP */;\n case 'table-footer-group':\n return 16384 /* TABLE_FOOTER_GROUP */;\n case 'table-row':\n return 32768 /* TABLE_ROW */;\n case 'table-cell':\n return 65536 /* TABLE_CELL */;\n case 'table-column-group':\n return 131072 /* TABLE_COLUMN_GROUP */;\n case 'table-column':\n return 262144 /* TABLE_COLUMN */;\n case 'table-caption':\n return 524288 /* TABLE_CAPTION */;\n case 'ruby-base':\n return 1048576 /* RUBY_BASE */;\n case 'ruby-text':\n return 2097152 /* RUBY_TEXT */;\n case 'ruby-base-container':\n return 4194304 /* RUBY_BASE_CONTAINER */;\n case 'ruby-text-container':\n return 8388608 /* RUBY_TEXT_CONTAINER */;\n case 'contents':\n return 16777216 /* CONTENTS */;\n case 'inline-block':\n return 33554432 /* INLINE_BLOCK */;\n case 'inline-list-item':\n return 67108864 /* INLINE_LIST_ITEM */;\n case 'inline-table':\n return 134217728 /* INLINE_TABLE */;\n case 'inline-flex':\n return 268435456 /* INLINE_FLEX */;\n case 'inline-grid':\n return 536870912 /* INLINE_GRID */;\n }\n return 0 /* NONE */;\n };\n\n var float = {\n name: 'float',\n initialValue: 'none',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, float) {\n switch (float) {\n case 'left':\n return 1 /* LEFT */;\n case 'right':\n return 2 /* RIGHT */;\n case 'inline-start':\n return 3 /* INLINE_START */;\n case 'inline-end':\n return 4 /* INLINE_END */;\n }\n return 0 /* NONE */;\n }\n };\n\n var letterSpacing = {\n name: 'letter-spacing',\n initialValue: '0',\n prefix: false,\n type: 0 /* VALUE */,\n parse: function (_context, token) {\n if (token.type === 20 /* IDENT_TOKEN */ && token.value === 'normal') {\n return 0;\n }\n if (token.type === 17 /* NUMBER_TOKEN */) {\n return token.number;\n }\n if (token.type === 15 /* DIMENSION_TOKEN */) {\n return token.number;\n }\n return 0;\n }\n };\n\n var LINE_BREAK;\n (function (LINE_BREAK) {\n LINE_BREAK[\"NORMAL\"] = \"normal\";\n LINE_BREAK[\"STRICT\"] = \"strict\";\n })(LINE_BREAK || (LINE_BREAK = {}));\n var lineBreak = {\n name: 'line-break',\n initialValue: 'normal',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, lineBreak) {\n switch (lineBreak) {\n case 'strict':\n return LINE_BREAK.STRICT;\n case 'normal':\n default:\n return LINE_BREAK.NORMAL;\n }\n }\n };\n\n var lineHeight = {\n name: 'line-height',\n initialValue: 'normal',\n prefix: false,\n type: 4 /* TOKEN_VALUE */\n };\n var computeLineHeight = function (token, fontSize) {\n if (isIdentToken(token) && token.value === 'normal') {\n return 1.2 * fontSize;\n }\n else if (token.type === 17 /* NUMBER_TOKEN */) {\n return fontSize * token.number;\n }\n else if (isLengthPercentage(token)) {\n return getAbsoluteValue(token, fontSize);\n }\n return fontSize;\n };\n\n var listStyleImage = {\n name: 'list-style-image',\n initialValue: 'none',\n type: 0 /* VALUE */,\n prefix: false,\n parse: function (context, token) {\n if (token.type === 20 /* IDENT_TOKEN */ && token.value === 'none') {\n return null;\n }\n return image.parse(context, token);\n }\n };\n\n var listStylePosition = {\n name: 'list-style-position',\n initialValue: 'outside',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, position) {\n switch (position) {\n case 'inside':\n return 0 /* INSIDE */;\n case 'outside':\n default:\n return 1 /* OUTSIDE */;\n }\n }\n };\n\n var listStyleType = {\n name: 'list-style-type',\n initialValue: 'none',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, type) {\n switch (type) {\n case 'disc':\n return 0 /* DISC */;\n case 'circle':\n return 1 /* CIRCLE */;\n case 'square':\n return 2 /* SQUARE */;\n case 'decimal':\n return 3 /* DECIMAL */;\n case 'cjk-decimal':\n return 4 /* CJK_DECIMAL */;\n case 'decimal-leading-zero':\n return 5 /* DECIMAL_LEADING_ZERO */;\n case 'lower-roman':\n return 6 /* LOWER_ROMAN */;\n case 'upper-roman':\n return 7 /* UPPER_ROMAN */;\n case 'lower-greek':\n return 8 /* LOWER_GREEK */;\n case 'lower-alpha':\n return 9 /* LOWER_ALPHA */;\n case 'upper-alpha':\n return 10 /* UPPER_ALPHA */;\n case 'arabic-indic':\n return 11 /* ARABIC_INDIC */;\n case 'armenian':\n return 12 /* ARMENIAN */;\n case 'bengali':\n return 13 /* BENGALI */;\n case 'cambodian':\n return 14 /* CAMBODIAN */;\n case 'cjk-earthly-branch':\n return 15 /* CJK_EARTHLY_BRANCH */;\n case 'cjk-heavenly-stem':\n return 16 /* CJK_HEAVENLY_STEM */;\n case 'cjk-ideographic':\n return 17 /* CJK_IDEOGRAPHIC */;\n case 'devanagari':\n return 18 /* DEVANAGARI */;\n case 'ethiopic-numeric':\n return 19 /* ETHIOPIC_NUMERIC */;\n case 'georgian':\n return 20 /* GEORGIAN */;\n case 'gujarati':\n return 21 /* GUJARATI */;\n case 'gurmukhi':\n return 22 /* GURMUKHI */;\n case 'hebrew':\n return 22 /* HEBREW */;\n case 'hiragana':\n return 23 /* HIRAGANA */;\n case 'hiragana-iroha':\n return 24 /* HIRAGANA_IROHA */;\n case 'japanese-formal':\n return 25 /* JAPANESE_FORMAL */;\n case 'japanese-informal':\n return 26 /* JAPANESE_INFORMAL */;\n case 'kannada':\n return 27 /* KANNADA */;\n case 'katakana':\n return 28 /* KATAKANA */;\n case 'katakana-iroha':\n return 29 /* KATAKANA_IROHA */;\n case 'khmer':\n return 30 /* KHMER */;\n case 'korean-hangul-formal':\n return 31 /* KOREAN_HANGUL_FORMAL */;\n case 'korean-hanja-formal':\n return 32 /* KOREAN_HANJA_FORMAL */;\n case 'korean-hanja-informal':\n return 33 /* KOREAN_HANJA_INFORMAL */;\n case 'lao':\n return 34 /* LAO */;\n case 'lower-armenian':\n return 35 /* LOWER_ARMENIAN */;\n case 'malayalam':\n return 36 /* MALAYALAM */;\n case 'mongolian':\n return 37 /* MONGOLIAN */;\n case 'myanmar':\n return 38 /* MYANMAR */;\n case 'oriya':\n return 39 /* ORIYA */;\n case 'persian':\n return 40 /* PERSIAN */;\n case 'simp-chinese-formal':\n return 41 /* SIMP_CHINESE_FORMAL */;\n case 'simp-chinese-informal':\n return 42 /* SIMP_CHINESE_INFORMAL */;\n case 'tamil':\n return 43 /* TAMIL */;\n case 'telugu':\n return 44 /* TELUGU */;\n case 'thai':\n return 45 /* THAI */;\n case 'tibetan':\n return 46 /* TIBETAN */;\n case 'trad-chinese-formal':\n return 47 /* TRAD_CHINESE_FORMAL */;\n case 'trad-chinese-informal':\n return 48 /* TRAD_CHINESE_INFORMAL */;\n case 'upper-armenian':\n return 49 /* UPPER_ARMENIAN */;\n case 'disclosure-open':\n return 50 /* DISCLOSURE_OPEN */;\n case 'disclosure-closed':\n return 51 /* DISCLOSURE_CLOSED */;\n case 'none':\n default:\n return -1 /* NONE */;\n }\n }\n };\n\n var marginForSide = function (side) { return ({\n name: \"margin-\" + side,\n initialValue: '0',\n prefix: false,\n type: 4 /* TOKEN_VALUE */\n }); };\n var marginTop = marginForSide('top');\n var marginRight = marginForSide('right');\n var marginBottom = marginForSide('bottom');\n var marginLeft = marginForSide('left');\n\n var overflow = {\n name: 'overflow',\n initialValue: 'visible',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n return tokens.filter(isIdentToken).map(function (overflow) {\n switch (overflow.value) {\n case 'hidden':\n return 1 /* HIDDEN */;\n case 'scroll':\n return 2 /* SCROLL */;\n case 'clip':\n return 3 /* CLIP */;\n case 'auto':\n return 4 /* AUTO */;\n case 'visible':\n default:\n return 0 /* VISIBLE */;\n }\n });\n }\n };\n\n var overflowWrap = {\n name: 'overflow-wrap',\n initialValue: 'normal',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, overflow) {\n switch (overflow) {\n case 'break-word':\n return \"break-word\" /* BREAK_WORD */;\n case 'normal':\n default:\n return \"normal\" /* NORMAL */;\n }\n }\n };\n\n var paddingForSide = function (side) { return ({\n name: \"padding-\" + side,\n initialValue: '0',\n prefix: false,\n type: 3 /* TYPE_VALUE */,\n format: 'length-percentage'\n }); };\n var paddingTop = paddingForSide('top');\n var paddingRight = paddingForSide('right');\n var paddingBottom = paddingForSide('bottom');\n var paddingLeft = paddingForSide('left');\n\n var textAlign = {\n name: 'text-align',\n initialValue: 'left',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, textAlign) {\n switch (textAlign) {\n case 'right':\n return 2 /* RIGHT */;\n case 'center':\n case 'justify':\n return 1 /* CENTER */;\n case 'left':\n default:\n return 0 /* LEFT */;\n }\n }\n };\n\n var position = {\n name: 'position',\n initialValue: 'static',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, position) {\n switch (position) {\n case 'relative':\n return 1 /* RELATIVE */;\n case 'absolute':\n return 2 /* ABSOLUTE */;\n case 'fixed':\n return 3 /* FIXED */;\n case 'sticky':\n return 4 /* STICKY */;\n }\n return 0 /* STATIC */;\n }\n };\n\n var textShadow = {\n name: 'text-shadow',\n initialValue: 'none',\n type: 1 /* LIST */,\n prefix: false,\n parse: function (context, tokens) {\n if (tokens.length === 1 && isIdentWithValue(tokens[0], 'none')) {\n return [];\n }\n return parseFunctionArgs(tokens).map(function (values) {\n var shadow = {\n color: COLORS.TRANSPARENT,\n offsetX: ZERO_LENGTH,\n offsetY: ZERO_LENGTH,\n blur: ZERO_LENGTH\n };\n var c = 0;\n for (var i = 0; i < values.length; i++) {\n var token = values[i];\n if (isLength(token)) {\n if (c === 0) {\n shadow.offsetX = token;\n }\n else if (c === 1) {\n shadow.offsetY = token;\n }\n else {\n shadow.blur = token;\n }\n c++;\n }\n else {\n shadow.color = color$1.parse(context, token);\n }\n }\n return shadow;\n });\n }\n };\n\n var textTransform = {\n name: 'text-transform',\n initialValue: 'none',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, textTransform) {\n switch (textTransform) {\n case 'uppercase':\n return 2 /* UPPERCASE */;\n case 'lowercase':\n return 1 /* LOWERCASE */;\n case 'capitalize':\n return 3 /* CAPITALIZE */;\n }\n return 0 /* NONE */;\n }\n };\n\n var transform$1 = {\n name: 'transform',\n initialValue: 'none',\n prefix: true,\n type: 0 /* VALUE */,\n parse: function (_context, token) {\n if (token.type === 20 /* IDENT_TOKEN */ && token.value === 'none') {\n return null;\n }\n if (token.type === 18 /* FUNCTION */) {\n var transformFunction = SUPPORTED_TRANSFORM_FUNCTIONS[token.name];\n if (typeof transformFunction === 'undefined') {\n throw new Error(\"Attempting to parse an unsupported transform function \\\"\" + token.name + \"\\\"\");\n }\n return transformFunction(token.values);\n }\n return null;\n }\n };\n var matrix = function (args) {\n var values = args.filter(function (arg) { return arg.type === 17 /* NUMBER_TOKEN */; }).map(function (arg) { return arg.number; });\n return values.length === 6 ? values : null;\n };\n // doesn't support 3D transforms at the moment\n var matrix3d = function (args) {\n var values = args.filter(function (arg) { return arg.type === 17 /* NUMBER_TOKEN */; }).map(function (arg) { return arg.number; });\n var a1 = values[0], b1 = values[1]; values[2]; values[3]; var a2 = values[4], b2 = values[5]; values[6]; values[7]; values[8]; values[9]; values[10]; values[11]; var a4 = values[12], b4 = values[13]; values[14]; values[15];\n return values.length === 16 ? [a1, b1, a2, b2, a4, b4] : null;\n };\n var SUPPORTED_TRANSFORM_FUNCTIONS = {\n matrix: matrix,\n matrix3d: matrix3d\n };\n\n var DEFAULT_VALUE = {\n type: 16 /* PERCENTAGE_TOKEN */,\n number: 50,\n flags: FLAG_INTEGER\n };\n var DEFAULT = [DEFAULT_VALUE, DEFAULT_VALUE];\n var transformOrigin = {\n name: 'transform-origin',\n initialValue: '50% 50%',\n prefix: true,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n var origins = tokens.filter(isLengthPercentage);\n if (origins.length !== 2) {\n return DEFAULT;\n }\n return [origins[0], origins[1]];\n }\n };\n\n var visibility = {\n name: 'visible',\n initialValue: 'none',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, visibility) {\n switch (visibility) {\n case 'hidden':\n return 1 /* HIDDEN */;\n case 'collapse':\n return 2 /* COLLAPSE */;\n case 'visible':\n default:\n return 0 /* VISIBLE */;\n }\n }\n };\n\n var WORD_BREAK;\n (function (WORD_BREAK) {\n WORD_BREAK[\"NORMAL\"] = \"normal\";\n WORD_BREAK[\"BREAK_ALL\"] = \"break-all\";\n WORD_BREAK[\"KEEP_ALL\"] = \"keep-all\";\n })(WORD_BREAK || (WORD_BREAK = {}));\n var wordBreak = {\n name: 'word-break',\n initialValue: 'normal',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, wordBreak) {\n switch (wordBreak) {\n case 'break-all':\n return WORD_BREAK.BREAK_ALL;\n case 'keep-all':\n return WORD_BREAK.KEEP_ALL;\n case 'normal':\n default:\n return WORD_BREAK.NORMAL;\n }\n }\n };\n\n var zIndex = {\n name: 'z-index',\n initialValue: 'auto',\n prefix: false,\n type: 0 /* VALUE */,\n parse: function (_context, token) {\n if (token.type === 20 /* IDENT_TOKEN */) {\n return { auto: true, order: 0 };\n }\n if (isNumberToken(token)) {\n return { auto: false, order: token.number };\n }\n throw new Error(\"Invalid z-index number parsed\");\n }\n };\n\n var time = {\n name: 'time',\n parse: function (_context, value) {\n if (value.type === 15 /* DIMENSION_TOKEN */) {\n switch (value.unit.toLowerCase()) {\n case 's':\n return 1000 * value.number;\n case 'ms':\n return value.number;\n }\n }\n throw new Error(\"Unsupported time type\");\n }\n };\n\n var opacity = {\n name: 'opacity',\n initialValue: '1',\n type: 0 /* VALUE */,\n prefix: false,\n parse: function (_context, token) {\n if (isNumberToken(token)) {\n return token.number;\n }\n return 1;\n }\n };\n\n var textDecorationColor = {\n name: \"text-decoration-color\",\n initialValue: 'transparent',\n prefix: false,\n type: 3 /* TYPE_VALUE */,\n format: 'color'\n };\n\n var textDecorationLine = {\n name: 'text-decoration-line',\n initialValue: 'none',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n return tokens\n .filter(isIdentToken)\n .map(function (token) {\n switch (token.value) {\n case 'underline':\n return 1 /* UNDERLINE */;\n case 'overline':\n return 2 /* OVERLINE */;\n case 'line-through':\n return 3 /* LINE_THROUGH */;\n case 'none':\n return 4 /* BLINK */;\n }\n return 0 /* NONE */;\n })\n .filter(function (line) { return line !== 0 /* NONE */; });\n }\n };\n\n var fontFamily = {\n name: \"font-family\",\n initialValue: '',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n var accumulator = [];\n var results = [];\n tokens.forEach(function (token) {\n switch (token.type) {\n case 20 /* IDENT_TOKEN */:\n case 0 /* STRING_TOKEN */:\n accumulator.push(token.value);\n break;\n case 17 /* NUMBER_TOKEN */:\n accumulator.push(token.number.toString());\n break;\n case 4 /* COMMA_TOKEN */:\n results.push(accumulator.join(' '));\n accumulator.length = 0;\n break;\n }\n });\n if (accumulator.length) {\n results.push(accumulator.join(' '));\n }\n return results.map(function (result) { return (result.indexOf(' ') === -1 ? result : \"'\" + result + \"'\"); });\n }\n };\n\n var fontSize = {\n name: \"font-size\",\n initialValue: '0',\n prefix: false,\n type: 3 /* TYPE_VALUE */,\n format: 'length'\n };\n\n var fontWeight = {\n name: 'font-weight',\n initialValue: 'normal',\n type: 0 /* VALUE */,\n prefix: false,\n parse: function (_context, token) {\n if (isNumberToken(token)) {\n return token.number;\n }\n if (isIdentToken(token)) {\n switch (token.value) {\n case 'bold':\n return 700;\n case 'normal':\n default:\n return 400;\n }\n }\n return 400;\n }\n };\n\n var fontVariant = {\n name: 'font-variant',\n initialValue: 'none',\n type: 1 /* LIST */,\n prefix: false,\n parse: function (_context, tokens) {\n return tokens.filter(isIdentToken).map(function (token) { return token.value; });\n }\n };\n\n var fontStyle = {\n name: 'font-style',\n initialValue: 'normal',\n prefix: false,\n type: 2 /* IDENT_VALUE */,\n parse: function (_context, overflow) {\n switch (overflow) {\n case 'oblique':\n return \"oblique\" /* OBLIQUE */;\n case 'italic':\n return \"italic\" /* ITALIC */;\n case 'normal':\n default:\n return \"normal\" /* NORMAL */;\n }\n }\n };\n\n var contains = function (bit, value) { return (bit & value) !== 0; };\n\n var content = {\n name: 'content',\n initialValue: 'none',\n type: 1 /* LIST */,\n prefix: false,\n parse: function (_context, tokens) {\n if (tokens.length === 0) {\n return [];\n }\n var first = tokens[0];\n if (first.type === 20 /* IDENT_TOKEN */ && first.value === 'none') {\n return [];\n }\n return tokens;\n }\n };\n\n var counterIncrement = {\n name: 'counter-increment',\n initialValue: 'none',\n prefix: true,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n if (tokens.length === 0) {\n return null;\n }\n var first = tokens[0];\n if (first.type === 20 /* IDENT_TOKEN */ && first.value === 'none') {\n return null;\n }\n var increments = [];\n var filtered = tokens.filter(nonWhiteSpace);\n for (var i = 0; i < filtered.length; i++) {\n var counter = filtered[i];\n var next = filtered[i + 1];\n if (counter.type === 20 /* IDENT_TOKEN */) {\n var increment = next && isNumberToken(next) ? next.number : 1;\n increments.push({ counter: counter.value, increment: increment });\n }\n }\n return increments;\n }\n };\n\n var counterReset = {\n name: 'counter-reset',\n initialValue: 'none',\n prefix: true,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n if (tokens.length === 0) {\n return [];\n }\n var resets = [];\n var filtered = tokens.filter(nonWhiteSpace);\n for (var i = 0; i < filtered.length; i++) {\n var counter = filtered[i];\n var next = filtered[i + 1];\n if (isIdentToken(counter) && counter.value !== 'none') {\n var reset = next && isNumberToken(next) ? next.number : 0;\n resets.push({ counter: counter.value, reset: reset });\n }\n }\n return resets;\n }\n };\n\n var duration = {\n name: 'duration',\n initialValue: '0s',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (context, tokens) {\n return tokens.filter(isDimensionToken).map(function (token) { return time.parse(context, token); });\n }\n };\n\n var quotes = {\n name: 'quotes',\n initialValue: 'none',\n prefix: true,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n if (tokens.length === 0) {\n return null;\n }\n var first = tokens[0];\n if (first.type === 20 /* IDENT_TOKEN */ && first.value === 'none') {\n return null;\n }\n var quotes = [];\n var filtered = tokens.filter(isStringToken);\n if (filtered.length % 2 !== 0) {\n return null;\n }\n for (var i = 0; i < filtered.length; i += 2) {\n var open_1 = filtered[i].value;\n var close_1 = filtered[i + 1].value;\n quotes.push({ open: open_1, close: close_1 });\n }\n return quotes;\n }\n };\n var getQuote = function (quotes, depth, open) {\n if (!quotes) {\n return '';\n }\n var quote = quotes[Math.min(depth, quotes.length - 1)];\n if (!quote) {\n return '';\n }\n return open ? quote.open : quote.close;\n };\n\n var boxShadow = {\n name: 'box-shadow',\n initialValue: 'none',\n type: 1 /* LIST */,\n prefix: false,\n parse: function (context, tokens) {\n if (tokens.length === 1 && isIdentWithValue(tokens[0], 'none')) {\n return [];\n }\n return parseFunctionArgs(tokens).map(function (values) {\n var shadow = {\n color: 0x000000ff,\n offsetX: ZERO_LENGTH,\n offsetY: ZERO_LENGTH,\n blur: ZERO_LENGTH,\n spread: ZERO_LENGTH,\n inset: false\n };\n var c = 0;\n for (var i = 0; i < values.length; i++) {\n var token = values[i];\n if (isIdentWithValue(token, 'inset')) {\n shadow.inset = true;\n }\n else if (isLength(token)) {\n if (c === 0) {\n shadow.offsetX = token;\n }\n else if (c === 1) {\n shadow.offsetY = token;\n }\n else if (c === 2) {\n shadow.blur = token;\n }\n else {\n shadow.spread = token;\n }\n c++;\n }\n else {\n shadow.color = color$1.parse(context, token);\n }\n }\n return shadow;\n });\n }\n };\n\n var paintOrder = {\n name: 'paint-order',\n initialValue: 'normal',\n prefix: false,\n type: 1 /* LIST */,\n parse: function (_context, tokens) {\n var DEFAULT_VALUE = [0 /* FILL */, 1 /* STROKE */, 2 /* MARKERS */];\n var layers = [];\n tokens.filter(isIdentToken).forEach(function (token) {\n switch (token.value) {\n case 'stroke':\n layers.push(1 /* STROKE */);\n break;\n case 'fill':\n layers.push(0 /* FILL */);\n break;\n case 'markers':\n layers.push(2 /* MARKERS */);\n break;\n }\n });\n DEFAULT_VALUE.forEach(function (value) {\n if (layers.indexOf(value) === -1) {\n layers.push(value);\n }\n });\n return layers;\n }\n };\n\n var webkitTextStrokeColor = {\n name: \"-webkit-text-stroke-color\",\n initialValue: 'currentcolor',\n prefix: false,\n type: 3 /* TYPE_VALUE */,\n format: 'color'\n };\n\n var webkitTextStrokeWidth = {\n name: \"-webkit-text-stroke-width\",\n initialValue: '0',\n type: 0 /* VALUE */,\n prefix: false,\n parse: function (_context, token) {\n if (isDimensionToken(token)) {\n return token.number;\n }\n return 0;\n }\n };\n\n var CSSParsedDeclaration = /** @class */ (function () {\n function CSSParsedDeclaration(context, declaration) {\n var _a, _b;\n this.animationDuration = parse(context, duration, declaration.animationDuration);\n this.backgroundClip = parse(context, backgroundClip, declaration.backgroundClip);\n this.backgroundColor = parse(context, backgroundColor, declaration.backgroundColor);\n this.backgroundImage = parse(context, backgroundImage, declaration.backgroundImage);\n this.backgroundOrigin = parse(context, backgroundOrigin, declaration.backgroundOrigin);\n this.backgroundPosition = parse(context, backgroundPosition, declaration.backgroundPosition);\n this.backgroundRepeat = parse(context, backgroundRepeat, declaration.backgroundRepeat);\n this.backgroundSize = parse(context, backgroundSize, declaration.backgroundSize);\n this.borderTopColor = parse(context, borderTopColor, declaration.borderTopColor);\n this.borderRightColor = parse(context, borderRightColor, declaration.borderRightColor);\n this.borderBottomColor = parse(context, borderBottomColor, declaration.borderBottomColor);\n this.borderLeftColor = parse(context, borderLeftColor, declaration.borderLeftColor);\n this.borderTopLeftRadius = parse(context, borderTopLeftRadius, declaration.borderTopLeftRadius);\n this.borderTopRightRadius = parse(context, borderTopRightRadius, declaration.borderTopRightRadius);\n this.borderBottomRightRadius = parse(context, borderBottomRightRadius, declaration.borderBottomRightRadius);\n this.borderBottomLeftRadius = parse(context, borderBottomLeftRadius, declaration.borderBottomLeftRadius);\n this.borderTopStyle = parse(context, borderTopStyle, declaration.borderTopStyle);\n this.borderRightStyle = parse(context, borderRightStyle, declaration.borderRightStyle);\n this.borderBottomStyle = parse(context, borderBottomStyle, declaration.borderBottomStyle);\n this.borderLeftStyle = parse(context, borderLeftStyle, declaration.borderLeftStyle);\n this.borderTopWidth = parse(context, borderTopWidth, declaration.borderTopWidth);\n this.borderRightWidth = parse(context, borderRightWidth, declaration.borderRightWidth);\n this.borderBottomWidth = parse(context, borderBottomWidth, declaration.borderBottomWidth);\n this.borderLeftWidth = parse(context, borderLeftWidth, declaration.borderLeftWidth);\n this.boxShadow = parse(context, boxShadow, declaration.boxShadow);\n this.color = parse(context, color, declaration.color);\n this.direction = parse(context, direction, declaration.direction);\n this.display = parse(context, display, declaration.display);\n this.float = parse(context, float, declaration.cssFloat);\n this.fontFamily = parse(context, fontFamily, declaration.fontFamily);\n this.fontSize = parse(context, fontSize, declaration.fontSize);\n this.fontStyle = parse(context, fontStyle, declaration.fontStyle);\n this.fontVariant = parse(context, fontVariant, declaration.fontVariant);\n this.fontWeight = parse(context, fontWeight, declaration.fontWeight);\n this.letterSpacing = parse(context, letterSpacing, declaration.letterSpacing);\n this.lineBreak = parse(context, lineBreak, declaration.lineBreak);\n this.lineHeight = parse(context, lineHeight, declaration.lineHeight);\n this.listStyleImage = parse(context, listStyleImage, declaration.listStyleImage);\n this.listStylePosition = parse(context, listStylePosition, declaration.listStylePosition);\n this.listStyleType = parse(context, listStyleType, declaration.listStyleType);\n this.marginTop = parse(context, marginTop, declaration.marginTop);\n this.marginRight = parse(context, marginRight, declaration.marginRight);\n this.marginBottom = parse(context, marginBottom, declaration.marginBottom);\n this.marginLeft = parse(context, marginLeft, declaration.marginLeft);\n this.opacity = parse(context, opacity, declaration.opacity);\n var overflowTuple = parse(context, overflow, declaration.overflow);\n this.overflowX = overflowTuple[0];\n this.overflowY = overflowTuple[overflowTuple.length > 1 ? 1 : 0];\n this.overflowWrap = parse(context, overflowWrap, declaration.overflowWrap);\n this.paddingTop = parse(context, paddingTop, declaration.paddingTop);\n this.paddingRight = parse(context, paddingRight, declaration.paddingRight);\n this.paddingBottom = parse(context, paddingBottom, declaration.paddingBottom);\n this.paddingLeft = parse(context, paddingLeft, declaration.paddingLeft);\n this.paintOrder = parse(context, paintOrder, declaration.paintOrder);\n this.position = parse(context, position, declaration.position);\n this.textAlign = parse(context, textAlign, declaration.textAlign);\n this.textDecorationColor = parse(context, textDecorationColor, (_a = declaration.textDecorationColor) !== null && _a !== void 0 ? _a : declaration.color);\n this.textDecorationLine = parse(context, textDecorationLine, (_b = declaration.textDecorationLine) !== null && _b !== void 0 ? _b : declaration.textDecoration);\n this.textShadow = parse(context, textShadow, declaration.textShadow);\n this.textTransform = parse(context, textTransform, declaration.textTransform);\n this.transform = parse(context, transform$1, declaration.transform);\n this.transformOrigin = parse(context, transformOrigin, declaration.transformOrigin);\n this.visibility = parse(context, visibility, declaration.visibility);\n this.webkitTextStrokeColor = parse(context, webkitTextStrokeColor, declaration.webkitTextStrokeColor);\n this.webkitTextStrokeWidth = parse(context, webkitTextStrokeWidth, declaration.webkitTextStrokeWidth);\n this.wordBreak = parse(context, wordBreak, declaration.wordBreak);\n this.zIndex = parse(context, zIndex, declaration.zIndex);\n }\n CSSParsedDeclaration.prototype.isVisible = function () {\n return this.display > 0 && this.opacity > 0 && this.visibility === 0 /* VISIBLE */;\n };\n CSSParsedDeclaration.prototype.isTransparent = function () {\n return isTransparent(this.backgroundColor);\n };\n CSSParsedDeclaration.prototype.isTransformed = function () {\n return this.transform !== null;\n };\n CSSParsedDeclaration.prototype.isPositioned = function () {\n return this.position !== 0 /* STATIC */;\n };\n CSSParsedDeclaration.prototype.isPositionedWithZIndex = function () {\n return this.isPositioned() && !this.zIndex.auto;\n };\n CSSParsedDeclaration.prototype.isFloating = function () {\n return this.float !== 0 /* NONE */;\n };\n CSSParsedDeclaration.prototype.isInlineLevel = function () {\n return (contains(this.display, 4 /* INLINE */) ||\n contains(this.display, 33554432 /* INLINE_BLOCK */) ||\n contains(this.display, 268435456 /* INLINE_FLEX */) ||\n contains(this.display, 536870912 /* INLINE_GRID */) ||\n contains(this.display, 67108864 /* INLINE_LIST_ITEM */) ||\n contains(this.display, 134217728 /* INLINE_TABLE */));\n };\n return CSSParsedDeclaration;\n }());\n var CSSParsedPseudoDeclaration = /** @class */ (function () {\n function CSSParsedPseudoDeclaration(context, declaration) {\n this.content = parse(context, content, declaration.content);\n this.quotes = parse(context, quotes, declaration.quotes);\n }\n return CSSParsedPseudoDeclaration;\n }());\n var CSSParsedCounterDeclaration = /** @class */ (function () {\n function CSSParsedCounterDeclaration(context, declaration) {\n this.counterIncrement = parse(context, counterIncrement, declaration.counterIncrement);\n this.counterReset = parse(context, counterReset, declaration.counterReset);\n }\n return CSSParsedCounterDeclaration;\n }());\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var parse = function (context, descriptor, style) {\n var tokenizer = new Tokenizer();\n var value = style !== null && typeof style !== 'undefined' ? style.toString() : descriptor.initialValue;\n tokenizer.write(value);\n var parser = new Parser(tokenizer.read());\n switch (descriptor.type) {\n case 2 /* IDENT_VALUE */:\n var token = parser.parseComponentValue();\n return descriptor.parse(context, isIdentToken(token) ? token.value : descriptor.initialValue);\n case 0 /* VALUE */:\n return descriptor.parse(context, parser.parseComponentValue());\n case 1 /* LIST */:\n return descriptor.parse(context, parser.parseComponentValues());\n case 4 /* TOKEN_VALUE */:\n return parser.parseComponentValue();\n case 3 /* TYPE_VALUE */:\n switch (descriptor.format) {\n case 'angle':\n return angle.parse(context, parser.parseComponentValue());\n case 'color':\n return color$1.parse(context, parser.parseComponentValue());\n case 'image':\n return image.parse(context, parser.parseComponentValue());\n case 'length':\n var length_1 = parser.parseComponentValue();\n return isLength(length_1) ? length_1 : ZERO_LENGTH;\n case 'length-percentage':\n var value_1 = parser.parseComponentValue();\n return isLengthPercentage(value_1) ? value_1 : ZERO_LENGTH;\n case 'time':\n return time.parse(context, parser.parseComponentValue());\n }\n break;\n }\n };\n\n var elementDebuggerAttribute = 'data-html2canvas-debug';\n var getElementDebugType = function (element) {\n var attribute = element.getAttribute(elementDebuggerAttribute);\n switch (attribute) {\n case 'all':\n return 1 /* ALL */;\n case 'clone':\n return 2 /* CLONE */;\n case 'parse':\n return 3 /* PARSE */;\n case 'render':\n return 4 /* RENDER */;\n default:\n return 0 /* NONE */;\n }\n };\n var isDebugging = function (element, type) {\n var elementType = getElementDebugType(element);\n return elementType === 1 /* ALL */ || type === elementType;\n };\n\n var ElementContainer = /** @class */ (function () {\n function ElementContainer(context, element) {\n this.context = context;\n this.textNodes = [];\n this.elements = [];\n this.flags = 0;\n if (isDebugging(element, 3 /* PARSE */)) {\n debugger;\n }\n this.styles = new CSSParsedDeclaration(context, window.getComputedStyle(element, null));\n if (isHTMLElementNode(element)) {\n if (this.styles.animationDuration.some(function (duration) { return duration > 0; })) {\n element.style.animationDuration = '0s';\n }\n if (this.styles.transform !== null) {\n // getBoundingClientRect takes transforms into account\n element.style.transform = 'none';\n }\n }\n this.bounds = parseBounds(this.context, element);\n if (isDebugging(element, 4 /* RENDER */)) {\n this.flags |= 16 /* DEBUG_RENDER */;\n }\n }\n return ElementContainer;\n }());\n\n /*\n * text-segmentation 1.0.3 <https://github.com/niklasvh/text-segmentation>\n * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>\n * Released under MIT License\n */\n var base64 = 'AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=';\n\n /*\n * utrie 1.0.2 <https://github.com/niklasvh/utrie>\n * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>\n * Released under MIT License\n */\n var chars$1 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n // Use a lookup table to find the index.\n var lookup$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\n for (var i$1 = 0; i$1 < chars$1.length; i$1++) {\n lookup$1[chars$1.charCodeAt(i$1)] = i$1;\n }\n var decode = function (base64) {\n var bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4;\n if (base64[base64.length - 1] === '=') {\n bufferLength--;\n if (base64[base64.length - 2] === '=') {\n bufferLength--;\n }\n }\n var buffer = typeof ArrayBuffer !== 'undefined' &&\n typeof Uint8Array !== 'undefined' &&\n typeof Uint8Array.prototype.slice !== 'undefined'\n ? new ArrayBuffer(bufferLength)\n : new Array(bufferLength);\n var bytes = Array.isArray(buffer) ? buffer : new Uint8Array(buffer);\n for (i = 0; i < len; i += 4) {\n encoded1 = lookup$1[base64.charCodeAt(i)];\n encoded2 = lookup$1[base64.charCodeAt(i + 1)];\n encoded3 = lookup$1[base64.charCodeAt(i + 2)];\n encoded4 = lookup$1[base64.charCodeAt(i + 3)];\n bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);\n bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);\n bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);\n }\n return buffer;\n };\n var polyUint16Array = function (buffer) {\n var length = buffer.length;\n var bytes = [];\n for (var i = 0; i < length; i += 2) {\n bytes.push((buffer[i + 1] << 8) | buffer[i]);\n }\n return bytes;\n };\n var polyUint32Array = function (buffer) {\n var length = buffer.length;\n var bytes = [];\n for (var i = 0; i < length; i += 4) {\n bytes.push((buffer[i + 3] << 24) | (buffer[i + 2] << 16) | (buffer[i + 1] << 8) | buffer[i]);\n }\n return bytes;\n };\n\n /** Shift size for getting the index-2 table offset. */\n var UTRIE2_SHIFT_2 = 5;\n /** Shift size for getting the index-1 table offset. */\n var UTRIE2_SHIFT_1 = 6 + 5;\n /**\n * Shift size for shifting left the index array values.\n * Increases possible data size with 16-bit index values at the cost\n * of compactability.\n * This requires data blocks to be aligned by UTRIE2_DATA_GRANULARITY.\n */\n var UTRIE2_INDEX_SHIFT = 2;\n /**\n * Difference between the two shift sizes,\n * for getting an index-1 offset from an index-2 offset. 6=11-5\n */\n var UTRIE2_SHIFT_1_2 = UTRIE2_SHIFT_1 - UTRIE2_SHIFT_2;\n /**\n * The part of the index-2 table for U+D800..U+DBFF stores values for\n * lead surrogate code _units_ not code _points_.\n * Values for lead surrogate code _points_ are indexed with this portion of the table.\n * Length=32=0x20=0x400>>UTRIE2_SHIFT_2. (There are 1024=0x400 lead surrogates.)\n */\n var UTRIE2_LSCP_INDEX_2_OFFSET = 0x10000 >> UTRIE2_SHIFT_2;\n /** Number of entries in a data block. 32=0x20 */\n var UTRIE2_DATA_BLOCK_LENGTH = 1 << UTRIE2_SHIFT_2;\n /** Mask for getting the lower bits for the in-data-block offset. */\n var UTRIE2_DATA_MASK = UTRIE2_DATA_BLOCK_LENGTH - 1;\n var UTRIE2_LSCP_INDEX_2_LENGTH = 0x400 >> UTRIE2_SHIFT_2;\n /** Count the lengths of both BMP pieces. 2080=0x820 */\n var UTRIE2_INDEX_2_BMP_LENGTH = UTRIE2_LSCP_INDEX_2_OFFSET + UTRIE2_LSCP_INDEX_2_LENGTH;\n /**\n * The 2-byte UTF-8 version of the index-2 table follows at offset 2080=0x820.\n * Length 32=0x20 for lead bytes C0..DF, regardless of UTRIE2_SHIFT_2.\n */\n var UTRIE2_UTF8_2B_INDEX_2_OFFSET = UTRIE2_INDEX_2_BMP_LENGTH;\n var UTRIE2_UTF8_2B_INDEX_2_LENGTH = 0x800 >> 6; /* U+0800 is the first code point after 2-byte UTF-8 */\n /**\n * The index-1 table, only used for supplementary code points, at offset 2112=0x840.\n * Variable length, for code points up to highStart, where the last single-value range starts.\n * Maximum length 512=0x200=0x100000>>UTRIE2_SHIFT_1.\n * (For 0x100000 supplementary code points U+10000..U+10ffff.)\n *\n * The part of the index-2 table for supplementary code points starts\n * after this index-1 table.\n *\n * Both the index-1 table and the following part of the index-2 table\n * are omitted completely if there is only BMP data.\n */\n var UTRIE2_INDEX_1_OFFSET = UTRIE2_UTF8_2B_INDEX_2_OFFSET + UTRIE2_UTF8_2B_INDEX_2_LENGTH;\n /**\n * Number of index-1 entries for the BMP. 32=0x20\n * This part of the index-1 table is omitted from the serialized form.\n */\n var UTRIE2_OMITTED_BMP_INDEX_1_LENGTH = 0x10000 >> UTRIE2_SHIFT_1;\n /** Number of entries in an index-2 block. 64=0x40 */\n var UTRIE2_INDEX_2_BLOCK_LENGTH = 1 << UTRIE2_SHIFT_1_2;\n /** Mask for getting the lower bits for the in-index-2-block offset. */\n var UTRIE2_INDEX_2_MASK = UTRIE2_INDEX_2_BLOCK_LENGTH - 1;\n var slice16 = function (view, start, end) {\n if (view.slice) {\n return view.slice(start, end);\n }\n return new Uint16Array(Array.prototype.slice.call(view, start, end));\n };\n var slice32 = function (view, start, end) {\n if (view.slice) {\n return view.slice(start, end);\n }\n return new Uint32Array(Array.prototype.slice.call(view, start, end));\n };\n var createTrieFromBase64 = function (base64, _byteLength) {\n var buffer = decode(base64);\n var view32 = Array.isArray(buffer) ? polyUint32Array(buffer) : new Uint32Array(buffer);\n var view16 = Array.isArray(buffer) ? polyUint16Array(buffer) : new Uint16Array(buffer);\n var headerLength = 24;\n var index = slice16(view16, headerLength / 2, view32[4] / 2);\n var data = view32[5] === 2\n ? slice16(view16, (headerLength + view32[4]) / 2)\n : slice32(view32, Math.ceil((headerLength + view32[4]) / 4));\n return new Trie(view32[0], view32[1], view32[2], view32[3], index, data);\n };\n var Trie = /** @class */ (function () {\n function Trie(initialValue, errorValue, highStart, highValueIndex, index, data) {\n this.initialValue = initialValue;\n this.errorValue = errorValue;\n this.highStart = highStart;\n this.highValueIndex = highValueIndex;\n this.index = index;\n this.data = data;\n }\n /**\n * Get the value for a code point as stored in the Trie.\n *\n * @param codePoint the code point\n * @return the value\n */\n Trie.prototype.get = function (codePoint) {\n var ix;\n if (codePoint >= 0) {\n if (codePoint < 0x0d800 || (codePoint > 0x0dbff && codePoint <= 0x0ffff)) {\n // Ordinary BMP code point, excluding leading surrogates.\n // BMP uses a single level lookup. BMP index starts at offset 0 in the Trie2 index.\n // 16 bit data is stored in the index array itself.\n ix = this.index[codePoint >> UTRIE2_SHIFT_2];\n ix = (ix << UTRIE2_INDEX_SHIFT) + (codePoint & UTRIE2_DATA_MASK);\n return this.data[ix];\n }\n if (codePoint <= 0xffff) {\n // Lead Surrogate Code Point. A Separate index section is stored for\n // lead surrogate code units and code points.\n // The main index has the code unit data.\n // For this function, we need the code point data.\n // Note: this expression could be refactored for slightly improved efficiency, but\n // surrogate code points will be so rare in practice that it's not worth it.\n ix = this.index[UTRIE2_LSCP_INDEX_2_OFFSET + ((codePoint - 0xd800) >> UTRIE2_SHIFT_2)];\n ix = (ix << UTRIE2_INDEX_SHIFT) + (codePoint & UTRIE2_DATA_MASK);\n return this.data[ix];\n }\n if (codePoint < this.highStart) {\n // Supplemental code point, use two-level lookup.\n ix = UTRIE2_INDEX_1_OFFSET - UTRIE2_OMITTED_BMP_INDEX_1_LENGTH + (codePoint >> UTRIE2_SHIFT_1);\n ix = this.index[ix];\n ix += (codePoint >> UTRIE2_SHIFT_2) & UTRIE2_INDEX_2_MASK;\n ix = this.index[ix];\n ix = (ix << UTRIE2_INDEX_SHIFT) + (codePoint & UTRIE2_DATA_MASK);\n return this.data[ix];\n }\n if (codePoint <= 0x10ffff) {\n return this.data[this.highValueIndex];\n }\n }\n // Fall through. The code point is outside of the legal range of 0..0x10ffff.\n return this.errorValue;\n };\n return Trie;\n }());\n\n /*\n * base64-arraybuffer 1.0.2 <https://github.com/niklasvh/base64-arraybuffer>\n * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>\n * Released under MIT License\n */\n var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n // Use a lookup table to find the index.\n var lookup = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\n for (var i = 0; i < chars.length; i++) {\n lookup[chars.charCodeAt(i)] = i;\n }\n\n var Prepend = 1;\n var CR = 2;\n var LF = 3;\n var Control = 4;\n var Extend = 5;\n var SpacingMark = 7;\n var L = 8;\n var V = 9;\n var T = 10;\n var LV = 11;\n var LVT = 12;\n var ZWJ = 13;\n var Extended_Pictographic = 14;\n var RI = 15;\n var toCodePoints = function (str) {\n var codePoints = [];\n var i = 0;\n var length = str.length;\n while (i < length) {\n var value = str.charCodeAt(i++);\n if (value >= 0xd800 && value <= 0xdbff && i < length) {\n var extra = str.charCodeAt(i++);\n if ((extra & 0xfc00) === 0xdc00) {\n codePoints.push(((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000);\n }\n else {\n codePoints.push(value);\n i--;\n }\n }\n else {\n codePoints.push(value);\n }\n }\n return codePoints;\n };\n var fromCodePoint = function () {\n var codePoints = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n codePoints[_i] = arguments[_i];\n }\n if (String.fromCodePoint) {\n return String.fromCodePoint.apply(String, codePoints);\n }\n var length = codePoints.length;\n if (!length) {\n return '';\n }\n var codeUnits = [];\n var index = -1;\n var result = '';\n while (++index < length) {\n var codePoint = codePoints[index];\n if (codePoint <= 0xffff) {\n codeUnits.push(codePoint);\n }\n else {\n codePoint -= 0x10000;\n codeUnits.push((codePoint >> 10) + 0xd800, (codePoint % 0x400) + 0xdc00);\n }\n if (index + 1 === length || codeUnits.length > 0x4000) {\n result += String.fromCharCode.apply(String, codeUnits);\n codeUnits.length = 0;\n }\n }\n return result;\n };\n var UnicodeTrie = createTrieFromBase64(base64);\n var BREAK_NOT_ALLOWED = '×';\n var BREAK_ALLOWED = '÷';\n var codePointToClass = function (codePoint) { return UnicodeTrie.get(codePoint); };\n var _graphemeBreakAtIndex = function (_codePoints, classTypes, index) {\n var prevIndex = index - 2;\n var prev = classTypes[prevIndex];\n var current = classTypes[index - 1];\n var next = classTypes[index];\n // GB3 Do not break between a CR and LF\n if (current === CR && next === LF) {\n return BREAK_NOT_ALLOWED;\n }\n // GB4 Otherwise, break before and after controls.\n if (current === CR || current === LF || current === Control) {\n return BREAK_ALLOWED;\n }\n // GB5\n if (next === CR || next === LF || next === Control) {\n return BREAK_ALLOWED;\n }\n // Do not break Hangul syllable sequences.\n // GB6\n if (current === L && [L, V, LV, LVT].indexOf(next) !== -1) {\n return BREAK_NOT_ALLOWED;\n }\n // GB7\n if ((current === LV || current === V) && (next === V || next === T)) {\n return BREAK_NOT_ALLOWED;\n }\n // GB8\n if ((current === LVT || current === T) && next === T) {\n return BREAK_NOT_ALLOWED;\n }\n // GB9 Do not break before extending characters or ZWJ.\n if (next === ZWJ || next === Extend) {\n return BREAK_NOT_ALLOWED;\n }\n // Do not break before SpacingMarks, or after Prepend characters.\n // GB9a\n if (next === SpacingMark) {\n return BREAK_NOT_ALLOWED;\n }\n // GB9a\n if (current === Prepend) {\n return BREAK_NOT_ALLOWED;\n }\n // GB11 Do not break within emoji modifier sequences or emoji zwj sequences.\n if (current === ZWJ && next === Extended_Pictographic) {\n while (prev === Extend) {\n prev = classTypes[--prevIndex];\n }\n if (prev === Extended_Pictographic) {\n return BREAK_NOT_ALLOWED;\n }\n }\n // GB12 Do not break within emoji flag sequences.\n // That is, do not break between regional indicator (RI) symbols\n // if there is an odd number of RI characters before the break point.\n if (current === RI && next === RI) {\n var countRI = 0;\n while (prev === RI) {\n countRI++;\n prev = classTypes[--prevIndex];\n }\n if (countRI % 2 === 0) {\n return BREAK_NOT_ALLOWED;\n }\n }\n return BREAK_ALLOWED;\n };\n var GraphemeBreaker = function (str) {\n var codePoints = toCodePoints(str);\n var length = codePoints.length;\n var index = 0;\n var lastEnd = 0;\n var classTypes = codePoints.map(codePointToClass);\n return {\n next: function () {\n if (index >= length) {\n return { done: true, value: null };\n }\n var graphemeBreak = BREAK_NOT_ALLOWED;\n while (index < length &&\n (graphemeBreak = _graphemeBreakAtIndex(codePoints, classTypes, ++index)) === BREAK_NOT_ALLOWED) { }\n if (graphemeBreak !== BREAK_NOT_ALLOWED || index === length) {\n var value = fromCodePoint.apply(null, codePoints.slice(lastEnd, index));\n lastEnd = index;\n return { value: value, done: false };\n }\n return { done: true, value: null };\n },\n };\n };\n var splitGraphemes = function (str) {\n var breaker = GraphemeBreaker(str);\n var graphemes = [];\n var bk;\n while (!(bk = breaker.next()).done) {\n if (bk.value) {\n graphemes.push(bk.value.slice());\n }\n }\n return graphemes;\n };\n\n var testRangeBounds = function (document) {\n var TEST_HEIGHT = 123;\n if (document.createRange) {\n var range = document.createRange();\n if (range.getBoundingClientRect) {\n var testElement = document.createElement('boundtest');\n testElement.style.height = TEST_HEIGHT + \"px\";\n testElement.style.display = 'block';\n document.body.appendChild(testElement);\n range.selectNode(testElement);\n var rangeBounds = range.getBoundingClientRect();\n var rangeHeight = Math.round(rangeBounds.height);\n document.body.removeChild(testElement);\n if (rangeHeight === TEST_HEIGHT) {\n return true;\n }\n }\n }\n return false;\n };\n var testIOSLineBreak = function (document) {\n var testElement = document.createElement('boundtest');\n testElement.style.width = '50px';\n testElement.style.display = 'block';\n testElement.style.fontSize = '12px';\n testElement.style.letterSpacing = '0px';\n testElement.style.wordSpacing = '0px';\n document.body.appendChild(testElement);\n var range = document.createRange();\n testElement.innerHTML = typeof ''.repeat === 'function' ? '👨'.repeat(10) : '';\n var node = testElement.firstChild;\n var textList = toCodePoints$1(node.data).map(function (i) { return fromCodePoint$1(i); });\n var offset = 0;\n var prev = {};\n // ios 13 does not handle range getBoundingClientRect line changes correctly #2177\n var supports = textList.every(function (text, i) {\n range.setStart(node, offset);\n range.setEnd(node, offset + text.length);\n var rect = range.getBoundingClientRect();\n offset += text.length;\n var boundAhead = rect.x > prev.x || rect.y > prev.y;\n prev = rect;\n if (i === 0) {\n return true;\n }\n return boundAhead;\n });\n document.body.removeChild(testElement);\n return supports;\n };\n var testCORS = function () { return typeof new Image().crossOrigin !== 'undefined'; };\n var testResponseType = function () { return typeof new XMLHttpRequest().responseType === 'string'; };\n var testSVG = function (document) {\n var img = new Image();\n var canvas = document.createElement('canvas');\n var ctx = canvas.getContext('2d');\n if (!ctx) {\n return false;\n }\n img.src = \"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>\";\n try {\n ctx.drawImage(img, 0, 0);\n canvas.toDataURL();\n }\n catch (e) {\n return false;\n }\n return true;\n };\n var isGreenPixel = function (data) {\n return data[0] === 0 && data[1] === 255 && data[2] === 0 && data[3] === 255;\n };\n var testForeignObject = function (document) {\n var canvas = document.createElement('canvas');\n var size = 100;\n canvas.width = size;\n canvas.height = size;\n var ctx = canvas.getContext('2d');\n if (!ctx) {\n return Promise.reject(false);\n }\n ctx.fillStyle = 'rgb(0, 255, 0)';\n ctx.fillRect(0, 0, size, size);\n var img = new Image();\n var greenImageSrc = canvas.toDataURL();\n img.src = greenImageSrc;\n var svg = createForeignObjectSVG(size, size, 0, 0, img);\n ctx.fillStyle = 'red';\n ctx.fillRect(0, 0, size, size);\n return loadSerializedSVG$1(svg)\n .then(function (img) {\n ctx.drawImage(img, 0, 0);\n var data = ctx.getImageData(0, 0, size, size).data;\n ctx.fillStyle = 'red';\n ctx.fillRect(0, 0, size, size);\n var node = document.createElement('div');\n node.style.backgroundImage = \"url(\" + greenImageSrc + \")\";\n node.style.height = size + \"px\";\n // Firefox 55 does not render inline <img /> tags\n return isGreenPixel(data)\n ? loadSerializedSVG$1(createForeignObjectSVG(size, size, 0, 0, node))\n : Promise.reject(false);\n })\n .then(function (img) {\n ctx.drawImage(img, 0, 0);\n // Edge does not render background-images\n return isGreenPixel(ctx.getImageData(0, 0, size, size).data);\n })\n .catch(function () { return false; });\n };\n var createForeignObjectSVG = function (width, height, x, y, node) {\n var xmlns = 'http://www.w3.org/2000/svg';\n var svg = document.createElementNS(xmlns, 'svg');\n var foreignObject = document.createElementNS(xmlns, 'foreignObject');\n svg.setAttributeNS(null, 'width', width.toString());\n svg.setAttributeNS(null, 'height', height.toString());\n foreignObject.setAttributeNS(null, 'width', '100%');\n foreignObject.setAttributeNS(null, 'height', '100%');\n foreignObject.setAttributeNS(null, 'x', x.toString());\n foreignObject.setAttributeNS(null, 'y', y.toString());\n foreignObject.setAttributeNS(null, 'externalResourcesRequired', 'true');\n svg.appendChild(foreignObject);\n foreignObject.appendChild(node);\n return svg;\n };\n var loadSerializedSVG$1 = function (svg) {\n return new Promise(function (resolve, reject) {\n var img = new Image();\n img.onload = function () { return resolve(img); };\n img.onerror = reject;\n img.src = \"data:image/svg+xml;charset=utf-8,\" + encodeURIComponent(new XMLSerializer().serializeToString(svg));\n });\n };\n var FEATURES = {\n get SUPPORT_RANGE_BOUNDS() {\n var value = testRangeBounds(document);\n Object.defineProperty(FEATURES, 'SUPPORT_RANGE_BOUNDS', { value: value });\n return value;\n },\n get SUPPORT_WORD_BREAKING() {\n var value = FEATURES.SUPPORT_RANGE_BOUNDS && testIOSLineBreak(document);\n Object.defineProperty(FEATURES, 'SUPPORT_WORD_BREAKING', { value: value });\n return value;\n },\n get SUPPORT_SVG_DRAWING() {\n var value = testSVG(document);\n Object.defineProperty(FEATURES, 'SUPPORT_SVG_DRAWING', { value: value });\n return value;\n },\n get SUPPORT_FOREIGNOBJECT_DRAWING() {\n var value = typeof Array.from === 'function' && typeof window.fetch === 'function'\n ? testForeignObject(document)\n : Promise.resolve(false);\n Object.defineProperty(FEATURES, 'SUPPORT_FOREIGNOBJECT_DRAWING', { value: value });\n return value;\n },\n get SUPPORT_CORS_IMAGES() {\n var value = testCORS();\n Object.defineProperty(FEATURES, 'SUPPORT_CORS_IMAGES', { value: value });\n return value;\n },\n get SUPPORT_RESPONSE_TYPE() {\n var value = testResponseType();\n Object.defineProperty(FEATURES, 'SUPPORT_RESPONSE_TYPE', { value: value });\n return value;\n },\n get SUPPORT_CORS_XHR() {\n var value = 'withCredentials' in new XMLHttpRequest();\n Object.defineProperty(FEATURES, 'SUPPORT_CORS_XHR', { value: value });\n return value;\n },\n get SUPPORT_NATIVE_TEXT_SEGMENTATION() {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var value = !!(typeof Intl !== 'undefined' && Intl.Segmenter);\n Object.defineProperty(FEATURES, 'SUPPORT_NATIVE_TEXT_SEGMENTATION', { value: value });\n return value;\n }\n };\n\n var TextBounds = /** @class */ (function () {\n function TextBounds(text, bounds) {\n this.text = text;\n this.bounds = bounds;\n }\n return TextBounds;\n }());\n var parseTextBounds = function (context, value, styles, node) {\n var textList = breakText(value, styles);\n var textBounds = [];\n var offset = 0;\n textList.forEach(function (text) {\n if (styles.textDecorationLine.length || text.trim().length > 0) {\n if (FEATURES.SUPPORT_RANGE_BOUNDS) {\n var clientRects = createRange(node, offset, text.length).getClientRects();\n if (clientRects.length > 1) {\n var subSegments = segmentGraphemes(text);\n var subOffset_1 = 0;\n subSegments.forEach(function (subSegment) {\n textBounds.push(new TextBounds(subSegment, Bounds.fromDOMRectList(context, createRange(node, subOffset_1 + offset, subSegment.length).getClientRects())));\n subOffset_1 += subSegment.length;\n });\n }\n else {\n textBounds.push(new TextBounds(text, Bounds.fromDOMRectList(context, clientRects)));\n }\n }\n else {\n var replacementNode = node.splitText(text.length);\n textBounds.push(new TextBounds(text, getWrapperBounds(context, node)));\n node = replacementNode;\n }\n }\n else if (!FEATURES.SUPPORT_RANGE_BOUNDS) {\n node = node.splitText(text.length);\n }\n offset += text.length;\n });\n return textBounds;\n };\n var getWrapperBounds = function (context, node) {\n var ownerDocument = node.ownerDocument;\n if (ownerDocument) {\n var wrapper = ownerDocument.createElement('html2canvaswrapper');\n wrapper.appendChild(node.cloneNode(true));\n var parentNode = node.parentNode;\n if (parentNode) {\n parentNode.replaceChild(wrapper, node);\n var bounds = parseBounds(context, wrapper);\n if (wrapper.firstChild) {\n parentNode.replaceChild(wrapper.firstChild, wrapper);\n }\n return bounds;\n }\n }\n return Bounds.EMPTY;\n };\n var createRange = function (node, offset, length) {\n var ownerDocument = node.ownerDocument;\n if (!ownerDocument) {\n throw new Error('Node has no owner document');\n }\n var range = ownerDocument.createRange();\n range.setStart(node, offset);\n range.setEnd(node, offset + length);\n return range;\n };\n var segmentGraphemes = function (value) {\n if (FEATURES.SUPPORT_NATIVE_TEXT_SEGMENTATION) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var segmenter = new Intl.Segmenter(void 0, { granularity: 'grapheme' });\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return Array.from(segmenter.segment(value)).map(function (segment) { return segment.segment; });\n }\n return splitGraphemes(value);\n };\n var segmentWords = function (value, styles) {\n if (FEATURES.SUPPORT_NATIVE_TEXT_SEGMENTATION) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var segmenter = new Intl.Segmenter(void 0, {\n granularity: 'word'\n });\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return Array.from(segmenter.segment(value)).map(function (segment) { return segment.segment; });\n }\n return breakWords(value, styles);\n };\n var breakText = function (value, styles) {\n return styles.letterSpacing !== 0 ? segmentGraphemes(value) : segmentWords(value, styles);\n };\n // https://drafts.csswg.org/css-text/#word-separator\n var wordSeparators = [0x0020, 0x00a0, 0x1361, 0x10100, 0x10101, 0x1039, 0x1091];\n var breakWords = function (str, styles) {\n var breaker = LineBreaker(str, {\n lineBreak: styles.lineBreak,\n wordBreak: styles.overflowWrap === \"break-word\" /* BREAK_WORD */ ? 'break-word' : styles.wordBreak\n });\n var words = [];\n var bk;\n var _loop_1 = function () {\n if (bk.value) {\n var value = bk.value.slice();\n var codePoints = toCodePoints$1(value);\n var word_1 = '';\n codePoints.forEach(function (codePoint) {\n if (wordSeparators.indexOf(codePoint) === -1) {\n word_1 += fromCodePoint$1(codePoint);\n }\n else {\n if (word_1.length) {\n words.push(word_1);\n }\n words.push(fromCodePoint$1(codePoint));\n word_1 = '';\n }\n });\n if (word_1.length) {\n words.push(word_1);\n }\n }\n };\n while (!(bk = breaker.next()).done) {\n _loop_1();\n }\n return words;\n };\n\n var TextContainer = /** @class */ (function () {\n function TextContainer(context, node, styles) {\n this.text = transform(node.data, styles.textTransform);\n this.textBounds = parseTextBounds(context, this.text, styles, node);\n }\n return TextContainer;\n }());\n var transform = function (text, transform) {\n switch (transform) {\n case 1 /* LOWERCASE */:\n return text.toLowerCase();\n case 3 /* CAPITALIZE */:\n return text.replace(CAPITALIZE, capitalize);\n case 2 /* UPPERCASE */:\n return text.toUpperCase();\n default:\n return text;\n }\n };\n var CAPITALIZE = /(^|\\s|:|-|\\(|\\))([a-z])/g;\n var capitalize = function (m, p1, p2) {\n if (m.length > 0) {\n return p1 + p2.toUpperCase();\n }\n return m;\n };\n\n var ImageElementContainer = /** @class */ (function (_super) {\n __extends(ImageElementContainer, _super);\n function ImageElementContainer(context, img) {\n var _this = _super.call(this, context, img) || this;\n _this.src = img.currentSrc || img.src;\n _this.intrinsicWidth = img.naturalWidth;\n _this.intrinsicHeight = img.naturalHeight;\n _this.context.cache.addImage(_this.src);\n return _this;\n }\n return ImageElementContainer;\n }(ElementContainer));\n\n var CanvasElementContainer = /** @class */ (function (_super) {\n __extends(CanvasElementContainer, _super);\n function CanvasElementContainer(context, canvas) {\n var _this = _super.call(this, context, canvas) || this;\n _this.canvas = canvas;\n _this.intrinsicWidth = canvas.width;\n _this.intrinsicHeight = canvas.height;\n return _this;\n }\n return CanvasElementContainer;\n }(ElementContainer));\n\n var SVGElementContainer = /** @class */ (function (_super) {\n __extends(SVGElementContainer, _super);\n function SVGElementContainer(context, img) {\n var _this = _super.call(this, context, img) || this;\n var s = new XMLSerializer();\n var bounds = parseBounds(context, img);\n img.setAttribute('width', bounds.width + \"px\");\n img.setAttribute('height', bounds.height + \"px\");\n _this.svg = \"data:image/svg+xml,\" + encodeURIComponent(s.serializeToString(img));\n _this.intrinsicWidth = img.width.baseVal.value;\n _this.intrinsicHeight = img.height.baseVal.value;\n _this.context.cache.addImage(_this.svg);\n return _this;\n }\n return SVGElementContainer;\n }(ElementContainer));\n\n var LIElementContainer = /** @class */ (function (_super) {\n __extends(LIElementContainer, _super);\n function LIElementContainer(context, element) {\n var _this = _super.call(this, context, element) || this;\n _this.value = element.value;\n return _this;\n }\n return LIElementContainer;\n }(ElementContainer));\n\n var OLElementContainer = /** @class */ (function (_super) {\n __extends(OLElementContainer, _super);\n function OLElementContainer(context, element) {\n var _this = _super.call(this, context, element) || this;\n _this.start = element.start;\n _this.reversed = typeof element.reversed === 'boolean' && element.reversed === true;\n return _this;\n }\n return OLElementContainer;\n }(ElementContainer));\n\n var CHECKBOX_BORDER_RADIUS = [\n {\n type: 15 /* DIMENSION_TOKEN */,\n flags: 0,\n unit: 'px',\n number: 3\n }\n ];\n var RADIO_BORDER_RADIUS = [\n {\n type: 16 /* PERCENTAGE_TOKEN */,\n flags: 0,\n number: 50\n }\n ];\n var reformatInputBounds = function (bounds) {\n if (bounds.width > bounds.height) {\n return new Bounds(bounds.left + (bounds.width - bounds.height) / 2, bounds.top, bounds.height, bounds.height);\n }\n else if (bounds.width < bounds.height) {\n return new Bounds(bounds.left, bounds.top + (bounds.height - bounds.width) / 2, bounds.width, bounds.width);\n }\n return bounds;\n };\n var getInputValue = function (node) {\n var value = node.type === PASSWORD ? new Array(node.value.length + 1).join('\\u2022') : node.value;\n return value.length === 0 ? node.placeholder || '' : value;\n };\n var CHECKBOX = 'checkbox';\n var RADIO = 'radio';\n var PASSWORD = 'password';\n var INPUT_COLOR = 0x2a2a2aff;\n var InputElementContainer = /** @class */ (function (_super) {\n __extends(InputElementContainer, _super);\n function InputElementContainer(context, input) {\n var _this = _super.call(this, context, input) || this;\n _this.type = input.type.toLowerCase();\n _this.checked = input.checked;\n _this.value = getInputValue(input);\n if (_this.type === CHECKBOX || _this.type === RADIO) {\n _this.styles.backgroundColor = 0xdededeff;\n _this.styles.borderTopColor =\n _this.styles.borderRightColor =\n _this.styles.borderBottomColor =\n _this.styles.borderLeftColor =\n 0xa5a5a5ff;\n _this.styles.borderTopWidth =\n _this.styles.borderRightWidth =\n _this.styles.borderBottomWidth =\n _this.styles.borderLeftWidth =\n 1;\n _this.styles.borderTopStyle =\n _this.styles.borderRightStyle =\n _this.styles.borderBottomStyle =\n _this.styles.borderLeftStyle =\n 1 /* SOLID */;\n _this.styles.backgroundClip = [0 /* BORDER_BOX */];\n _this.styles.backgroundOrigin = [0 /* BORDER_BOX */];\n _this.bounds = reformatInputBounds(_this.bounds);\n }\n switch (_this.type) {\n case CHECKBOX:\n _this.styles.borderTopRightRadius =\n _this.styles.borderTopLeftRadius =\n _this.styles.borderBottomRightRadius =\n _this.styles.borderBottomLeftRadius =\n CHECKBOX_BORDER_RADIUS;\n break;\n case RADIO:\n _this.styles.borderTopRightRadius =\n _this.styles.borderTopLeftRadius =\n _this.styles.borderBottomRightRadius =\n _this.styles.borderBottomLeftRadius =\n RADIO_BORDER_RADIUS;\n break;\n }\n return _this;\n }\n return InputElementContainer;\n }(ElementContainer));\n\n var SelectElementContainer = /** @class */ (function (_super) {\n __extends(SelectElementContainer, _super);\n function SelectElementContainer(context, element) {\n var _this = _super.call(this, context, element) || this;\n var option = element.options[element.selectedIndex || 0];\n _this.value = option ? option.text || '' : '';\n return _this;\n }\n return SelectElementContainer;\n }(ElementContainer));\n\n var TextareaElementContainer = /** @class */ (function (_super) {\n __extends(TextareaElementContainer, _super);\n function TextareaElementContainer(context, element) {\n var _this = _super.call(this, context, element) || this;\n _this.value = element.value;\n return _this;\n }\n return TextareaElementContainer;\n }(ElementContainer));\n\n var IFrameElementContainer = /** @class */ (function (_super) {\n __extends(IFrameElementContainer, _super);\n function IFrameElementContainer(context, iframe) {\n var _this = _super.call(this, context, iframe) || this;\n _this.src = iframe.src;\n _this.width = parseInt(iframe.width, 10) || 0;\n _this.height = parseInt(iframe.height, 10) || 0;\n _this.backgroundColor = _this.styles.backgroundColor;\n try {\n if (iframe.contentWindow &&\n iframe.contentWindow.document &&\n iframe.contentWindow.document.documentElement) {\n _this.tree = parseTree(context, iframe.contentWindow.document.documentElement);\n // http://www.w3.org/TR/css3-background/#special-backgrounds\n var documentBackgroundColor = iframe.contentWindow.document.documentElement\n ? parseColor(context, getComputedStyle(iframe.contentWindow.document.documentElement).backgroundColor)\n : COLORS.TRANSPARENT;\n var bodyBackgroundColor = iframe.contentWindow.document.body\n ? parseColor(context, getComputedStyle(iframe.contentWindow.document.body).backgroundColor)\n : COLORS.TRANSPARENT;\n _this.backgroundColor = isTransparent(documentBackgroundColor)\n ? isTransparent(bodyBackgroundColor)\n ? _this.styles.backgroundColor\n : bodyBackgroundColor\n : documentBackgroundColor;\n }\n }\n catch (e) { }\n return _this;\n }\n return IFrameElementContainer;\n }(ElementContainer));\n\n var LIST_OWNERS = ['OL', 'UL', 'MENU'];\n var parseNodeTree = function (context, node, parent, root) {\n for (var childNode = node.firstChild, nextNode = void 0; childNode; childNode = nextNode) {\n nextNode = childNode.nextSibling;\n if (isTextNode(childNode) && childNode.data.trim().length > 0) {\n parent.textNodes.push(new TextContainer(context, childNode, parent.styles));\n }\n else if (isElementNode(childNode)) {\n if (isSlotElement(childNode) && childNode.assignedNodes) {\n childNode.assignedNodes().forEach(function (childNode) { return parseNodeTree(context, childNode, parent, root); });\n }\n else {\n var container = createContainer(context, childNode);\n if (container.styles.isVisible()) {\n if (createsRealStackingContext(childNode, container, root)) {\n container.flags |= 4 /* CREATES_REAL_STACKING_CONTEXT */;\n }\n else if (createsStackingContext(container.styles)) {\n container.flags |= 2 /* CREATES_STACKING_CONTEXT */;\n }\n if (LIST_OWNERS.indexOf(childNode.tagName) !== -1) {\n container.flags |= 8 /* IS_LIST_OWNER */;\n }\n parent.elements.push(container);\n childNode.slot;\n if (childNode.shadowRoot) {\n parseNodeTree(context, childNode.shadowRoot, container, root);\n }\n else if (!isTextareaElement(childNode) &&\n !isSVGElement(childNode) &&\n !isSelectElement(childNode)) {\n parseNodeTree(context, childNode, container, root);\n }\n }\n }\n }\n }\n };\n var createContainer = function (context, element) {\n if (isImageElement(element)) {\n return new ImageElementContainer(context, element);\n }\n if (isCanvasElement(element)) {\n return new CanvasElementContainer(context, element);\n }\n if (isSVGElement(element)) {\n return new SVGElementContainer(context, element);\n }\n if (isLIElement(element)) {\n return new LIElementContainer(context, element);\n }\n if (isOLElement(element)) {\n return new OLElementContainer(context, element);\n }\n if (isInputElement(element)) {\n return new InputElementContainer(context, element);\n }\n if (isSelectElement(element)) {\n return new SelectElementContainer(context, element);\n }\n if (isTextareaElement(element)) {\n return new TextareaElementContainer(context, element);\n }\n if (isIFrameElement(element)) {\n return new IFrameElementContainer(context, element);\n }\n return new ElementContainer(context, element);\n };\n var parseTree = function (context, element) {\n var container = createContainer(context, element);\n container.flags |= 4 /* CREATES_REAL_STACKING_CONTEXT */;\n parseNodeTree(context, element, container, container);\n return container;\n };\n var createsRealStackingContext = function (node, container, root) {\n return (container.styles.isPositionedWithZIndex() ||\n container.styles.opacity < 1 ||\n container.styles.isTransformed() ||\n (isBodyElement(node) && root.styles.isTransparent()));\n };\n var createsStackingContext = function (styles) { return styles.isPositioned() || styles.isFloating(); };\n var isTextNode = function (node) { return node.nodeType === Node.TEXT_NODE; };\n var isElementNode = function (node) { return node.nodeType === Node.ELEMENT_NODE; };\n var isHTMLElementNode = function (node) {\n return isElementNode(node) && typeof node.style !== 'undefined' && !isSVGElementNode(node);\n };\n var isSVGElementNode = function (element) {\n return typeof element.className === 'object';\n };\n var isLIElement = function (node) { return node.tagName === 'LI'; };\n var isOLElement = function (node) { return node.tagName === 'OL'; };\n var isInputElement = function (node) { return node.tagName === 'INPUT'; };\n var isHTMLElement = function (node) { return node.tagName === 'HTML'; };\n var isSVGElement = function (node) { return node.tagName === 'svg'; };\n var isBodyElement = function (node) { return node.tagName === 'BODY'; };\n var isCanvasElement = function (node) { return node.tagName === 'CANVAS'; };\n var isVideoElement = function (node) { return node.tagName === 'VIDEO'; };\n var isImageElement = function (node) { return node.tagName === 'IMG'; };\n var isIFrameElement = function (node) { return node.tagName === 'IFRAME'; };\n var isStyleElement = function (node) { return node.tagName === 'STYLE'; };\n var isScriptElement = function (node) { return node.tagName === 'SCRIPT'; };\n var isTextareaElement = function (node) { return node.tagName === 'TEXTAREA'; };\n var isSelectElement = function (node) { return node.tagName === 'SELECT'; };\n var isSlotElement = function (node) { return node.tagName === 'SLOT'; };\n // https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name\n var isCustomElement = function (node) { return node.tagName.indexOf('-') > 0; };\n\n var CounterState = /** @class */ (function () {\n function CounterState() {\n this.counters = {};\n }\n CounterState.prototype.getCounterValue = function (name) {\n var counter = this.counters[name];\n if (counter && counter.length) {\n return counter[counter.length - 1];\n }\n return 1;\n };\n CounterState.prototype.getCounterValues = function (name) {\n var counter = this.counters[name];\n return counter ? counter : [];\n };\n CounterState.prototype.pop = function (counters) {\n var _this = this;\n counters.forEach(function (counter) { return _this.counters[counter].pop(); });\n };\n CounterState.prototype.parse = function (style) {\n var _this = this;\n var counterIncrement = style.counterIncrement;\n var counterReset = style.counterReset;\n var canReset = true;\n if (counterIncrement !== null) {\n counterIncrement.forEach(function (entry) {\n var counter = _this.counters[entry.counter];\n if (counter && entry.increment !== 0) {\n canReset = false;\n if (!counter.length) {\n counter.push(1);\n }\n counter[Math.max(0, counter.length - 1)] += entry.increment;\n }\n });\n }\n var counterNames = [];\n if (canReset) {\n counterReset.forEach(function (entry) {\n var counter = _this.counters[entry.counter];\n counterNames.push(entry.counter);\n if (!counter) {\n counter = _this.counters[entry.counter] = [];\n }\n counter.push(entry.reset);\n });\n }\n return counterNames;\n };\n return CounterState;\n }());\n var ROMAN_UPPER = {\n integers: [1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1],\n values: ['M', 'CM', 'D', 'CD', 'C', 'XC', 'L', 'XL', 'X', 'IX', 'V', 'IV', 'I']\n };\n var ARMENIAN = {\n integers: [\n 9000, 8000, 7000, 6000, 5000, 4000, 3000, 2000, 1000, 900, 800, 700, 600, 500, 400, 300, 200, 100, 90, 80, 70,\n 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1\n ],\n values: [\n 'Õ”',\n 'Õ“',\n 'Õ’',\n 'Õ‘',\n 'Õ',\n 'Õ',\n 'ÕŽ',\n 'Õ',\n 'ÕŒ',\n 'Õ‹',\n 'ÕŠ',\n 'Õ‰',\n 'Õˆ',\n 'Õ‡',\n 'Õ†',\n 'Õ…',\n 'Õ„',\n 'Õƒ',\n 'Õ‚',\n 'Õ',\n 'Õ€',\n 'Ô¿',\n 'Ô¾',\n 'Ô½',\n 'Ô¼',\n 'Ô»',\n 'Ôº',\n 'Ô¹',\n 'Ô¸',\n 'Ô·',\n 'Ô¶',\n 'Ôµ',\n 'Ô´',\n 'Ô³',\n 'Ô²',\n 'Ô±'\n ]\n };\n var HEBREW = {\n integers: [\n 10000, 9000, 8000, 7000, 6000, 5000, 4000, 3000, 2000, 1000, 400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20,\n 19, 18, 17, 16, 15, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1\n ],\n values: [\n 'י׳',\n 'ט׳',\n 'ח׳',\n 'ז׳',\n 'ו׳',\n 'ה׳',\n 'ד׳',\n 'ג׳',\n 'ב׳',\n '×׳',\n 'ת',\n 'ש',\n 'ר',\n 'ק',\n 'צ',\n 'פ',\n '×¢',\n 'ס',\n '× ',\n 'מ',\n 'ל',\n '×›',\n 'יט',\n '×™×—',\n '×™×–',\n 'טז',\n 'טו',\n '×™',\n 'ט',\n '×—',\n '×–',\n 'ו',\n '×”',\n 'ד',\n '×’',\n 'ב',\n '×'\n ]\n };\n var GEORGIAN = {\n integers: [\n 10000, 9000, 8000, 7000, 6000, 5000, 4000, 3000, 2000, 1000, 900, 800, 700, 600, 500, 400, 300, 200, 100, 90,\n 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1\n ],\n values: [\n 'ჵ',\n 'ჰ',\n 'ჯ',\n 'ჴ',\n 'ხ',\n 'áƒ',\n 'წ',\n 'ძ',\n 'ც',\n 'ჩ',\n 'შ',\n 'ყ',\n 'ღ',\n 'ქ',\n 'ფ',\n 'ჳ',\n 'ტ',\n 'ს',\n 'რ',\n 'ჟ',\n 'პ',\n 'áƒ',\n 'ჲ',\n 'ნ',\n 'მ',\n 'ლ',\n 'კ',\n 'ი',\n 'თ',\n 'ჱ',\n 'ზ',\n 'ვ',\n 'ე',\n 'დ',\n 'გ',\n 'ბ',\n 'áƒ'\n ]\n };\n var createAdditiveCounter = function (value, min, max, symbols, fallback, suffix) {\n if (value < min || value > max) {\n return createCounterText(value, fallback, suffix.length > 0);\n }\n return (symbols.integers.reduce(function (string, integer, index) {\n while (value >= integer) {\n value -= integer;\n string += symbols.values[index];\n }\n return string;\n }, '') + suffix);\n };\n var createCounterStyleWithSymbolResolver = function (value, codePointRangeLength, isNumeric, resolver) {\n var string = '';\n do {\n if (!isNumeric) {\n value--;\n }\n string = resolver(value) + string;\n value /= codePointRangeLength;\n } while (value * codePointRangeLength >= codePointRangeLength);\n return string;\n };\n var createCounterStyleFromRange = function (value, codePointRangeStart, codePointRangeEnd, isNumeric, suffix) {\n var codePointRangeLength = codePointRangeEnd - codePointRangeStart + 1;\n return ((value < 0 ? '-' : '') +\n (createCounterStyleWithSymbolResolver(Math.abs(value), codePointRangeLength, isNumeric, function (codePoint) {\n return fromCodePoint$1(Math.floor(codePoint % codePointRangeLength) + codePointRangeStart);\n }) +\n suffix));\n };\n var createCounterStyleFromSymbols = function (value, symbols, suffix) {\n if (suffix === void 0) { suffix = '. '; }\n var codePointRangeLength = symbols.length;\n return (createCounterStyleWithSymbolResolver(Math.abs(value), codePointRangeLength, false, function (codePoint) { return symbols[Math.floor(codePoint % codePointRangeLength)]; }) + suffix);\n };\n var CJK_ZEROS = 1 << 0;\n var CJK_TEN_COEFFICIENTS = 1 << 1;\n var CJK_TEN_HIGH_COEFFICIENTS = 1 << 2;\n var CJK_HUNDRED_COEFFICIENTS = 1 << 3;\n var createCJKCounter = function (value, numbers, multipliers, negativeSign, suffix, flags) {\n if (value < -9999 || value > 9999) {\n return createCounterText(value, 4 /* CJK_DECIMAL */, suffix.length > 0);\n }\n var tmp = Math.abs(value);\n var string = suffix;\n if (tmp === 0) {\n return numbers[0] + string;\n }\n for (var digit = 0; tmp > 0 && digit <= 4; digit++) {\n var coefficient = tmp % 10;\n if (coefficient === 0 && contains(flags, CJK_ZEROS) && string !== '') {\n string = numbers[coefficient] + string;\n }\n else if (coefficient > 1 ||\n (coefficient === 1 && digit === 0) ||\n (coefficient === 1 && digit === 1 && contains(flags, CJK_TEN_COEFFICIENTS)) ||\n (coefficient === 1 && digit === 1 && contains(flags, CJK_TEN_HIGH_COEFFICIENTS) && value > 100) ||\n (coefficient === 1 && digit > 1 && contains(flags, CJK_HUNDRED_COEFFICIENTS))) {\n string = numbers[coefficient] + (digit > 0 ? multipliers[digit - 1] : '') + string;\n }\n else if (coefficient === 1 && digit > 0) {\n string = multipliers[digit - 1] + string;\n }\n tmp = Math.floor(tmp / 10);\n }\n return (value < 0 ? negativeSign : '') + string;\n };\n var CHINESE_INFORMAL_MULTIPLIERS = 'å百åƒè¬';\n var CHINESE_FORMAL_MULTIPLIERS = '拾佰仟è¬';\n var JAPANESE_NEGATIVE = 'マイナス';\n var KOREAN_NEGATIVE = '마ì´ë„ˆìŠ¤';\n var createCounterText = function (value, type, appendSuffix) {\n var defaultSuffix = appendSuffix ? '. ' : '';\n var cjkSuffix = appendSuffix ? 'ã€' : '';\n var koreanSuffix = appendSuffix ? ', ' : '';\n var spaceSuffix = appendSuffix ? ' ' : '';\n switch (type) {\n case 0 /* DISC */:\n return '•' + spaceSuffix;\n case 1 /* CIRCLE */:\n return 'â—¦' + spaceSuffix;\n case 2 /* SQUARE */:\n return 'â—¾' + spaceSuffix;\n case 5 /* DECIMAL_LEADING_ZERO */:\n var string = createCounterStyleFromRange(value, 48, 57, true, defaultSuffix);\n return string.length < 4 ? \"0\" + string : string;\n case 4 /* CJK_DECIMAL */:\n return createCounterStyleFromSymbols(value, '〇一二三四五å…七八ä¹', cjkSuffix);\n case 6 /* LOWER_ROMAN */:\n return createAdditiveCounter(value, 1, 3999, ROMAN_UPPER, 3 /* DECIMAL */, defaultSuffix).toLowerCase();\n case 7 /* UPPER_ROMAN */:\n return createAdditiveCounter(value, 1, 3999, ROMAN_UPPER, 3 /* DECIMAL */, defaultSuffix);\n case 8 /* LOWER_GREEK */:\n return createCounterStyleFromRange(value, 945, 969, false, defaultSuffix);\n case 9 /* LOWER_ALPHA */:\n return createCounterStyleFromRange(value, 97, 122, false, defaultSuffix);\n case 10 /* UPPER_ALPHA */:\n return createCounterStyleFromRange(value, 65, 90, false, defaultSuffix);\n case 11 /* ARABIC_INDIC */:\n return createCounterStyleFromRange(value, 1632, 1641, true, defaultSuffix);\n case 12 /* ARMENIAN */:\n case 49 /* UPPER_ARMENIAN */:\n return createAdditiveCounter(value, 1, 9999, ARMENIAN, 3 /* DECIMAL */, defaultSuffix);\n case 35 /* LOWER_ARMENIAN */:\n return createAdditiveCounter(value, 1, 9999, ARMENIAN, 3 /* DECIMAL */, defaultSuffix).toLowerCase();\n case 13 /* BENGALI */:\n return createCounterStyleFromRange(value, 2534, 2543, true, defaultSuffix);\n case 14 /* CAMBODIAN */:\n case 30 /* KHMER */:\n return createCounterStyleFromRange(value, 6112, 6121, true, defaultSuffix);\n case 15 /* CJK_EARTHLY_BRANCH */:\n return createCounterStyleFromSymbols(value, 'å丑寅å¯è¾°å·³åˆæœªç”³é…‰æˆŒäº¥', cjkSuffix);\n case 16 /* CJK_HEAVENLY_STEM */:\n return createCounterStyleFromSymbols(value, '甲乙丙ä¸æˆŠå·±åºšè¾›å£¬ç™¸', cjkSuffix);\n case 17 /* CJK_IDEOGRAPHIC */:\n case 48 /* TRAD_CHINESE_INFORMAL */:\n return createCJKCounter(value, '零一二三四五å…七八ä¹', CHINESE_INFORMAL_MULTIPLIERS, 'è² ', cjkSuffix, CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS | CJK_HUNDRED_COEFFICIENTS);\n case 47 /* TRAD_CHINESE_FORMAL */:\n return createCJKCounter(value, '零壹貳åƒè‚†ä¼é™¸æŸ’æŒçŽ–', CHINESE_FORMAL_MULTIPLIERS, 'è² ', cjkSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS | CJK_HUNDRED_COEFFICIENTS);\n case 42 /* SIMP_CHINESE_INFORMAL */:\n return createCJKCounter(value, '零一二三四五å…七八ä¹', CHINESE_INFORMAL_MULTIPLIERS, 'è´Ÿ', cjkSuffix, CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS | CJK_HUNDRED_COEFFICIENTS);\n case 41 /* SIMP_CHINESE_FORMAL */:\n return createCJKCounter(value, '零壹贰å肆ä¼é™†æŸ’æŒçŽ–', CHINESE_FORMAL_MULTIPLIERS, 'è´Ÿ', cjkSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS | CJK_HUNDRED_COEFFICIENTS);\n case 26 /* JAPANESE_INFORMAL */:\n return createCJKCounter(value, '〇一二三四五å…七八ä¹', 'å百åƒä¸‡', JAPANESE_NEGATIVE, cjkSuffix, 0);\n case 25 /* JAPANESE_FORMAL */:\n return createCJKCounter(value, '零壱å¼å‚å››ä¼å…七八ä¹', '拾百åƒä¸‡', JAPANESE_NEGATIVE, cjkSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS);\n case 31 /* KOREAN_HANGUL_FORMAL */:\n return createCJKCounter(value, 'ì˜ì¼ì´ì‚¼ì‚¬ì˜¤ìœ¡ì¹ 팔구', 'ì‹ë°±ì²œë§Œ', KOREAN_NEGATIVE, koreanSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS);\n case 33 /* KOREAN_HANJA_INFORMAL */:\n return createCJKCounter(value, '零一二三四五å…七八ä¹', 'å百åƒè¬', KOREAN_NEGATIVE, koreanSuffix, 0);\n case 32 /* KOREAN_HANJA_FORMAL */:\n return createCJKCounter(value, '零壹貳åƒå››äº”å…七八ä¹', '拾百åƒ', KOREAN_NEGATIVE, koreanSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS);\n case 18 /* DEVANAGARI */:\n return createCounterStyleFromRange(value, 0x966, 0x96f, true, defaultSuffix);\n case 20 /* GEORGIAN */:\n return createAdditiveCounter(value, 1, 19999, GEORGIAN, 3 /* DECIMAL */, defaultSuffix);\n case 21 /* GUJARATI */:\n return createCounterStyleFromRange(value, 0xae6, 0xaef, true, defaultSuffix);\n case 22 /* GURMUKHI */:\n return createCounterStyleFromRange(value, 0xa66, 0xa6f, true, defaultSuffix);\n case 22 /* HEBREW */:\n return createAdditiveCounter(value, 1, 10999, HEBREW, 3 /* DECIMAL */, defaultSuffix);\n case 23 /* HIRAGANA */:\n return createCounterStyleFromSymbols(value, 'ã‚ã„ã†ãˆãŠã‹ããã‘ã“ã•ã—ã™ã›ããŸã¡ã¤ã¦ã¨ãªã«ã¬ãã®ã¯ã²ãµã¸ã»ã¾ã¿ã‚€ã‚もやゆよらりるれã‚ã‚ã‚ã‚‘ã‚’ã‚“');\n case 24 /* HIRAGANA_IROHA */:\n return createCounterStyleFromSymbols(value, 'ã„ã‚ã¯ã«ã»ã¸ã¨ã¡ã‚Šã¬ã‚‹ã‚’ã‚ã‹ã‚ˆãŸã‚Œãã¤ããªã‚‰ã‚€ã†ã‚ã®ãŠãã‚„ã¾ã‘ãµã“ãˆã¦ã‚ã•ãゆã‚ã¿ã—ã‚‘ã²ã‚‚ã›ã™');\n case 27 /* KANNADA */:\n return createCounterStyleFromRange(value, 0xce6, 0xcef, true, defaultSuffix);\n case 28 /* KATAKANA */:\n return createCounterStyleFromSymbols(value, 'アイウエオカã‚クケコサシスセソタãƒãƒ„テトナニヌãƒãƒŽãƒãƒ’フヘホマミムメモヤユヨラリルレãƒãƒ¯ãƒ°ãƒ±ãƒ²ãƒ³', cjkSuffix);\n case 29 /* KATAKANA_IROHA */:\n return createCounterStyleFromSymbols(value, 'イãƒãƒãƒ‹ãƒ›ãƒ˜ãƒˆãƒãƒªãƒŒãƒ«ãƒ²ãƒ¯ã‚«ãƒ¨ã‚¿ãƒ¬ã‚½ãƒ„ãƒãƒŠãƒ©ãƒ ウヰノオクヤマケフコエテアサã‚ユメミシヱヒモセス', cjkSuffix);\n case 34 /* LAO */:\n return createCounterStyleFromRange(value, 0xed0, 0xed9, true, defaultSuffix);\n case 37 /* MONGOLIAN */:\n return createCounterStyleFromRange(value, 0x1810, 0x1819, true, defaultSuffix);\n case 38 /* MYANMAR */:\n return createCounterStyleFromRange(value, 0x1040, 0x1049, true, defaultSuffix);\n case 39 /* ORIYA */:\n return createCounterStyleFromRange(value, 0xb66, 0xb6f, true, defaultSuffix);\n case 40 /* PERSIAN */:\n return createCounterStyleFromRange(value, 0x6f0, 0x6f9, true, defaultSuffix);\n case 43 /* TAMIL */:\n return createCounterStyleFromRange(value, 0xbe6, 0xbef, true, defaultSuffix);\n case 44 /* TELUGU */:\n return createCounterStyleFromRange(value, 0xc66, 0xc6f, true, defaultSuffix);\n case 45 /* THAI */:\n return createCounterStyleFromRange(value, 0xe50, 0xe59, true, defaultSuffix);\n case 46 /* TIBETAN */:\n return createCounterStyleFromRange(value, 0xf20, 0xf29, true, defaultSuffix);\n case 3 /* DECIMAL */:\n default:\n return createCounterStyleFromRange(value, 48, 57, true, defaultSuffix);\n }\n };\n\n var IGNORE_ATTRIBUTE = 'data-html2canvas-ignore';\n var DocumentCloner = /** @class */ (function () {\n function DocumentCloner(context, element, options) {\n this.context = context;\n this.options = options;\n this.scrolledElements = [];\n this.referenceElement = element;\n this.counters = new CounterState();\n this.quoteDepth = 0;\n if (!element.ownerDocument) {\n throw new Error('Cloned element does not have an owner document');\n }\n this.documentElement = this.cloneNode(element.ownerDocument.documentElement, false);\n }\n DocumentCloner.prototype.toIFrame = function (ownerDocument, windowSize) {\n var _this = this;\n var iframe = createIFrameContainer(ownerDocument, windowSize);\n if (!iframe.contentWindow) {\n return Promise.reject(\"Unable to find iframe window\");\n }\n var scrollX = ownerDocument.defaultView.pageXOffset;\n var scrollY = ownerDocument.defaultView.pageYOffset;\n var cloneWindow = iframe.contentWindow;\n var documentClone = cloneWindow.document;\n /* Chrome doesn't detect relative background-images assigned in inline <style> sheets when fetched through getComputedStyle\n if window url is about:blank, we can assign the url to current by writing onto the document\n */\n var iframeLoad = iframeLoader(iframe).then(function () { return __awaiter(_this, void 0, void 0, function () {\n var onclone, referenceElement;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n this.scrolledElements.forEach(restoreNodeScroll);\n if (cloneWindow) {\n cloneWindow.scrollTo(windowSize.left, windowSize.top);\n if (/(iPad|iPhone|iPod)/g.test(navigator.userAgent) &&\n (cloneWindow.scrollY !== windowSize.top || cloneWindow.scrollX !== windowSize.left)) {\n this.context.logger.warn('Unable to restore scroll position for cloned document');\n this.context.windowBounds = this.context.windowBounds.add(cloneWindow.scrollX - windowSize.left, cloneWindow.scrollY - windowSize.top, 0, 0);\n }\n }\n onclone = this.options.onclone;\n referenceElement = this.clonedReferenceElement;\n if (typeof referenceElement === 'undefined') {\n return [2 /*return*/, Promise.reject(\"Error finding the \" + this.referenceElement.nodeName + \" in the cloned document\")];\n }\n if (!(documentClone.fonts && documentClone.fonts.ready)) return [3 /*break*/, 2];\n return [4 /*yield*/, documentClone.fonts.ready];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n if (!/(AppleWebKit)/g.test(navigator.userAgent)) return [3 /*break*/, 4];\n return [4 /*yield*/, imagesReady(documentClone)];\n case 3:\n _a.sent();\n _a.label = 4;\n case 4:\n if (typeof onclone === 'function') {\n return [2 /*return*/, Promise.resolve()\n .then(function () { return onclone(documentClone, referenceElement); })\n .then(function () { return iframe; })];\n }\n return [2 /*return*/, iframe];\n }\n });\n }); });\n documentClone.open();\n documentClone.write(serializeDoctype(document.doctype) + \"<html></html>\");\n // Chrome scrolls the parent document for some reason after the write to the cloned window???\n restoreOwnerScroll(this.referenceElement.ownerDocument, scrollX, scrollY);\n documentClone.replaceChild(documentClone.adoptNode(this.documentElement), documentClone.documentElement);\n documentClone.close();\n return iframeLoad;\n };\n DocumentCloner.prototype.createElementClone = function (node) {\n if (isDebugging(node, 2 /* CLONE */)) {\n debugger;\n }\n if (isCanvasElement(node)) {\n return this.createCanvasClone(node);\n }\n if (isVideoElement(node)) {\n return this.createVideoClone(node);\n }\n if (isStyleElement(node)) {\n return this.createStyleClone(node);\n }\n var clone = node.cloneNode(false);\n if (isImageElement(clone)) {\n if (isImageElement(node) && node.currentSrc && node.currentSrc !== node.src) {\n clone.src = node.currentSrc;\n clone.srcset = '';\n }\n if (clone.loading === 'lazy') {\n clone.loading = 'eager';\n }\n }\n if (isCustomElement(clone)) {\n return this.createCustomElementClone(clone);\n }\n return clone;\n };\n DocumentCloner.prototype.createCustomElementClone = function (node) {\n var clone = document.createElement('html2canvascustomelement');\n copyCSSStyles(node.style, clone);\n return clone;\n };\n DocumentCloner.prototype.createStyleClone = function (node) {\n try {\n var sheet = node.sheet;\n if (sheet && sheet.cssRules) {\n var css = [].slice.call(sheet.cssRules, 0).reduce(function (css, rule) {\n if (rule && typeof rule.cssText === 'string') {\n return css + rule.cssText;\n }\n return css;\n }, '');\n var style = node.cloneNode(false);\n style.textContent = css;\n return style;\n }\n }\n catch (e) {\n // accessing node.sheet.cssRules throws a DOMException\n this.context.logger.error('Unable to access cssRules property', e);\n if (e.name !== 'SecurityError') {\n throw e;\n }\n }\n return node.cloneNode(false);\n };\n DocumentCloner.prototype.createCanvasClone = function (canvas) {\n var _a;\n if (this.options.inlineImages && canvas.ownerDocument) {\n var img = canvas.ownerDocument.createElement('img');\n try {\n img.src = canvas.toDataURL();\n return img;\n }\n catch (e) {\n this.context.logger.info(\"Unable to inline canvas contents, canvas is tainted\", canvas);\n }\n }\n var clonedCanvas = canvas.cloneNode(false);\n try {\n clonedCanvas.width = canvas.width;\n clonedCanvas.height = canvas.height;\n var ctx = canvas.getContext('2d');\n var clonedCtx = clonedCanvas.getContext('2d');\n if (clonedCtx) {\n if (!this.options.allowTaint && ctx) {\n clonedCtx.putImageData(ctx.getImageData(0, 0, canvas.width, canvas.height), 0, 0);\n }\n else {\n var gl = (_a = canvas.getContext('webgl2')) !== null && _a !== void 0 ? _a : canvas.getContext('webgl');\n if (gl) {\n var attribs = gl.getContextAttributes();\n if ((attribs === null || attribs === void 0 ? void 0 : attribs.preserveDrawingBuffer) === false) {\n this.context.logger.warn('Unable to clone WebGL context as it has preserveDrawingBuffer=false', canvas);\n }\n }\n clonedCtx.drawImage(canvas, 0, 0);\n }\n }\n return clonedCanvas;\n }\n catch (e) {\n this.context.logger.info(\"Unable to clone canvas as it is tainted\", canvas);\n }\n return clonedCanvas;\n };\n DocumentCloner.prototype.createVideoClone = function (video) {\n var canvas = video.ownerDocument.createElement('canvas');\n canvas.width = video.offsetWidth;\n canvas.height = video.offsetHeight;\n var ctx = canvas.getContext('2d');\n try {\n if (ctx) {\n ctx.drawImage(video, 0, 0, canvas.width, canvas.height);\n if (!this.options.allowTaint) {\n ctx.getImageData(0, 0, canvas.width, canvas.height);\n }\n }\n return canvas;\n }\n catch (e) {\n this.context.logger.info(\"Unable to clone video as it is tainted\", video);\n }\n var blankCanvas = video.ownerDocument.createElement('canvas');\n blankCanvas.width = video.offsetWidth;\n blankCanvas.height = video.offsetHeight;\n return blankCanvas;\n };\n DocumentCloner.prototype.appendChildNode = function (clone, child, copyStyles) {\n if (!isElementNode(child) ||\n (!isScriptElement(child) &&\n !child.hasAttribute(IGNORE_ATTRIBUTE) &&\n (typeof this.options.ignoreElements !== 'function' || !this.options.ignoreElements(child)))) {\n if (!this.options.copyStyles || !isElementNode(child) || !isStyleElement(child)) {\n clone.appendChild(this.cloneNode(child, copyStyles));\n }\n }\n };\n DocumentCloner.prototype.cloneChildNodes = function (node, clone, copyStyles) {\n var _this = this;\n for (var child = node.shadowRoot ? node.shadowRoot.firstChild : node.firstChild; child; child = child.nextSibling) {\n if (isElementNode(child) && isSlotElement(child) && typeof child.assignedNodes === 'function') {\n var assignedNodes = child.assignedNodes();\n if (assignedNodes.length) {\n assignedNodes.forEach(function (assignedNode) { return _this.appendChildNode(clone, assignedNode, copyStyles); });\n }\n }\n else {\n this.appendChildNode(clone, child, copyStyles);\n }\n }\n };\n DocumentCloner.prototype.cloneNode = function (node, copyStyles) {\n if (isTextNode(node)) {\n return document.createTextNode(node.data);\n }\n if (!node.ownerDocument) {\n return node.cloneNode(false);\n }\n var window = node.ownerDocument.defaultView;\n if (window && isElementNode(node) && (isHTMLElementNode(node) || isSVGElementNode(node))) {\n var clone = this.createElementClone(node);\n clone.style.transitionProperty = 'none';\n var style = window.getComputedStyle(node);\n var styleBefore = window.getComputedStyle(node, ':before');\n var styleAfter = window.getComputedStyle(node, ':after');\n if (this.referenceElement === node && isHTMLElementNode(clone)) {\n this.clonedReferenceElement = clone;\n }\n if (isBodyElement(clone)) {\n createPseudoHideStyles(clone);\n }\n var counters = this.counters.parse(new CSSParsedCounterDeclaration(this.context, style));\n var before = this.resolvePseudoContent(node, clone, styleBefore, PseudoElementType.BEFORE);\n if (isCustomElement(node)) {\n copyStyles = true;\n }\n if (!isVideoElement(node)) {\n this.cloneChildNodes(node, clone, copyStyles);\n }\n if (before) {\n clone.insertBefore(before, clone.firstChild);\n }\n var after = this.resolvePseudoContent(node, clone, styleAfter, PseudoElementType.AFTER);\n if (after) {\n clone.appendChild(after);\n }\n this.counters.pop(counters);\n if ((style && (this.options.copyStyles || isSVGElementNode(node)) && !isIFrameElement(node)) ||\n copyStyles) {\n copyCSSStyles(style, clone);\n }\n if (node.scrollTop !== 0 || node.scrollLeft !== 0) {\n this.scrolledElements.push([clone, node.scrollLeft, node.scrollTop]);\n }\n if ((isTextareaElement(node) || isSelectElement(node)) &&\n (isTextareaElement(clone) || isSelectElement(clone))) {\n clone.value = node.value;\n }\n return clone;\n }\n return node.cloneNode(false);\n };\n DocumentCloner.prototype.resolvePseudoContent = function (node, clone, style, pseudoElt) {\n var _this = this;\n if (!style) {\n return;\n }\n var value = style.content;\n var document = clone.ownerDocument;\n if (!document || !value || value === 'none' || value === '-moz-alt-content' || style.display === 'none') {\n return;\n }\n this.counters.parse(new CSSParsedCounterDeclaration(this.context, style));\n var declaration = new CSSParsedPseudoDeclaration(this.context, style);\n var anonymousReplacedElement = document.createElement('html2canvaspseudoelement');\n copyCSSStyles(style, anonymousReplacedElement);\n declaration.content.forEach(function (token) {\n if (token.type === 0 /* STRING_TOKEN */) {\n anonymousReplacedElement.appendChild(document.createTextNode(token.value));\n }\n else if (token.type === 22 /* URL_TOKEN */) {\n var img = document.createElement('img');\n img.src = token.value;\n img.style.opacity = '1';\n anonymousReplacedElement.appendChild(img);\n }\n else if (token.type === 18 /* FUNCTION */) {\n if (token.name === 'attr') {\n var attr = token.values.filter(isIdentToken);\n if (attr.length) {\n anonymousReplacedElement.appendChild(document.createTextNode(node.getAttribute(attr[0].value) || ''));\n }\n }\n else if (token.name === 'counter') {\n var _a = token.values.filter(nonFunctionArgSeparator), counter = _a[0], counterStyle = _a[1];\n if (counter && isIdentToken(counter)) {\n var counterState = _this.counters.getCounterValue(counter.value);\n var counterType = counterStyle && isIdentToken(counterStyle)\n ? listStyleType.parse(_this.context, counterStyle.value)\n : 3 /* DECIMAL */;\n anonymousReplacedElement.appendChild(document.createTextNode(createCounterText(counterState, counterType, false)));\n }\n }\n else if (token.name === 'counters') {\n var _b = token.values.filter(nonFunctionArgSeparator), counter = _b[0], delim = _b[1], counterStyle = _b[2];\n if (counter && isIdentToken(counter)) {\n var counterStates = _this.counters.getCounterValues(counter.value);\n var counterType_1 = counterStyle && isIdentToken(counterStyle)\n ? listStyleType.parse(_this.context, counterStyle.value)\n : 3 /* DECIMAL */;\n var separator = delim && delim.type === 0 /* STRING_TOKEN */ ? delim.value : '';\n var text = counterStates\n .map(function (value) { return createCounterText(value, counterType_1, false); })\n .join(separator);\n anonymousReplacedElement.appendChild(document.createTextNode(text));\n }\n }\n else ;\n }\n else if (token.type === 20 /* IDENT_TOKEN */) {\n switch (token.value) {\n case 'open-quote':\n anonymousReplacedElement.appendChild(document.createTextNode(getQuote(declaration.quotes, _this.quoteDepth++, true)));\n break;\n case 'close-quote':\n anonymousReplacedElement.appendChild(document.createTextNode(getQuote(declaration.quotes, --_this.quoteDepth, false)));\n break;\n default:\n // safari doesn't parse string tokens correctly because of lack of quotes\n anonymousReplacedElement.appendChild(document.createTextNode(token.value));\n }\n }\n });\n anonymousReplacedElement.className = PSEUDO_HIDE_ELEMENT_CLASS_BEFORE + \" \" + PSEUDO_HIDE_ELEMENT_CLASS_AFTER;\n var newClassName = pseudoElt === PseudoElementType.BEFORE\n ? \" \" + PSEUDO_HIDE_ELEMENT_CLASS_BEFORE\n : \" \" + PSEUDO_HIDE_ELEMENT_CLASS_AFTER;\n if (isSVGElementNode(clone)) {\n clone.className.baseValue += newClassName;\n }\n else {\n clone.className += newClassName;\n }\n return anonymousReplacedElement;\n };\n DocumentCloner.destroy = function (container) {\n if (container.parentNode) {\n container.parentNode.removeChild(container);\n return true;\n }\n return false;\n };\n return DocumentCloner;\n }());\n var PseudoElementType;\n (function (PseudoElementType) {\n PseudoElementType[PseudoElementType[\"BEFORE\"] = 0] = \"BEFORE\";\n PseudoElementType[PseudoElementType[\"AFTER\"] = 1] = \"AFTER\";\n })(PseudoElementType || (PseudoElementType = {}));\n var createIFrameContainer = function (ownerDocument, bounds) {\n var cloneIframeContainer = ownerDocument.createElement('iframe');\n cloneIframeContainer.className = 'html2canvas-container';\n cloneIframeContainer.style.visibility = 'hidden';\n cloneIframeContainer.style.position = 'fixed';\n cloneIframeContainer.style.left = '-10000px';\n cloneIframeContainer.style.top = '0px';\n cloneIframeContainer.style.border = '0';\n cloneIframeContainer.width = bounds.width.toString();\n cloneIframeContainer.height = bounds.height.toString();\n cloneIframeContainer.scrolling = 'no'; // ios won't scroll without it\n cloneIframeContainer.setAttribute(IGNORE_ATTRIBUTE, 'true');\n ownerDocument.body.appendChild(cloneIframeContainer);\n return cloneIframeContainer;\n };\n var imageReady = function (img) {\n return new Promise(function (resolve) {\n if (img.complete) {\n resolve();\n return;\n }\n if (!img.src) {\n resolve();\n return;\n }\n img.onload = resolve;\n img.onerror = resolve;\n });\n };\n var imagesReady = function (document) {\n return Promise.all([].slice.call(document.images, 0).map(imageReady));\n };\n var iframeLoader = function (iframe) {\n return new Promise(function (resolve, reject) {\n var cloneWindow = iframe.contentWindow;\n if (!cloneWindow) {\n return reject(\"No window assigned for iframe\");\n }\n var documentClone = cloneWindow.document;\n cloneWindow.onload = iframe.onload = function () {\n cloneWindow.onload = iframe.onload = null;\n var interval = setInterval(function () {\n if (documentClone.body.childNodes.length > 0 && documentClone.readyState === 'complete') {\n clearInterval(interval);\n resolve(iframe);\n }\n }, 50);\n };\n });\n };\n var ignoredStyleProperties = [\n 'all',\n 'd',\n 'content' // Safari shows pseudoelements if content is set\n ];\n var copyCSSStyles = function (style, target) {\n // Edge does not provide value for cssText\n for (var i = style.length - 1; i >= 0; i--) {\n var property = style.item(i);\n if (ignoredStyleProperties.indexOf(property) === -1) {\n target.style.setProperty(property, style.getPropertyValue(property));\n }\n }\n return target;\n };\n var serializeDoctype = function (doctype) {\n var str = '';\n if (doctype) {\n str += '<!DOCTYPE ';\n if (doctype.name) {\n str += doctype.name;\n }\n if (doctype.internalSubset) {\n str += doctype.internalSubset;\n }\n if (doctype.publicId) {\n str += \"\\\"\" + doctype.publicId + \"\\\"\";\n }\n if (doctype.systemId) {\n str += \"\\\"\" + doctype.systemId + \"\\\"\";\n }\n str += '>';\n }\n return str;\n };\n var restoreOwnerScroll = function (ownerDocument, x, y) {\n if (ownerDocument &&\n ownerDocument.defaultView &&\n (x !== ownerDocument.defaultView.pageXOffset || y !== ownerDocument.defaultView.pageYOffset)) {\n ownerDocument.defaultView.scrollTo(x, y);\n }\n };\n var restoreNodeScroll = function (_a) {\n var element = _a[0], x = _a[1], y = _a[2];\n element.scrollLeft = x;\n element.scrollTop = y;\n };\n var PSEUDO_BEFORE = ':before';\n var PSEUDO_AFTER = ':after';\n var PSEUDO_HIDE_ELEMENT_CLASS_BEFORE = '___html2canvas___pseudoelement_before';\n var PSEUDO_HIDE_ELEMENT_CLASS_AFTER = '___html2canvas___pseudoelement_after';\n var PSEUDO_HIDE_ELEMENT_STYLE = \"{\\n content: \\\"\\\" !important;\\n display: none !important;\\n}\";\n var createPseudoHideStyles = function (body) {\n createStyles(body, \".\" + PSEUDO_HIDE_ELEMENT_CLASS_BEFORE + PSEUDO_BEFORE + PSEUDO_HIDE_ELEMENT_STYLE + \"\\n .\" + PSEUDO_HIDE_ELEMENT_CLASS_AFTER + PSEUDO_AFTER + PSEUDO_HIDE_ELEMENT_STYLE);\n };\n var createStyles = function (body, styles) {\n var document = body.ownerDocument;\n if (document) {\n var style = document.createElement('style');\n style.textContent = styles;\n body.appendChild(style);\n }\n };\n\n var CacheStorage = /** @class */ (function () {\n function CacheStorage() {\n }\n CacheStorage.getOrigin = function (url) {\n var link = CacheStorage._link;\n if (!link) {\n return 'about:blank';\n }\n link.href = url;\n link.href = link.href; // IE9, LOL! - http://jsfiddle.net/niklasvh/2e48b/\n return link.protocol + link.hostname + link.port;\n };\n CacheStorage.isSameOrigin = function (src) {\n return CacheStorage.getOrigin(src) === CacheStorage._origin;\n };\n CacheStorage.setContext = function (window) {\n CacheStorage._link = window.document.createElement('a');\n CacheStorage._origin = CacheStorage.getOrigin(window.location.href);\n };\n CacheStorage._origin = 'about:blank';\n return CacheStorage;\n }());\n var Cache = /** @class */ (function () {\n function Cache(context, _options) {\n this.context = context;\n this._options = _options;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n this._cache = {};\n }\n Cache.prototype.addImage = function (src) {\n var result = Promise.resolve();\n if (this.has(src)) {\n return result;\n }\n if (isBlobImage(src) || isRenderable(src)) {\n (this._cache[src] = this.loadImage(src)).catch(function () {\n // prevent unhandled rejection\n });\n return result;\n }\n return result;\n };\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Cache.prototype.match = function (src) {\n return this._cache[src];\n };\n Cache.prototype.loadImage = function (key) {\n return __awaiter(this, void 0, void 0, function () {\n var isSameOrigin, useCORS, useProxy, src;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n isSameOrigin = CacheStorage.isSameOrigin(key);\n useCORS = !isInlineImage(key) && this._options.useCORS === true && FEATURES.SUPPORT_CORS_IMAGES && !isSameOrigin;\n useProxy = !isInlineImage(key) &&\n !isSameOrigin &&\n !isBlobImage(key) &&\n typeof this._options.proxy === 'string' &&\n FEATURES.SUPPORT_CORS_XHR &&\n !useCORS;\n if (!isSameOrigin &&\n this._options.allowTaint === false &&\n !isInlineImage(key) &&\n !isBlobImage(key) &&\n !useProxy &&\n !useCORS) {\n return [2 /*return*/];\n }\n src = key;\n if (!useProxy) return [3 /*break*/, 2];\n return [4 /*yield*/, this.proxy(src)];\n case 1:\n src = _a.sent();\n _a.label = 2;\n case 2:\n this.context.logger.debug(\"Added image \" + key.substring(0, 256));\n return [4 /*yield*/, new Promise(function (resolve, reject) {\n var img = new Image();\n img.onload = function () { return resolve(img); };\n img.onerror = reject;\n //ios safari 10.3 taints canvas with data urls unless crossOrigin is set to anonymous\n if (isInlineBase64Image(src) || useCORS) {\n img.crossOrigin = 'anonymous';\n }\n img.src = src;\n if (img.complete === true) {\n // Inline XML images may fail to parse, throwing an Error later on\n setTimeout(function () { return resolve(img); }, 500);\n }\n if (_this._options.imageTimeout > 0) {\n setTimeout(function () { return reject(\"Timed out (\" + _this._options.imageTimeout + \"ms) loading image\"); }, _this._options.imageTimeout);\n }\n })];\n case 3: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n Cache.prototype.has = function (key) {\n return typeof this._cache[key] !== 'undefined';\n };\n Cache.prototype.keys = function () {\n return Promise.resolve(Object.keys(this._cache));\n };\n Cache.prototype.proxy = function (src) {\n var _this = this;\n var proxy = this._options.proxy;\n if (!proxy) {\n throw new Error('No proxy defined');\n }\n var key = src.substring(0, 256);\n return new Promise(function (resolve, reject) {\n var responseType = FEATURES.SUPPORT_RESPONSE_TYPE ? 'blob' : 'text';\n var xhr = new XMLHttpRequest();\n xhr.onload = function () {\n if (xhr.status === 200) {\n if (responseType === 'text') {\n resolve(xhr.response);\n }\n else {\n var reader_1 = new FileReader();\n reader_1.addEventListener('load', function () { return resolve(reader_1.result); }, false);\n reader_1.addEventListener('error', function (e) { return reject(e); }, false);\n reader_1.readAsDataURL(xhr.response);\n }\n }\n else {\n reject(\"Failed to proxy resource \" + key + \" with status code \" + xhr.status);\n }\n };\n xhr.onerror = reject;\n var queryString = proxy.indexOf('?') > -1 ? '&' : '?';\n xhr.open('GET', \"\" + proxy + queryString + \"url=\" + encodeURIComponent(src) + \"&responseType=\" + responseType);\n if (responseType !== 'text' && xhr instanceof XMLHttpRequest) {\n xhr.responseType = responseType;\n }\n if (_this._options.imageTimeout) {\n var timeout_1 = _this._options.imageTimeout;\n xhr.timeout = timeout_1;\n xhr.ontimeout = function () { return reject(\"Timed out (\" + timeout_1 + \"ms) proxying \" + key); };\n }\n xhr.send();\n });\n };\n return Cache;\n }());\n var INLINE_SVG = /^data:image\\/svg\\+xml/i;\n var INLINE_BASE64 = /^data:image\\/.*;base64,/i;\n var INLINE_IMG = /^data:image\\/.*/i;\n var isRenderable = function (src) { return FEATURES.SUPPORT_SVG_DRAWING || !isSVG(src); };\n var isInlineImage = function (src) { return INLINE_IMG.test(src); };\n var isInlineBase64Image = function (src) { return INLINE_BASE64.test(src); };\n var isBlobImage = function (src) { return src.substr(0, 4) === 'blob'; };\n var isSVG = function (src) { return src.substr(-3).toLowerCase() === 'svg' || INLINE_SVG.test(src); };\n\n var Vector = /** @class */ (function () {\n function Vector(x, y) {\n this.type = 0 /* VECTOR */;\n this.x = x;\n this.y = y;\n }\n Vector.prototype.add = function (deltaX, deltaY) {\n return new Vector(this.x + deltaX, this.y + deltaY);\n };\n return Vector;\n }());\n\n var lerp = function (a, b, t) {\n return new Vector(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t);\n };\n var BezierCurve = /** @class */ (function () {\n function BezierCurve(start, startControl, endControl, end) {\n this.type = 1 /* BEZIER_CURVE */;\n this.start = start;\n this.startControl = startControl;\n this.endControl = endControl;\n this.end = end;\n }\n BezierCurve.prototype.subdivide = function (t, firstHalf) {\n var ab = lerp(this.start, this.startControl, t);\n var bc = lerp(this.startControl, this.endControl, t);\n var cd = lerp(this.endControl, this.end, t);\n var abbc = lerp(ab, bc, t);\n var bccd = lerp(bc, cd, t);\n var dest = lerp(abbc, bccd, t);\n return firstHalf ? new BezierCurve(this.start, ab, abbc, dest) : new BezierCurve(dest, bccd, cd, this.end);\n };\n BezierCurve.prototype.add = function (deltaX, deltaY) {\n return new BezierCurve(this.start.add(deltaX, deltaY), this.startControl.add(deltaX, deltaY), this.endControl.add(deltaX, deltaY), this.end.add(deltaX, deltaY));\n };\n BezierCurve.prototype.reverse = function () {\n return new BezierCurve(this.end, this.endControl, this.startControl, this.start);\n };\n return BezierCurve;\n }());\n var isBezierCurve = function (path) { return path.type === 1 /* BEZIER_CURVE */; };\n\n var BoundCurves = /** @class */ (function () {\n function BoundCurves(element) {\n var styles = element.styles;\n var bounds = element.bounds;\n var _a = getAbsoluteValueForTuple(styles.borderTopLeftRadius, bounds.width, bounds.height), tlh = _a[0], tlv = _a[1];\n var _b = getAbsoluteValueForTuple(styles.borderTopRightRadius, bounds.width, bounds.height), trh = _b[0], trv = _b[1];\n var _c = getAbsoluteValueForTuple(styles.borderBottomRightRadius, bounds.width, bounds.height), brh = _c[0], brv = _c[1];\n var _d = getAbsoluteValueForTuple(styles.borderBottomLeftRadius, bounds.width, bounds.height), blh = _d[0], blv = _d[1];\n var factors = [];\n factors.push((tlh + trh) / bounds.width);\n factors.push((blh + brh) / bounds.width);\n factors.push((tlv + blv) / bounds.height);\n factors.push((trv + brv) / bounds.height);\n var maxFactor = Math.max.apply(Math, factors);\n if (maxFactor > 1) {\n tlh /= maxFactor;\n tlv /= maxFactor;\n trh /= maxFactor;\n trv /= maxFactor;\n brh /= maxFactor;\n brv /= maxFactor;\n blh /= maxFactor;\n blv /= maxFactor;\n }\n var topWidth = bounds.width - trh;\n var rightHeight = bounds.height - brv;\n var bottomWidth = bounds.width - brh;\n var leftHeight = bounds.height - blv;\n var borderTopWidth = styles.borderTopWidth;\n var borderRightWidth = styles.borderRightWidth;\n var borderBottomWidth = styles.borderBottomWidth;\n var borderLeftWidth = styles.borderLeftWidth;\n var paddingTop = getAbsoluteValue(styles.paddingTop, element.bounds.width);\n var paddingRight = getAbsoluteValue(styles.paddingRight, element.bounds.width);\n var paddingBottom = getAbsoluteValue(styles.paddingBottom, element.bounds.width);\n var paddingLeft = getAbsoluteValue(styles.paddingLeft, element.bounds.width);\n this.topLeftBorderDoubleOuterBox =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left + borderLeftWidth / 3, bounds.top + borderTopWidth / 3, tlh - borderLeftWidth / 3, tlv - borderTopWidth / 3, CORNER.TOP_LEFT)\n : new Vector(bounds.left + borderLeftWidth / 3, bounds.top + borderTopWidth / 3);\n this.topRightBorderDoubleOuterBox =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left + topWidth, bounds.top + borderTopWidth / 3, trh - borderRightWidth / 3, trv - borderTopWidth / 3, CORNER.TOP_RIGHT)\n : new Vector(bounds.left + bounds.width - borderRightWidth / 3, bounds.top + borderTopWidth / 3);\n this.bottomRightBorderDoubleOuterBox =\n brh > 0 || brv > 0\n ? getCurvePoints(bounds.left + bottomWidth, bounds.top + rightHeight, brh - borderRightWidth / 3, brv - borderBottomWidth / 3, CORNER.BOTTOM_RIGHT)\n : new Vector(bounds.left + bounds.width - borderRightWidth / 3, bounds.top + bounds.height - borderBottomWidth / 3);\n this.bottomLeftBorderDoubleOuterBox =\n blh > 0 || blv > 0\n ? getCurvePoints(bounds.left + borderLeftWidth / 3, bounds.top + leftHeight, blh - borderLeftWidth / 3, blv - borderBottomWidth / 3, CORNER.BOTTOM_LEFT)\n : new Vector(bounds.left + borderLeftWidth / 3, bounds.top + bounds.height - borderBottomWidth / 3);\n this.topLeftBorderDoubleInnerBox =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left + (borderLeftWidth * 2) / 3, bounds.top + (borderTopWidth * 2) / 3, tlh - (borderLeftWidth * 2) / 3, tlv - (borderTopWidth * 2) / 3, CORNER.TOP_LEFT)\n : new Vector(bounds.left + (borderLeftWidth * 2) / 3, bounds.top + (borderTopWidth * 2) / 3);\n this.topRightBorderDoubleInnerBox =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left + topWidth, bounds.top + (borderTopWidth * 2) / 3, trh - (borderRightWidth * 2) / 3, trv - (borderTopWidth * 2) / 3, CORNER.TOP_RIGHT)\n : new Vector(bounds.left + bounds.width - (borderRightWidth * 2) / 3, bounds.top + (borderTopWidth * 2) / 3);\n this.bottomRightBorderDoubleInnerBox =\n brh > 0 || brv > 0\n ? getCurvePoints(bounds.left + bottomWidth, bounds.top + rightHeight, brh - (borderRightWidth * 2) / 3, brv - (borderBottomWidth * 2) / 3, CORNER.BOTTOM_RIGHT)\n : new Vector(bounds.left + bounds.width - (borderRightWidth * 2) / 3, bounds.top + bounds.height - (borderBottomWidth * 2) / 3);\n this.bottomLeftBorderDoubleInnerBox =\n blh > 0 || blv > 0\n ? getCurvePoints(bounds.left + (borderLeftWidth * 2) / 3, bounds.top + leftHeight, blh - (borderLeftWidth * 2) / 3, blv - (borderBottomWidth * 2) / 3, CORNER.BOTTOM_LEFT)\n : new Vector(bounds.left + (borderLeftWidth * 2) / 3, bounds.top + bounds.height - (borderBottomWidth * 2) / 3);\n this.topLeftBorderStroke =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left + borderLeftWidth / 2, bounds.top + borderTopWidth / 2, tlh - borderLeftWidth / 2, tlv - borderTopWidth / 2, CORNER.TOP_LEFT)\n : new Vector(bounds.left + borderLeftWidth / 2, bounds.top + borderTopWidth / 2);\n this.topRightBorderStroke =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left + topWidth, bounds.top + borderTopWidth / 2, trh - borderRightWidth / 2, trv - borderTopWidth / 2, CORNER.TOP_RIGHT)\n : new Vector(bounds.left + bounds.width - borderRightWidth / 2, bounds.top + borderTopWidth / 2);\n this.bottomRightBorderStroke =\n brh > 0 || brv > 0\n ? getCurvePoints(bounds.left + bottomWidth, bounds.top + rightHeight, brh - borderRightWidth / 2, brv - borderBottomWidth / 2, CORNER.BOTTOM_RIGHT)\n : new Vector(bounds.left + bounds.width - borderRightWidth / 2, bounds.top + bounds.height - borderBottomWidth / 2);\n this.bottomLeftBorderStroke =\n blh > 0 || blv > 0\n ? getCurvePoints(bounds.left + borderLeftWidth / 2, bounds.top + leftHeight, blh - borderLeftWidth / 2, blv - borderBottomWidth / 2, CORNER.BOTTOM_LEFT)\n : new Vector(bounds.left + borderLeftWidth / 2, bounds.top + bounds.height - borderBottomWidth / 2);\n this.topLeftBorderBox =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left, bounds.top, tlh, tlv, CORNER.TOP_LEFT)\n : new Vector(bounds.left, bounds.top);\n this.topRightBorderBox =\n trh > 0 || trv > 0\n ? getCurvePoints(bounds.left + topWidth, bounds.top, trh, trv, CORNER.TOP_RIGHT)\n : new Vector(bounds.left + bounds.width, bounds.top);\n this.bottomRightBorderBox =\n brh > 0 || brv > 0\n ? getCurvePoints(bounds.left + bottomWidth, bounds.top + rightHeight, brh, brv, CORNER.BOTTOM_RIGHT)\n : new Vector(bounds.left + bounds.width, bounds.top + bounds.height);\n this.bottomLeftBorderBox =\n blh > 0 || blv > 0\n ? getCurvePoints(bounds.left, bounds.top + leftHeight, blh, blv, CORNER.BOTTOM_LEFT)\n : new Vector(bounds.left, bounds.top + bounds.height);\n this.topLeftPaddingBox =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left + borderLeftWidth, bounds.top + borderTopWidth, Math.max(0, tlh - borderLeftWidth), Math.max(0, tlv - borderTopWidth), CORNER.TOP_LEFT)\n : new Vector(bounds.left + borderLeftWidth, bounds.top + borderTopWidth);\n this.topRightPaddingBox =\n trh > 0 || trv > 0\n ? getCurvePoints(bounds.left + Math.min(topWidth, bounds.width - borderRightWidth), bounds.top + borderTopWidth, topWidth > bounds.width + borderRightWidth ? 0 : Math.max(0, trh - borderRightWidth), Math.max(0, trv - borderTopWidth), CORNER.TOP_RIGHT)\n : new Vector(bounds.left + bounds.width - borderRightWidth, bounds.top + borderTopWidth);\n this.bottomRightPaddingBox =\n brh > 0 || brv > 0\n ? getCurvePoints(bounds.left + Math.min(bottomWidth, bounds.width - borderLeftWidth), bounds.top + Math.min(rightHeight, bounds.height - borderBottomWidth), Math.max(0, brh - borderRightWidth), Math.max(0, brv - borderBottomWidth), CORNER.BOTTOM_RIGHT)\n : new Vector(bounds.left + bounds.width - borderRightWidth, bounds.top + bounds.height - borderBottomWidth);\n this.bottomLeftPaddingBox =\n blh > 0 || blv > 0\n ? getCurvePoints(bounds.left + borderLeftWidth, bounds.top + Math.min(leftHeight, bounds.height - borderBottomWidth), Math.max(0, blh - borderLeftWidth), Math.max(0, blv - borderBottomWidth), CORNER.BOTTOM_LEFT)\n : new Vector(bounds.left + borderLeftWidth, bounds.top + bounds.height - borderBottomWidth);\n this.topLeftContentBox =\n tlh > 0 || tlv > 0\n ? getCurvePoints(bounds.left + borderLeftWidth + paddingLeft, bounds.top + borderTopWidth + paddingTop, Math.max(0, tlh - (borderLeftWidth + paddingLeft)), Math.max(0, tlv - (borderTopWidth + paddingTop)), CORNER.TOP_LEFT)\n : new Vector(bounds.left + borderLeftWidth + paddingLeft, bounds.top + borderTopWidth + paddingTop);\n this.topRightContentBox =\n trh > 0 || trv > 0\n ? getCurvePoints(bounds.left + Math.min(topWidth, bounds.width + borderLeftWidth + paddingLeft), bounds.top + borderTopWidth + paddingTop, topWidth > bounds.width + borderLeftWidth + paddingLeft ? 0 : trh - borderLeftWidth + paddingLeft, trv - (borderTopWidth + paddingTop), CORNER.TOP_RIGHT)\n : new Vector(bounds.left + bounds.width - (borderRightWidth + paddingRight), bounds.top + borderTopWidth + paddingTop);\n this.bottomRightContentBox =\n brh > 0 || brv > 0\n ? getCurvePoints(bounds.left + Math.min(bottomWidth, bounds.width - (borderLeftWidth + paddingLeft)), bounds.top + Math.min(rightHeight, bounds.height + borderTopWidth + paddingTop), Math.max(0, brh - (borderRightWidth + paddingRight)), brv - (borderBottomWidth + paddingBottom), CORNER.BOTTOM_RIGHT)\n : new Vector(bounds.left + bounds.width - (borderRightWidth + paddingRight), bounds.top + bounds.height - (borderBottomWidth + paddingBottom));\n this.bottomLeftContentBox =\n blh > 0 || blv > 0\n ? getCurvePoints(bounds.left + borderLeftWidth + paddingLeft, bounds.top + leftHeight, Math.max(0, blh - (borderLeftWidth + paddingLeft)), blv - (borderBottomWidth + paddingBottom), CORNER.BOTTOM_LEFT)\n : new Vector(bounds.left + borderLeftWidth + paddingLeft, bounds.top + bounds.height - (borderBottomWidth + paddingBottom));\n }\n return BoundCurves;\n }());\n var CORNER;\n (function (CORNER) {\n CORNER[CORNER[\"TOP_LEFT\"] = 0] = \"TOP_LEFT\";\n CORNER[CORNER[\"TOP_RIGHT\"] = 1] = \"TOP_RIGHT\";\n CORNER[CORNER[\"BOTTOM_RIGHT\"] = 2] = \"BOTTOM_RIGHT\";\n CORNER[CORNER[\"BOTTOM_LEFT\"] = 3] = \"BOTTOM_LEFT\";\n })(CORNER || (CORNER = {}));\n var getCurvePoints = function (x, y, r1, r2, position) {\n var kappa = 4 * ((Math.sqrt(2) - 1) / 3);\n var ox = r1 * kappa; // control point offset horizontal\n var oy = r2 * kappa; // control point offset vertical\n var xm = x + r1; // x-middle\n var ym = y + r2; // y-middle\n switch (position) {\n case CORNER.TOP_LEFT:\n return new BezierCurve(new Vector(x, ym), new Vector(x, ym - oy), new Vector(xm - ox, y), new Vector(xm, y));\n case CORNER.TOP_RIGHT:\n return new BezierCurve(new Vector(x, y), new Vector(x + ox, y), new Vector(xm, ym - oy), new Vector(xm, ym));\n case CORNER.BOTTOM_RIGHT:\n return new BezierCurve(new Vector(xm, y), new Vector(xm, y + oy), new Vector(x + ox, ym), new Vector(x, ym));\n case CORNER.BOTTOM_LEFT:\n default:\n return new BezierCurve(new Vector(xm, ym), new Vector(xm - ox, ym), new Vector(x, y + oy), new Vector(x, y));\n }\n };\n var calculateBorderBoxPath = function (curves) {\n return [curves.topLeftBorderBox, curves.topRightBorderBox, curves.bottomRightBorderBox, curves.bottomLeftBorderBox];\n };\n var calculateContentBoxPath = function (curves) {\n return [\n curves.topLeftContentBox,\n curves.topRightContentBox,\n curves.bottomRightContentBox,\n curves.bottomLeftContentBox\n ];\n };\n var calculatePaddingBoxPath = function (curves) {\n return [\n curves.topLeftPaddingBox,\n curves.topRightPaddingBox,\n curves.bottomRightPaddingBox,\n curves.bottomLeftPaddingBox\n ];\n };\n\n var TransformEffect = /** @class */ (function () {\n function TransformEffect(offsetX, offsetY, matrix) {\n this.offsetX = offsetX;\n this.offsetY = offsetY;\n this.matrix = matrix;\n this.type = 0 /* TRANSFORM */;\n this.target = 2 /* BACKGROUND_BORDERS */ | 4 /* CONTENT */;\n }\n return TransformEffect;\n }());\n var ClipEffect = /** @class */ (function () {\n function ClipEffect(path, target) {\n this.path = path;\n this.target = target;\n this.type = 1 /* CLIP */;\n }\n return ClipEffect;\n }());\n var OpacityEffect = /** @class */ (function () {\n function OpacityEffect(opacity) {\n this.opacity = opacity;\n this.type = 2 /* OPACITY */;\n this.target = 2 /* BACKGROUND_BORDERS */ | 4 /* CONTENT */;\n }\n return OpacityEffect;\n }());\n var isTransformEffect = function (effect) {\n return effect.type === 0 /* TRANSFORM */;\n };\n var isClipEffect = function (effect) { return effect.type === 1 /* CLIP */; };\n var isOpacityEffect = function (effect) { return effect.type === 2 /* OPACITY */; };\n\n var equalPath = function (a, b) {\n if (a.length === b.length) {\n return a.some(function (v, i) { return v === b[i]; });\n }\n return false;\n };\n var transformPath = function (path, deltaX, deltaY, deltaW, deltaH) {\n return path.map(function (point, index) {\n switch (index) {\n case 0:\n return point.add(deltaX, deltaY);\n case 1:\n return point.add(deltaX + deltaW, deltaY);\n case 2:\n return point.add(deltaX + deltaW, deltaY + deltaH);\n case 3:\n return point.add(deltaX, deltaY + deltaH);\n }\n return point;\n });\n };\n\n var StackingContext = /** @class */ (function () {\n function StackingContext(container) {\n this.element = container;\n this.inlineLevel = [];\n this.nonInlineLevel = [];\n this.negativeZIndex = [];\n this.zeroOrAutoZIndexOrTransformedOrOpacity = [];\n this.positiveZIndex = [];\n this.nonPositionedFloats = [];\n this.nonPositionedInlineLevel = [];\n }\n return StackingContext;\n }());\n var ElementPaint = /** @class */ (function () {\n function ElementPaint(container, parent) {\n this.container = container;\n this.parent = parent;\n this.effects = [];\n this.curves = new BoundCurves(this.container);\n if (this.container.styles.opacity < 1) {\n this.effects.push(new OpacityEffect(this.container.styles.opacity));\n }\n if (this.container.styles.transform !== null) {\n var offsetX = this.container.bounds.left + this.container.styles.transformOrigin[0].number;\n var offsetY = this.container.bounds.top + this.container.styles.transformOrigin[1].number;\n var matrix = this.container.styles.transform;\n this.effects.push(new TransformEffect(offsetX, offsetY, matrix));\n }\n if (this.container.styles.overflowX !== 0 /* VISIBLE */) {\n var borderBox = calculateBorderBoxPath(this.curves);\n var paddingBox = calculatePaddingBoxPath(this.curves);\n if (equalPath(borderBox, paddingBox)) {\n this.effects.push(new ClipEffect(borderBox, 2 /* BACKGROUND_BORDERS */ | 4 /* CONTENT */));\n }\n else {\n this.effects.push(new ClipEffect(borderBox, 2 /* BACKGROUND_BORDERS */));\n this.effects.push(new ClipEffect(paddingBox, 4 /* CONTENT */));\n }\n }\n }\n ElementPaint.prototype.getEffects = function (target) {\n var inFlow = [2 /* ABSOLUTE */, 3 /* FIXED */].indexOf(this.container.styles.position) === -1;\n var parent = this.parent;\n var effects = this.effects.slice(0);\n while (parent) {\n var croplessEffects = parent.effects.filter(function (effect) { return !isClipEffect(effect); });\n if (inFlow || parent.container.styles.position !== 0 /* STATIC */ || !parent.parent) {\n effects.unshift.apply(effects, croplessEffects);\n inFlow = [2 /* ABSOLUTE */, 3 /* FIXED */].indexOf(parent.container.styles.position) === -1;\n if (parent.container.styles.overflowX !== 0 /* VISIBLE */) {\n var borderBox = calculateBorderBoxPath(parent.curves);\n var paddingBox = calculatePaddingBoxPath(parent.curves);\n if (!equalPath(borderBox, paddingBox)) {\n effects.unshift(new ClipEffect(paddingBox, 2 /* BACKGROUND_BORDERS */ | 4 /* CONTENT */));\n }\n }\n }\n else {\n effects.unshift.apply(effects, croplessEffects);\n }\n parent = parent.parent;\n }\n return effects.filter(function (effect) { return contains(effect.target, target); });\n };\n return ElementPaint;\n }());\n var parseStackTree = function (parent, stackingContext, realStackingContext, listItems) {\n parent.container.elements.forEach(function (child) {\n var treatAsRealStackingContext = contains(child.flags, 4 /* CREATES_REAL_STACKING_CONTEXT */);\n var createsStackingContext = contains(child.flags, 2 /* CREATES_STACKING_CONTEXT */);\n var paintContainer = new ElementPaint(child, parent);\n if (contains(child.styles.display, 2048 /* LIST_ITEM */)) {\n listItems.push(paintContainer);\n }\n var listOwnerItems = contains(child.flags, 8 /* IS_LIST_OWNER */) ? [] : listItems;\n if (treatAsRealStackingContext || createsStackingContext) {\n var parentStack = treatAsRealStackingContext || child.styles.isPositioned() ? realStackingContext : stackingContext;\n var stack = new StackingContext(paintContainer);\n if (child.styles.isPositioned() || child.styles.opacity < 1 || child.styles.isTransformed()) {\n var order_1 = child.styles.zIndex.order;\n if (order_1 < 0) {\n var index_1 = 0;\n parentStack.negativeZIndex.some(function (current, i) {\n if (order_1 > current.element.container.styles.zIndex.order) {\n index_1 = i;\n return false;\n }\n else if (index_1 > 0) {\n return true;\n }\n return false;\n });\n parentStack.negativeZIndex.splice(index_1, 0, stack);\n }\n else if (order_1 > 0) {\n var index_2 = 0;\n parentStack.positiveZIndex.some(function (current, i) {\n if (order_1 >= current.element.container.styles.zIndex.order) {\n index_2 = i + 1;\n return false;\n }\n else if (index_2 > 0) {\n return true;\n }\n return false;\n });\n parentStack.positiveZIndex.splice(index_2, 0, stack);\n }\n else {\n parentStack.zeroOrAutoZIndexOrTransformedOrOpacity.push(stack);\n }\n }\n else {\n if (child.styles.isFloating()) {\n parentStack.nonPositionedFloats.push(stack);\n }\n else {\n parentStack.nonPositionedInlineLevel.push(stack);\n }\n }\n parseStackTree(paintContainer, stack, treatAsRealStackingContext ? stack : realStackingContext, listOwnerItems);\n }\n else {\n if (child.styles.isInlineLevel()) {\n stackingContext.inlineLevel.push(paintContainer);\n }\n else {\n stackingContext.nonInlineLevel.push(paintContainer);\n }\n parseStackTree(paintContainer, stackingContext, realStackingContext, listOwnerItems);\n }\n if (contains(child.flags, 8 /* IS_LIST_OWNER */)) {\n processListItems(child, listOwnerItems);\n }\n });\n };\n var processListItems = function (owner, elements) {\n var numbering = owner instanceof OLElementContainer ? owner.start : 1;\n var reversed = owner instanceof OLElementContainer ? owner.reversed : false;\n for (var i = 0; i < elements.length; i++) {\n var item = elements[i];\n if (item.container instanceof LIElementContainer &&\n typeof item.container.value === 'number' &&\n item.container.value !== 0) {\n numbering = item.container.value;\n }\n item.listValue = createCounterText(numbering, item.container.styles.listStyleType, true);\n numbering += reversed ? -1 : 1;\n }\n };\n var parseStackingContexts = function (container) {\n var paintContainer = new ElementPaint(container, null);\n var root = new StackingContext(paintContainer);\n var listItems = [];\n parseStackTree(paintContainer, root, root, listItems);\n processListItems(paintContainer.container, listItems);\n return root;\n };\n\n var parsePathForBorder = function (curves, borderSide) {\n switch (borderSide) {\n case 0:\n return createPathFromCurves(curves.topLeftBorderBox, curves.topLeftPaddingBox, curves.topRightBorderBox, curves.topRightPaddingBox);\n case 1:\n return createPathFromCurves(curves.topRightBorderBox, curves.topRightPaddingBox, curves.bottomRightBorderBox, curves.bottomRightPaddingBox);\n case 2:\n return createPathFromCurves(curves.bottomRightBorderBox, curves.bottomRightPaddingBox, curves.bottomLeftBorderBox, curves.bottomLeftPaddingBox);\n case 3:\n default:\n return createPathFromCurves(curves.bottomLeftBorderBox, curves.bottomLeftPaddingBox, curves.topLeftBorderBox, curves.topLeftPaddingBox);\n }\n };\n var parsePathForBorderDoubleOuter = function (curves, borderSide) {\n switch (borderSide) {\n case 0:\n return createPathFromCurves(curves.topLeftBorderBox, curves.topLeftBorderDoubleOuterBox, curves.topRightBorderBox, curves.topRightBorderDoubleOuterBox);\n case 1:\n return createPathFromCurves(curves.topRightBorderBox, curves.topRightBorderDoubleOuterBox, curves.bottomRightBorderBox, curves.bottomRightBorderDoubleOuterBox);\n case 2:\n return createPathFromCurves(curves.bottomRightBorderBox, curves.bottomRightBorderDoubleOuterBox, curves.bottomLeftBorderBox, curves.bottomLeftBorderDoubleOuterBox);\n case 3:\n default:\n return createPathFromCurves(curves.bottomLeftBorderBox, curves.bottomLeftBorderDoubleOuterBox, curves.topLeftBorderBox, curves.topLeftBorderDoubleOuterBox);\n }\n };\n var parsePathForBorderDoubleInner = function (curves, borderSide) {\n switch (borderSide) {\n case 0:\n return createPathFromCurves(curves.topLeftBorderDoubleInnerBox, curves.topLeftPaddingBox, curves.topRightBorderDoubleInnerBox, curves.topRightPaddingBox);\n case 1:\n return createPathFromCurves(curves.topRightBorderDoubleInnerBox, curves.topRightPaddingBox, curves.bottomRightBorderDoubleInnerBox, curves.bottomRightPaddingBox);\n case 2:\n return createPathFromCurves(curves.bottomRightBorderDoubleInnerBox, curves.bottomRightPaddingBox, curves.bottomLeftBorderDoubleInnerBox, curves.bottomLeftPaddingBox);\n case 3:\n default:\n return createPathFromCurves(curves.bottomLeftBorderDoubleInnerBox, curves.bottomLeftPaddingBox, curves.topLeftBorderDoubleInnerBox, curves.topLeftPaddingBox);\n }\n };\n var parsePathForBorderStroke = function (curves, borderSide) {\n switch (borderSide) {\n case 0:\n return createStrokePathFromCurves(curves.topLeftBorderStroke, curves.topRightBorderStroke);\n case 1:\n return createStrokePathFromCurves(curves.topRightBorderStroke, curves.bottomRightBorderStroke);\n case 2:\n return createStrokePathFromCurves(curves.bottomRightBorderStroke, curves.bottomLeftBorderStroke);\n case 3:\n default:\n return createStrokePathFromCurves(curves.bottomLeftBorderStroke, curves.topLeftBorderStroke);\n }\n };\n var createStrokePathFromCurves = function (outer1, outer2) {\n var path = [];\n if (isBezierCurve(outer1)) {\n path.push(outer1.subdivide(0.5, false));\n }\n else {\n path.push(outer1);\n }\n if (isBezierCurve(outer2)) {\n path.push(outer2.subdivide(0.5, true));\n }\n else {\n path.push(outer2);\n }\n return path;\n };\n var createPathFromCurves = function (outer1, inner1, outer2, inner2) {\n var path = [];\n if (isBezierCurve(outer1)) {\n path.push(outer1.subdivide(0.5, false));\n }\n else {\n path.push(outer1);\n }\n if (isBezierCurve(outer2)) {\n path.push(outer2.subdivide(0.5, true));\n }\n else {\n path.push(outer2);\n }\n if (isBezierCurve(inner2)) {\n path.push(inner2.subdivide(0.5, true).reverse());\n }\n else {\n path.push(inner2);\n }\n if (isBezierCurve(inner1)) {\n path.push(inner1.subdivide(0.5, false).reverse());\n }\n else {\n path.push(inner1);\n }\n return path;\n };\n\n var paddingBox = function (element) {\n var bounds = element.bounds;\n var styles = element.styles;\n return bounds.add(styles.borderLeftWidth, styles.borderTopWidth, -(styles.borderRightWidth + styles.borderLeftWidth), -(styles.borderTopWidth + styles.borderBottomWidth));\n };\n var contentBox = function (element) {\n var styles = element.styles;\n var bounds = element.bounds;\n var paddingLeft = getAbsoluteValue(styles.paddingLeft, bounds.width);\n var paddingRight = getAbsoluteValue(styles.paddingRight, bounds.width);\n var paddingTop = getAbsoluteValue(styles.paddingTop, bounds.width);\n var paddingBottom = getAbsoluteValue(styles.paddingBottom, bounds.width);\n return bounds.add(paddingLeft + styles.borderLeftWidth, paddingTop + styles.borderTopWidth, -(styles.borderRightWidth + styles.borderLeftWidth + paddingLeft + paddingRight), -(styles.borderTopWidth + styles.borderBottomWidth + paddingTop + paddingBottom));\n };\n\n var calculateBackgroundPositioningArea = function (backgroundOrigin, element) {\n if (backgroundOrigin === 0 /* BORDER_BOX */) {\n return element.bounds;\n }\n if (backgroundOrigin === 2 /* CONTENT_BOX */) {\n return contentBox(element);\n }\n return paddingBox(element);\n };\n var calculateBackgroundPaintingArea = function (backgroundClip, element) {\n if (backgroundClip === 0 /* BORDER_BOX */) {\n return element.bounds;\n }\n if (backgroundClip === 2 /* CONTENT_BOX */) {\n return contentBox(element);\n }\n return paddingBox(element);\n };\n var calculateBackgroundRendering = function (container, index, intrinsicSize) {\n var backgroundPositioningArea = calculateBackgroundPositioningArea(getBackgroundValueForIndex(container.styles.backgroundOrigin, index), container);\n var backgroundPaintingArea = calculateBackgroundPaintingArea(getBackgroundValueForIndex(container.styles.backgroundClip, index), container);\n var backgroundImageSize = calculateBackgroundSize(getBackgroundValueForIndex(container.styles.backgroundSize, index), intrinsicSize, backgroundPositioningArea);\n var sizeWidth = backgroundImageSize[0], sizeHeight = backgroundImageSize[1];\n var position = getAbsoluteValueForTuple(getBackgroundValueForIndex(container.styles.backgroundPosition, index), backgroundPositioningArea.width - sizeWidth, backgroundPositioningArea.height - sizeHeight);\n var path = calculateBackgroundRepeatPath(getBackgroundValueForIndex(container.styles.backgroundRepeat, index), position, backgroundImageSize, backgroundPositioningArea, backgroundPaintingArea);\n var offsetX = Math.round(backgroundPositioningArea.left + position[0]);\n var offsetY = Math.round(backgroundPositioningArea.top + position[1]);\n return [path, offsetX, offsetY, sizeWidth, sizeHeight];\n };\n var isAuto = function (token) { return isIdentToken(token) && token.value === BACKGROUND_SIZE.AUTO; };\n var hasIntrinsicValue = function (value) { return typeof value === 'number'; };\n var calculateBackgroundSize = function (size, _a, bounds) {\n var intrinsicWidth = _a[0], intrinsicHeight = _a[1], intrinsicProportion = _a[2];\n var first = size[0], second = size[1];\n if (!first) {\n return [0, 0];\n }\n if (isLengthPercentage(first) && second && isLengthPercentage(second)) {\n return [getAbsoluteValue(first, bounds.width), getAbsoluteValue(second, bounds.height)];\n }\n var hasIntrinsicProportion = hasIntrinsicValue(intrinsicProportion);\n if (isIdentToken(first) && (first.value === BACKGROUND_SIZE.CONTAIN || first.value === BACKGROUND_SIZE.COVER)) {\n if (hasIntrinsicValue(intrinsicProportion)) {\n var targetRatio = bounds.width / bounds.height;\n return targetRatio < intrinsicProportion !== (first.value === BACKGROUND_SIZE.COVER)\n ? [bounds.width, bounds.width / intrinsicProportion]\n : [bounds.height * intrinsicProportion, bounds.height];\n }\n return [bounds.width, bounds.height];\n }\n var hasIntrinsicWidth = hasIntrinsicValue(intrinsicWidth);\n var hasIntrinsicHeight = hasIntrinsicValue(intrinsicHeight);\n var hasIntrinsicDimensions = hasIntrinsicWidth || hasIntrinsicHeight;\n // If the background-size is auto or auto auto:\n if (isAuto(first) && (!second || isAuto(second))) {\n // If the image has both horizontal and vertical intrinsic dimensions, it's rendered at that size.\n if (hasIntrinsicWidth && hasIntrinsicHeight) {\n return [intrinsicWidth, intrinsicHeight];\n }\n // If the image has no intrinsic dimensions and has no intrinsic proportions,\n // it's rendered at the size of the background positioning area.\n if (!hasIntrinsicProportion && !hasIntrinsicDimensions) {\n return [bounds.width, bounds.height];\n }\n // TODO If the image has no intrinsic dimensions but has intrinsic proportions, it's rendered as if contain had been specified instead.\n // If the image has only one intrinsic dimension and has intrinsic proportions, it's rendered at the size corresponding to that one dimension.\n // The other dimension is computed using the specified dimension and the intrinsic proportions.\n if (hasIntrinsicDimensions && hasIntrinsicProportion) {\n var width_1 = hasIntrinsicWidth\n ? intrinsicWidth\n : intrinsicHeight * intrinsicProportion;\n var height_1 = hasIntrinsicHeight\n ? intrinsicHeight\n : intrinsicWidth / intrinsicProportion;\n return [width_1, height_1];\n }\n // If the image has only one intrinsic dimension but has no intrinsic proportions,\n // it's rendered using the specified dimension and the other dimension of the background positioning area.\n var width_2 = hasIntrinsicWidth ? intrinsicWidth : bounds.width;\n var height_2 = hasIntrinsicHeight ? intrinsicHeight : bounds.height;\n return [width_2, height_2];\n }\n // If the image has intrinsic proportions, it's stretched to the specified dimension.\n // The unspecified dimension is computed using the specified dimension and the intrinsic proportions.\n if (hasIntrinsicProportion) {\n var width_3 = 0;\n var height_3 = 0;\n if (isLengthPercentage(first)) {\n width_3 = getAbsoluteValue(first, bounds.width);\n }\n else if (isLengthPercentage(second)) {\n height_3 = getAbsoluteValue(second, bounds.height);\n }\n if (isAuto(first)) {\n width_3 = height_3 * intrinsicProportion;\n }\n else if (!second || isAuto(second)) {\n height_3 = width_3 / intrinsicProportion;\n }\n return [width_3, height_3];\n }\n // If the image has no intrinsic proportions, it's stretched to the specified dimension.\n // The unspecified dimension is computed using the image's corresponding intrinsic dimension,\n // if there is one. If there is no such intrinsic dimension,\n // it becomes the corresponding dimension of the background positioning area.\n var width = null;\n var height = null;\n if (isLengthPercentage(first)) {\n width = getAbsoluteValue(first, bounds.width);\n }\n else if (second && isLengthPercentage(second)) {\n height = getAbsoluteValue(second, bounds.height);\n }\n if (width !== null && (!second || isAuto(second))) {\n height =\n hasIntrinsicWidth && hasIntrinsicHeight\n ? (width / intrinsicWidth) * intrinsicHeight\n : bounds.height;\n }\n if (height !== null && isAuto(first)) {\n width =\n hasIntrinsicWidth && hasIntrinsicHeight\n ? (height / intrinsicHeight) * intrinsicWidth\n : bounds.width;\n }\n if (width !== null && height !== null) {\n return [width, height];\n }\n throw new Error(\"Unable to calculate background-size for element\");\n };\n var getBackgroundValueForIndex = function (values, index) {\n var value = values[index];\n if (typeof value === 'undefined') {\n return values[0];\n }\n return value;\n };\n var calculateBackgroundRepeatPath = function (repeat, _a, _b, backgroundPositioningArea, backgroundPaintingArea) {\n var x = _a[0], y = _a[1];\n var width = _b[0], height = _b[1];\n switch (repeat) {\n case 2 /* REPEAT_X */:\n return [\n new Vector(Math.round(backgroundPositioningArea.left), Math.round(backgroundPositioningArea.top + y)),\n new Vector(Math.round(backgroundPositioningArea.left + backgroundPositioningArea.width), Math.round(backgroundPositioningArea.top + y)),\n new Vector(Math.round(backgroundPositioningArea.left + backgroundPositioningArea.width), Math.round(height + backgroundPositioningArea.top + y)),\n new Vector(Math.round(backgroundPositioningArea.left), Math.round(height + backgroundPositioningArea.top + y))\n ];\n case 3 /* REPEAT_Y */:\n return [\n new Vector(Math.round(backgroundPositioningArea.left + x), Math.round(backgroundPositioningArea.top)),\n new Vector(Math.round(backgroundPositioningArea.left + x + width), Math.round(backgroundPositioningArea.top)),\n new Vector(Math.round(backgroundPositioningArea.left + x + width), Math.round(backgroundPositioningArea.height + backgroundPositioningArea.top)),\n new Vector(Math.round(backgroundPositioningArea.left + x), Math.round(backgroundPositioningArea.height + backgroundPositioningArea.top))\n ];\n case 1 /* NO_REPEAT */:\n return [\n new Vector(Math.round(backgroundPositioningArea.left + x), Math.round(backgroundPositioningArea.top + y)),\n new Vector(Math.round(backgroundPositioningArea.left + x + width), Math.round(backgroundPositioningArea.top + y)),\n new Vector(Math.round(backgroundPositioningArea.left + x + width), Math.round(backgroundPositioningArea.top + y + height)),\n new Vector(Math.round(backgroundPositioningArea.left + x), Math.round(backgroundPositioningArea.top + y + height))\n ];\n default:\n return [\n new Vector(Math.round(backgroundPaintingArea.left), Math.round(backgroundPaintingArea.top)),\n new Vector(Math.round(backgroundPaintingArea.left + backgroundPaintingArea.width), Math.round(backgroundPaintingArea.top)),\n new Vector(Math.round(backgroundPaintingArea.left + backgroundPaintingArea.width), Math.round(backgroundPaintingArea.height + backgroundPaintingArea.top)),\n new Vector(Math.round(backgroundPaintingArea.left), Math.round(backgroundPaintingArea.height + backgroundPaintingArea.top))\n ];\n }\n };\n\n var SMALL_IMAGE = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';\n\n var SAMPLE_TEXT = 'Hidden Text';\n var FontMetrics = /** @class */ (function () {\n function FontMetrics(document) {\n this._data = {};\n this._document = document;\n }\n FontMetrics.prototype.parseMetrics = function (fontFamily, fontSize) {\n var container = this._document.createElement('div');\n var img = this._document.createElement('img');\n var span = this._document.createElement('span');\n var body = this._document.body;\n container.style.visibility = 'hidden';\n container.style.fontFamily = fontFamily;\n container.style.fontSize = fontSize;\n container.style.margin = '0';\n container.style.padding = '0';\n container.style.whiteSpace = 'nowrap';\n body.appendChild(container);\n img.src = SMALL_IMAGE;\n img.width = 1;\n img.height = 1;\n img.style.margin = '0';\n img.style.padding = '0';\n img.style.verticalAlign = 'baseline';\n span.style.fontFamily = fontFamily;\n span.style.fontSize = fontSize;\n span.style.margin = '0';\n span.style.padding = '0';\n span.appendChild(this._document.createTextNode(SAMPLE_TEXT));\n container.appendChild(span);\n container.appendChild(img);\n var baseline = img.offsetTop - span.offsetTop + 2;\n container.removeChild(span);\n container.appendChild(this._document.createTextNode(SAMPLE_TEXT));\n container.style.lineHeight = 'normal';\n img.style.verticalAlign = 'super';\n var middle = img.offsetTop - container.offsetTop + 2;\n body.removeChild(container);\n return { baseline: baseline, middle: middle };\n };\n FontMetrics.prototype.getMetrics = function (fontFamily, fontSize) {\n var key = fontFamily + \" \" + fontSize;\n if (typeof this._data[key] === 'undefined') {\n this._data[key] = this.parseMetrics(fontFamily, fontSize);\n }\n return this._data[key];\n };\n return FontMetrics;\n }());\n\n var Renderer = /** @class */ (function () {\n function Renderer(context, options) {\n this.context = context;\n this.options = options;\n }\n return Renderer;\n }());\n\n var MASK_OFFSET = 10000;\n var CanvasRenderer = /** @class */ (function (_super) {\n __extends(CanvasRenderer, _super);\n function CanvasRenderer(context, options) {\n var _this = _super.call(this, context, options) || this;\n _this._activeEffects = [];\n _this.canvas = options.canvas ? options.canvas : document.createElement('canvas');\n _this.ctx = _this.canvas.getContext('2d');\n if (!options.canvas) {\n _this.canvas.width = Math.floor(options.width * options.scale);\n _this.canvas.height = Math.floor(options.height * options.scale);\n _this.canvas.style.width = options.width + \"px\";\n _this.canvas.style.height = options.height + \"px\";\n }\n _this.fontMetrics = new FontMetrics(document);\n _this.ctx.scale(_this.options.scale, _this.options.scale);\n _this.ctx.translate(-options.x, -options.y);\n _this.ctx.textBaseline = 'bottom';\n _this._activeEffects = [];\n _this.context.logger.debug(\"Canvas renderer initialized (\" + options.width + \"x\" + options.height + \") with scale \" + options.scale);\n return _this;\n }\n CanvasRenderer.prototype.applyEffects = function (effects) {\n var _this = this;\n while (this._activeEffects.length) {\n this.popEffect();\n }\n effects.forEach(function (effect) { return _this.applyEffect(effect); });\n };\n CanvasRenderer.prototype.applyEffect = function (effect) {\n this.ctx.save();\n if (isOpacityEffect(effect)) {\n this.ctx.globalAlpha = effect.opacity;\n }\n if (isTransformEffect(effect)) {\n this.ctx.translate(effect.offsetX, effect.offsetY);\n this.ctx.transform(effect.matrix[0], effect.matrix[1], effect.matrix[2], effect.matrix[3], effect.matrix[4], effect.matrix[5]);\n this.ctx.translate(-effect.offsetX, -effect.offsetY);\n }\n if (isClipEffect(effect)) {\n this.path(effect.path);\n this.ctx.clip();\n }\n this._activeEffects.push(effect);\n };\n CanvasRenderer.prototype.popEffect = function () {\n this._activeEffects.pop();\n this.ctx.restore();\n };\n CanvasRenderer.prototype.renderStack = function (stack) {\n return __awaiter(this, void 0, void 0, function () {\n var styles;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n styles = stack.element.container.styles;\n if (!styles.isVisible()) return [3 /*break*/, 2];\n return [4 /*yield*/, this.renderStackContent(stack)];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2: return [2 /*return*/];\n }\n });\n });\n };\n CanvasRenderer.prototype.renderNode = function (paint) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (contains(paint.container.flags, 16 /* DEBUG_RENDER */)) {\n debugger;\n }\n if (!paint.container.styles.isVisible()) return [3 /*break*/, 3];\n return [4 /*yield*/, this.renderNodeBackgroundAndBorders(paint)];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.renderNodeContent(paint)];\n case 2:\n _a.sent();\n _a.label = 3;\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n CanvasRenderer.prototype.renderTextWithLetterSpacing = function (text, letterSpacing, baseline) {\n var _this = this;\n if (letterSpacing === 0) {\n this.ctx.fillText(text.text, text.bounds.left, text.bounds.top + baseline);\n }\n else {\n var letters = segmentGraphemes(text.text);\n letters.reduce(function (left, letter) {\n _this.ctx.fillText(letter, left, text.bounds.top + baseline);\n return left + _this.ctx.measureText(letter).width;\n }, text.bounds.left);\n }\n };\n CanvasRenderer.prototype.createFontStyle = function (styles) {\n var fontVariant = styles.fontVariant\n .filter(function (variant) { return variant === 'normal' || variant === 'small-caps'; })\n .join('');\n var fontFamily = fixIOSSystemFonts(styles.fontFamily).join(', ');\n var fontSize = isDimensionToken(styles.fontSize)\n ? \"\" + styles.fontSize.number + styles.fontSize.unit\n : styles.fontSize.number + \"px\";\n return [\n [styles.fontStyle, fontVariant, styles.fontWeight, fontSize, fontFamily].join(' '),\n fontFamily,\n fontSize\n ];\n };\n CanvasRenderer.prototype.renderTextNode = function (text, styles) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, font, fontFamily, fontSize, _b, baseline, middle, paintOrder;\n var _this = this;\n return __generator(this, function (_c) {\n _a = this.createFontStyle(styles), font = _a[0], fontFamily = _a[1], fontSize = _a[2];\n this.ctx.font = font;\n this.ctx.direction = styles.direction === 1 /* RTL */ ? 'rtl' : 'ltr';\n this.ctx.textAlign = 'left';\n this.ctx.textBaseline = 'alphabetic';\n _b = this.fontMetrics.getMetrics(fontFamily, fontSize), baseline = _b.baseline, middle = _b.middle;\n paintOrder = styles.paintOrder;\n text.textBounds.forEach(function (text) {\n paintOrder.forEach(function (paintOrderLayer) {\n switch (paintOrderLayer) {\n case 0 /* FILL */:\n _this.ctx.fillStyle = asString(styles.color);\n _this.renderTextWithLetterSpacing(text, styles.letterSpacing, baseline);\n var textShadows = styles.textShadow;\n if (textShadows.length && text.text.trim().length) {\n textShadows\n .slice(0)\n .reverse()\n .forEach(function (textShadow) {\n _this.ctx.shadowColor = asString(textShadow.color);\n _this.ctx.shadowOffsetX = textShadow.offsetX.number * _this.options.scale;\n _this.ctx.shadowOffsetY = textShadow.offsetY.number * _this.options.scale;\n _this.ctx.shadowBlur = textShadow.blur.number;\n _this.renderTextWithLetterSpacing(text, styles.letterSpacing, baseline);\n });\n _this.ctx.shadowColor = '';\n _this.ctx.shadowOffsetX = 0;\n _this.ctx.shadowOffsetY = 0;\n _this.ctx.shadowBlur = 0;\n }\n if (styles.textDecorationLine.length) {\n _this.ctx.fillStyle = asString(styles.textDecorationColor || styles.color);\n styles.textDecorationLine.forEach(function (textDecorationLine) {\n switch (textDecorationLine) {\n case 1 /* UNDERLINE */:\n // Draws a line at the baseline of the font\n // TODO As some browsers display the line as more than 1px if the font-size is big,\n // need to take that into account both in position and size\n _this.ctx.fillRect(text.bounds.left, Math.round(text.bounds.top + baseline), text.bounds.width, 1);\n break;\n case 2 /* OVERLINE */:\n _this.ctx.fillRect(text.bounds.left, Math.round(text.bounds.top), text.bounds.width, 1);\n break;\n case 3 /* LINE_THROUGH */:\n // TODO try and find exact position for line-through\n _this.ctx.fillRect(text.bounds.left, Math.ceil(text.bounds.top + middle), text.bounds.width, 1);\n break;\n }\n });\n }\n break;\n case 1 /* STROKE */:\n if (styles.webkitTextStrokeWidth && text.text.trim().length) {\n _this.ctx.strokeStyle = asString(styles.webkitTextStrokeColor);\n _this.ctx.lineWidth = styles.webkitTextStrokeWidth;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n _this.ctx.lineJoin = !!window.chrome ? 'miter' : 'round';\n _this.ctx.strokeText(text.text, text.bounds.left, text.bounds.top + baseline);\n }\n _this.ctx.strokeStyle = '';\n _this.ctx.lineWidth = 0;\n _this.ctx.lineJoin = 'miter';\n break;\n }\n });\n });\n return [2 /*return*/];\n });\n });\n };\n CanvasRenderer.prototype.renderReplacedElement = function (container, curves, image) {\n if (image && container.intrinsicWidth > 0 && container.intrinsicHeight > 0) {\n var box = contentBox(container);\n var path = calculatePaddingBoxPath(curves);\n this.path(path);\n this.ctx.save();\n this.ctx.clip();\n this.ctx.drawImage(image, 0, 0, container.intrinsicWidth, container.intrinsicHeight, box.left, box.top, box.width, box.height);\n this.ctx.restore();\n }\n };\n CanvasRenderer.prototype.renderNodeContent = function (paint) {\n return __awaiter(this, void 0, void 0, function () {\n var container, curves, styles, _i, _a, child, image, image, iframeRenderer, canvas, size, _b, fontFamily, fontSize, baseline, bounds, x, textBounds, img, image, url, fontFamily, bounds;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n this.applyEffects(paint.getEffects(4 /* CONTENT */));\n container = paint.container;\n curves = paint.curves;\n styles = container.styles;\n _i = 0, _a = container.textNodes;\n _c.label = 1;\n case 1:\n if (!(_i < _a.length)) return [3 /*break*/, 4];\n child = _a[_i];\n return [4 /*yield*/, this.renderTextNode(child, styles)];\n case 2:\n _c.sent();\n _c.label = 3;\n case 3:\n _i++;\n return [3 /*break*/, 1];\n case 4:\n if (!(container instanceof ImageElementContainer)) return [3 /*break*/, 8];\n _c.label = 5;\n case 5:\n _c.trys.push([5, 7, , 8]);\n return [4 /*yield*/, this.context.cache.match(container.src)];\n case 6:\n image = _c.sent();\n this.renderReplacedElement(container, curves, image);\n return [3 /*break*/, 8];\n case 7:\n _c.sent();\n this.context.logger.error(\"Error loading image \" + container.src);\n return [3 /*break*/, 8];\n case 8:\n if (container instanceof CanvasElementContainer) {\n this.renderReplacedElement(container, curves, container.canvas);\n }\n if (!(container instanceof SVGElementContainer)) return [3 /*break*/, 12];\n _c.label = 9;\n case 9:\n _c.trys.push([9, 11, , 12]);\n return [4 /*yield*/, this.context.cache.match(container.svg)];\n case 10:\n image = _c.sent();\n this.renderReplacedElement(container, curves, image);\n return [3 /*break*/, 12];\n case 11:\n _c.sent();\n this.context.logger.error(\"Error loading svg \" + container.svg.substring(0, 255));\n return [3 /*break*/, 12];\n case 12:\n if (!(container instanceof IFrameElementContainer && container.tree)) return [3 /*break*/, 14];\n iframeRenderer = new CanvasRenderer(this.context, {\n scale: this.options.scale,\n backgroundColor: container.backgroundColor,\n x: 0,\n y: 0,\n width: container.width,\n height: container.height\n });\n return [4 /*yield*/, iframeRenderer.render(container.tree)];\n case 13:\n canvas = _c.sent();\n if (container.width && container.height) {\n this.ctx.drawImage(canvas, 0, 0, container.width, container.height, container.bounds.left, container.bounds.top, container.bounds.width, container.bounds.height);\n }\n _c.label = 14;\n case 14:\n if (container instanceof InputElementContainer) {\n size = Math.min(container.bounds.width, container.bounds.height);\n if (container.type === CHECKBOX) {\n if (container.checked) {\n this.ctx.save();\n this.path([\n new Vector(container.bounds.left + size * 0.39363, container.bounds.top + size * 0.79),\n new Vector(container.bounds.left + size * 0.16, container.bounds.top + size * 0.5549),\n new Vector(container.bounds.left + size * 0.27347, container.bounds.top + size * 0.44071),\n new Vector(container.bounds.left + size * 0.39694, container.bounds.top + size * 0.5649),\n new Vector(container.bounds.left + size * 0.72983, container.bounds.top + size * 0.23),\n new Vector(container.bounds.left + size * 0.84, container.bounds.top + size * 0.34085),\n new Vector(container.bounds.left + size * 0.39363, container.bounds.top + size * 0.79)\n ]);\n this.ctx.fillStyle = asString(INPUT_COLOR);\n this.ctx.fill();\n this.ctx.restore();\n }\n }\n else if (container.type === RADIO) {\n if (container.checked) {\n this.ctx.save();\n this.ctx.beginPath();\n this.ctx.arc(container.bounds.left + size / 2, container.bounds.top + size / 2, size / 4, 0, Math.PI * 2, true);\n this.ctx.fillStyle = asString(INPUT_COLOR);\n this.ctx.fill();\n this.ctx.restore();\n }\n }\n }\n if (isTextInputElement(container) && container.value.length) {\n _b = this.createFontStyle(styles), fontFamily = _b[0], fontSize = _b[1];\n baseline = this.fontMetrics.getMetrics(fontFamily, fontSize).baseline;\n this.ctx.font = fontFamily;\n this.ctx.fillStyle = asString(styles.color);\n this.ctx.textBaseline = 'alphabetic';\n this.ctx.textAlign = canvasTextAlign(container.styles.textAlign);\n bounds = contentBox(container);\n x = 0;\n switch (container.styles.textAlign) {\n case 1 /* CENTER */:\n x += bounds.width / 2;\n break;\n case 2 /* RIGHT */:\n x += bounds.width;\n break;\n }\n textBounds = bounds.add(x, 0, 0, -bounds.height / 2 + 1);\n this.ctx.save();\n this.path([\n new Vector(bounds.left, bounds.top),\n new Vector(bounds.left + bounds.width, bounds.top),\n new Vector(bounds.left + bounds.width, bounds.top + bounds.height),\n new Vector(bounds.left, bounds.top + bounds.height)\n ]);\n this.ctx.clip();\n this.renderTextWithLetterSpacing(new TextBounds(container.value, textBounds), styles.letterSpacing, baseline);\n this.ctx.restore();\n this.ctx.textBaseline = 'alphabetic';\n this.ctx.textAlign = 'left';\n }\n if (!contains(container.styles.display, 2048 /* LIST_ITEM */)) return [3 /*break*/, 20];\n if (!(container.styles.listStyleImage !== null)) return [3 /*break*/, 19];\n img = container.styles.listStyleImage;\n if (!(img.type === 0 /* URL */)) return [3 /*break*/, 18];\n image = void 0;\n url = img.url;\n _c.label = 15;\n case 15:\n _c.trys.push([15, 17, , 18]);\n return [4 /*yield*/, this.context.cache.match(url)];\n case 16:\n image = _c.sent();\n this.ctx.drawImage(image, container.bounds.left - (image.width + 10), container.bounds.top);\n return [3 /*break*/, 18];\n case 17:\n _c.sent();\n this.context.logger.error(\"Error loading list-style-image \" + url);\n return [3 /*break*/, 18];\n case 18: return [3 /*break*/, 20];\n case 19:\n if (paint.listValue && container.styles.listStyleType !== -1 /* NONE */) {\n fontFamily = this.createFontStyle(styles)[0];\n this.ctx.font = fontFamily;\n this.ctx.fillStyle = asString(styles.color);\n this.ctx.textBaseline = 'middle';\n this.ctx.textAlign = 'right';\n bounds = new Bounds(container.bounds.left, container.bounds.top + getAbsoluteValue(container.styles.paddingTop, container.bounds.width), container.bounds.width, computeLineHeight(styles.lineHeight, styles.fontSize.number) / 2 + 1);\n this.renderTextWithLetterSpacing(new TextBounds(paint.listValue, bounds), styles.letterSpacing, computeLineHeight(styles.lineHeight, styles.fontSize.number) / 2 + 2);\n this.ctx.textBaseline = 'bottom';\n this.ctx.textAlign = 'left';\n }\n _c.label = 20;\n case 20: return [2 /*return*/];\n }\n });\n });\n };\n CanvasRenderer.prototype.renderStackContent = function (stack) {\n return __awaiter(this, void 0, void 0, function () {\n var _i, _a, child, _b, _c, child, _d, _e, child, _f, _g, child, _h, _j, child, _k, _l, child, _m, _o, child;\n return __generator(this, function (_p) {\n switch (_p.label) {\n case 0:\n if (contains(stack.element.container.flags, 16 /* DEBUG_RENDER */)) {\n debugger;\n }\n // https://www.w3.org/TR/css-position-3/#painting-order\n // 1. the background and borders of the element forming the stacking context.\n return [4 /*yield*/, this.renderNodeBackgroundAndBorders(stack.element)];\n case 1:\n // https://www.w3.org/TR/css-position-3/#painting-order\n // 1. the background and borders of the element forming the stacking context.\n _p.sent();\n _i = 0, _a = stack.negativeZIndex;\n _p.label = 2;\n case 2:\n if (!(_i < _a.length)) return [3 /*break*/, 5];\n child = _a[_i];\n return [4 /*yield*/, this.renderStack(child)];\n case 3:\n _p.sent();\n _p.label = 4;\n case 4:\n _i++;\n return [3 /*break*/, 2];\n case 5: \n // 3. For all its in-flow, non-positioned, block-level descendants in tree order:\n return [4 /*yield*/, this.renderNodeContent(stack.element)];\n case 6:\n // 3. For all its in-flow, non-positioned, block-level descendants in tree order:\n _p.sent();\n _b = 0, _c = stack.nonInlineLevel;\n _p.label = 7;\n case 7:\n if (!(_b < _c.length)) return [3 /*break*/, 10];\n child = _c[_b];\n return [4 /*yield*/, this.renderNode(child)];\n case 8:\n _p.sent();\n _p.label = 9;\n case 9:\n _b++;\n return [3 /*break*/, 7];\n case 10:\n _d = 0, _e = stack.nonPositionedFloats;\n _p.label = 11;\n case 11:\n if (!(_d < _e.length)) return [3 /*break*/, 14];\n child = _e[_d];\n return [4 /*yield*/, this.renderStack(child)];\n case 12:\n _p.sent();\n _p.label = 13;\n case 13:\n _d++;\n return [3 /*break*/, 11];\n case 14:\n _f = 0, _g = stack.nonPositionedInlineLevel;\n _p.label = 15;\n case 15:\n if (!(_f < _g.length)) return [3 /*break*/, 18];\n child = _g[_f];\n return [4 /*yield*/, this.renderStack(child)];\n case 16:\n _p.sent();\n _p.label = 17;\n case 17:\n _f++;\n return [3 /*break*/, 15];\n case 18:\n _h = 0, _j = stack.inlineLevel;\n _p.label = 19;\n case 19:\n if (!(_h < _j.length)) return [3 /*break*/, 22];\n child = _j[_h];\n return [4 /*yield*/, this.renderNode(child)];\n case 20:\n _p.sent();\n _p.label = 21;\n case 21:\n _h++;\n return [3 /*break*/, 19];\n case 22:\n _k = 0, _l = stack.zeroOrAutoZIndexOrTransformedOrOpacity;\n _p.label = 23;\n case 23:\n if (!(_k < _l.length)) return [3 /*break*/, 26];\n child = _l[_k];\n return [4 /*yield*/, this.renderStack(child)];\n case 24:\n _p.sent();\n _p.label = 25;\n case 25:\n _k++;\n return [3 /*break*/, 23];\n case 26:\n _m = 0, _o = stack.positiveZIndex;\n _p.label = 27;\n case 27:\n if (!(_m < _o.length)) return [3 /*break*/, 30];\n child = _o[_m];\n return [4 /*yield*/, this.renderStack(child)];\n case 28:\n _p.sent();\n _p.label = 29;\n case 29:\n _m++;\n return [3 /*break*/, 27];\n case 30: return [2 /*return*/];\n }\n });\n });\n };\n CanvasRenderer.prototype.mask = function (paths) {\n this.ctx.beginPath();\n this.ctx.moveTo(0, 0);\n this.ctx.lineTo(this.canvas.width, 0);\n this.ctx.lineTo(this.canvas.width, this.canvas.height);\n this.ctx.lineTo(0, this.canvas.height);\n this.ctx.lineTo(0, 0);\n this.formatPath(paths.slice(0).reverse());\n this.ctx.closePath();\n };\n CanvasRenderer.prototype.path = function (paths) {\n this.ctx.beginPath();\n this.formatPath(paths);\n this.ctx.closePath();\n };\n CanvasRenderer.prototype.formatPath = function (paths) {\n var _this = this;\n paths.forEach(function (point, index) {\n var start = isBezierCurve(point) ? point.start : point;\n if (index === 0) {\n _this.ctx.moveTo(start.x, start.y);\n }\n else {\n _this.ctx.lineTo(start.x, start.y);\n }\n if (isBezierCurve(point)) {\n _this.ctx.bezierCurveTo(point.startControl.x, point.startControl.y, point.endControl.x, point.endControl.y, point.end.x, point.end.y);\n }\n });\n };\n CanvasRenderer.prototype.renderRepeat = function (path, pattern, offsetX, offsetY) {\n this.path(path);\n this.ctx.fillStyle = pattern;\n this.ctx.translate(offsetX, offsetY);\n this.ctx.fill();\n this.ctx.translate(-offsetX, -offsetY);\n };\n CanvasRenderer.prototype.resizeImage = function (image, width, height) {\n var _a;\n if (image.width === width && image.height === height) {\n return image;\n }\n var ownerDocument = (_a = this.canvas.ownerDocument) !== null && _a !== void 0 ? _a : document;\n var canvas = ownerDocument.createElement('canvas');\n canvas.width = Math.max(1, width);\n canvas.height = Math.max(1, height);\n var ctx = canvas.getContext('2d');\n ctx.drawImage(image, 0, 0, image.width, image.height, 0, 0, width, height);\n return canvas;\n };\n CanvasRenderer.prototype.renderBackgroundImage = function (container) {\n return __awaiter(this, void 0, void 0, function () {\n var index, _loop_1, this_1, _i, _a, backgroundImage;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n index = container.styles.backgroundImage.length - 1;\n _loop_1 = function (backgroundImage) {\n var image, url, _c, path, x, y, width, height, pattern, _d, path, x, y, width, height, _e, lineLength, x0, x1, y0, y1, canvas, ctx, gradient_1, pattern, _f, path, left, top_1, width, height, position, x, y, _g, rx, ry, radialGradient_1, midX, midY, f, invF;\n return __generator(this, function (_h) {\n switch (_h.label) {\n case 0:\n if (!(backgroundImage.type === 0 /* URL */)) return [3 /*break*/, 5];\n image = void 0;\n url = backgroundImage.url;\n _h.label = 1;\n case 1:\n _h.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this_1.context.cache.match(url)];\n case 2:\n image = _h.sent();\n return [3 /*break*/, 4];\n case 3:\n _h.sent();\n this_1.context.logger.error(\"Error loading background-image \" + url);\n return [3 /*break*/, 4];\n case 4:\n if (image) {\n _c = calculateBackgroundRendering(container, index, [\n image.width,\n image.height,\n image.width / image.height\n ]), path = _c[0], x = _c[1], y = _c[2], width = _c[3], height = _c[4];\n pattern = this_1.ctx.createPattern(this_1.resizeImage(image, width, height), 'repeat');\n this_1.renderRepeat(path, pattern, x, y);\n }\n return [3 /*break*/, 6];\n case 5:\n if (isLinearGradient(backgroundImage)) {\n _d = calculateBackgroundRendering(container, index, [null, null, null]), path = _d[0], x = _d[1], y = _d[2], width = _d[3], height = _d[4];\n _e = calculateGradientDirection(backgroundImage.angle, width, height), lineLength = _e[0], x0 = _e[1], x1 = _e[2], y0 = _e[3], y1 = _e[4];\n canvas = document.createElement('canvas');\n canvas.width = width;\n canvas.height = height;\n ctx = canvas.getContext('2d');\n gradient_1 = ctx.createLinearGradient(x0, y0, x1, y1);\n processColorStops(backgroundImage.stops, lineLength).forEach(function (colorStop) {\n return gradient_1.addColorStop(colorStop.stop, asString(colorStop.color));\n });\n ctx.fillStyle = gradient_1;\n ctx.fillRect(0, 0, width, height);\n if (width > 0 && height > 0) {\n pattern = this_1.ctx.createPattern(canvas, 'repeat');\n this_1.renderRepeat(path, pattern, x, y);\n }\n }\n else if (isRadialGradient(backgroundImage)) {\n _f = calculateBackgroundRendering(container, index, [\n null,\n null,\n null\n ]), path = _f[0], left = _f[1], top_1 = _f[2], width = _f[3], height = _f[4];\n position = backgroundImage.position.length === 0 ? [FIFTY_PERCENT] : backgroundImage.position;\n x = getAbsoluteValue(position[0], width);\n y = getAbsoluteValue(position[position.length - 1], height);\n _g = calculateRadius(backgroundImage, x, y, width, height), rx = _g[0], ry = _g[1];\n if (rx > 0 && ry > 0) {\n radialGradient_1 = this_1.ctx.createRadialGradient(left + x, top_1 + y, 0, left + x, top_1 + y, rx);\n processColorStops(backgroundImage.stops, rx * 2).forEach(function (colorStop) {\n return radialGradient_1.addColorStop(colorStop.stop, asString(colorStop.color));\n });\n this_1.path(path);\n this_1.ctx.fillStyle = radialGradient_1;\n if (rx !== ry) {\n midX = container.bounds.left + 0.5 * container.bounds.width;\n midY = container.bounds.top + 0.5 * container.bounds.height;\n f = ry / rx;\n invF = 1 / f;\n this_1.ctx.save();\n this_1.ctx.translate(midX, midY);\n this_1.ctx.transform(1, 0, 0, f, 0, 0);\n this_1.ctx.translate(-midX, -midY);\n this_1.ctx.fillRect(left, invF * (top_1 - midY) + midY, width, height * invF);\n this_1.ctx.restore();\n }\n else {\n this_1.ctx.fill();\n }\n }\n }\n _h.label = 6;\n case 6:\n index--;\n return [2 /*return*/];\n }\n });\n };\n this_1 = this;\n _i = 0, _a = container.styles.backgroundImage.slice(0).reverse();\n _b.label = 1;\n case 1:\n if (!(_i < _a.length)) return [3 /*break*/, 4];\n backgroundImage = _a[_i];\n return [5 /*yield**/, _loop_1(backgroundImage)];\n case 2:\n _b.sent();\n _b.label = 3;\n case 3:\n _i++;\n return [3 /*break*/, 1];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n CanvasRenderer.prototype.renderSolidBorder = function (color, side, curvePoints) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n this.path(parsePathForBorder(curvePoints, side));\n this.ctx.fillStyle = asString(color);\n this.ctx.fill();\n return [2 /*return*/];\n });\n });\n };\n CanvasRenderer.prototype.renderDoubleBorder = function (color, width, side, curvePoints) {\n return __awaiter(this, void 0, void 0, function () {\n var outerPaths, innerPaths;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(width < 3)) return [3 /*break*/, 2];\n return [4 /*yield*/, this.renderSolidBorder(color, side, curvePoints)];\n case 1:\n _a.sent();\n return [2 /*return*/];\n case 2:\n outerPaths = parsePathForBorderDoubleOuter(curvePoints, side);\n this.path(outerPaths);\n this.ctx.fillStyle = asString(color);\n this.ctx.fill();\n innerPaths = parsePathForBorderDoubleInner(curvePoints, side);\n this.path(innerPaths);\n this.ctx.fill();\n return [2 /*return*/];\n }\n });\n });\n };\n CanvasRenderer.prototype.renderNodeBackgroundAndBorders = function (paint) {\n return __awaiter(this, void 0, void 0, function () {\n var styles, hasBackground, borders, backgroundPaintingArea, side, _i, borders_1, border;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n this.applyEffects(paint.getEffects(2 /* BACKGROUND_BORDERS */));\n styles = paint.container.styles;\n hasBackground = !isTransparent(styles.backgroundColor) || styles.backgroundImage.length;\n borders = [\n { style: styles.borderTopStyle, color: styles.borderTopColor, width: styles.borderTopWidth },\n { style: styles.borderRightStyle, color: styles.borderRightColor, width: styles.borderRightWidth },\n { style: styles.borderBottomStyle, color: styles.borderBottomColor, width: styles.borderBottomWidth },\n { style: styles.borderLeftStyle, color: styles.borderLeftColor, width: styles.borderLeftWidth }\n ];\n backgroundPaintingArea = calculateBackgroundCurvedPaintingArea(getBackgroundValueForIndex(styles.backgroundClip, 0), paint.curves);\n if (!(hasBackground || styles.boxShadow.length)) return [3 /*break*/, 2];\n this.ctx.save();\n this.path(backgroundPaintingArea);\n this.ctx.clip();\n if (!isTransparent(styles.backgroundColor)) {\n this.ctx.fillStyle = asString(styles.backgroundColor);\n this.ctx.fill();\n }\n return [4 /*yield*/, this.renderBackgroundImage(paint.container)];\n case 1:\n _a.sent();\n this.ctx.restore();\n styles.boxShadow\n .slice(0)\n .reverse()\n .forEach(function (shadow) {\n _this.ctx.save();\n var borderBoxArea = calculateBorderBoxPath(paint.curves);\n var maskOffset = shadow.inset ? 0 : MASK_OFFSET;\n var shadowPaintingArea = transformPath(borderBoxArea, -maskOffset + (shadow.inset ? 1 : -1) * shadow.spread.number, (shadow.inset ? 1 : -1) * shadow.spread.number, shadow.spread.number * (shadow.inset ? -2 : 2), shadow.spread.number * (shadow.inset ? -2 : 2));\n if (shadow.inset) {\n _this.path(borderBoxArea);\n _this.ctx.clip();\n _this.mask(shadowPaintingArea);\n }\n else {\n _this.mask(borderBoxArea);\n _this.ctx.clip();\n _this.path(shadowPaintingArea);\n }\n _this.ctx.shadowOffsetX = shadow.offsetX.number + maskOffset;\n _this.ctx.shadowOffsetY = shadow.offsetY.number;\n _this.ctx.shadowColor = asString(shadow.color);\n _this.ctx.shadowBlur = shadow.blur.number;\n _this.ctx.fillStyle = shadow.inset ? asString(shadow.color) : 'rgba(0,0,0,1)';\n _this.ctx.fill();\n _this.ctx.restore();\n });\n _a.label = 2;\n case 2:\n side = 0;\n _i = 0, borders_1 = borders;\n _a.label = 3;\n case 3:\n if (!(_i < borders_1.length)) return [3 /*break*/, 13];\n border = borders_1[_i];\n if (!(border.style !== 0 /* NONE */ && !isTransparent(border.color) && border.width > 0)) return [3 /*break*/, 11];\n if (!(border.style === 2 /* DASHED */)) return [3 /*break*/, 5];\n return [4 /*yield*/, this.renderDashedDottedBorder(border.color, border.width, side, paint.curves, 2 /* DASHED */)];\n case 4:\n _a.sent();\n return [3 /*break*/, 11];\n case 5:\n if (!(border.style === 3 /* DOTTED */)) return [3 /*break*/, 7];\n return [4 /*yield*/, this.renderDashedDottedBorder(border.color, border.width, side, paint.curves, 3 /* DOTTED */)];\n case 6:\n _a.sent();\n return [3 /*break*/, 11];\n case 7:\n if (!(border.style === 4 /* DOUBLE */)) return [3 /*break*/, 9];\n return [4 /*yield*/, this.renderDoubleBorder(border.color, border.width, side, paint.curves)];\n case 8:\n _a.sent();\n return [3 /*break*/, 11];\n case 9: return [4 /*yield*/, this.renderSolidBorder(border.color, side, paint.curves)];\n case 10:\n _a.sent();\n _a.label = 11;\n case 11:\n side++;\n _a.label = 12;\n case 12:\n _i++;\n return [3 /*break*/, 3];\n case 13: return [2 /*return*/];\n }\n });\n });\n };\n CanvasRenderer.prototype.renderDashedDottedBorder = function (color, width, side, curvePoints, style) {\n return __awaiter(this, void 0, void 0, function () {\n var strokePaths, boxPaths, startX, startY, endX, endY, length, dashLength, spaceLength, useLineDash, multiplier, numberOfDashes, minSpace, maxSpace, path1, path2, path1, path2;\n return __generator(this, function (_a) {\n this.ctx.save();\n strokePaths = parsePathForBorderStroke(curvePoints, side);\n boxPaths = parsePathForBorder(curvePoints, side);\n if (style === 2 /* DASHED */) {\n this.path(boxPaths);\n this.ctx.clip();\n }\n if (isBezierCurve(boxPaths[0])) {\n startX = boxPaths[0].start.x;\n startY = boxPaths[0].start.y;\n }\n else {\n startX = boxPaths[0].x;\n startY = boxPaths[0].y;\n }\n if (isBezierCurve(boxPaths[1])) {\n endX = boxPaths[1].end.x;\n endY = boxPaths[1].end.y;\n }\n else {\n endX = boxPaths[1].x;\n endY = boxPaths[1].y;\n }\n if (side === 0 || side === 2) {\n length = Math.abs(startX - endX);\n }\n else {\n length = Math.abs(startY - endY);\n }\n this.ctx.beginPath();\n if (style === 3 /* DOTTED */) {\n this.formatPath(strokePaths);\n }\n else {\n this.formatPath(boxPaths.slice(0, 2));\n }\n dashLength = width < 3 ? width * 3 : width * 2;\n spaceLength = width < 3 ? width * 2 : width;\n if (style === 3 /* DOTTED */) {\n dashLength = width;\n spaceLength = width;\n }\n useLineDash = true;\n if (length <= dashLength * 2) {\n useLineDash = false;\n }\n else if (length <= dashLength * 2 + spaceLength) {\n multiplier = length / (2 * dashLength + spaceLength);\n dashLength *= multiplier;\n spaceLength *= multiplier;\n }\n else {\n numberOfDashes = Math.floor((length + spaceLength) / (dashLength + spaceLength));\n minSpace = (length - numberOfDashes * dashLength) / (numberOfDashes - 1);\n maxSpace = (length - (numberOfDashes + 1) * dashLength) / numberOfDashes;\n spaceLength =\n maxSpace <= 0 || Math.abs(spaceLength - minSpace) < Math.abs(spaceLength - maxSpace)\n ? minSpace\n : maxSpace;\n }\n if (useLineDash) {\n if (style === 3 /* DOTTED */) {\n this.ctx.setLineDash([0, dashLength + spaceLength]);\n }\n else {\n this.ctx.setLineDash([dashLength, spaceLength]);\n }\n }\n if (style === 3 /* DOTTED */) {\n this.ctx.lineCap = 'round';\n this.ctx.lineWidth = width;\n }\n else {\n this.ctx.lineWidth = width * 2 + 1.1;\n }\n this.ctx.strokeStyle = asString(color);\n this.ctx.stroke();\n this.ctx.setLineDash([]);\n // dashed round edge gap\n if (style === 2 /* DASHED */) {\n if (isBezierCurve(boxPaths[0])) {\n path1 = boxPaths[3];\n path2 = boxPaths[0];\n this.ctx.beginPath();\n this.formatPath([new Vector(path1.end.x, path1.end.y), new Vector(path2.start.x, path2.start.y)]);\n this.ctx.stroke();\n }\n if (isBezierCurve(boxPaths[1])) {\n path1 = boxPaths[1];\n path2 = boxPaths[2];\n this.ctx.beginPath();\n this.formatPath([new Vector(path1.end.x, path1.end.y), new Vector(path2.start.x, path2.start.y)]);\n this.ctx.stroke();\n }\n }\n this.ctx.restore();\n return [2 /*return*/];\n });\n });\n };\n CanvasRenderer.prototype.render = function (element) {\n return __awaiter(this, void 0, void 0, function () {\n var stack;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (this.options.backgroundColor) {\n this.ctx.fillStyle = asString(this.options.backgroundColor);\n this.ctx.fillRect(this.options.x, this.options.y, this.options.width, this.options.height);\n }\n stack = parseStackingContexts(element);\n return [4 /*yield*/, this.renderStack(stack)];\n case 1:\n _a.sent();\n this.applyEffects([]);\n return [2 /*return*/, this.canvas];\n }\n });\n });\n };\n return CanvasRenderer;\n }(Renderer));\n var isTextInputElement = function (container) {\n if (container instanceof TextareaElementContainer) {\n return true;\n }\n else if (container instanceof SelectElementContainer) {\n return true;\n }\n else if (container instanceof InputElementContainer && container.type !== RADIO && container.type !== CHECKBOX) {\n return true;\n }\n return false;\n };\n var calculateBackgroundCurvedPaintingArea = function (clip, curves) {\n switch (clip) {\n case 0 /* BORDER_BOX */:\n return calculateBorderBoxPath(curves);\n case 2 /* CONTENT_BOX */:\n return calculateContentBoxPath(curves);\n case 1 /* PADDING_BOX */:\n default:\n return calculatePaddingBoxPath(curves);\n }\n };\n var canvasTextAlign = function (textAlign) {\n switch (textAlign) {\n case 1 /* CENTER */:\n return 'center';\n case 2 /* RIGHT */:\n return 'right';\n case 0 /* LEFT */:\n default:\n return 'left';\n }\n };\n // see https://github.com/niklasvh/html2canvas/pull/2645\n var iOSBrokenFonts = ['-apple-system', 'system-ui'];\n var fixIOSSystemFonts = function (fontFamilies) {\n return /iPhone OS 15_(0|1)/.test(window.navigator.userAgent)\n ? fontFamilies.filter(function (fontFamily) { return iOSBrokenFonts.indexOf(fontFamily) === -1; })\n : fontFamilies;\n };\n\n var ForeignObjectRenderer = /** @class */ (function (_super) {\n __extends(ForeignObjectRenderer, _super);\n function ForeignObjectRenderer(context, options) {\n var _this = _super.call(this, context, options) || this;\n _this.canvas = options.canvas ? options.canvas : document.createElement('canvas');\n _this.ctx = _this.canvas.getContext('2d');\n _this.options = options;\n _this.canvas.width = Math.floor(options.width * options.scale);\n _this.canvas.height = Math.floor(options.height * options.scale);\n _this.canvas.style.width = options.width + \"px\";\n _this.canvas.style.height = options.height + \"px\";\n _this.ctx.scale(_this.options.scale, _this.options.scale);\n _this.ctx.translate(-options.x, -options.y);\n _this.context.logger.debug(\"EXPERIMENTAL ForeignObject renderer initialized (\" + options.width + \"x\" + options.height + \" at \" + options.x + \",\" + options.y + \") with scale \" + options.scale);\n return _this;\n }\n ForeignObjectRenderer.prototype.render = function (element) {\n return __awaiter(this, void 0, void 0, function () {\n var svg, img;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n svg = createForeignObjectSVG(this.options.width * this.options.scale, this.options.height * this.options.scale, this.options.scale, this.options.scale, element);\n return [4 /*yield*/, loadSerializedSVG(svg)];\n case 1:\n img = _a.sent();\n if (this.options.backgroundColor) {\n this.ctx.fillStyle = asString(this.options.backgroundColor);\n this.ctx.fillRect(0, 0, this.options.width * this.options.scale, this.options.height * this.options.scale);\n }\n this.ctx.drawImage(img, -this.options.x * this.options.scale, -this.options.y * this.options.scale);\n return [2 /*return*/, this.canvas];\n }\n });\n });\n };\n return ForeignObjectRenderer;\n }(Renderer));\n var loadSerializedSVG = function (svg) {\n return new Promise(function (resolve, reject) {\n var img = new Image();\n img.onload = function () {\n resolve(img);\n };\n img.onerror = reject;\n img.src = \"data:image/svg+xml;charset=utf-8,\" + encodeURIComponent(new XMLSerializer().serializeToString(svg));\n });\n };\n\n var Logger = /** @class */ (function () {\n function Logger(_a) {\n var id = _a.id, enabled = _a.enabled;\n this.id = id;\n this.enabled = enabled;\n this.start = Date.now();\n }\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Logger.prototype.debug = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (this.enabled) {\n // eslint-disable-next-line no-console\n if (typeof window !== 'undefined' && window.console && typeof console.debug === 'function') {\n // eslint-disable-next-line no-console\n console.debug.apply(console, __spreadArray([this.id, this.getTime() + \"ms\"], args));\n }\n else {\n this.info.apply(this, args);\n }\n }\n };\n Logger.prototype.getTime = function () {\n return Date.now() - this.start;\n };\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Logger.prototype.info = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (this.enabled) {\n // eslint-disable-next-line no-console\n if (typeof window !== 'undefined' && window.console && typeof console.info === 'function') {\n // eslint-disable-next-line no-console\n console.info.apply(console, __spreadArray([this.id, this.getTime() + \"ms\"], args));\n }\n }\n };\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Logger.prototype.warn = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (this.enabled) {\n // eslint-disable-next-line no-console\n if (typeof window !== 'undefined' && window.console && typeof console.warn === 'function') {\n // eslint-disable-next-line no-console\n console.warn.apply(console, __spreadArray([this.id, this.getTime() + \"ms\"], args));\n }\n else {\n this.info.apply(this, args);\n }\n }\n };\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Logger.prototype.error = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (this.enabled) {\n // eslint-disable-next-line no-console\n if (typeof window !== 'undefined' && window.console && typeof console.error === 'function') {\n // eslint-disable-next-line no-console\n console.error.apply(console, __spreadArray([this.id, this.getTime() + \"ms\"], args));\n }\n else {\n this.info.apply(this, args);\n }\n }\n };\n Logger.instances = {};\n return Logger;\n }());\n\n var Context = /** @class */ (function () {\n function Context(options, windowBounds) {\n var _a;\n this.windowBounds = windowBounds;\n this.instanceName = \"#\" + Context.instanceCount++;\n this.logger = new Logger({ id: this.instanceName, enabled: options.logging });\n this.cache = (_a = options.cache) !== null && _a !== void 0 ? _a : new Cache(this, options);\n }\n Context.instanceCount = 1;\n return Context;\n }());\n\n var html2canvas = function (element, options) {\n if (options === void 0) { options = {}; }\n return renderElement(element, options);\n };\n if (typeof window !== 'undefined') {\n CacheStorage.setContext(window);\n }\n var renderElement = function (element, opts) { return __awaiter(void 0, void 0, void 0, function () {\n var ownerDocument, defaultView, resourceOptions, contextOptions, windowOptions, windowBounds, context, foreignObjectRendering, cloneOptions, documentCloner, clonedElement, container, _a, width, height, left, top, backgroundColor, renderOptions, canvas, renderer, root, renderer;\n var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;\n return __generator(this, function (_u) {\n switch (_u.label) {\n case 0:\n if (!element || typeof element !== 'object') {\n return [2 /*return*/, Promise.reject('Invalid element provided as first argument')];\n }\n ownerDocument = element.ownerDocument;\n if (!ownerDocument) {\n throw new Error(\"Element is not attached to a Document\");\n }\n defaultView = ownerDocument.defaultView;\n if (!defaultView) {\n throw new Error(\"Document is not attached to a Window\");\n }\n resourceOptions = {\n allowTaint: (_b = opts.allowTaint) !== null && _b !== void 0 ? _b : false,\n imageTimeout: (_c = opts.imageTimeout) !== null && _c !== void 0 ? _c : 15000,\n proxy: opts.proxy,\n useCORS: (_d = opts.useCORS) !== null && _d !== void 0 ? _d : false\n };\n contextOptions = __assign({ logging: (_e = opts.logging) !== null && _e !== void 0 ? _e : true, cache: opts.cache }, resourceOptions);\n windowOptions = {\n windowWidth: (_f = opts.windowWidth) !== null && _f !== void 0 ? _f : defaultView.innerWidth,\n windowHeight: (_g = opts.windowHeight) !== null && _g !== void 0 ? _g : defaultView.innerHeight,\n scrollX: (_h = opts.scrollX) !== null && _h !== void 0 ? _h : defaultView.pageXOffset,\n scrollY: (_j = opts.scrollY) !== null && _j !== void 0 ? _j : defaultView.pageYOffset\n };\n windowBounds = new Bounds(windowOptions.scrollX, windowOptions.scrollY, windowOptions.windowWidth, windowOptions.windowHeight);\n context = new Context(contextOptions, windowBounds);\n foreignObjectRendering = (_k = opts.foreignObjectRendering) !== null && _k !== void 0 ? _k : false;\n cloneOptions = {\n allowTaint: (_l = opts.allowTaint) !== null && _l !== void 0 ? _l : false,\n onclone: opts.onclone,\n ignoreElements: opts.ignoreElements,\n inlineImages: foreignObjectRendering,\n copyStyles: foreignObjectRendering\n };\n context.logger.debug(\"Starting document clone with size \" + windowBounds.width + \"x\" + windowBounds.height + \" scrolled to \" + -windowBounds.left + \",\" + -windowBounds.top);\n documentCloner = new DocumentCloner(context, element, cloneOptions);\n clonedElement = documentCloner.clonedReferenceElement;\n if (!clonedElement) {\n return [2 /*return*/, Promise.reject(\"Unable to find element in cloned iframe\")];\n }\n return [4 /*yield*/, documentCloner.toIFrame(ownerDocument, windowBounds)];\n case 1:\n container = _u.sent();\n _a = isBodyElement(clonedElement) || isHTMLElement(clonedElement)\n ? parseDocumentSize(clonedElement.ownerDocument)\n : parseBounds(context, clonedElement), width = _a.width, height = _a.height, left = _a.left, top = _a.top;\n backgroundColor = parseBackgroundColor(context, clonedElement, opts.backgroundColor);\n renderOptions = {\n canvas: opts.canvas,\n backgroundColor: backgroundColor,\n scale: (_o = (_m = opts.scale) !== null && _m !== void 0 ? _m : defaultView.devicePixelRatio) !== null && _o !== void 0 ? _o : 1,\n x: ((_p = opts.x) !== null && _p !== void 0 ? _p : 0) + left,\n y: ((_q = opts.y) !== null && _q !== void 0 ? _q : 0) + top,\n width: (_r = opts.width) !== null && _r !== void 0 ? _r : Math.ceil(width),\n height: (_s = opts.height) !== null && _s !== void 0 ? _s : Math.ceil(height)\n };\n if (!foreignObjectRendering) return [3 /*break*/, 3];\n context.logger.debug(\"Document cloned, using foreign object rendering\");\n renderer = new ForeignObjectRenderer(context, renderOptions);\n return [4 /*yield*/, renderer.render(clonedElement)];\n case 2:\n canvas = _u.sent();\n return [3 /*break*/, 5];\n case 3:\n context.logger.debug(\"Document cloned, element located at \" + left + \",\" + top + \" with size \" + width + \"x\" + height + \" using computed rendering\");\n context.logger.debug(\"Starting DOM parsing\");\n root = parseTree(context, clonedElement);\n if (backgroundColor === root.styles.backgroundColor) {\n root.styles.backgroundColor = COLORS.TRANSPARENT;\n }\n context.logger.debug(\"Starting renderer for element at \" + renderOptions.x + \",\" + renderOptions.y + \" with size \" + renderOptions.width + \"x\" + renderOptions.height);\n renderer = new CanvasRenderer(context, renderOptions);\n return [4 /*yield*/, renderer.render(root)];\n case 4:\n canvas = _u.sent();\n _u.label = 5;\n case 5:\n if ((_t = opts.removeContainer) !== null && _t !== void 0 ? _t : true) {\n if (!DocumentCloner.destroy(container)) {\n context.logger.error(\"Cannot detach cloned iframe as it is not in the DOM anymore\");\n }\n }\n context.logger.debug(\"Finished rendering\");\n return [2 /*return*/, canvas];\n }\n });\n }); };\n var parseBackgroundColor = function (context, element, backgroundColorOverride) {\n var ownerDocument = element.ownerDocument;\n // http://www.w3.org/TR/css3-background/#special-backgrounds\n var documentBackgroundColor = ownerDocument.documentElement\n ? parseColor(context, getComputedStyle(ownerDocument.documentElement).backgroundColor)\n : COLORS.TRANSPARENT;\n var bodyBackgroundColor = ownerDocument.body\n ? parseColor(context, getComputedStyle(ownerDocument.body).backgroundColor)\n : COLORS.TRANSPARENT;\n var defaultBackgroundColor = typeof backgroundColorOverride === 'string'\n ? parseColor(context, backgroundColorOverride)\n : backgroundColorOverride === null\n ? COLORS.TRANSPARENT\n : 0xffffffff;\n return element === ownerDocument.documentElement\n ? isTransparent(documentBackgroundColor)\n ? isTransparent(bodyBackgroundColor)\n ? defaultBackgroundColor\n : bodyBackgroundColor\n : documentBackgroundColor\n : defaultBackgroundColor;\n };\n\n return html2canvas;\n\n})));\n\n\n},{}],133:[function(require,module,exports){\n/*!\n * imagesLoaded v3.2.0\n * JavaScript is all like \"You images are done yet or what?\"\n * MIT License\n */\n\n( function( window, factory ) { 'use strict';\n // universal module definition\n\n /*global define: false, module: false, require: false */\n\n if ( typeof define == 'function' && define.amd ) {\n // AMD\n define( [\n 'eventEmitter/EventEmitter',\n 'eventie/eventie'\n ], function( EventEmitter, eventie ) {\n return factory( window, EventEmitter, eventie );\n });\n } else if ( typeof module == 'object' && module.exports ) {\n // CommonJS\n module.exports = factory(\n window,\n require('wolfy87-eventemitter'),\n require('eventie')\n );\n } else {\n // browser global\n window.imagesLoaded = factory(\n window,\n window.EventEmitter,\n window.eventie\n );\n }\n\n})( window,\n\n// -------------------------- factory -------------------------- //\n\nfunction factory( window, EventEmitter, eventie ) {\n\n'use strict';\n\nvar $ = window.jQuery;\nvar console = window.console;\n\n// -------------------------- helpers -------------------------- //\n\n// extend objects\nfunction extend( a, b ) {\n for ( var prop in b ) {\n a[ prop ] = b[ prop ];\n }\n return a;\n}\n\nvar objToString = Object.prototype.toString;\nfunction isArray( obj ) {\n return objToString.call( obj ) == '[object Array]';\n}\n\n// turn element or nodeList into an array\nfunction makeArray( obj ) {\n var ary = [];\n if ( isArray( obj ) ) {\n // use object if already an array\n ary = obj;\n } else if ( typeof obj.length == 'number' ) {\n // convert nodeList to array\n for ( var i=0; i < obj.length; i++ ) {\n ary.push( obj[i] );\n }\n } else {\n // array of single index\n ary.push( obj );\n }\n return ary;\n}\n\n // -------------------------- imagesLoaded -------------------------- //\n\n /**\n * @param {Array, Element, NodeList, String} elem\n * @param {Object or Function} options - if function, use as callback\n * @param {Function} onAlways - callback function\n */\n function ImagesLoaded( elem, options, onAlways ) {\n // coerce ImagesLoaded() without new, to be new ImagesLoaded()\n if ( !( this instanceof ImagesLoaded ) ) {\n return new ImagesLoaded( elem, options, onAlways );\n }\n // use elem as selector string\n if ( typeof elem == 'string' ) {\n elem = document.querySelectorAll( elem );\n }\n\n this.elements = makeArray( elem );\n this.options = extend( {}, this.options );\n\n if ( typeof options == 'function' ) {\n onAlways = options;\n } else {\n extend( this.options, options );\n }\n\n if ( onAlways ) {\n this.on( 'always', onAlways );\n }\n\n this.getImages();\n\n if ( $ ) {\n // add jQuery Deferred object\n this.jqDeferred = new $.Deferred();\n }\n\n // HACK check async to allow time to bind listeners\n var _this = this;\n setTimeout( function() {\n _this.check();\n });\n }\n\n ImagesLoaded.prototype = new EventEmitter();\n\n ImagesLoaded.prototype.options = {};\n\n ImagesLoaded.prototype.getImages = function() {\n this.images = [];\n\n // filter & find items if we have an item selector\n for ( var i=0; i < this.elements.length; i++ ) {\n var elem = this.elements[i];\n this.addElementImages( elem );\n }\n };\n\n /**\n * @param {Node} element\n */\n ImagesLoaded.prototype.addElementImages = function( elem ) {\n // filter siblings\n if ( elem.nodeName == 'IMG' ) {\n this.addImage( elem );\n }\n // get background image on element\n if ( this.options.background === true ) {\n this.addElementBackgroundImages( elem );\n }\n\n // find children\n // no non-element nodes, #143\n var nodeType = elem.nodeType;\n if ( !nodeType || !elementNodeTypes[ nodeType ] ) {\n return;\n }\n var childImgs = elem.querySelectorAll('img');\n // concat childElems to filterFound array\n for ( var i=0; i < childImgs.length; i++ ) {\n var img = childImgs[i];\n this.addImage( img );\n }\n\n // get child background images\n if ( typeof this.options.background == 'string' ) {\n var children = elem.querySelectorAll( this.options.background );\n for ( i=0; i < children.length; i++ ) {\n var child = children[i];\n this.addElementBackgroundImages( child );\n }\n }\n };\n\n var elementNodeTypes = {\n 1: true,\n 9: true,\n 11: true\n };\n\n ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) {\n var style = getStyle( elem );\n // get url inside url(\"...\")\n var reURL = /url\\(['\"]*([^'\"\\)]+)['\"]*\\)/gi;\n var matches = reURL.exec( style.backgroundImage );\n while ( matches !== null ) {\n var url = matches && matches[1];\n if ( url ) {\n this.addBackground( url, elem );\n }\n matches = reURL.exec( style.backgroundImage );\n }\n };\n\n // IE8\n var getStyle = window.getComputedStyle || function( elem ) {\n return elem.currentStyle;\n };\n\n /**\n * @param {Image} img\n */\n ImagesLoaded.prototype.addImage = function( img ) {\n var loadingImage = new LoadingImage( img );\n this.images.push( loadingImage );\n };\n\n ImagesLoaded.prototype.addBackground = function( url, elem ) {\n var background = new Background( url, elem );\n this.images.push( background );\n };\n\n ImagesLoaded.prototype.check = function() {\n var _this = this;\n this.progressedCount = 0;\n this.hasAnyBroken = false;\n // complete if no images\n if ( !this.images.length ) {\n this.complete();\n return;\n }\n\n function onProgress( image, elem, message ) {\n // HACK - Chrome triggers event before object properties have changed. #83\n setTimeout( function() {\n _this.progress( image, elem, message );\n });\n }\n\n for ( var i=0; i < this.images.length; i++ ) {\n var loadingImage = this.images[i];\n loadingImage.once( 'progress', onProgress );\n loadingImage.check();\n }\n };\n\n ImagesLoaded.prototype.progress = function( image, elem, message ) {\n this.progressedCount++;\n this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded;\n // progress event\n this.emit( 'progress', this, image, elem );\n if ( this.jqDeferred && this.jqDeferred.notify ) {\n this.jqDeferred.notify( this, image );\n }\n // check if completed\n if ( this.progressedCount == this.images.length ) {\n this.complete();\n }\n\n if ( this.options.debug && console ) {\n console.log( 'progress: ' + message, image, elem );\n }\n };\n\n ImagesLoaded.prototype.complete = function() {\n var eventName = this.hasAnyBroken ? 'fail' : 'done';\n this.isComplete = true;\n this.emit( eventName, this );\n this.emit( 'always', this );\n if ( this.jqDeferred ) {\n var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve';\n this.jqDeferred[ jqMethod ]( this );\n }\n };\n\n // -------------------------- -------------------------- //\n\n function LoadingImage( img ) {\n this.img = img;\n }\n\n LoadingImage.prototype = new EventEmitter();\n\n LoadingImage.prototype.check = function() {\n // If complete is true and browser supports natural sizes,\n // try to check for image status manually.\n var isComplete = this.getIsImageComplete();\n if ( isComplete ) {\n // report based on naturalWidth\n this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );\n return;\n }\n\n // If none of the checks above matched, simulate loading on detached element.\n this.proxyImage = new Image();\n eventie.bind( this.proxyImage, 'load', this );\n eventie.bind( this.proxyImage, 'error', this );\n // bind to image as well for Firefox. #191\n eventie.bind( this.img, 'load', this );\n eventie.bind( this.img, 'error', this );\n this.proxyImage.src = this.img.src;\n };\n\n LoadingImage.prototype.getIsImageComplete = function() {\n return this.img.complete && this.img.naturalWidth !== undefined;\n };\n\n LoadingImage.prototype.confirm = function( isLoaded, message ) {\n this.isLoaded = isLoaded;\n this.emit( 'progress', this, this.img, message );\n };\n\n // ----- events ----- //\n\n // trigger specified handler for event type\n LoadingImage.prototype.handleEvent = function( event ) {\n var method = 'on' + event.type;\n if ( this[ method ] ) {\n this[ method ]( event );\n }\n };\n\n LoadingImage.prototype.onload = function() {\n this.confirm( true, 'onload' );\n this.unbindEvents();\n };\n\n LoadingImage.prototype.onerror = function() {\n this.confirm( false, 'onerror' );\n this.unbindEvents();\n };\n\n LoadingImage.prototype.unbindEvents = function() {\n eventie.unbind( this.proxyImage, 'load', this );\n eventie.unbind( this.proxyImage, 'error', this );\n eventie.unbind( this.img, 'load', this );\n eventie.unbind( this.img, 'error', this );\n };\n\n // -------------------------- Background -------------------------- //\n\n function Background( url, element ) {\n this.url = url;\n this.element = element;\n this.img = new Image();\n }\n\n // inherit LoadingImage prototype\n Background.prototype = new LoadingImage();\n\n Background.prototype.check = function() {\n eventie.bind( this.img, 'load', this );\n eventie.bind( this.img, 'error', this );\n this.img.src = this.url;\n // check if image is already complete\n var isComplete = this.getIsImageComplete();\n if ( isComplete ) {\n this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );\n this.unbindEvents();\n }\n };\n\n Background.prototype.unbindEvents = function() {\n eventie.unbind( this.img, 'load', this );\n eventie.unbind( this.img, 'error', this );\n };\n\n Background.prototype.confirm = function( isLoaded, message ) {\n this.isLoaded = isLoaded;\n this.emit( 'progress', this, this.element, message );\n };\n\n // -------------------------- jQuery -------------------------- //\n\n ImagesLoaded.makeJQueryPlugin = function( jQuery ) {\n jQuery = jQuery || window.jQuery;\n if ( !jQuery ) {\n return;\n }\n // set local variable\n $ = jQuery;\n // $().imagesLoaded()\n $.fn.imagesLoaded = function( options, callback ) {\n var instance = new ImagesLoaded( this, options, callback );\n return instance.jqDeferred.promise( $(this) );\n };\n };\n // try making plugin\n ImagesLoaded.makeJQueryPlugin();\n\n // -------------------------- -------------------------- //\n\n return ImagesLoaded;\n\n});\n\n},{\"eventie\":121,\"wolfy87-eventemitter\":162}],134:[function(require,module,exports){\n/*!\n * jQuery Validation Plugin v1.21.0\n *\n * https://jqueryvalidation.org/\n *\n * Copyright (c) 2024 Jörn Zaefferer\n * Released under the MIT license\n */\n(function( factory ) {\n\tif ( typeof define === \"function\" && define.amd ) {\n\t\tdefine( [\"jquery\"], factory );\n\t} else if (typeof module === \"object\" && module.exports) {\n\t\tmodule.exports = factory( require( \"jquery\" ) );\n\t} else {\n\t\tfactory( jQuery );\n\t}\n}(function( $ ) {\n\n$.extend( $.fn, {\n\n\t// https://jqueryvalidation.org/validate/\n\tvalidate: function( options ) {\n\n\t\t// If nothing is selected, return nothing; can't chain anyway\n\t\tif ( !this.length ) {\n\t\t\tif ( options && options.debug && window.console ) {\n\t\t\t\tconsole.warn( \"Nothing selected, can't validate, returning nothing.\" );\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\t// Check if a validator for this form was already created\n\t\tvar validator = $.data( this[ 0 ], \"validator\" );\n\t\tif ( validator ) {\n\t\t\treturn validator;\n\t\t}\n\n\t\t// Add novalidate tag if HTML5.\n\t\tthis.attr( \"novalidate\", \"novalidate\" );\n\n\t\tvalidator = new $.validator( options, this[ 0 ] );\n\t\t$.data( this[ 0 ], \"validator\", validator );\n\n\t\tif ( validator.settings.onsubmit ) {\n\n\t\t\tthis.on( \"click.validate\", \":submit\", function( event ) {\n\n\t\t\t\t// Track the used submit button to properly handle scripted\n\t\t\t\t// submits later.\n\t\t\t\tvalidator.submitButton = event.currentTarget;\n\n\t\t\t\t// Allow suppressing validation by adding a cancel class to the submit button\n\t\t\t\tif ( $( this ).hasClass( \"cancel\" ) ) {\n\t\t\t\t\tvalidator.cancelSubmit = true;\n\t\t\t\t}\n\n\t\t\t\t// Allow suppressing validation by adding the html5 formnovalidate attribute to the submit button\n\t\t\t\tif ( $( this ).attr( \"formnovalidate\" ) !== undefined ) {\n\t\t\t\t\tvalidator.cancelSubmit = true;\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Validate the form on submit\n\t\t\tthis.on( \"submit.validate\", function( event ) {\n\t\t\t\tif ( validator.settings.debug ) {\n\n\t\t\t\t\t// Prevent form submit to be able to see console output\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\n\t\t\t\tfunction handle() {\n\t\t\t\t\tvar hidden, result;\n\n\t\t\t\t\t// Insert a hidden input as a replacement for the missing submit button\n\t\t\t\t\t// The hidden input is inserted in two cases:\n\t\t\t\t\t// - A user defined a `submitHandler`\n\t\t\t\t\t// - There was a pending request due to `remote` method and `stopRequest()`\n\t\t\t\t\t// was called to submit the form in case it's valid\n\t\t\t\t\tif ( validator.submitButton && ( validator.settings.submitHandler || validator.formSubmitted ) ) {\n\t\t\t\t\t\thidden = $( \"<input type='hidden'/>\" )\n\t\t\t\t\t\t\t.attr( \"name\", validator.submitButton.name )\n\t\t\t\t\t\t\t.val( $( validator.submitButton ).val() )\n\t\t\t\t\t\t\t.appendTo( validator.currentForm );\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( validator.settings.submitHandler && !validator.settings.debug ) {\n\t\t\t\t\t\tresult = validator.settings.submitHandler.call( validator, validator.currentForm, event );\n\t\t\t\t\t\tif ( hidden ) {\n\n\t\t\t\t\t\t\t// And clean up afterwards; thanks to no-block-scope, hidden can be referenced\n\t\t\t\t\t\t\thidden.remove();\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( result !== undefined ) {\n\t\t\t\t\t\t\treturn result;\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\t// Prevent submit for invalid forms or custom submit handlers\n\t\t\t\tif ( validator.cancelSubmit ) {\n\t\t\t\t\tvalidator.cancelSubmit = false;\n\t\t\t\t\treturn handle();\n\t\t\t\t}\n\t\t\t\tif ( validator.form() ) {\n\t\t\t\t\tif ( validator.pendingRequest ) {\n\t\t\t\t\t\tvalidator.formSubmitted = true;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\treturn handle();\n\t\t\t\t} else {\n\t\t\t\t\tvalidator.focusInvalid();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\treturn validator;\n\t},\n\n\t// https://jqueryvalidation.org/valid/\n\tvalid: function() {\n\t\tvar valid, validator, errorList;\n\n\t\tif ( $( this[ 0 ] ).is( \"form\" ) ) {\n\t\t\tvalid = this.validate().form();\n\t\t} else {\n\t\t\terrorList = [];\n\t\t\tvalid = true;\n\t\t\tvalidator = $( this[ 0 ].form ).validate();\n\t\t\tthis.each( function() {\n\t\t\t\tvalid = validator.element( this ) && valid;\n\t\t\t\tif ( !valid ) {\n\t\t\t\t\terrorList = errorList.concat( validator.errorList );\n\t\t\t\t}\n\t\t\t} );\n\t\t\tvalidator.errorList = errorList;\n\t\t}\n\t\treturn valid;\n\t},\n\n\t// https://jqueryvalidation.org/rules/\n\trules: function( command, argument ) {\n\t\tvar element = this[ 0 ],\n\t\t\tisContentEditable = typeof this.attr( \"contenteditable\" ) !== \"undefined\" && this.attr( \"contenteditable\" ) !== \"false\",\n\t\t\tsettings, staticRules, existingRules, data, param, filtered;\n\n\t\t// If nothing is selected, return empty object; can't chain anyway\n\t\tif ( element == null ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( !element.form && isContentEditable ) {\n\t\t\telement.form = this.closest( \"form\" )[ 0 ];\n\t\t\telement.name = this.attr( \"name\" );\n\t\t}\n\n\t\tif ( element.form == null ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( command ) {\n\t\t\tsettings = $.data( element.form, \"validator\" ).settings;\n\t\t\tstaticRules = settings.rules;\n\t\t\texistingRules = $.validator.staticRules( element );\n\t\t\tswitch ( command ) {\n\t\t\tcase \"add\":\n\t\t\t\t$.extend( existingRules, $.validator.normalizeRule( argument ) );\n\n\t\t\t\t// Remove messages from rules, but allow them to be set separately\n\t\t\t\tdelete existingRules.messages;\n\t\t\t\tstaticRules[ element.name ] = existingRules;\n\t\t\t\tif ( argument.messages ) {\n\t\t\t\t\tsettings.messages[ element.name ] = $.extend( settings.messages[ element.name ], argument.messages );\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase \"remove\":\n\t\t\t\tif ( !argument ) {\n\t\t\t\t\tdelete staticRules[ element.name ];\n\t\t\t\t\treturn existingRules;\n\t\t\t\t}\n\t\t\t\tfiltered = {};\n\t\t\t\t$.each( argument.split( /\\s/ ), function( index, method ) {\n\t\t\t\t\tfiltered[ method ] = existingRules[ method ];\n\t\t\t\t\tdelete existingRules[ method ];\n\t\t\t\t} );\n\t\t\t\treturn filtered;\n\t\t\t}\n\t\t}\n\n\t\tdata = $.validator.normalizeRules(\n\t\t$.extend(\n\t\t\t{},\n\t\t\t$.validator.classRules( element ),\n\t\t\t$.validator.attributeRules( element ),\n\t\t\t$.validator.dataRules( element ),\n\t\t\t$.validator.staticRules( element )\n\t\t), element );\n\n\t\t// Make sure required is at front\n\t\tif ( data.required ) {\n\t\t\tparam = data.required;\n\t\t\tdelete data.required;\n\t\t\tdata = $.extend( { required: param }, data );\n\t\t}\n\n\t\t// Make sure remote is at back\n\t\tif ( data.remote ) {\n\t\t\tparam = data.remote;\n\t\t\tdelete data.remote;\n\t\t\tdata = $.extend( data, { remote: param } );\n\t\t}\n\n\t\treturn data;\n\t}\n} );\n\n// JQuery trim is deprecated, provide a trim method based on String.prototype.trim\nvar trim = function( str ) {\n\n\t// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trim#Polyfill\n\treturn str.replace( /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, \"\" );\n};\n\n// Custom selectors\n$.extend( $.expr.pseudos || $.expr[ \":\" ], {\t\t// '|| $.expr[ \":\" ]' here enables backwards compatibility to jQuery 1.7. Can be removed when dropping jQ 1.7.x support\n\n\t// https://jqueryvalidation.org/blank-selector/\n\tblank: function( a ) {\n\t\treturn !trim( \"\" + $( a ).val() );\n\t},\n\n\t// https://jqueryvalidation.org/filled-selector/\n\tfilled: function( a ) {\n\t\tvar val = $( a ).val();\n\t\treturn val !== null && !!trim( \"\" + val );\n\t},\n\n\t// https://jqueryvalidation.org/unchecked-selector/\n\tunchecked: function( a ) {\n\t\treturn !$( a ).prop( \"checked\" );\n\t}\n} );\n\n// Constructor for validator\n$.validator = function( options, form ) {\n\tthis.settings = $.extend( true, {}, $.validator.defaults, options );\n\tthis.currentForm = form;\n\tthis.init();\n};\n\n// https://jqueryvalidation.org/jQuery.validator.format/\n$.validator.format = function( source, params ) {\n\tif ( arguments.length === 1 ) {\n\t\treturn function() {\n\t\t\tvar args = $.makeArray( arguments );\n\t\t\targs.unshift( source );\n\t\t\treturn $.validator.format.apply( this, args );\n\t\t};\n\t}\n\tif ( params === undefined ) {\n\t\treturn source;\n\t}\n\tif ( arguments.length > 2 && params.constructor !== Array ) {\n\t\tparams = $.makeArray( arguments ).slice( 1 );\n\t}\n\tif ( params.constructor !== Array ) {\n\t\tparams = [ params ];\n\t}\n\t$.each( params, function( i, n ) {\n\t\tsource = source.replace( new RegExp( \"\\\\{\" + i + \"\\\\}\", \"g\" ), function() {\n\t\t\treturn n;\n\t\t} );\n\t} );\n\treturn source;\n};\n\n$.extend( $.validator, {\n\n\tdefaults: {\n\t\tmessages: {},\n\t\tgroups: {},\n\t\trules: {},\n\t\terrorClass: \"error\",\n\t\tpendingClass: \"pending\",\n\t\tvalidClass: \"valid\",\n\t\terrorElement: \"label\",\n\t\tfocusCleanup: false,\n\t\tfocusInvalid: true,\n\t\terrorContainer: $( [] ),\n\t\terrorLabelContainer: $( [] ),\n\t\tonsubmit: true,\n\t\tignore: \":hidden\",\n\t\tignoreTitle: false,\n\t\tcustomElements: [],\n\t\tonfocusin: function( element ) {\n\t\t\tthis.lastActive = element;\n\n\t\t\t// Hide error label and remove error class on focus if enabled\n\t\t\tif ( this.settings.focusCleanup ) {\n\t\t\t\tif ( this.settings.unhighlight ) {\n\t\t\t\t\tthis.settings.unhighlight.call( this, element, this.settings.errorClass, this.settings.validClass );\n\t\t\t\t}\n\t\t\t\tthis.hideThese( this.errorsFor( element ) );\n\t\t\t}\n\t\t},\n\t\tonfocusout: function( element ) {\n\t\t\tif ( !this.checkable( element ) && ( element.name in this.submitted || !this.optional( element ) ) ) {\n\t\t\t\tthis.element( element );\n\t\t\t}\n\t\t},\n\t\tonkeyup: function( element, event ) {\n\n\t\t\t// Avoid revalidate the field when pressing one of the following keys\n\t\t\t// Shift => 16\n\t\t\t// Ctrl => 17\n\t\t\t// Alt => 18\n\t\t\t// Caps lock => 20\n\t\t\t// End => 35\n\t\t\t// Home => 36\n\t\t\t// Left arrow => 37\n\t\t\t// Up arrow => 38\n\t\t\t// Right arrow => 39\n\t\t\t// Down arrow => 40\n\t\t\t// Insert => 45\n\t\t\t// Num lock => 144\n\t\t\t// AltGr key => 225\n\t\t\tvar excludedKeys = [\n\t\t\t\t16, 17, 18, 20, 35, 36, 37,\n\t\t\t\t38, 39, 40, 45, 144, 225\n\t\t\t];\n\n\t\t\tif ( event.which === 9 && this.elementValue( element ) === \"\" || $.inArray( event.keyCode, excludedKeys ) !== -1 ) {\n\t\t\t\treturn;\n\t\t\t} else if ( element.name in this.submitted || element.name in this.invalid ) {\n\t\t\t\tthis.element( element );\n\t\t\t}\n\t\t},\n\t\tonclick: function( element ) {\n\n\t\t\t// Click on selects, radiobuttons and checkboxes\n\t\t\tif ( element.name in this.submitted ) {\n\t\t\t\tthis.element( element );\n\n\t\t\t// Or option elements, check parent select in that case\n\t\t\t} else if ( element.parentNode.name in this.submitted ) {\n\t\t\t\tthis.element( element.parentNode );\n\t\t\t}\n\t\t},\n\t\thighlight: function( element, errorClass, validClass ) {\n\t\t\tif ( element.type === \"radio\" ) {\n\t\t\t\tthis.findByName( element.name ).addClass( errorClass ).removeClass( validClass );\n\t\t\t} else {\n\t\t\t\t$( element ).addClass( errorClass ).removeClass( validClass );\n\t\t\t}\n\t\t},\n\t\tunhighlight: function( element, errorClass, validClass ) {\n\t\t\tif ( element.type === \"radio\" ) {\n\t\t\t\tthis.findByName( element.name ).removeClass( errorClass ).addClass( validClass );\n\t\t\t} else {\n\t\t\t\t$( element ).removeClass( errorClass ).addClass( validClass );\n\t\t\t}\n\t\t}\n\t},\n\n\t// https://jqueryvalidation.org/jQuery.validator.setDefaults/\n\tsetDefaults: function( settings ) {\n\t\t$.extend( $.validator.defaults, settings );\n\t},\n\n\tmessages: {\n\t\trequired: \"This field is required.\",\n\t\tremote: \"Please fix this field.\",\n\t\temail: \"Please enter a valid email address.\",\n\t\turl: \"Please enter a valid URL.\",\n\t\tdate: \"Please enter a valid date.\",\n\t\tdateISO: \"Please enter a valid date (ISO).\",\n\t\tnumber: \"Please enter a valid number.\",\n\t\tdigits: \"Please enter only digits.\",\n\t\tequalTo: \"Please enter the same value again.\",\n\t\tmaxlength: $.validator.format( \"Please enter no more than {0} characters.\" ),\n\t\tminlength: $.validator.format( \"Please enter at least {0} characters.\" ),\n\t\trangelength: $.validator.format( \"Please enter a value between {0} and {1} characters long.\" ),\n\t\trange: $.validator.format( \"Please enter a value between {0} and {1}.\" ),\n\t\tmax: $.validator.format( \"Please enter a value less than or equal to {0}.\" ),\n\t\tmin: $.validator.format( \"Please enter a value greater than or equal to {0}.\" ),\n\t\tstep: $.validator.format( \"Please enter a multiple of {0}.\" )\n\t},\n\n\tautoCreateRanges: false,\n\n\tprototype: {\n\n\t\tinit: function() {\n\t\t\tthis.labelContainer = $( this.settings.errorLabelContainer );\n\t\t\tthis.errorContext = this.labelContainer.length && this.labelContainer || $( this.currentForm );\n\t\t\tthis.containers = $( this.settings.errorContainer ).add( this.settings.errorLabelContainer );\n\t\t\tthis.submitted = {};\n\t\t\tthis.valueCache = {};\n\t\t\tthis.pendingRequest = 0;\n\t\t\tthis.pending = {};\n\t\t\tthis.invalid = {};\n\t\t\tthis.reset();\n\n\t\t\tvar currentForm = this.currentForm,\n\t\t\t\tgroups = ( this.groups = {} ),\n\t\t\t\trules;\n\t\t\t$.each( this.settings.groups, function( key, value ) {\n\t\t\t\tif ( typeof value === \"string\" ) {\n\t\t\t\t\tvalue = value.split( /\\s/ );\n\t\t\t\t}\n\t\t\t\t$.each( value, function( index, name ) {\n\t\t\t\t\tgroups[ name ] = key;\n\t\t\t\t} );\n\t\t\t} );\n\t\t\trules = this.settings.rules;\n\t\t\t$.each( rules, function( key, value ) {\n\t\t\t\trules[ key ] = $.validator.normalizeRule( value );\n\t\t\t} );\n\n\t\t\tfunction delegate( event ) {\n\t\t\t\tvar isContentEditable = typeof $( this ).attr( \"contenteditable\" ) !== \"undefined\" && $( this ).attr( \"contenteditable\" ) !== \"false\";\n\n\t\t\t\t// Set form expando on contenteditable\n\t\t\t\tif ( !this.form && isContentEditable ) {\n\t\t\t\t\tthis.form = $( this ).closest( \"form\" )[ 0 ];\n\t\t\t\t\tthis.name = $( this ).attr( \"name\" );\n\t\t\t\t}\n\n\t\t\t\t// Ignore the element if it belongs to another form. This will happen mainly\n\t\t\t\t// when setting the `form` attribute of an input to the id of another form.\n\t\t\t\tif ( currentForm !== this.form ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tvar validator = $.data( this.form, \"validator\" ),\n\t\t\t\t\teventType = \"on\" + event.type.replace( /^validate/, \"\" ),\n\t\t\t\t\tsettings = validator.settings;\n\t\t\t\tif ( settings[ eventType ] && !$( this ).is( settings.ignore ) ) {\n\t\t\t\t\tsettings[ eventType ].call( validator, this, event );\n\t\t\t\t}\n\t\t\t}\n\t\t\tvar focusListeners = [ \":text\", \"[type='password']\", \"[type='file']\", \"select\", \"textarea\", \"[type='number']\", \"[type='search']\",\n\t\t\t\t\t\t\t\t\"[type='tel']\", \"[type='url']\", \"[type='email']\", \"[type='datetime']\", \"[type='date']\", \"[type='month']\",\n\t\t\t\t\t\t\t\t\"[type='week']\", \"[type='time']\", \"[type='datetime-local']\", \"[type='range']\", \"[type='color']\",\n\t\t\t\t\t\t\t\t\"[type='radio']\", \"[type='checkbox']\", \"[contenteditable]\", \"[type='button']\" ];\n\t\t\tvar clickListeners = [ \"select\", \"option\", \"[type='radio']\", \"[type='checkbox']\" ];\n\t\t\t$( this.currentForm )\n\t\t\t\t.on( \"focusin.validate focusout.validate keyup.validate\", focusListeners.concat( this.settings.customElements ).join( \", \" ), delegate )\n\n\t\t\t\t// Support: Chrome, oldIE\n\t\t\t\t// \"select\" is provided as event.target when clicking a option\n\t\t\t\t.on( \"click.validate\", clickListeners.concat( this.settings.customElements ).join( \", \" ), delegate );\n\n\t\t\tif ( this.settings.invalidHandler ) {\n\t\t\t\t$( this.currentForm ).on( \"invalid-form.validate\", this.settings.invalidHandler );\n\t\t\t}\n\t\t},\n\n\t\t// https://jqueryvalidation.org/Validator.form/\n\t\tform: function() {\n\t\t\tthis.checkForm();\n\t\t\t$.extend( this.submitted, this.errorMap );\n\t\t\tthis.invalid = $.extend( {}, this.errorMap );\n\t\t\tif ( !this.valid() ) {\n\t\t\t\t$( this.currentForm ).triggerHandler( \"invalid-form\", [ this ] );\n\t\t\t}\n\t\t\tthis.showErrors();\n\t\t\treturn this.valid();\n\t\t},\n\n\t\tcheckForm: function() {\n\t\t\tthis.prepareForm();\n\t\t\tfor ( var i = 0, elements = ( this.currentElements = this.elements() ); elements[ i ]; i++ ) {\n\t\t\t\tthis.check( elements[ i ] );\n\t\t\t}\n\t\t\treturn this.valid();\n\t\t},\n\n\t\t// https://jqueryvalidation.org/Validator.element/\n\t\telement: function( element ) {\n\t\t\tvar cleanElement = this.clean( element ),\n\t\t\t\tcheckElement = this.validationTargetFor( cleanElement ),\n\t\t\t\tv = this,\n\t\t\t\tresult = true,\n\t\t\t\trs, group;\n\n\t\t\tif ( checkElement === undefined ) {\n\t\t\t\tdelete this.invalid[ cleanElement.name ];\n\t\t\t} else {\n\t\t\t\tthis.prepareElement( checkElement );\n\t\t\t\tthis.currentElements = $( checkElement );\n\n\t\t\t\t// If this element is grouped, then validate all group elements already\n\t\t\t\t// containing a value\n\t\t\t\tgroup = this.groups[ checkElement.name ];\n\t\t\t\tif ( group ) {\n\t\t\t\t\t$.each( this.groups, function( name, testgroup ) {\n\t\t\t\t\t\tif ( testgroup === group && name !== checkElement.name ) {\n\t\t\t\t\t\t\tcleanElement = v.validationTargetFor( v.clean( v.findByName( name ) ) );\n\t\t\t\t\t\t\tif ( cleanElement && cleanElement.name in v.invalid ) {\n\t\t\t\t\t\t\t\tv.currentElements.push( cleanElement );\n\t\t\t\t\t\t\t\tresult = v.check( cleanElement ) && result;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\trs = this.check( checkElement ) !== false;\n\t\t\t\tresult = result && rs;\n\t\t\t\tif ( rs ) {\n\t\t\t\t\tthis.invalid[ checkElement.name ] = false;\n\t\t\t\t} else {\n\t\t\t\t\tthis.invalid[ checkElement.name ] = true;\n\t\t\t\t}\n\n\t\t\t\tif ( !this.numberOfInvalids() ) {\n\n\t\t\t\t\t// Hide error containers on last error\n\t\t\t\t\tthis.toHide = this.toHide.add( this.containers );\n\t\t\t\t}\n\t\t\t\tthis.showErrors();\n\n\t\t\t\t// Add aria-invalid status for screen readers\n\t\t\t\t$( element ).attr( \"aria-invalid\", !rs );\n\t\t\t}\n\n\t\t\treturn result;\n\t\t},\n\n\t\t// https://jqueryvalidation.org/Validator.showErrors/\n\t\tshowErrors: function( errors ) {\n\t\t\tif ( errors ) {\n\t\t\t\tvar validator = this;\n\n\t\t\t\t// Add items to error list and map\n\t\t\t\t$.extend( this.errorMap, errors );\n\t\t\t\tthis.errorList = $.map( this.errorMap, function( message, name ) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\tmessage: message,\n\t\t\t\t\t\telement: validator.findByName( name )[ 0 ]\n\t\t\t\t\t};\n\t\t\t\t} );\n\n\t\t\t\t// Remove items from success list\n\t\t\t\tthis.successList = $.grep( this.successList, function( element ) {\n\t\t\t\t\treturn !( element.name in errors );\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( this.settings.showErrors ) {\n\t\t\t\tthis.settings.showErrors.call( this, this.errorMap, this.errorList );\n\t\t\t} else {\n\t\t\t\tthis.defaultShowErrors();\n\t\t\t}\n\t\t},\n\n\t\t// https://jqueryvalidation.org/Validator.resetForm/\n\t\tresetForm: function() {\n\t\t\tif ( $.fn.resetForm ) {\n\t\t\t\t$( this.currentForm ).resetForm();\n\t\t\t}\n\t\t\tthis.invalid = {};\n\t\t\tthis.submitted = {};\n\t\t\tthis.prepareForm();\n\t\t\tthis.hideErrors();\n\t\t\tvar elements = this.elements()\n\t\t\t\t.removeData( \"previousValue\" )\n\t\t\t\t.removeAttr( \"aria-invalid\" );\n\n\t\t\tthis.resetElements( elements );\n\t\t},\n\n\t\tresetElements: function( elements ) {\n\t\t\tvar i;\n\n\t\t\tif ( this.settings.unhighlight ) {\n\t\t\t\tfor ( i = 0; elements[ i ]; i++ ) {\n\t\t\t\t\tthis.settings.unhighlight.call( this, elements[ i ],\n\t\t\t\t\t\tthis.settings.errorClass, \"\" );\n\t\t\t\t\tthis.findByName( elements[ i ].name ).removeClass( this.settings.validClass );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\telements\n\t\t\t\t\t.removeClass( this.settings.errorClass )\n\t\t\t\t\t.removeClass( this.settings.validClass );\n\t\t\t}\n\t\t},\n\n\t\tnumberOfInvalids: function() {\n\t\t\treturn this.objectLength( this.invalid );\n\t\t},\n\n\t\tobjectLength: function( obj ) {\n\t\t\t/* jshint unused: false */\n\t\t\tvar count = 0,\n\t\t\t\ti;\n\t\t\tfor ( i in obj ) {\n\n\t\t\t\t// This check allows counting elements with empty error\n\t\t\t\t// message as invalid elements\n\t\t\t\tif ( obj[ i ] !== undefined && obj[ i ] !== null && obj[ i ] !== false ) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn count;\n\t\t},\n\n\t\thideErrors: function() {\n\t\t\tthis.hideThese( this.toHide );\n\t\t},\n\n\t\thideThese: function( errors ) {\n\t\t\terrors.not( this.containers ).text( \"\" );\n\t\t\tthis.addWrapper( errors ).hide();\n\t\t},\n\n\t\tvalid: function() {\n\t\t\treturn this.size() === 0;\n\t\t},\n\n\t\tsize: function() {\n\t\t\treturn this.errorList.length;\n\t\t},\n\n\t\tfocusInvalid: function() {\n\t\t\tif ( this.settings.focusInvalid ) {\n\t\t\t\ttry {\n\t\t\t\t\t$( this.findLastActive() || this.errorList.length && this.errorList[ 0 ].element || [] )\n\t\t\t\t\t.filter( \":visible\" )\n\t\t\t\t\t.trigger( \"focus\" )\n\n\t\t\t\t\t// Manually trigger focusin event; without it, focusin handler isn't called, findLastActive won't have anything to find\n\t\t\t\t\t.trigger( \"focusin\" );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// Ignore IE throwing errors when focusing hidden elements\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tfindLastActive: function() {\n\t\t\tvar lastActive = this.lastActive;\n\t\t\treturn lastActive && $.grep( this.errorList, function( n ) {\n\t\t\t\treturn n.element.name === lastActive.name;\n\t\t\t} ).length === 1 && lastActive;\n\t\t},\n\n\t\telements: function() {\n\t\t\tvar validator = this,\n\t\t\t\trulesCache = {},\n\t\t\t\tselectors = [ \"input\", \"select\", \"textarea\", \"[contenteditable]\" ];\n\n\t\t\t// Select all valid inputs inside the form (no submit or reset buttons)\n\t\t\treturn $( this.currentForm )\n\t\t\t.find( selectors.concat( this.settings.customElements ).join( \", \" ) )\n\t\t\t.not( \":submit, :reset, :image, :disabled\" )\n\t\t\t.not( this.settings.ignore )\n\t\t\t.filter( function() {\n\t\t\t\tvar name = this.name || $( this ).attr( \"name\" ); // For contenteditable\n\t\t\t\tvar isContentEditable = typeof $( this ).attr( \"contenteditable\" ) !== \"undefined\" && $( this ).attr( \"contenteditable\" ) !== \"false\";\n\n\t\t\t\tif ( !name && validator.settings.debug && window.console ) {\n\t\t\t\t\tconsole.error( \"%o has no name assigned\", this );\n\t\t\t\t}\n\n\t\t\t\t// Set form expando on contenteditable\n\t\t\t\tif ( isContentEditable ) {\n\t\t\t\t\tthis.form = $( this ).closest( \"form\" )[ 0 ];\n\t\t\t\t\tthis.name = name;\n\t\t\t\t}\n\n\t\t\t\t// Ignore elements that belong to other/nested forms\n\t\t\t\tif ( this.form !== validator.currentForm ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\t// Select only the first element for each name, and only those with rules specified\n\t\t\t\tif ( name in rulesCache || !validator.objectLength( $( this ).rules() ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\trulesCache[ name ] = true;\n\t\t\t\treturn true;\n\t\t\t} );\n\t\t},\n\n\t\tclean: function( selector ) {\n\t\t\treturn $( selector )[ 0 ];\n\t\t},\n\n\t\terrors: function() {\n\t\t\tvar errorClass = this.settings.errorClass.split( \" \" ).join( \".\" );\n\t\t\treturn $( this.settings.errorElement + \".\" + errorClass, this.errorContext );\n\t\t},\n\n\t\tresetInternals: function() {\n\t\t\tthis.successList = [];\n\t\t\tthis.errorList = [];\n\t\t\tthis.errorMap = {};\n\t\t\tthis.toShow = $( [] );\n\t\t\tthis.toHide = $( [] );\n\t\t},\n\n\t\treset: function() {\n\t\t\tthis.resetInternals();\n\t\t\tthis.currentElements = $( [] );\n\t\t},\n\n\t\tprepareForm: function() {\n\t\t\tthis.reset();\n\t\t\tthis.toHide = this.errors().add( this.containers );\n\t\t},\n\n\t\tprepareElement: function( element ) {\n\t\t\tthis.reset();\n\t\t\tthis.toHide = this.errorsFor( element );\n\t\t},\n\n\t\telementValue: function( element ) {\n\t\t\tvar $element = $( element ),\n\t\t\t\ttype = element.type,\n\t\t\t\tisContentEditable = typeof $element.attr( \"contenteditable\" ) !== \"undefined\" && $element.attr( \"contenteditable\" ) !== \"false\",\n\t\t\t\tval, idx;\n\n\t\t\tif ( type === \"radio\" || type === \"checkbox\" ) {\n\t\t\t\treturn this.findByName( element.name ).filter( \":checked\" ).val();\n\t\t\t} else if ( type === \"number\" && typeof element.validity !== \"undefined\" ) {\n\t\t\t\treturn element.validity.badInput ? \"NaN\" : $element.val();\n\t\t\t}\n\n\t\t\tif ( isContentEditable ) {\n\t\t\t\tval = $element.text();\n\t\t\t} else {\n\t\t\t\tval = $element.val();\n\t\t\t}\n\n\t\t\tif ( type === \"file\" ) {\n\n\t\t\t\t// Modern browser (chrome & safari)\n\t\t\t\tif ( val.substr( 0, 12 ) === \"C:\\\\fakepath\\\\\" ) {\n\t\t\t\t\treturn val.substr( 12 );\n\t\t\t\t}\n\n\t\t\t\t// Legacy browsers\n\t\t\t\t// Unix-based path\n\t\t\t\tidx = val.lastIndexOf( \"/\" );\n\t\t\t\tif ( idx >= 0 ) {\n\t\t\t\t\treturn val.substr( idx + 1 );\n\t\t\t\t}\n\n\t\t\t\t// Windows-based path\n\t\t\t\tidx = val.lastIndexOf( \"\\\\\" );\n\t\t\t\tif ( idx >= 0 ) {\n\t\t\t\t\treturn val.substr( idx + 1 );\n\t\t\t\t}\n\n\t\t\t\t// Just the file name\n\t\t\t\treturn val;\n\t\t\t}\n\n\t\t\tif ( typeof val === \"string\" ) {\n\t\t\t\treturn val.replace( /\\r/g, \"\" );\n\t\t\t}\n\t\t\treturn val;\n\t\t},\n\n\t\tcheck: function( element ) {\n\t\t\telement = this.validationTargetFor( this.clean( element ) );\n\n\t\t\tvar rules = $( element ).rules(),\n\t\t\t\trulesCount = $.map( rules, function( n, i ) {\n\t\t\t\t\treturn i;\n\t\t\t\t} ).length,\n\t\t\t\tdependencyMismatch = false,\n\t\t\t\tval = this.elementValue( element ),\n\t\t\t\tresult, method, rule, normalizer;\n\n\t\t\t// Abort any pending Ajax request from a previous call to this method.\n\t\t\tthis.abortRequest( element );\n\n\t\t\t// Prioritize the local normalizer defined for this element over the global one\n\t\t\t// if the former exists, otherwise user the global one in case it exists.\n\t\t\tif ( typeof rules.normalizer === \"function\" ) {\n\t\t\t\tnormalizer = rules.normalizer;\n\t\t\t} else if (\ttypeof this.settings.normalizer === \"function\" ) {\n\t\t\t\tnormalizer = this.settings.normalizer;\n\t\t\t}\n\n\t\t\t// If normalizer is defined, then call it to retreive the changed value instead\n\t\t\t// of using the real one.\n\t\t\t// Note that `this` in the normalizer is `element`.\n\t\t\tif ( normalizer ) {\n\t\t\t\tval = normalizer.call( element, val );\n\n\t\t\t\t// Delete the normalizer from rules to avoid treating it as a pre-defined method.\n\t\t\t\tdelete rules.normalizer;\n\t\t\t}\n\n\t\t\tfor ( method in rules ) {\n\t\t\t\trule = { method: method, parameters: rules[ method ] };\n\t\t\t\ttry {\n\t\t\t\t\tresult = $.validator.methods[ method ].call( this, val, element, rule.parameters );\n\n\t\t\t\t\t// If a method indicates that the field is optional and therefore valid,\n\t\t\t\t\t// don't mark it as valid when there are no other rules\n\t\t\t\t\tif ( result === \"dependency-mismatch\" && rulesCount === 1 ) {\n\t\t\t\t\t\tdependencyMismatch = true;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tdependencyMismatch = false;\n\n\t\t\t\t\tif ( result === \"pending\" ) {\n\t\t\t\t\t\tthis.toHide = this.toHide.not( this.errorsFor( element ) );\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( !result ) {\n\t\t\t\t\t\tthis.formatAndAdd( element, rule );\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t} catch ( e ) {\n\t\t\t\t\tif ( this.settings.debug && window.console ) {\n\t\t\t\t\t\tconsole.log( \"Exception occurred when checking element \" + element.id + \", check the '\" + rule.method + \"' method.\", e );\n\t\t\t\t\t}\n\t\t\t\t\tif ( e instanceof TypeError ) {\n\t\t\t\t\t\te.message += \". Exception occurred when checking element \" + element.id + \", check the '\" + rule.method + \"' method.\";\n\t\t\t\t\t}\n\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( dependencyMismatch ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif ( this.objectLength( rules ) ) {\n\t\t\t\tthis.successList.push( element );\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t// Return the custom message for the given element and validation method\n\t\t// specified in the element's HTML5 data attribute\n\t\t// return the generic message if present and no method specific message is present\n\t\tcustomDataMessage: function( element, method ) {\n\t\t\treturn $( element ).data( \"msg\" + method.charAt( 0 ).toUpperCase() +\n\t\t\t\tmethod.substring( 1 ).toLowerCase() ) || $( element ).data( \"msg\" );\n\t\t},\n\n\t\t// Return the custom message for the given element name and validation method\n\t\tcustomMessage: function( name, method ) {\n\t\t\tvar m = this.settings.messages[ name ];\n\t\t\treturn m && ( m.constructor === String ? m : m[ method ] );\n\t\t},\n\n\t\t// Return the first defined argument, allowing empty strings\n\t\tfindDefined: function() {\n\t\t\tfor ( var i = 0; i < arguments.length; i++ ) {\n\t\t\t\tif ( arguments[ i ] !== undefined ) {\n\t\t\t\t\treturn arguments[ i ];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn undefined;\n\t\t},\n\n\t\t// The second parameter 'rule' used to be a string, and extended to an object literal\n\t\t// of the following form:\n\t\t// rule = {\n\t\t// method: \"method name\",\n\t\t// parameters: \"the given method parameters\"\n\t\t// }\n\t\t//\n\t\t// The old behavior still supported, kept to maintain backward compatibility with\n\t\t// old code, and will be removed in the next major release.\n\t\tdefaultMessage: function( element, rule ) {\n\t\t\tif ( typeof rule === \"string\" ) {\n\t\t\t\trule = { method: rule };\n\t\t\t}\n\n\t\t\tvar message = this.findDefined(\n\t\t\t\t\tthis.customMessage( element.name, rule.method ),\n\t\t\t\t\tthis.customDataMessage( element, rule.method ),\n\n\t\t\t\t\t// 'title' is never undefined, so handle empty string as undefined\n\t\t\t\t\t!this.settings.ignoreTitle && element.title || undefined,\n\t\t\t\t\t$.validator.messages[ rule.method ],\n\t\t\t\t\t\"<strong>Warning: No message defined for \" + element.name + \"</strong>\"\n\t\t\t\t),\n\t\t\t\ttheregex = /\\$?\\{(\\d+)\\}/g;\n\t\t\tif ( typeof message === \"function\" ) {\n\t\t\t\tmessage = message.call( this, rule.parameters, element );\n\t\t\t} else if ( theregex.test( message ) ) {\n\t\t\t\tmessage = $.validator.format( message.replace( theregex, \"{$1}\" ), rule.parameters );\n\t\t\t}\n\n\t\t\treturn message;\n\t\t},\n\n\t\tformatAndAdd: function( element, rule ) {\n\t\t\tvar message = this.defaultMessage( element, rule );\n\n\t\t\tthis.errorList.push( {\n\t\t\t\tmessage: message,\n\t\t\t\telement: element,\n\t\t\t\tmethod: rule.method\n\t\t\t} );\n\n\t\t\tthis.errorMap[ element.name ] = message;\n\t\t\tthis.submitted[ element.name ] = message;\n\t\t},\n\n\t\taddWrapper: function( toToggle ) {\n\t\t\tif ( this.settings.wrapper ) {\n\t\t\t\ttoToggle = toToggle.add( toToggle.parent( this.settings.wrapper ) );\n\t\t\t}\n\t\t\treturn toToggle;\n\t\t},\n\n\t\tdefaultShowErrors: function() {\n\t\t\tvar i, elements, error;\n\t\t\tfor ( i = 0; this.errorList[ i ]; i++ ) {\n\t\t\t\terror = this.errorList[ i ];\n\t\t\t\tif ( this.settings.highlight ) {\n\t\t\t\t\tthis.settings.highlight.call( this, error.element, this.settings.errorClass, this.settings.validClass );\n\t\t\t\t}\n\t\t\t\tthis.showLabel( error.element, error.message );\n\t\t\t}\n\t\t\tif ( this.errorList.length ) {\n\t\t\t\tthis.toShow = this.toShow.add( this.containers );\n\t\t\t}\n\t\t\tif ( this.settings.success ) {\n\t\t\t\tfor ( i = 0; this.successList[ i ]; i++ ) {\n\t\t\t\t\tthis.showLabel( this.successList[ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( this.settings.unhighlight ) {\n\t\t\t\tfor ( i = 0, elements = this.validElements(); elements[ i ]; i++ ) {\n\t\t\t\t\tthis.settings.unhighlight.call( this, elements[ i ], this.settings.errorClass, this.settings.validClass );\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.toHide = this.toHide.not( this.toShow );\n\t\t\tthis.hideErrors();\n\t\t\tthis.addWrapper( this.toShow ).show();\n\t\t},\n\n\t\tvalidElements: function() {\n\t\t\treturn this.currentElements.not( this.invalidElements() );\n\t\t},\n\n\t\tinvalidElements: function() {\n\t\t\treturn $( this.errorList ).map( function() {\n\t\t\t\treturn this.element;\n\t\t\t} );\n\t\t},\n\n\t\tshowLabel: function( element, message ) {\n\t\t\tvar place, group, errorID, v,\n\t\t\t\terror = this.errorsFor( element ),\n\t\t\t\telementID = this.idOrName( element ),\n\t\t\t\tdescribedBy = $( element ).attr( \"aria-describedby\" );\n\n\t\t\tif ( error.length ) {\n\n\t\t\t\t// Refresh error/success class\n\t\t\t\terror.removeClass( this.settings.validClass ).addClass( this.settings.errorClass );\n\n\t\t\t\t// Replace message on existing label\n\t\t\t\tif ( this.settings && this.settings.escapeHtml ) {\n\t\t\t\t\terror.text( message || \"\" );\n\t\t\t\t} else {\n\t\t\t\t\terror.html( message || \"\" );\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Create error element\n\t\t\t\terror = $( \"<\" + this.settings.errorElement + \">\" )\n\t\t\t\t\t.attr( \"id\", elementID + \"-error\" )\n\t\t\t\t\t.addClass( this.settings.errorClass );\n\n\t\t\t\tif ( this.settings && this.settings.escapeHtml ) {\n\t\t\t\t\terror.text( message || \"\" );\n\t\t\t\t} else {\n\t\t\t\t\terror.html( message || \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Maintain reference to the element to be placed into the DOM\n\t\t\t\tplace = error;\n\t\t\t\tif ( this.settings.wrapper ) {\n\n\t\t\t\t\t// Make sure the element is visible, even in IE\n\t\t\t\t\t// actually showing the wrapped element is handled elsewhere\n\t\t\t\t\tplace = error.hide().show().wrap( \"<\" + this.settings.wrapper + \"/>\" ).parent();\n\t\t\t\t}\n\t\t\t\tif ( this.labelContainer.length ) {\n\t\t\t\t\tthis.labelContainer.append( place );\n\t\t\t\t} else if ( this.settings.errorPlacement ) {\n\t\t\t\t\tthis.settings.errorPlacement.call( this, place, $( element ) );\n\t\t\t\t} else {\n\t\t\t\t\tplace.insertAfter( element );\n\t\t\t\t}\n\n\t\t\t\t// Link error back to the element\n\t\t\t\tif ( error.is( \"label\" ) ) {\n\n\t\t\t\t\t// If the error is a label, then associate using 'for'\n\t\t\t\t\terror.attr( \"for\", elementID );\n\n\t\t\t\t\t// If the element is not a child of an associated label, then it's necessary\n\t\t\t\t\t// to explicitly apply aria-describedby\n\t\t\t\t} else if ( error.parents( \"label[for='\" + this.escapeCssMeta( elementID ) + \"']\" ).length === 0 ) {\n\t\t\t\t\terrorID = error.attr( \"id\" );\n\n\t\t\t\t\t// Respect existing non-error aria-describedby\n\t\t\t\t\tif ( !describedBy ) {\n\t\t\t\t\t\tdescribedBy = errorID;\n\t\t\t\t\t} else if ( !describedBy.match( new RegExp( \"\\\\b\" + this.escapeCssMeta( errorID ) + \"\\\\b\" ) ) ) {\n\n\t\t\t\t\t\t// Add to end of list if not already present\n\t\t\t\t\t\tdescribedBy += \" \" + errorID;\n\t\t\t\t\t}\n\t\t\t\t\t$( element ).attr( \"aria-describedby\", describedBy );\n\n\t\t\t\t\t// If this element is grouped, then assign to all elements in the same group\n\t\t\t\t\tgroup = this.groups[ element.name ];\n\t\t\t\t\tif ( group ) {\n\t\t\t\t\t\tv = this;\n\t\t\t\t\t\t$.each( v.groups, function( name, testgroup ) {\n\t\t\t\t\t\t\tif ( testgroup === group ) {\n\t\t\t\t\t\t\t\t$( \"[name='\" + v.escapeCssMeta( name ) + \"']\", v.currentForm )\n\t\t\t\t\t\t\t\t\t.attr( \"aria-describedby\", error.attr( \"id\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( !message && this.settings.success ) {\n\t\t\t\terror.text( \"\" );\n\t\t\t\tif ( typeof this.settings.success === \"string\" ) {\n\t\t\t\t\terror.addClass( this.settings.success );\n\t\t\t\t} else {\n\t\t\t\t\tthis.settings.success( error, element );\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.toShow = this.toShow.add( error );\n\t\t},\n\n\t\terrorsFor: function( element ) {\n\t\t\tvar name = this.escapeCssMeta( this.idOrName( element ) ),\n\t\t\t\tdescriber = $( element ).attr( \"aria-describedby\" ),\n\t\t\t\tselector = \"label[for='\" + name + \"'], label[for='\" + name + \"'] *\";\n\n\t\t\t// 'aria-describedby' should directly reference the error element\n\t\t\tif ( describer ) {\n\t\t\t\tselector = selector + \", #\" + this.escapeCssMeta( describer )\n\t\t\t\t\t.replace( /\\s+/g, \", #\" );\n\t\t\t}\n\n\t\t\treturn this\n\t\t\t\t.errors()\n\t\t\t\t.filter( selector );\n\t\t},\n\n\t\t// See https://api.jquery.com/category/selectors/, for CSS\n\t\t// meta-characters that should be escaped in order to be used with JQuery\n\t\t// as a literal part of a name/id or any selector.\n\t\tescapeCssMeta: function( string ) {\n\t\t\tif ( string === undefined ) {\n\t\t\t\treturn \"\";\n\t\t\t}\n\n\t\t\treturn string.replace( /([\\\\!\"#$%&'()*+,./:;<=>?@\\[\\]^`{|}~])/g, \"\\\\$1\" );\n\t\t},\n\n\t\tidOrName: function( element ) {\n\t\t\treturn this.groups[ element.name ] || ( this.checkable( element ) ? element.name : element.id || element.name );\n\t\t},\n\n\t\tvalidationTargetFor: function( element ) {\n\n\t\t\t// If radio/checkbox, validate first element in group instead\n\t\t\tif ( this.checkable( element ) ) {\n\t\t\t\telement = this.findByName( element.name );\n\t\t\t}\n\n\t\t\t// Always apply ignore filter\n\t\t\treturn $( element ).not( this.settings.ignore )[ 0 ];\n\t\t},\n\n\t\tcheckable: function( element ) {\n\t\t\treturn ( /radio|checkbox/i ).test( element.type );\n\t\t},\n\n\t\tfindByName: function( name ) {\n\t\t\treturn $( this.currentForm ).find( \"[name='\" + this.escapeCssMeta( name ) + \"']\" );\n\t\t},\n\n\t\tgetLength: function( value, element ) {\n\t\t\tswitch ( element.nodeName.toLowerCase() ) {\n\t\t\tcase \"select\":\n\t\t\t\treturn $( \"option:selected\", element ).length;\n\t\t\tcase \"input\":\n\t\t\t\tif ( this.checkable( element ) ) {\n\t\t\t\t\treturn this.findByName( element.name ).filter( \":checked\" ).length;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn value.length;\n\t\t},\n\n\t\tdepend: function( param, element ) {\n\t\t\treturn this.dependTypes[ typeof param ] ? this.dependTypes[ typeof param ]( param, element ) : true;\n\t\t},\n\n\t\tdependTypes: {\n\t\t\t\"boolean\": function( param ) {\n\t\t\t\treturn param;\n\t\t\t},\n\t\t\t\"string\": function( param, element ) {\n\t\t\t\treturn !!$( param, element.form ).length;\n\t\t\t},\n\t\t\t\"function\": function( param, element ) {\n\t\t\t\treturn param( element );\n\t\t\t}\n\t\t},\n\n\t\toptional: function( element ) {\n\t\t\tvar val = this.elementValue( element );\n\t\t\treturn !$.validator.methods.required.call( this, val, element ) && \"dependency-mismatch\";\n\t\t},\n\n\t\telementAjaxPort: function( element ) {\n\t\t\treturn \"validate\" + element.name;\n\t\t},\n\n\t\tstartRequest: function( element ) {\n\t\t\tif ( !this.pending[ element.name ] ) {\n\t\t\t\tthis.pendingRequest++;\n\t\t\t\t$( element ).addClass( this.settings.pendingClass );\n\t\t\t\tthis.pending[ element.name ] = true;\n\t\t\t}\n\t\t},\n\n\t\tstopRequest: function( element, valid ) {\n\t\t\tthis.pendingRequest--;\n\n\t\t\t// Sometimes synchronization fails, make sure pendingRequest is never < 0\n\t\t\tif ( this.pendingRequest < 0 ) {\n\t\t\t\tthis.pendingRequest = 0;\n\t\t\t}\n\t\t\tdelete this.pending[ element.name ];\n\t\t\t$( element ).removeClass( this.settings.pendingClass );\n\t\t\tif ( valid && this.pendingRequest === 0 && this.formSubmitted && this.form() && this.pendingRequest === 0 ) {\n\t\t\t\t$( this.currentForm ).trigger( \"submit\" );\n\n\t\t\t\t// Remove the hidden input that was used as a replacement for the\n\t\t\t\t// missing submit button. The hidden input is added by `handle()`\n\t\t\t\t// to ensure that the value of the used submit button is passed on\n\t\t\t\t// for scripted submits triggered by this method\n\t\t\t\tif ( this.submitButton ) {\n\t\t\t\t\t$( \"input:hidden[name='\" + this.submitButton.name + \"']\", this.currentForm ).remove();\n\t\t\t\t}\n\n\t\t\t\tthis.formSubmitted = false;\n\t\t\t} else if ( !valid && this.pendingRequest === 0 && this.formSubmitted ) {\n\t\t\t\t$( this.currentForm ).triggerHandler( \"invalid-form\", [ this ] );\n\t\t\t\tthis.formSubmitted = false;\n\t\t\t}\n\t\t},\n\n\t\tabortRequest: function( element ) {\n\t\t\tvar port;\n\n\t\t\tif ( this.pending[ element.name ] ) {\n\t\t\t\tport = this.elementAjaxPort( element );\n\t\t\t\t$.ajaxAbort( port );\n\n\t\t\t\tthis.pendingRequest--;\n\n\t\t\t\t// Sometimes synchronization fails, make sure pendingRequest is never < 0\n\t\t\t\tif ( this.pendingRequest < 0 ) {\n\t\t\t\t\tthis.pendingRequest = 0;\n\t\t\t\t}\n\n\t\t\t\tdelete this.pending[ element.name ];\n\t\t\t\t$( element ).removeClass( this.settings.pendingClass );\n\t\t\t}\n\t\t},\n\n\t\tpreviousValue: function( element, method ) {\n\t\t\tmethod = typeof method === \"string\" && method || \"remote\";\n\n\t\t\treturn $.data( element, \"previousValue\" ) || $.data( element, \"previousValue\", {\n\t\t\t\told: null,\n\t\t\t\tvalid: true,\n\t\t\t\tmessage: this.defaultMessage( element, { method: method } )\n\t\t\t} );\n\t\t},\n\n\t\t// Cleans up all forms and elements, removes validator-specific events\n\t\tdestroy: function() {\n\t\t\tthis.resetForm();\n\n\t\t\t$( this.currentForm )\n\t\t\t\t.off( \".validate\" )\n\t\t\t\t.removeData( \"validator\" )\n\t\t\t\t.find( \".validate-equalTo-blur\" )\n\t\t\t\t\t.off( \".validate-equalTo\" )\n\t\t\t\t\t.removeClass( \"validate-equalTo-blur\" )\n\t\t\t\t.find( \".validate-lessThan-blur\" )\n\t\t\t\t\t.off( \".validate-lessThan\" )\n\t\t\t\t\t.removeClass( \"validate-lessThan-blur\" )\n\t\t\t\t.find( \".validate-lessThanEqual-blur\" )\n\t\t\t\t\t.off( \".validate-lessThanEqual\" )\n\t\t\t\t\t.removeClass( \"validate-lessThanEqual-blur\" )\n\t\t\t\t.find( \".validate-greaterThanEqual-blur\" )\n\t\t\t\t\t.off( \".validate-greaterThanEqual\" )\n\t\t\t\t\t.removeClass( \"validate-greaterThanEqual-blur\" )\n\t\t\t\t.find( \".validate-greaterThan-blur\" )\n\t\t\t\t\t.off( \".validate-greaterThan\" )\n\t\t\t\t\t.removeClass( \"validate-greaterThan-blur\" );\n\t\t}\n\n\t},\n\n\tclassRuleSettings: {\n\t\trequired: { required: true },\n\t\temail: { email: true },\n\t\turl: { url: true },\n\t\tdate: { date: true },\n\t\tdateISO: { dateISO: true },\n\t\tnumber: { number: true },\n\t\tdigits: { digits: true },\n\t\tcreditcard: { creditcard: true }\n\t},\n\n\taddClassRules: function( className, rules ) {\n\t\tif ( className.constructor === String ) {\n\t\t\tthis.classRuleSettings[ className ] = rules;\n\t\t} else {\n\t\t\t$.extend( this.classRuleSettings, className );\n\t\t}\n\t},\n\n\tclassRules: function( element ) {\n\t\tvar rules = {},\n\t\t\tclasses = $( element ).attr( \"class\" );\n\n\t\tif ( classes ) {\n\t\t\t$.each( classes.split( \" \" ), function() {\n\t\t\t\tif ( this in $.validator.classRuleSettings ) {\n\t\t\t\t\t$.extend( rules, $.validator.classRuleSettings[ this ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\t\treturn rules;\n\t},\n\n\tnormalizeAttributeRule: function( rules, type, method, value ) {\n\n\t\t// Convert the value to a number for number inputs, and for text for backwards compability\n\t\t// allows type=\"date\" and others to be compared as strings\n\t\tif ( /min|max|step/.test( method ) && ( type === null || /number|range|text/.test( type ) ) ) {\n\t\t\tvalue = Number( value );\n\n\t\t\t// Support Opera Mini, which returns NaN for undefined minlength\n\t\t\tif ( isNaN( value ) ) {\n\t\t\t\tvalue = undefined;\n\t\t\t}\n\t\t}\n\n\t\tif ( value || value === 0 ) {\n\t\t\trules[ method ] = value;\n\t\t} else if ( type === method && type !== \"range\" ) {\n\n\t\t\t// Exception: the jquery validate 'range' method\n\t\t\t// does not test for the html5 'range' type\n\t\t\trules[ type === \"date\" ? \"dateISO\" : method ] = true;\n\t\t}\n\t},\n\n\tattributeRules: function( element ) {\n\t\tvar rules = {},\n\t\t\t$element = $( element ),\n\t\t\ttype = element.getAttribute( \"type\" ),\n\t\t\tmethod, value;\n\n\t\tfor ( method in $.validator.methods ) {\n\n\t\t\t// Support for <input required> in both html5 and older browsers\n\t\t\tif ( method === \"required\" ) {\n\t\t\t\tvalue = element.getAttribute( method );\n\n\t\t\t\t// Some browsers return an empty string for the required attribute\n\t\t\t\t// and non-HTML5 browsers might have required=\"\" markup\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\tvalue = true;\n\t\t\t\t}\n\n\t\t\t\t// Force non-HTML5 browsers to return bool\n\t\t\t\tvalue = !!value;\n\t\t\t} else {\n\t\t\t\tvalue = $element.attr( method );\n\t\t\t}\n\n\t\t\tthis.normalizeAttributeRule( rules, type, method, value );\n\t\t}\n\n\t\t// 'maxlength' may be returned as -1, 2147483647 ( IE ) and 524288 ( safari ) for text inputs\n\t\tif ( rules.maxlength && /-1|2147483647|524288/.test( rules.maxlength ) ) {\n\t\t\tdelete rules.maxlength;\n\t\t}\n\n\t\treturn rules;\n\t},\n\n\tdataRules: function( element ) {\n\t\tvar rules = {},\n\t\t\t$element = $( element ),\n\t\t\ttype = element.getAttribute( \"type\" ),\n\t\t\tmethod, value;\n\n\t\tfor ( method in $.validator.methods ) {\n\t\t\tvalue = $element.data( \"rule\" + method.charAt( 0 ).toUpperCase() + method.substring( 1 ).toLowerCase() );\n\n\t\t\t// Cast empty attributes like `data-rule-required` to `true`\n\t\t\tif ( value === \"\" ) {\n\t\t\t\tvalue = true;\n\t\t\t}\n\n\t\t\tthis.normalizeAttributeRule( rules, type, method, value );\n\t\t}\n\t\treturn rules;\n\t},\n\n\tstaticRules: function( element ) {\n\t\tvar rules = {},\n\t\t\tvalidator = $.data( element.form, \"validator\" );\n\n\t\tif ( validator.settings.rules ) {\n\t\t\trules = $.validator.normalizeRule( validator.settings.rules[ element.name ] ) || {};\n\t\t}\n\t\treturn rules;\n\t},\n\n\tnormalizeRules: function( rules, element ) {\n\n\t\t// Handle dependency check\n\t\t$.each( rules, function( prop, val ) {\n\n\t\t\t// Ignore rule when param is explicitly false, eg. required:false\n\t\t\tif ( val === false ) {\n\t\t\t\tdelete rules[ prop ];\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif ( val.param || val.depends ) {\n\t\t\t\tvar keepRule = true;\n\t\t\t\tswitch ( typeof val.depends ) {\n\t\t\t\tcase \"string\":\n\t\t\t\t\tkeepRule = !!$( val.depends, element.form ).length;\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"function\":\n\t\t\t\t\tkeepRule = val.depends.call( element, element );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tif ( keepRule ) {\n\t\t\t\t\trules[ prop ] = val.param !== undefined ? val.param : true;\n\t\t\t\t} else {\n\t\t\t\t\t$.data( element.form, \"validator\" ).resetElements( $( element ) );\n\t\t\t\t\tdelete rules[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\n\t\t// Evaluate parameters\n\t\t$.each( rules, function( rule, parameter ) {\n\t\t\trules[ rule ] = typeof parameter === \"function\" && rule !== \"normalizer\" ? parameter( element ) : parameter;\n\t\t} );\n\n\t\t// Clean number parameters\n\t\t$.each( [ \"minlength\", \"maxlength\" ], function() {\n\t\t\tif ( rules[ this ] ) {\n\t\t\t\trules[ this ] = Number( rules[ this ] );\n\t\t\t}\n\t\t} );\n\t\t$.each( [ \"rangelength\", \"range\" ], function() {\n\t\t\tvar parts;\n\t\t\tif ( rules[ this ] ) {\n\t\t\t\tif ( Array.isArray( rules[ this ] ) ) {\n\t\t\t\t\trules[ this ] = [ Number( rules[ this ][ 0 ] ), Number( rules[ this ][ 1 ] ) ];\n\t\t\t\t} else if ( typeof rules[ this ] === \"string\" ) {\n\t\t\t\t\tparts = rules[ this ].replace( /[\\[\\]]/g, \"\" ).split( /[\\s,]+/ );\n\t\t\t\t\trules[ this ] = [ Number( parts[ 0 ] ), Number( parts[ 1 ] ) ];\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\n\t\tif ( $.validator.autoCreateRanges ) {\n\n\t\t\t// Auto-create ranges\n\t\t\tif ( rules.min != null && rules.max != null ) {\n\t\t\t\trules.range = [ rules.min, rules.max ];\n\t\t\t\tdelete rules.min;\n\t\t\t\tdelete rules.max;\n\t\t\t}\n\t\t\tif ( rules.minlength != null && rules.maxlength != null ) {\n\t\t\t\trules.rangelength = [ rules.minlength, rules.maxlength ];\n\t\t\t\tdelete rules.minlength;\n\t\t\t\tdelete rules.maxlength;\n\t\t\t}\n\t\t}\n\n\t\treturn rules;\n\t},\n\n\t// Converts a simple string to a {string: true} rule, e.g., \"required\" to {required:true}\n\tnormalizeRule: function( data ) {\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tvar transformed = {};\n\t\t\t$.each( data.split( /\\s/ ), function() {\n\t\t\t\ttransformed[ this ] = true;\n\t\t\t} );\n\t\t\tdata = transformed;\n\t\t}\n\t\treturn data;\n\t},\n\n\t// https://jqueryvalidation.org/jQuery.validator.addMethod/\n\taddMethod: function( name, method, message ) {\n\t\t$.validator.methods[ name ] = method;\n\t\t$.validator.messages[ name ] = message !== undefined ? message : $.validator.messages[ name ];\n\t\tif ( method.length < 3 ) {\n\t\t\t$.validator.addClassRules( name, $.validator.normalizeRule( name ) );\n\t\t}\n\t},\n\n\t// https://jqueryvalidation.org/jQuery.validator.methods/\n\tmethods: {\n\n\t\t// https://jqueryvalidation.org/required-method/\n\t\trequired: function( value, element, param ) {\n\n\t\t\t// Check if dependency is met\n\t\t\tif ( !this.depend( param, element ) ) {\n\t\t\t\treturn \"dependency-mismatch\";\n\t\t\t}\n\t\t\tif ( element.nodeName.toLowerCase() === \"select\" ) {\n\n\t\t\t\t// Could be an array for select-multiple or a string, both are fine this way\n\t\t\t\tvar val = $( element ).val();\n\t\t\t\treturn val && val.length > 0;\n\t\t\t}\n\t\t\tif ( this.checkable( element ) ) {\n\t\t\t\treturn this.getLength( value, element ) > 0;\n\t\t\t}\n\t\t\treturn value !== undefined && value !== null && value.length > 0;\n\t\t},\n\n\t\t// https://jqueryvalidation.org/email-method/\n\t\temail: function( value, element ) {\n\n\t\t\t// From https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address\n\t\t\t// Retrieved 2014-01-14\n\t\t\t// If you have a problem with this implementation, report a bug against the above spec\n\t\t\t// Or use custom methods to implement your own email validation\n\t\t\treturn this.optional( element ) || /^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test( value );\n\t\t},\n\n\t\t// https://jqueryvalidation.org/url-method/\n\t\turl: function( value, element ) {\n\n\t\t\t// Copyright (c) 2010-2013 Diego Perini, MIT licensed\n\t\t\t// https://gist.github.com/dperini/729294\n\t\t\t// see also https://mathiasbynens.be/demo/url-regex\n\t\t\t// modified to allow protocol-relative URLs\n\t\t\treturn this.optional( element ) || /^(?:(?:(?:https?|ftp):)?\\/\\/)(?:(?:[^\\]\\[?\\/<~#`!@$^&*()+=}|:\";',>{ ]|%[0-9A-Fa-f]{2})+(?::(?:[^\\]\\[?\\/<~#`!@$^&*()+=}|:\";',>{ ]|%[0-9A-Fa-f]{2})*)?@)?(?:(?!(?:10|127)(?:\\.\\d{1,3}){3})(?!(?:169\\.254|192\\.168)(?:\\.\\d{1,3}){2})(?!172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z0-9\\u00a1-\\uffff][a-z0-9\\u00a1-\\uffff_-]{0,62})?[a-z0-9\\u00a1-\\uffff]\\.)+(?:[a-z\\u00a1-\\uffff]{2,}\\.?))(?::\\d{2,5})?(?:[/?#]\\S*)?$/i.test( value );\n\t\t},\n\n\t\t// https://jqueryvalidation.org/date-method/\n\t\tdate: ( function() {\n\t\t\tvar called = false;\n\n\t\t\treturn function( value, element ) {\n\t\t\t\tif ( !called ) {\n\t\t\t\t\tcalled = true;\n\t\t\t\t\tif ( this.settings.debug && window.console ) {\n\t\t\t\t\t\tconsole.warn(\n\t\t\t\t\t\t\t\"The `date` method is deprecated and will be removed in version '2.0.0'.\\n\" +\n\t\t\t\t\t\t\t\"Please don't use it, since it relies on the Date constructor, which\\n\" +\n\t\t\t\t\t\t\t\"behaves very differently across browsers and locales. Use `dateISO`\\n\" +\n\t\t\t\t\t\t\t\"instead or one of the locale specific methods in `localizations/`\\n\" +\n\t\t\t\t\t\t\t\"and `additional-methods.js`.\"\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn this.optional( element ) || !/Invalid|NaN/.test( new Date( value ).toString() );\n\t\t\t};\n\t\t}() ),\n\n\t\t// https://jqueryvalidation.org/dateISO-method/\n\t\tdateISO: function( value, element ) {\n\t\t\treturn this.optional( element ) || /^\\d{4}[\\/\\-](0?[1-9]|1[012])[\\/\\-](0?[1-9]|[12][0-9]|3[01])$/.test( value );\n\t\t},\n\n\t\t// https://jqueryvalidation.org/number-method/\n\t\tnumber: function( value, element ) {\n\t\t\treturn this.optional( element ) || /^(?:-?\\d+|-?\\d{1,3}(?:,\\d{3})+)?(?:-?\\.\\d+)?$/.test( value );\n\t\t},\n\n\t\t// https://jqueryvalidation.org/digits-method/\n\t\tdigits: function( value, element ) {\n\t\t\treturn this.optional( element ) || /^\\d+$/.test( value );\n\t\t},\n\n\t\t// https://jqueryvalidation.org/minlength-method/\n\t\tminlength: function( value, element, param ) {\n\t\t\tvar length = Array.isArray( value ) ? value.length : this.getLength( value, element );\n\t\t\treturn this.optional( element ) || length >= param;\n\t\t},\n\n\t\t// https://jqueryvalidation.org/maxlength-method/\n\t\tmaxlength: function( value, element, param ) {\n\t\t\tvar length = Array.isArray( value ) ? value.length : this.getLength( value, element );\n\t\t\treturn this.optional( element ) || length <= param;\n\t\t},\n\n\t\t// https://jqueryvalidation.org/rangelength-method/\n\t\trangelength: function( value, element, param ) {\n\t\t\tvar length = Array.isArray( value ) ? value.length : this.getLength( value, element );\n\t\t\treturn this.optional( element ) || ( length >= param[ 0 ] && length <= param[ 1 ] );\n\t\t},\n\n\t\t// https://jqueryvalidation.org/min-method/\n\t\tmin: function( value, element, param ) {\n\t\t\treturn this.optional( element ) || value >= param;\n\t\t},\n\n\t\t// https://jqueryvalidation.org/max-method/\n\t\tmax: function( value, element, param ) {\n\t\t\treturn this.optional( element ) || value <= param;\n\t\t},\n\n\t\t// https://jqueryvalidation.org/range-method/\n\t\trange: function( value, element, param ) {\n\t\t\treturn this.optional( element ) || ( value >= param[ 0 ] && value <= param[ 1 ] );\n\t\t},\n\n\t\t// https://jqueryvalidation.org/step-method/\n\t\tstep: function( value, element, param ) {\n\t\t\tvar type = $( element ).attr( \"type\" ),\n\t\t\t\terrorMessage = \"Step attribute on input type \" + type + \" is not supported.\",\n\t\t\t\tsupportedTypes = [ \"text\", \"number\", \"range\" ],\n\t\t\t\tre = new RegExp( \"\\\\b\" + type + \"\\\\b\" ),\n\t\t\t\tnotSupported = type && !re.test( supportedTypes.join() ),\n\t\t\t\tdecimalPlaces = function( num ) {\n\t\t\t\t\tvar match = ( \"\" + num ).match( /(?:\\.(\\d+))?$/ );\n\t\t\t\t\tif ( !match ) {\n\t\t\t\t\t\treturn 0;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Number of digits right of decimal point.\n\t\t\t\t\treturn match[ 1 ] ? match[ 1 ].length : 0;\n\t\t\t\t},\n\t\t\t\ttoInt = function( num ) {\n\t\t\t\t\treturn Math.round( num * Math.pow( 10, decimals ) );\n\t\t\t\t},\n\t\t\t\tvalid = true,\n\t\t\t\tdecimals;\n\n\t\t\t// Works only for text, number and range input types\n\t\t\t// TODO find a way to support input types date, datetime, datetime-local, month, time and week\n\t\t\tif ( notSupported ) {\n\t\t\t\tthrow new Error( errorMessage );\n\t\t\t}\n\n\t\t\tdecimals = decimalPlaces( param );\n\n\t\t\t// Value can't have too many decimals\n\t\t\tif ( decimalPlaces( value ) > decimals || toInt( value ) % toInt( param ) !== 0 ) {\n\t\t\t\tvalid = false;\n\t\t\t}\n\n\t\t\treturn this.optional( element ) || valid;\n\t\t},\n\n\t\t// https://jqueryvalidation.org/equalTo-method/\n\t\tequalTo: function( value, element, param ) {\n\n\t\t\t// Bind to the blur event of the target in order to revalidate whenever the target field is updated\n\t\t\tvar target = $( param );\n\t\t\tif ( this.settings.onfocusout && target.not( \".validate-equalTo-blur\" ).length ) {\n\t\t\t\ttarget.addClass( \"validate-equalTo-blur\" ).on( \"blur.validate-equalTo\", function() {\n\t\t\t\t\t$( element ).valid();\n\t\t\t\t} );\n\t\t\t}\n\t\t\treturn value === target.val();\n\t\t},\n\n\t\t// https://jqueryvalidation.org/remote-method/\n\t\tremote: function( value, element, param, method ) {\n\t\t\tif ( this.optional( element ) ) {\n\t\t\t\treturn \"dependency-mismatch\";\n\t\t\t}\n\n\t\t\tmethod = typeof method === \"string\" && method || \"remote\";\n\n\t\t\tvar previous = this.previousValue( element, method ),\n\t\t\t\tvalidator, data, optionDataString;\n\n\t\t\tif ( !this.settings.messages[ element.name ] ) {\n\t\t\t\tthis.settings.messages[ element.name ] = {};\n\t\t\t}\n\t\t\tprevious.originalMessage = previous.originalMessage || this.settings.messages[ element.name ][ method ];\n\t\t\tthis.settings.messages[ element.name ][ method ] = previous.message;\n\n\t\t\tparam = typeof param === \"string\" && { url: param } || param;\n\t\t\toptionDataString = $.param( $.extend( { data: value }, param.data ) );\n\t\t\tif ( previous.valid !== null && previous.old === optionDataString ) {\n\t\t\t\treturn previous.valid;\n\t\t\t}\n\n\t\t\tprevious.old = optionDataString;\n\t\t\tprevious.valid = null;\n\t\t\tvalidator = this;\n\t\t\tthis.startRequest( element );\n\t\t\tdata = {};\n\t\t\tdata[ element.name ] = value;\n\t\t\t$.ajax( $.extend( true, {\n\t\t\t\tmode: \"abort\",\n\t\t\t\tport: this.elementAjaxPort( element ),\n\t\t\t\tdataType: \"json\",\n\t\t\t\tdata: data,\n\t\t\t\tcontext: validator.currentForm,\n\t\t\t\tsuccess: function( response ) {\n\t\t\t\t\tvar valid = response === true || response === \"true\",\n\t\t\t\t\t\terrors, message, submitted;\n\n\t\t\t\t\tvalidator.settings.messages[ element.name ][ method ] = previous.originalMessage;\n\t\t\t\t\tif ( valid ) {\n\t\t\t\t\t\tsubmitted = validator.formSubmitted;\n\t\t\t\t\t\tvalidator.toHide = validator.errorsFor( element );\n\t\t\t\t\t\tvalidator.formSubmitted = submitted;\n\t\t\t\t\t\tvalidator.successList.push( element );\n\t\t\t\t\t\tvalidator.invalid[ element.name ] = false;\n\t\t\t\t\t\tvalidator.showErrors();\n\t\t\t\t\t} else {\n\t\t\t\t\t\terrors = {};\n\t\t\t\t\t\tmessage = response || validator.defaultMessage( element, { method: method, parameters: value } );\n\t\t\t\t\t\terrors[ element.name ] = previous.message = message;\n\t\t\t\t\t\tvalidator.invalid[ element.name ] = true;\n\t\t\t\t\t\tvalidator.showErrors( errors );\n\t\t\t\t\t}\n\t\t\t\t\tprevious.valid = valid;\n\t\t\t\t\tvalidator.stopRequest( element, valid );\n\t\t\t\t}\n\t\t\t}, param ) );\n\t\t\treturn \"pending\";\n\t\t}\n\t}\n\n} );\n\n// Ajax mode: abort\n// usage: $.ajax({ mode: \"abort\"[, port: \"uniqueport\"]});\n// $.ajaxAbort( port );\n// if mode:\"abort\" is used, the previous request on that port (port can be undefined) is aborted via XMLHttpRequest.abort()\n\nvar pendingRequests = {},\n\tajax;\n\n// Use a prefilter if available (1.5+)\nif ( $.ajaxPrefilter ) {\n\t$.ajaxPrefilter( function( settings, _, xhr ) {\n\t\tvar port = settings.port;\n\t\tif ( settings.mode === \"abort\" ) {\n\t\t\t$.ajaxAbort( port );\n\t\t\tpendingRequests[ port ] = xhr;\n\t\t}\n\t} );\n} else {\n\n\t// Proxy ajax\n\tajax = $.ajax;\n\t$.ajax = function( settings ) {\n\t\tvar mode = ( \"mode\" in settings ? settings : $.ajaxSettings ).mode,\n\t\t\tport = ( \"port\" in settings ? settings : $.ajaxSettings ).port;\n\t\tif ( mode === \"abort\" ) {\n\t\t\t$.ajaxAbort( port );\n\t\t\tpendingRequests[ port ] = ajax.apply( this, arguments );\n\t\t\treturn pendingRequests[ port ];\n\t\t}\n\t\treturn ajax.apply( this, arguments );\n\t};\n}\n\n// Abort the previous request without sending a new one\n$.ajaxAbort = function( port ) {\n\tif ( pendingRequests[ port ] ) {\n\t\tpendingRequests[ port ].abort();\n\t\tdelete pendingRequests[ port ];\n\t}\n};\nreturn $;\n}));\n},{\"jquery\":135}],135:[function(require,module,exports){\n/*!\n * jQuery JavaScript Library v3.7.1\n * https://jquery.com/\n *\n * Copyright OpenJS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2023-08-28T13:37Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket trac-14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n\t\t// Support: Chrome <=57, Firefox <=52\n\t\t// In some browsers, typeof returns \"function\" for HTML <object> elements\n\t\t// (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n\t\t// We don't want to classify *any* DOM node as a function.\n\t\t// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5\n\t\t// Plus for old WebKit, typeof returns \"function\" for HTML collections\n\t\t// (e.g., `typeof document.getElementsByTagName(\"div\") === \"function\"`). (gh-4756)\n\t\treturn typeof obj === \"function\" && typeof obj.nodeType !== \"number\" &&\n\t\t\ttypeof obj.item !== \"function\";\n\t};\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar version = \"3.7.1\",\n\n\trhtmlSuffix = /HTML$/i,\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\n\t// Retrieve the text value of an array of DOM nodes\n\ttext: function( elem ) {\n\t\tvar node,\n\t\t\tret = \"\",\n\t\t\ti = 0,\n\t\t\tnodeType = elem.nodeType;\n\n\t\tif ( !nodeType ) {\n\n\t\t\t// If no nodeType, this is expected to be an array\n\t\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t\t// Do not traverse comment nodes\n\t\t\t\tret += jQuery.text( node );\n\t\t\t}\n\t\t}\n\t\tif ( nodeType === 1 || nodeType === 11 ) {\n\t\t\treturn elem.textContent;\n\t\t}\n\t\tif ( nodeType === 9 ) {\n\t\t\treturn elem.documentElement.textContent;\n\t\t}\n\t\tif ( nodeType === 3 || nodeType === 4 ) {\n\t\t\treturn elem.nodeValue;\n\t\t}\n\n\t\t// Do not include comment or processing instruction nodes\n\n\t\treturn ret;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\tisXMLDoc: function( elem ) {\n\t\tvar namespace = elem && elem.namespaceURI,\n\t\t\tdocElem = elem && ( elem.ownerDocument || elem ).documentElement;\n\n\t\t// Assume HTML when documentElement doesn't yet exist, such as inside\n\t\t// document fragments.\n\t\treturn !rhtmlSuffix.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\n\tfunction( _i, name ) {\n\t\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n\t} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\n\n\nfunction nodeName( elem, name ) {\n\n\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n}\nvar pop = arr.pop;\n\n\nvar sort = arr.sort;\n\n\nvar splice = arr.splice;\n\n\nvar whitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\";\n\n\nvar rtrimCSS = new RegExp(\n\t\"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\",\n\t\"g\"\n);\n\n\n\n\n// Note: an element does not contain itself\njQuery.contains = function( a, b ) {\n\tvar bup = b && b.parentNode;\n\n\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\n\t\t// Support: IE 9 - 11+\n\t\t// IE doesn't have `contains` on SVG.\n\t\ta.contains ?\n\t\t\ta.contains( bup ) :\n\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t) );\n};\n\n\n\n\n// CSS string/identifier serialization\n// https://drafts.csswg.org/cssom/#common-serializing-idioms\nvar rcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\x80-\\uFFFF\\w-]/g;\n\nfunction fcssescape( ch, asCodePoint ) {\n\tif ( asCodePoint ) {\n\n\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\tif ( ch === \"\\0\" ) {\n\t\t\treturn \"\\uFFFD\";\n\t\t}\n\n\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\treturn ch.slice( 0, -1 ) + \"\\\\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t}\n\n\t// Other potentially-special ASCII characters get backslash-escaped\n\treturn \"\\\\\" + ch;\n}\n\njQuery.escapeSelector = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\n\n\n\nvar preferredDoc = document,\n\tpushNative = push;\n\n( function() {\n\nvar i,\n\tExpr,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\tpush = pushNative,\n\n\t// Local document vars\n\tdocument,\n\tdocumentElement,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\tmatches,\n\n\t// Instance-specific data\n\texpando = jQuery.expando,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|\" +\n\t\t\"loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: https://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trleadingCombinator = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" +\n\t\twhitespace + \"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\tID: new RegExp( \"^#(\" + identifier + \")\" ),\n\t\tCLASS: new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\tTAG: new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\tATTR: new RegExp( \"^\" + attributes ),\n\t\tPSEUDO: new RegExp( \"^\" + pseudos ),\n\t\tCHILD: new RegExp(\n\t\t\t\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\tbool: new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\tneedsContext: new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// https://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\tif ( nonHex ) {\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\treturn nonHex;\n\t\t}\n\n\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t// Support: IE <=11+\n\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t// surrogate pair\n\t\treturn high < 0 ?\n\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes; see `setDocument`.\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE/Edge.\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && nodeName( elem, \"fieldset\" );\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android <=4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = {\n\t\tapply: function( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t},\n\t\tcall: function( target ) {\n\t\t\tpushNative.apply( target, slice.call( arguments, 1 ) );\n\t\t}\n\t};\n}\n\nfunction find( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE 9 only\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tpush.call( results, elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE 9 only\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tfind.contains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tpush.call( results, elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && context.getElementsByClassName ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( !nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rleadingCombinator.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when\n\t\t\t\t\t// strict-comparing two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( newContext != context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = jQuery.escapeSelector( nid );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrimCSS, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties\n\t\t// (see https://github.com/jquery/sizzle/issues/157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by jQuery selector module\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\treturn nodeName( elem, \"input\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\treturn ( nodeName( elem, \"input\" ) || nodeName( elem, \"button\" ) ) &&\n\t\t\telem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11+\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a jQuery selector context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [node] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nfunction setDocument( node ) {\n\tvar subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocumentElement = document.documentElement;\n\tdocumentIsHTML = !jQuery.isXMLDoc( document );\n\n\t// Support: iOS 7 only, IE 9 - 11+\n\t// Older browsers didn't support unprefixed `matches`.\n\tmatches = documentElement.matches ||\n\t\tdocumentElement.webkitMatchesSelector ||\n\t\tdocumentElement.msMatchesSelector;\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors\n\t// (see trac-13936).\n\t// Limit the fix to IE & Edge Legacy; despite Edge 15+ implementing `matches`,\n\t// all IE 9+ and Edge Legacy versions implement `msMatchesSelector` as well.\n\tif ( documentElement.msMatchesSelector &&\n\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tpreferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t\tsubWindow.addEventListener( \"unload\", unloadHandler );\n\t}\n\n\t// Support: IE <10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocumentElement.appendChild( el ).id = jQuery.expando;\n\t\treturn !document.getElementsByName ||\n\t\t\t!document.getElementsByName( jQuery.expando ).length;\n\t} );\n\n\t// Support: IE 9 only\n\t// Check to see if it's possible to do matchesSelector\n\t// on a disconnected node.\n\tsupport.disconnectedMatch = assert( function( el ) {\n\t\treturn matches.call( el, \"*\" );\n\t} );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// IE/Edge don't support the :scope pseudo-class.\n\tsupport.scope = assert( function() {\n\t\treturn document.querySelectorAll( \":scope\" );\n\t} );\n\n\t// Support: Chrome 105 - 111 only, Safari 15.4 - 16.3 only\n\t// Make sure the `:has()` argument is parsed unforgivingly.\n\t// We include `*` in the test to detect buggy implementations that are\n\t// _selectively_ forgiving (specifically when the list includes at least\n\t// one valid selector).\n\t// Note that we treat complete lack of support for `:has()` as if it were\n\t// spec-compliant support, which is fine because use of `:has()` in such\n\t// environments will fail in the qSA path and fall back to jQuery traversal\n\t// anyway.\n\tsupport.cssHas = assert( function() {\n\t\ttry {\n\t\t\tdocument.querySelector( \":has(*,:jqfake)\" );\n\t\t\treturn false;\n\t\t} catch ( e ) {\n\t\t\treturn true;\n\t\t}\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter.ID = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find.ID = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter.ID = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find.ID = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find.TAG = function( tag, context ) {\n\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t// DocumentFragment nodes don't have gEBTN\n\t\t} else {\n\t\t\treturn context.querySelectorAll( tag );\n\t\t}\n\t};\n\n\t// Class\n\tExpr.find.CLASS = function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\trbuggyQSA = [];\n\n\t// Build QSA regex\n\t// Regex strategy adopted from Diego Perini\n\tassert( function( el ) {\n\n\t\tvar input;\n\n\t\tdocumentElement.appendChild( el ).innerHTML =\n\t\t\t\"<a id='\" + expando + \"' href='' disabled='disabled'></a>\" +\n\t\t\t\"<select id='\" + expando + \"-\\r\\\\' disabled='disabled'>\" +\n\t\t\t\"<option selected=''></option></select>\";\n\n\t\t// Support: iOS <=7 - 8 only\n\t\t// Boolean attributes and \"value\" are not treated correctly in some XML documents\n\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t}\n\n\t\t// Support: iOS <=7 - 8 only\n\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\trbuggyQSA.push( \"~=\" );\n\t\t}\n\n\t\t// Support: iOS 8 only\n\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t}\n\n\t\t// Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+\n\t\t// In some of the document kinds, these selectors wouldn't work natively.\n\t\t// This is probably OK but for backwards compatibility we want to maintain\n\t\t// handling them through jQuery traversal in jQuery 3.x.\n\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\trbuggyQSA.push( \":checked\" );\n\t\t}\n\n\t\t// Support: Windows 8 Native Apps\n\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\tinput = document.createElement( \"input\" );\n\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t// Support: IE 9 - 11+\n\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t// Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+\n\t\t// In some of the document kinds, these selectors wouldn't work natively.\n\t\t// This is probably OK but for backwards compatibility we want to maintain\n\t\t// handling them through jQuery traversal in jQuery 3.x.\n\t\tdocumentElement.appendChild( el ).disabled = true;\n\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t}\n\n\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t// Adding a temporary attribute to the document before the selection works\n\t\t// around the issue.\n\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\tinput = document.createElement( \"input\" );\n\t\tinput.setAttribute( \"name\", \"\" );\n\t\tel.appendChild( input );\n\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t}\n\t} );\n\n\tif ( !support.cssHas ) {\n\n\t\t// Support: Chrome 105 - 110+, Safari 15.4 - 16.3+\n\t\t// Our regular `try-catch` mechanism fails to detect natively-unsupported\n\t\t// pseudo-classes inside `:has()` (such as `:has(:contains(\"Foo\"))`)\n\t\t// in browsers that parse the `:has()` argument as a forgiving selector list.\n\t\t// https://drafts.csswg.org/selectors/#relational now requires the argument\n\t\t// to be parsed unforgivingly, but browsers have not yet fully adjusted.\n\t\trbuggyQSA.push( \":has\" );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = function( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a === document || a.ownerDocument == preferredDoc &&\n\t\t\t\tfind.contains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b === document || b.ownerDocument == preferredDoc &&\n\t\t\t\tfind.contains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t};\n\n\treturn document;\n}\n\nfind.matches = function( expr, elements ) {\n\treturn find( expr, null, null, elements );\n};\n\nfind.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn find( expr, document, null, [ elem ] ).length > 0;\n};\n\nfind.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn jQuery.contains( context, elem );\n};\n\n\nfind.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (see trac-13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\tif ( val !== undefined ) {\n\t\treturn val;\n\t}\n\n\treturn elem.getAttribute( name );\n};\n\nfind.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\njQuery.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\t//\n\t// Support: Android <=4.0+\n\t// Testing for detecting duplicates is unpredictable so instead assume we can't\n\t// depend on duplicate detection in all browsers without a stable sort.\n\thasDuplicate = !support.sortStable;\n\tsortInput = !support.sortStable && slice.call( results, 0 );\n\tsort.call( results, sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tsplice.call( results, duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\njQuery.fn.uniqueSort = function() {\n\treturn this.pushStack( jQuery.uniqueSort( slice.apply( this ) ) );\n};\n\nExpr = jQuery.expr = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\tATTR: function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] || match[ 5 ] || \"\" )\n\t\t\t\t.replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\tCHILD: function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tfind.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" )\n\t\t\t\t);\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tfind.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\tPSEUDO: function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr.CHILD.test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\tTAG: function( nodeNameSelector ) {\n\t\t\tvar expectedNodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn nodeName( elem, expectedNodeName );\n\t\t\t\t};\n\t\t},\n\n\t\tCLASS: function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace + \")\" + className +\n\t\t\t\t\t\"(\" + whitespace + \"|$)\" ) ) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\tATTR: function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = find.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\tif ( operator === \"=\" ) {\n\t\t\t\t\treturn result === check;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"!=\" ) {\n\t\t\t\t\treturn result !== check;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"^=\" ) {\n\t\t\t\t\treturn check && result.indexOf( check ) === 0;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"*=\" ) {\n\t\t\t\t\treturn check && result.indexOf( check ) > -1;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"$=\" ) {\n\t\t\t\t\treturn check && result.slice( -check.length ) === check;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"~=\" ) {\n\t\t\t\t\treturn ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" )\n\t\t\t\t\t\t.indexOf( check ) > -1;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"|=\" ) {\n\t\t\t\t\treturn result === check || result.slice( 0, check.length + 1 ) === check + \"-\";\n\t\t\t\t}\n\n\t\t\t\treturn false;\n\t\t\t};\n\t\t},\n\n\t\tCHILD: function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnodeName( node, name ) :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || ( parent[ expando ] = {} );\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\t\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnodeName( node, name ) :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\t\t\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\tPSEUDO: function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// https://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tfind.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as jQuery does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf.call( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\tnot: markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrimCSS, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element\n\t\t\t\t\t// (see https://github.com/jquery/sizzle/issues/299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\thas: markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn find( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\tcontains: markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || jQuery.text( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// https://www.w3.org/TR/selectors/#lang-pseudo\n\t\tlang: markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tfind.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\ttarget: function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\troot: function( elem ) {\n\t\t\treturn elem === documentElement;\n\t\t},\n\n\t\tfocus: function( elem ) {\n\t\t\treturn elem === safeActiveElement() &&\n\t\t\t\tdocument.hasFocus() &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\tenabled: createDisabledPseudo( false ),\n\t\tdisabled: createDisabledPseudo( true ),\n\n\t\tchecked: function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// https://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\treturn ( nodeName( elem, \"input\" ) && !!elem.checked ) ||\n\t\t\t\t( nodeName( elem, \"option\" ) && !!elem.selected );\n\t\t},\n\n\t\tselected: function( elem ) {\n\n\t\t\t// Support: IE <=11+\n\t\t\t// Accessing the selectedIndex property\n\t\t\t// forces the browser to treat the default option as\n\t\t\t// selected when in an optgroup.\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\tempty: function( elem ) {\n\n\t\t\t// https://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t// but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\tparent: function( elem ) {\n\t\t\treturn !Expr.pseudos.empty( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\theader: function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\tinput: function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\tbutton: function( elem ) {\n\t\t\treturn nodeName( elem, \"input\" ) && elem.type === \"button\" ||\n\t\t\t\tnodeName( elem, \"button\" );\n\t\t},\n\n\t\ttext: function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn nodeName( elem, \"input\" ) && elem.type === \"text\" &&\n\n\t\t\t\t// Support: IE <10 only\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear\n\t\t\t\t// with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\tfirst: createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\tlast: createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\teq: createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\teven: createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\todd: createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\tlt: createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i;\n\n\t\t\tif ( argument < 0 ) {\n\t\t\t\ti = argument + length;\n\t\t\t} else if ( argument > length ) {\n\t\t\t\ti = length;\n\t\t\t} else {\n\t\t\t\ti = argument;\n\t\t\t}\n\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\tgt: createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos.nth = Expr.pseudos.eq;\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\nfunction tokenize( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rleadingCombinator.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrimCSS, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\tif ( parseOnly ) {\n\t\treturn soFar.length;\n\t}\n\n\treturn soFar ?\n\t\tfind.error( selector ) :\n\n\t\t// Cache the tokens\n\t\ttokenCache( selector, groups ).slice( 0 );\n}\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\tif ( skip && nodeName( elem, skip ) ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = outerCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tfind( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem, matcherOut,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed ||\n\t\t\t\tmultipleContexts( selector || \"*\",\n\t\t\t\t\tcontext.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems;\n\n\t\tif ( matcher ) {\n\n\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter\n\t\t\t// or preexisting results,\n\t\t\tmatcherOut = postFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t[] :\n\n\t\t\t\t// ...otherwise use results directly\n\t\t\t\tresults;\n\n\t\t\t// Find primary matches\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t} else {\n\t\t\tmatcherOut = matcherIn;\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf.call( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf.call( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tvar ret = ( !leadingRelative && ( xml || context != outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element\n\t\t\t// (see https://github.com/jquery/sizzle/issues/299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 )\n\t\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrimCSS, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find.TAG( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: iOS <=7 - 9 only\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching\n\t\t\t// elements by id. (see trac-14142)\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tpush.call( results, elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tjQuery.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\nfunction compile( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n}\n\n/**\n * A low-level selection function that works with jQuery's compiled\n * selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n * selector function built with jQuery selector compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nfunction select( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find.ID(\n\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\tcontext\n\t\t\t) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr.needsContext.test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) &&\n\t\t\t\t\t\ttestContext( context.parentNode ) || context\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n}\n\n// One-time assignments\n\n// Support: Android <=4.0 - 4.1+\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Android <=4.0 - 4.1+\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\njQuery.find = find;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.unique = jQuery.uniqueSort;\n\n// These have always been private, but they used to be documented as part of\n// Sizzle so let's maintain them for now for backwards compatibility purposes.\nfind.compile = compile;\nfind.select = select;\nfind.setDocument = setDocument;\nfind.tokenize = tokenize;\n\nfind.escape = jQuery.escapeSelector;\nfind.getText = jQuery.text;\nfind.isXML = jQuery.isXMLDoc;\nfind.selectors = jQuery.expr;\nfind.support = jQuery.support;\nfind.uniqueSort = jQuery.uniqueSort;\n\n\t/* eslint-enable */\n\n} )();\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (trac-9521)\n\t// Strict HTML recognition (trac-11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to jQuery#find\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.error );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the error, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getErrorHook ) {\n\t\t\t\t\t\t\t\t\tprocess.error = jQuery.Deferred.getErrorHook();\n\n\t\t\t\t\t\t\t\t// The deprecated alias of the above. While the name suggests\n\t\t\t\t\t\t\t\t// returning the stack, not an error instance, jQuery just passes\n\t\t\t\t\t\t\t\t// it directly to `console.warn` so both will work; an instance\n\t\t\t\t\t\t\t\t// just better cooperates with source maps.\n\t\t\t\t\t\t\t\t} else if ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.error = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the primary Deferred\n\t\t\tprimary = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tprimary.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( primary.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn primary.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), primary.reject );\n\t\t}\n\n\t\treturn primary.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\n// If `jQuery.Deferred.getErrorHook` is defined, `asyncError` is an error\n// captured before the async barrier to get the original error cause\n// which may otherwise be hidden.\njQuery.Deferred.exceptionHook = function( error, asyncError ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message,\n\t\t\terror.stack, asyncError );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See trac-6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\t\tvalue :\n\t\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (trac-9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t// - Node\n\t// - Node.ELEMENT_NODE\n\t// - Node.DOCUMENT_NODE\n\t// - Object\n\t// - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see trac-8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t// 1. No key was specified\n\t\t// 2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t// 1. The entire cache object\n\t\t// 2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t// 1. An object of properties\n\t\t// 2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (trac-14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (trac-11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (trac-14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (trac-13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (trac-15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (trac-12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar rtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (trac-13208)\n\t\t\t\t// Don't process clicks on disabled elements (trac-6911, trac-8165, trac-11382, trac-11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (trac-13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", true );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, isSetup ) {\n\n\t// Missing `isSetup` indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !isSetup ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\tif ( !saved ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tdataPriv.set( this, type, false );\n\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\n\t\t\t\t\t\treturn result;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering\n\t\t\t\t// the native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, jQuery.event.trigger(\n\t\t\t\t\tsaved[ 0 ],\n\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\tthis\n\t\t\t\t) );\n\n\t\t\t\t// Abort handling of the native event by all jQuery handlers while allowing\n\t\t\t\t// native handlers on the same element to run. On target, this is achieved\n\t\t\t\t// by stopping immediate propagation just on the jQuery event. However,\n\t\t\t\t// the native event is re-wrapped by a jQuery one on each level of the\n\t\t\t\t// propagation so the only way to stop it for jQuery is to stop it for\n\t\t\t\t// everyone via native `stopPropagation()`. This is not a problem for\n\t\t\t\t// focus/blur which don't bubble, but it does also stop click on checkboxes\n\t\t\t\t// and radios. We accept this limitation.\n\t\t\t\tevent.stopPropagation();\n\t\t\t\tevent.isImmediatePropagationStopped = returnTrue;\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (trac-504, trac-13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\twhich: true\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\n\tfunction focusMappedHandler( nativeEvent ) {\n\t\tif ( document.documentMode ) {\n\n\t\t\t// Support: IE 11+\n\t\t\t// Attach a single focusin/focusout handler on the document while someone wants\n\t\t\t// focus/blur. This is because the former are synchronous in IE while the latter\n\t\t\t// are async. In other browsers, all those handlers are invoked synchronously.\n\n\t\t\t// `handle` from private data would already wrap the event, but we need\n\t\t\t// to change the `type` here.\n\t\t\tvar handle = dataPriv.get( this, \"handle\" ),\n\t\t\t\tevent = jQuery.event.fix( nativeEvent );\n\t\t\tevent.type = nativeEvent.type === \"focusin\" ? \"focus\" : \"blur\";\n\t\t\tevent.isSimulated = true;\n\n\t\t\t// First, handle focusin/focusout\n\t\t\thandle( nativeEvent );\n\n\t\t\t// ...then, handle focus/blur\n\t\t\t//\n\t\t\t// focus/blur don't bubble while focusin/focusout do; simulate the former by only\n\t\t\t// invoking the handler at the lower level.\n\t\t\tif ( event.target === event.currentTarget ) {\n\n\t\t\t\t// The setup part calls `leverageNative`, which, in turn, calls\n\t\t\t\t// `jQuery.event.add`, so event handle will already have been set\n\t\t\t\t// by this point.\n\t\t\t\thandle( event );\n\t\t\t}\n\t\t} else {\n\n\t\t\t// For non-IE browsers, attach a single capturing handler on the document\n\t\t\t// while someone wants focusin/focusout.\n\t\t\tjQuery.event.simulate( delegateType, nativeEvent.target,\n\t\t\t\tjQuery.event.fix( nativeEvent ) );\n\t\t}\n\t}\n\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\tvar attaches;\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, true );\n\n\t\t\tif ( document.documentMode ) {\n\n\t\t\t\t// Support: IE 9 - 11+\n\t\t\t\t// We use the same native handler for focusin & focus (and focusout & blur)\n\t\t\t\t// so we need to coordinate setup & teardown parts between those events.\n\t\t\t\t// Use `delegateType` as the key as `type` is already used by `leverageNative`.\n\t\t\t\tattaches = dataPriv.get( this, delegateType );\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tthis.addEventListener( delegateType, focusMappedHandler );\n\t\t\t\t}\n\t\t\t\tdataPriv.set( this, delegateType, ( attaches || 0 ) + 1 );\n\t\t\t} else {\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tvar attaches;\n\n\t\t\tif ( document.documentMode ) {\n\t\t\t\tattaches = dataPriv.get( this, delegateType ) - 1;\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tthis.removeEventListener( delegateType, focusMappedHandler );\n\t\t\t\t\tdataPriv.remove( this, delegateType );\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.set( this, delegateType, attaches );\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Return false to indicate standard teardown should be applied\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\n\t\t// Suppress native focus or blur if we're currently inside\n\t\t// a leveraged native-event stack\n\t\t_default: function( event ) {\n\t\t\treturn dataPriv.get( event.target, type );\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n\n\t// Support: Firefox <=44\n\t// Firefox doesn't have focus(in | out) events\n\t// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n\t//\n\t// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n\t// focus(in | out) events fire after focus & blur events,\n\t// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n\t// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\n\t//\n\t// Support: IE 9 - 11+\n\t// To preserve relative focusin/focus & focusout/blur event order guaranteed on the 3.x branch,\n\t// attach a single handler for both events in IE.\n\tjQuery.event.special[ delegateType ] = {\n\t\tsetup: function() {\n\n\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\tdataHolder = document.documentMode ? this : doc,\n\t\t\t\tattaches = dataPriv.get( dataHolder, delegateType );\n\n\t\t\t// Support: IE 9 - 11+\n\t\t\t// We use the same native handler for focusin & focus (and focusout & blur)\n\t\t\t// so we need to coordinate setup & teardown parts between those events.\n\t\t\t// Use `delegateType` as the key as `type` is already used by `leverageNative`.\n\t\t\tif ( !attaches ) {\n\t\t\t\tif ( document.documentMode ) {\n\t\t\t\t\tthis.addEventListener( delegateType, focusMappedHandler );\n\t\t\t\t} else {\n\t\t\t\t\tdoc.addEventListener( type, focusMappedHandler, true );\n\t\t\t\t}\n\t\t\t}\n\t\t\tdataPriv.set( dataHolder, delegateType, ( attaches || 0 ) + 1 );\n\t\t},\n\t\tteardown: function() {\n\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\tdataHolder = document.documentMode ? this : doc,\n\t\t\t\tattaches = dataPriv.get( dataHolder, delegateType ) - 1;\n\n\t\t\tif ( !attaches ) {\n\t\t\t\tif ( document.documentMode ) {\n\t\t\t\t\tthis.removeEventListener( delegateType, focusMappedHandler );\n\t\t\t\t} else {\n\t\t\t\t\tdoc.removeEventListener( type, focusMappedHandler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( dataHolder, delegateType );\n\t\t\t} else {\n\t\t\t\tdataPriv.set( dataHolder, delegateType, attaches );\n\t\t\t}\n\t\t}\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event ) dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\n\trcleanScript = /^\\s*<!\\[CDATA\\[|\\]\\]>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (trac-8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Re-enable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase() !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Unwrap a CDATA section containing script contents. This shouldn't be\n\t\t\t\t\t\t\t// needed as in XML documents they're already not visible when\n\t\t\t\t\t\t\t// inspecting element contents and in HTML documents they have no\n\t\t\t\t\t\t\t// meaning but we're preserving that logic for backwards compatibility.\n\t\t\t\t\t\t\t// This will be removed completely in 4.0. See gh-4904.\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew jQuery#find here for performance reasons:\n\t\t\t// https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar rcustomProp = /^--/;\n\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (trac-15098, trac-14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (trac-8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\t//\n\t\t// Support: Firefox 70+\n\t\t// Only Firefox includes border widths\n\t\t// in computed dimensions. (gh-4529)\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px;border-collapse:separate\";\n\t\t\t\ttr.style.cssText = \"box-sizing:content-box;border:1px solid\";\n\n\t\t\t\t// Support: Chrome 86+\n\t\t\t\t// Height set through cssText does not get applied.\n\t\t\t\t// Computed height then comes back as 0.\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\t// Support: Android 8 Chrome 86+\n\t\t\t\t// In our bodyBackground.html iframe,\n\t\t\t\t// display for all div elements is set to \"inline\",\n\t\t\t\t// which causes a problem only in Android 8 Chrome 86.\n\t\t\t\t// Ensuring the div is `display: block`\n\t\t\t\t// gets around this issue.\n\t\t\t\ttrChild.style.display = \"block\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) +\n\t\t\t\t\tparseInt( trStyle.borderTopWidth, 10 ) +\n\t\t\t\t\tparseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\t\tisCustomProp = rcustomProp.test( name ),\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t// .css('filter') (IE 9 only, trac-12537)\n\t// .css('--customProperty) (gh-3144)\n\tif ( computed ) {\n\n\t\t// Support: IE <=9 - 11+\n\t\t// IE only supports `\"float\"` in `getPropertyValue`; in computed styles\n\t\t// it's only available as `\"cssFloat\"`. We no longer modify properties\n\t\t// sent to `.css()` apart from camelCasing, so we need to check both.\n\t\t// Normally, this would create difference in behavior: if\n\t\t// `getPropertyValue` returns an empty string, the value returned\n\t\t// by `.css()` would be `undefined`. This is usually the case for\n\t\t// disconnected elements. However, in IE even disconnected elements\n\t\t// with no styles return `\"none\"` for `getPropertyValue( \"float\" )`\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( isCustomProp && ret ) {\n\n\t\t\t// Support: Firefox 105+, Chrome <=105+\n\t\t\t// Spec requires trimming whitespace for custom properties (gh-4926).\n\t\t\t// Firefox only trims leading whitespace. Chrome just collapses\n\t\t\t// both leading & trailing whitespace to a single space.\n\t\t\t//\n\t\t\t// Fall back to `undefined` if empty string returned.\n\t\t\t// This collapses a missing definition with property defined\n\t\t\t// and set to an empty string but there's no standard API\n\t\t\t// allowing us to differentiate them without a performance penalty\n\t\t\t// and returning `undefined` aligns with older jQuery.\n\t\t\t//\n\t\t\t// rtrimCSS treats U+000D CARRIAGE RETURN and U+000C FORM FEED\n\t\t\t// as whitespace while CSS does not, but this is not a problem\n\t\t\t// because CSS preprocessing replaces them with U+000A LINE FEED\n\t\t\t// (which *is* CSS whitespace)\n\t\t\t// https://www.w3.org/TR/css-syntax-3/#input-preprocessing\n\t\t\tret = ret.replace( rtrimCSS, \"$1\" ) || undefined;\n\t\t}\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0,\n\t\tmarginDelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\t// Count margin delta separately to only add it after scroll gutter adjustment.\n\t\t// This is needed to make negative margins work with `outerHeight( true )` (gh-3982).\n\t\tif ( box === \"margin\" ) {\n\t\t\tmarginDelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta + marginDelta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\tanimationIterationCount: true,\n\t\taspectRatio: true,\n\t\tborderImageSlice: true,\n\t\tcolumnCount: true,\n\t\tflexGrow: true,\n\t\tflexShrink: true,\n\t\tfontWeight: true,\n\t\tgridArea: true,\n\t\tgridColumn: true,\n\t\tgridColumnEnd: true,\n\t\tgridColumnStart: true,\n\t\tgridRow: true,\n\t\tgridRowEnd: true,\n\t\tgridRowStart: true,\n\t\tlineHeight: true,\n\t\topacity: true,\n\t\torder: true,\n\t\torphans: true,\n\t\tscale: true,\n\t\twidows: true,\n\t\tzIndex: true,\n\t\tzoom: true,\n\n\t\t// SVG-related\n\t\tfillOpacity: true,\n\t\tfloodOpacity: true,\n\t\tstopOpacity: true,\n\t\tstrokeMiterlimit: true,\n\t\tstrokeOpacity: true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (trac-7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug trac-9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (trac-7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t} ) :\n\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (trac-12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\n\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// Use proper attribute retrieval (trac-12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classNames, cur, curValue, className, i, finalValue;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclassNames = classesToArray( value );\n\n\t\tif ( classNames.length ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tcurValue = getClass( this );\n\t\t\t\tcur = this.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tfor ( i = 0; i < classNames.length; i++ ) {\n\t\t\t\t\t\tclassName = classNames[ i ];\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + className + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += className + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\tthis.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classNames, cur, curValue, className, i, finalValue;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclassNames = classesToArray( value );\n\n\t\tif ( classNames.length ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tcurValue = getClass( this );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = this.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tfor ( i = 0; i < classNames.length; i++ ) {\n\t\t\t\t\t\tclassName = classNames[ i ];\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + className + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + className + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\tthis.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar classNames, className, i, self,\n\t\t\ttype = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tclassNames = classesToArray( value );\n\n\t\treturn this.each( function() {\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\tself = jQuery( this );\n\n\t\t\t\tfor ( i = 0; i < classNames.length; i++ ) {\n\t\t\t\t\tclassName = classNames[ i ];\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (trac-14686, trac-14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (trac-2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, parserErrorElem;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {}\n\n\tparserErrorElem = xml && xml.getElementsByTagName( \"parsererror\" )[ 0 ];\n\tif ( !xml || parserErrorElem ) {\n\t\tjQuery.error( \"Invalid XML: \" + (\n\t\t\tparserErrorElem ?\n\t\t\t\tjQuery.map( parserErrorElem.childNodes, function( el ) {\n\t\t\t\t\treturn el.textContent;\n\t\t\t\t} ).join( \"\\n\" ) :\n\t\t\t\tdata\n\t\t) );\n\t}\n\treturn xml;\n};\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (trac-9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (trac-9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( dataPriv.get( cur, \"events\" ) || Object.create( null ) )[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (trac-6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} ).filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} ).map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// trac-7653, trac-8125, trac-8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t * - BEFORE asking for a transport\n\t * - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (trac-10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\noriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes trac-9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (trac-10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket trac-12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (trac-15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// trac-9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script but not if jsonp\n\t\t\tif ( !isSuccess &&\n\t\t\t\tjQuery.inArray( \"script\", s.dataTypes ) > -1 &&\n\t\t\t\tjQuery.inArray( \"json\", s.dataTypes ) < 0 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (trac-11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// trac-1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see trac-8605, trac-14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\" ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// trac-14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t// documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( {\n\t\tpadding: \"inner\" + name,\n\t\tcontent: type,\n\t\t\"\": \"outer\" + name\n\t}, function( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this\n\t\t\t.on( \"mouseenter\", fnOver )\n\t\t\t.on( \"mouseleave\", fnOut || fnOver );\n\t}\n} );\n\njQuery.each(\n\t( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t}\n);\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\n// Require that the \"whitespace run\" starts from a non-whitespace\n// to avoid O(N^2) behavior when the engine would try matching \"\\s+$\" at each space position.\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|([^\\s\\uFEFF\\xA0])[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"$1\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (trac-7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (trac-13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n\n},{}],136:[function(require,module,exports){\n(function(window, factory) {\n\tvar lazySizes = factory(window, window.document, Date);\n\twindow.lazySizes = lazySizes;\n\tif(typeof module == 'object' && module.exports){\n\t\tmodule.exports = lazySizes;\n\t}\n}(typeof window != 'undefined' ?\n window : {}, \n/**\n * import(\"./types/global\")\n * @typedef { import(\"./types/lazysizes-config\").LazySizesConfigPartial } LazySizesConfigPartial\n */\nfunction l(window, document, Date) { // Pass in the window Date function also for SSR because the Date class can be lost\n\t'use strict';\n\t/*jshint eqnull:true */\n\n\tvar lazysizes,\n\t\t/**\n\t\t * @type { LazySizesConfigPartial }\n\t\t */\n\t\tlazySizesCfg;\n\n\t(function(){\n\t\tvar prop;\n\n\t\tvar lazySizesDefaults = {\n\t\t\tlazyClass: 'lazyload',\n\t\t\tloadedClass: 'lazyloaded',\n\t\t\tloadingClass: 'lazyloading',\n\t\t\tpreloadClass: 'lazypreload',\n\t\t\terrorClass: 'lazyerror',\n\t\t\t//strictClass: 'lazystrict',\n\t\t\tautosizesClass: 'lazyautosizes',\n\t\t\tfastLoadedClass: 'ls-is-cached',\n\t\t\tiframeLoadMode: 0,\n\t\t\tsrcAttr: 'data-src',\n\t\t\tsrcsetAttr: 'data-srcset',\n\t\t\tsizesAttr: 'data-sizes',\n\t\t\t//preloadAfterLoad: false,\n\t\t\tminSize: 40,\n\t\t\tcustomMedia: {},\n\t\t\tinit: true,\n\t\t\texpFactor: 1.5,\n\t\t\thFac: 0.8,\n\t\t\tloadMode: 2,\n\t\t\tloadHidden: true,\n\t\t\tricTimeout: 0,\n\t\t\tthrottleDelay: 125,\n\t\t};\n\n\t\tlazySizesCfg = window.lazySizesConfig || window.lazysizesConfig || {};\n\n\t\tfor(prop in lazySizesDefaults){\n\t\t\tif(!(prop in lazySizesCfg)){\n\t\t\t\tlazySizesCfg[prop] = lazySizesDefaults[prop];\n\t\t\t}\n\t\t}\n\t})();\n\n\tif (!document || !document.getElementsByClassName) {\n\t\treturn {\n\t\t\tinit: function () {},\n\t\t\t/**\n\t\t\t * @type { LazySizesConfigPartial }\n\t\t\t */\n\t\t\tcfg: lazySizesCfg,\n\t\t\t/**\n\t\t\t * @type { true }\n\t\t\t */\n\t\t\tnoSupport: true,\n\t\t};\n\t}\n\n\tvar docElem = document.documentElement;\n\n\tvar supportPicture = window.HTMLPictureElement;\n\n\tvar _addEventListener = 'addEventListener';\n\n\tvar _getAttribute = 'getAttribute';\n\n\t/**\n\t * Update to bind to window because 'this' becomes null during SSR\n\t * builds.\n\t */\n\tvar addEventListener = window[_addEventListener].bind(window);\n\n\tvar setTimeout = window.setTimeout;\n\n\tvar requestAnimationFrame = window.requestAnimationFrame || setTimeout;\n\n\tvar requestIdleCallback = window.requestIdleCallback;\n\n\tvar regPicture = /^picture$/i;\n\n\tvar loadEvents = ['load', 'error', 'lazyincluded', '_lazyloaded'];\n\n\tvar regClassCache = {};\n\n\tvar forEach = Array.prototype.forEach;\n\n\t/**\n\t * @param ele {Element}\n\t * @param cls {string}\n\t */\n\tvar hasClass = function(ele, cls) {\n\t\tif(!regClassCache[cls]){\n\t\t\tregClassCache[cls] = new RegExp('(\\\\s|^)'+cls+'(\\\\s|$)');\n\t\t}\n\t\treturn regClassCache[cls].test(ele[_getAttribute]('class') || '') && regClassCache[cls];\n\t};\n\n\t/**\n\t * @param ele {Element}\n\t * @param cls {string}\n\t */\n\tvar addClass = function(ele, cls) {\n\t\tif (!hasClass(ele, cls)){\n\t\t\tele.setAttribute('class', (ele[_getAttribute]('class') || '').trim() + ' ' + cls);\n\t\t}\n\t};\n\n\t/**\n\t * @param ele {Element}\n\t * @param cls {string}\n\t */\n\tvar removeClass = function(ele, cls) {\n\t\tvar reg;\n\t\tif ((reg = hasClass(ele,cls))) {\n\t\t\tele.setAttribute('class', (ele[_getAttribute]('class') || '').replace(reg, ' '));\n\t\t}\n\t};\n\n\tvar addRemoveLoadEvents = function(dom, fn, add){\n\t\tvar action = add ? _addEventListener : 'removeEventListener';\n\t\tif(add){\n\t\t\taddRemoveLoadEvents(dom, fn);\n\t\t}\n\t\tloadEvents.forEach(function(evt){\n\t\t\tdom[action](evt, fn);\n\t\t});\n\t};\n\n\t/**\n\t * @param elem { Element }\n\t * @param name { string }\n\t * @param detail { any }\n\t * @param noBubbles { boolean }\n\t * @param noCancelable { boolean }\n\t * @returns { CustomEvent }\n\t */\n\tvar triggerEvent = function(elem, name, detail, noBubbles, noCancelable){\n\t\tvar event = document.createEvent('Event');\n\n\t\tif(!detail){\n\t\t\tdetail = {};\n\t\t}\n\n\t\tdetail.instance = lazysizes;\n\n\t\tevent.initEvent(name, !noBubbles, !noCancelable);\n\n\t\tevent.detail = detail;\n\n\t\telem.dispatchEvent(event);\n\t\treturn event;\n\t};\n\n\tvar updatePolyfill = function (el, full){\n\t\tvar polyfill;\n\t\tif( !supportPicture && ( polyfill = (window.picturefill || lazySizesCfg.pf) ) ){\n\t\t\tif(full && full.src && !el[_getAttribute]('srcset')){\n\t\t\t\tel.setAttribute('srcset', full.src);\n\t\t\t}\n\t\t\tpolyfill({reevaluate: true, elements: [el]});\n\t\t} else if(full && full.src){\n\t\t\tel.src = full.src;\n\t\t}\n\t};\n\n\tvar getCSS = function (elem, style){\n\t\treturn (getComputedStyle(elem, null) || {})[style];\n\t};\n\n\t/**\n\t *\n\t * @param elem { Element }\n\t * @param parent { Element }\n\t * @param [width] {number}\n\t * @returns {number}\n\t */\n\tvar getWidth = function(elem, parent, width){\n\t\twidth = width || elem.offsetWidth;\n\n\t\twhile(width < lazySizesCfg.minSize && parent && !elem._lazysizesWidth){\n\t\t\twidth = parent.offsetWidth;\n\t\t\tparent = parent.parentNode;\n\t\t}\n\n\t\treturn width;\n\t};\n\n\tvar rAF = (function(){\n\t\tvar running, waiting;\n\t\tvar firstFns = [];\n\t\tvar secondFns = [];\n\t\tvar fns = firstFns;\n\n\t\tvar run = function(){\n\t\t\tvar runFns = fns;\n\n\t\t\tfns = firstFns.length ? secondFns : firstFns;\n\n\t\t\trunning = true;\n\t\t\twaiting = false;\n\n\t\t\twhile(runFns.length){\n\t\t\t\trunFns.shift()();\n\t\t\t}\n\n\t\t\trunning = false;\n\t\t};\n\n\t\tvar rafBatch = function(fn, queue){\n\t\t\tif(running && !queue){\n\t\t\t\tfn.apply(this, arguments);\n\t\t\t} else {\n\t\t\t\tfns.push(fn);\n\n\t\t\t\tif(!waiting){\n\t\t\t\t\twaiting = true;\n\t\t\t\t\t(document.hidden ? setTimeout : requestAnimationFrame)(run);\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\trafBatch._lsFlush = run;\n\n\t\treturn rafBatch;\n\t})();\n\n\tvar rAFIt = function(fn, simple){\n\t\treturn simple ?\n\t\t\tfunction() {\n\t\t\t\trAF(fn);\n\t\t\t} :\n\t\t\tfunction(){\n\t\t\t\tvar that = this;\n\t\t\t\tvar args = arguments;\n\t\t\t\trAF(function(){\n\t\t\t\t\tfn.apply(that, args);\n\t\t\t\t});\n\t\t\t}\n\t\t;\n\t};\n\n\tvar throttle = function(fn){\n\t\tvar running;\n\t\tvar lastTime = 0;\n\t\tvar gDelay = lazySizesCfg.throttleDelay;\n\t\tvar rICTimeout = lazySizesCfg.ricTimeout;\n\t\tvar run = function(){\n\t\t\trunning = false;\n\t\t\tlastTime = Date.now();\n\t\t\tfn();\n\t\t};\n\t\tvar idleCallback = requestIdleCallback && rICTimeout > 49 ?\n\t\t\tfunction(){\n\t\t\t\trequestIdleCallback(run, {timeout: rICTimeout});\n\n\t\t\t\tif(rICTimeout !== lazySizesCfg.ricTimeout){\n\t\t\t\t\trICTimeout = lazySizesCfg.ricTimeout;\n\t\t\t\t}\n\t\t\t} :\n\t\t\trAFIt(function(){\n\t\t\t\tsetTimeout(run);\n\t\t\t}, true)\n\t\t;\n\n\t\treturn function(isPriority){\n\t\t\tvar delay;\n\n\t\t\tif((isPriority = isPriority === true)){\n\t\t\t\trICTimeout = 33;\n\t\t\t}\n\n\t\t\tif(running){\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\trunning = true;\n\n\t\t\tdelay = gDelay - (Date.now() - lastTime);\n\n\t\t\tif(delay < 0){\n\t\t\t\tdelay = 0;\n\t\t\t}\n\n\t\t\tif(isPriority || delay < 9){\n\t\t\t\tidleCallback();\n\t\t\t} else {\n\t\t\t\tsetTimeout(idleCallback, delay);\n\t\t\t}\n\t\t};\n\t};\n\n\t//based on http://modernjavascript.blogspot.de/2013/08/building-better-debounce.html\n\tvar debounce = function(func) {\n\t\tvar timeout, timestamp;\n\t\tvar wait = 99;\n\t\tvar run = function(){\n\t\t\ttimeout = null;\n\t\t\tfunc();\n\t\t};\n\t\tvar later = function() {\n\t\t\tvar last = Date.now() - timestamp;\n\n\t\t\tif (last < wait) {\n\t\t\t\tsetTimeout(later, wait - last);\n\t\t\t} else {\n\t\t\t\t(requestIdleCallback || run)(run);\n\t\t\t}\n\t\t};\n\n\t\treturn function() {\n\t\t\ttimestamp = Date.now();\n\n\t\t\tif (!timeout) {\n\t\t\t\ttimeout = setTimeout(later, wait);\n\t\t\t}\n\t\t};\n\t};\n\n\tvar loader = (function(){\n\t\tvar preloadElems, isCompleted, resetPreloadingTimer, loadMode, started;\n\n\t\tvar eLvW, elvH, eLtop, eLleft, eLright, eLbottom, isBodyHidden;\n\n\t\tvar regImg = /^img$/i;\n\t\tvar regIframe = /^iframe$/i;\n\n\t\tvar supportScroll = ('onscroll' in window) && !(/(gle|ing)bot/.test(navigator.userAgent));\n\n\t\tvar shrinkExpand = 0;\n\t\tvar currentExpand = 0;\n\n\t\tvar isLoading = 0;\n\t\tvar lowRuns = -1;\n\n\t\tvar resetPreloading = function(e){\n\t\t\tisLoading--;\n\t\t\tif(!e || isLoading < 0 || !e.target){\n\t\t\t\tisLoading = 0;\n\t\t\t}\n\t\t};\n\n\t\tvar isVisible = function (elem) {\n\t\t\tif (isBodyHidden == null) {\n\t\t\t\tisBodyHidden = getCSS(document.body, 'visibility') == 'hidden';\n\t\t\t}\n\n\t\t\treturn isBodyHidden || !(getCSS(elem.parentNode, 'visibility') == 'hidden' && getCSS(elem, 'visibility') == 'hidden');\n\t\t};\n\n\t\tvar isNestedVisible = function(elem, elemExpand){\n\t\t\tvar outerRect;\n\t\t\tvar parent = elem;\n\t\t\tvar visible = isVisible(elem);\n\n\t\t\teLtop -= elemExpand;\n\t\t\teLbottom += elemExpand;\n\t\t\teLleft -= elemExpand;\n\t\t\teLright += elemExpand;\n\n\t\t\twhile(visible && (parent = parent.offsetParent) && parent != document.body && parent != docElem){\n\t\t\t\tvisible = ((getCSS(parent, 'opacity') || 1) > 0);\n\n\t\t\t\tif(visible && getCSS(parent, 'overflow') != 'visible'){\n\t\t\t\t\touterRect = parent.getBoundingClientRect();\n\t\t\t\t\tvisible = eLright > outerRect.left &&\n\t\t\t\t\t\teLleft < outerRect.right &&\n\t\t\t\t\t\teLbottom > outerRect.top - 1 &&\n\t\t\t\t\t\teLtop < outerRect.bottom + 1\n\t\t\t\t\t;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn visible;\n\t\t};\n\n\t\tvar checkElements = function() {\n\t\t\tvar eLlen, i, rect, autoLoadElem, loadedSomething, elemExpand, elemNegativeExpand, elemExpandVal,\n\t\t\t\tbeforeExpandVal, defaultExpand, preloadExpand, hFac;\n\t\t\tvar lazyloadElems = lazysizes.elements;\n\n\t\t\tif((loadMode = lazySizesCfg.loadMode) && isLoading < 8 && (eLlen = lazyloadElems.length)){\n\n\t\t\t\ti = 0;\n\n\t\t\t\tlowRuns++;\n\n\t\t\t\tfor(; i < eLlen; i++){\n\n\t\t\t\t\tif(!lazyloadElems[i] || lazyloadElems[i]._lazyRace){continue;}\n\n\t\t\t\t\tif(!supportScroll || (lazysizes.prematureUnveil && lazysizes.prematureUnveil(lazyloadElems[i]))){unveilElement(lazyloadElems[i]);continue;}\n\n\t\t\t\t\tif(!(elemExpandVal = lazyloadElems[i][_getAttribute]('data-expand')) || !(elemExpand = elemExpandVal * 1)){\n\t\t\t\t\t\telemExpand = currentExpand;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!defaultExpand) {\n\t\t\t\t\t\tdefaultExpand = (!lazySizesCfg.expand || lazySizesCfg.expand < 1) ?\n\t\t\t\t\t\t\tdocElem.clientHeight > 500 && docElem.clientWidth > 500 ? 500 : 370 :\n\t\t\t\t\t\t\tlazySizesCfg.expand;\n\n\t\t\t\t\t\tlazysizes._defEx = defaultExpand;\n\n\t\t\t\t\t\tpreloadExpand = defaultExpand * lazySizesCfg.expFactor;\n\t\t\t\t\t\thFac = lazySizesCfg.hFac;\n\t\t\t\t\t\tisBodyHidden = null;\n\n\t\t\t\t\t\tif(currentExpand < preloadExpand && isLoading < 1 && lowRuns > 2 && loadMode > 2 && !document.hidden){\n\t\t\t\t\t\t\tcurrentExpand = preloadExpand;\n\t\t\t\t\t\t\tlowRuns = 0;\n\t\t\t\t\t\t} else if(loadMode > 1 && lowRuns > 1 && isLoading < 6){\n\t\t\t\t\t\t\tcurrentExpand = defaultExpand;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcurrentExpand = shrinkExpand;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif(beforeExpandVal !== elemExpand){\n\t\t\t\t\t\teLvW = innerWidth + (elemExpand * hFac);\n\t\t\t\t\t\telvH = innerHeight + elemExpand;\n\t\t\t\t\t\telemNegativeExpand = elemExpand * -1;\n\t\t\t\t\t\tbeforeExpandVal = elemExpand;\n\t\t\t\t\t}\n\n\t\t\t\t\trect = lazyloadElems[i].getBoundingClientRect();\n\n\t\t\t\t\tif ((eLbottom = rect.bottom) >= elemNegativeExpand &&\n\t\t\t\t\t\t(eLtop = rect.top) <= elvH &&\n\t\t\t\t\t\t(eLright = rect.right) >= elemNegativeExpand * hFac &&\n\t\t\t\t\t\t(eLleft = rect.left) <= eLvW &&\n\t\t\t\t\t\t(eLbottom || eLright || eLleft || eLtop) &&\n\t\t\t\t\t\t(lazySizesCfg.loadHidden || isVisible(lazyloadElems[i])) &&\n\t\t\t\t\t\t((isCompleted && isLoading < 3 && !elemExpandVal && (loadMode < 3 || lowRuns < 4)) || isNestedVisible(lazyloadElems[i], elemExpand))){\n\t\t\t\t\t\tunveilElement(lazyloadElems[i]);\n\t\t\t\t\t\tloadedSomething = true;\n\t\t\t\t\t\tif(isLoading > 9){break;}\n\t\t\t\t\t} else if(!loadedSomething && isCompleted && !autoLoadElem &&\n\t\t\t\t\t\tisLoading < 4 && lowRuns < 4 && loadMode > 2 &&\n\t\t\t\t\t\t(preloadElems[0] || lazySizesCfg.preloadAfterLoad) &&\n\t\t\t\t\t\t(preloadElems[0] || (!elemExpandVal && ((eLbottom || eLright || eLleft || eLtop) || lazyloadElems[i][_getAttribute](lazySizesCfg.sizesAttr) != 'auto')))){\n\t\t\t\t\t\tautoLoadElem = preloadElems[0] || lazyloadElems[i];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif(autoLoadElem && !loadedSomething){\n\t\t\t\t\tunveilElement(autoLoadElem);\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\tvar throttledCheckElements = throttle(checkElements);\n\n\t\tvar switchLoadingClass = function(e){\n\t\t\tvar elem = e.target;\n\n\t\t\tif (elem._lazyCache) {\n\t\t\t\tdelete elem._lazyCache;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tresetPreloading(e);\n\t\t\taddClass(elem, lazySizesCfg.loadedClass);\n\t\t\tremoveClass(elem, lazySizesCfg.loadingClass);\n\t\t\taddRemoveLoadEvents(elem, rafSwitchLoadingClass);\n\t\t\ttriggerEvent(elem, 'lazyloaded');\n\t\t};\n\t\tvar rafedSwitchLoadingClass = rAFIt(switchLoadingClass);\n\t\tvar rafSwitchLoadingClass = function(e){\n\t\t\trafedSwitchLoadingClass({target: e.target});\n\t\t};\n\n\t\tvar changeIframeSrc = function(elem, src){\n\t\t\tvar loadMode = elem.getAttribute('data-load-mode') || lazySizesCfg.iframeLoadMode;\n\n\t\t\t// loadMode can be also a string!\n\t\t\tif (loadMode == 0) {\n\t\t\t\telem.contentWindow.location.replace(src);\n\t\t\t} else if (loadMode == 1) {\n\t\t\t\telem.src = src;\n\t\t\t}\n\t\t};\n\n\t\tvar handleSources = function(source){\n\t\t\tvar customMedia;\n\n\t\t\tvar sourceSrcset = source[_getAttribute](lazySizesCfg.srcsetAttr);\n\n\t\t\tif( (customMedia = lazySizesCfg.customMedia[source[_getAttribute]('data-media') || source[_getAttribute]('media')]) ){\n\t\t\t\tsource.setAttribute('media', customMedia);\n\t\t\t}\n\n\t\t\tif(sourceSrcset){\n\t\t\t\tsource.setAttribute('srcset', sourceSrcset);\n\t\t\t}\n\t\t};\n\n\t\tvar lazyUnveil = rAFIt(function (elem, detail, isAuto, sizes, isImg){\n\t\t\tvar src, srcset, parent, isPicture, event, firesLoad;\n\n\t\t\tif(!(event = triggerEvent(elem, 'lazybeforeunveil', detail)).defaultPrevented){\n\n\t\t\t\tif(sizes){\n\t\t\t\t\tif(isAuto){\n\t\t\t\t\t\taddClass(elem, lazySizesCfg.autosizesClass);\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem.setAttribute('sizes', sizes);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tsrcset = elem[_getAttribute](lazySizesCfg.srcsetAttr);\n\t\t\t\tsrc = elem[_getAttribute](lazySizesCfg.srcAttr);\n\n\t\t\t\tif(isImg) {\n\t\t\t\t\tparent = elem.parentNode;\n\t\t\t\t\tisPicture = parent && regPicture.test(parent.nodeName || '');\n\t\t\t\t}\n\n\t\t\t\tfiresLoad = detail.firesLoad || (('src' in elem) && (srcset || src || isPicture));\n\n\t\t\t\tevent = {target: elem};\n\n\t\t\t\taddClass(elem, lazySizesCfg.loadingClass);\n\n\t\t\t\tif(firesLoad){\n\t\t\t\t\tclearTimeout(resetPreloadingTimer);\n\t\t\t\t\tresetPreloadingTimer = setTimeout(resetPreloading, 2500);\n\t\t\t\t\taddRemoveLoadEvents(elem, rafSwitchLoadingClass, true);\n\t\t\t\t}\n\n\t\t\t\tif(isPicture){\n\t\t\t\t\tforEach.call(parent.getElementsByTagName('source'), handleSources);\n\t\t\t\t}\n\n\t\t\t\tif(srcset){\n\t\t\t\t\telem.setAttribute('srcset', srcset);\n\t\t\t\t} else if(src && !isPicture){\n\t\t\t\t\tif(regIframe.test(elem.nodeName)){\n\t\t\t\t\t\tchangeIframeSrc(elem, src);\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem.src = src;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif(isImg && (srcset || isPicture)){\n\t\t\t\t\tupdatePolyfill(elem, {src: src});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(elem._lazyRace){\n\t\t\t\tdelete elem._lazyRace;\n\t\t\t}\n\t\t\tremoveClass(elem, lazySizesCfg.lazyClass);\n\n\t\t\trAF(function(){\n\t\t\t\t// Part of this can be removed as soon as this fix is older: https://bugs.chromium.org/p/chromium/issues/detail?id=7731 (2015)\n\t\t\t\tvar isLoaded = elem.complete && elem.naturalWidth > 1;\n\n\t\t\t\tif( !firesLoad || isLoaded){\n\t\t\t\t\tif (isLoaded) {\n\t\t\t\t\t\taddClass(elem, lazySizesCfg.fastLoadedClass);\n\t\t\t\t\t}\n\t\t\t\t\tswitchLoadingClass(event);\n\t\t\t\t\telem._lazyCache = true;\n\t\t\t\t\tsetTimeout(function(){\n\t\t\t\t\t\tif ('_lazyCache' in elem) {\n\t\t\t\t\t\t\tdelete elem._lazyCache;\n\t\t\t\t\t\t}\n\t\t\t\t\t}, 9);\n\t\t\t\t}\n\t\t\t\tif (elem.loading == 'lazy') {\n\t\t\t\t\tisLoading--;\n\t\t\t\t}\n\t\t\t}, true);\n\t\t});\n\n\t\t/**\n\t\t *\n\t\t * @param elem { Element }\n\t\t */\n\t\tvar unveilElement = function (elem){\n\t\t\tif (elem._lazyRace) {return;}\n\t\t\tvar detail;\n\n\t\t\tvar isImg = regImg.test(elem.nodeName);\n\n\t\t\t//allow using sizes=\"auto\", but don't use. it's invalid. Use data-sizes=\"auto\" or a valid value for sizes instead (i.e.: sizes=\"80vw\")\n\t\t\tvar sizes = isImg && (elem[_getAttribute](lazySizesCfg.sizesAttr) || elem[_getAttribute]('sizes'));\n\t\t\tvar isAuto = sizes == 'auto';\n\n\t\t\tif( (isAuto || !isCompleted) && isImg && (elem[_getAttribute]('src') || elem.srcset) && !elem.complete && !hasClass(elem, lazySizesCfg.errorClass) && hasClass(elem, lazySizesCfg.lazyClass)){return;}\n\n\t\t\tdetail = triggerEvent(elem, 'lazyunveilread').detail;\n\n\t\t\tif(isAuto){\n\t\t\t\t autoSizer.updateElem(elem, true, elem.offsetWidth);\n\t\t\t}\n\n\t\t\telem._lazyRace = true;\n\t\t\tisLoading++;\n\n\t\t\tlazyUnveil(elem, detail, isAuto, sizes, isImg);\n\t\t};\n\n\t\tvar afterScroll = debounce(function(){\n\t\t\tlazySizesCfg.loadMode = 3;\n\t\t\tthrottledCheckElements();\n\t\t});\n\n\t\tvar altLoadmodeScrollListner = function(){\n\t\t\tif(lazySizesCfg.loadMode == 3){\n\t\t\t\tlazySizesCfg.loadMode = 2;\n\t\t\t}\n\t\t\tafterScroll();\n\t\t};\n\n\t\tvar onload = function(){\n\t\t\tif(isCompleted){return;}\n\t\t\tif(Date.now() - started < 999){\n\t\t\t\tsetTimeout(onload, 999);\n\t\t\t\treturn;\n\t\t\t}\n\n\n\t\t\tisCompleted = true;\n\n\t\t\tlazySizesCfg.loadMode = 3;\n\n\t\t\tthrottledCheckElements();\n\n\t\t\taddEventListener('scroll', altLoadmodeScrollListner, true);\n\t\t};\n\n\t\treturn {\n\t\t\t_: function(){\n\t\t\t\tstarted = Date.now();\n\n\t\t\t\tlazysizes.elements = document.getElementsByClassName(lazySizesCfg.lazyClass);\n\t\t\t\tpreloadElems = document.getElementsByClassName(lazySizesCfg.lazyClass + ' ' + lazySizesCfg.preloadClass);\n\n\t\t\t\taddEventListener('scroll', throttledCheckElements, true);\n\n\t\t\t\taddEventListener('resize', throttledCheckElements, true);\n\n\t\t\t\taddEventListener('pageshow', function (e) {\n\t\t\t\t\tif (e.persisted) {\n\t\t\t\t\t\tvar loadingElements = document.querySelectorAll('.' + lazySizesCfg.loadingClass);\n\n\t\t\t\t\t\tif (loadingElements.length && loadingElements.forEach) {\n\t\t\t\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\t\t\t\tloadingElements.forEach( function (img) {\n\t\t\t\t\t\t\t\t\tif (img.complete) {\n\t\t\t\t\t\t\t\t\t\tunveilElement(img);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tif(window.MutationObserver){\n\t\t\t\t\tnew MutationObserver( throttledCheckElements ).observe( docElem, {childList: true, subtree: true, attributes: true} );\n\t\t\t\t} else {\n\t\t\t\t\tdocElem[_addEventListener]('DOMNodeInserted', throttledCheckElements, true);\n\t\t\t\t\tdocElem[_addEventListener]('DOMAttrModified', throttledCheckElements, true);\n\t\t\t\t\tsetInterval(throttledCheckElements, 999);\n\t\t\t\t}\n\n\t\t\t\taddEventListener('hashchange', throttledCheckElements, true);\n\n\t\t\t\t//, 'fullscreenchange'\n\t\t\t\t['focus', 'mouseover', 'click', 'load', 'transitionend', 'animationend'].forEach(function(name){\n\t\t\t\t\tdocument[_addEventListener](name, throttledCheckElements, true);\n\t\t\t\t});\n\n\t\t\t\tif((/d$|^c/.test(document.readyState))){\n\t\t\t\t\tonload();\n\t\t\t\t} else {\n\t\t\t\t\taddEventListener('load', onload);\n\t\t\t\t\tdocument[_addEventListener]('DOMContentLoaded', throttledCheckElements);\n\t\t\t\t\tsetTimeout(onload, 20000);\n\t\t\t\t}\n\n\t\t\t\tif(lazysizes.elements.length){\n\t\t\t\t\tcheckElements();\n\t\t\t\t\trAF._lsFlush();\n\t\t\t\t} else {\n\t\t\t\t\tthrottledCheckElements();\n\t\t\t\t}\n\t\t\t},\n\t\t\tcheckElems: throttledCheckElements,\n\t\t\tunveil: unveilElement,\n\t\t\t_aLSL: altLoadmodeScrollListner,\n\t\t};\n\t})();\n\n\n\tvar autoSizer = (function(){\n\t\tvar autosizesElems;\n\n\t\tvar sizeElement = rAFIt(function(elem, parent, event, width){\n\t\t\tvar sources, i, len;\n\t\t\telem._lazysizesWidth = width;\n\t\t\twidth += 'px';\n\n\t\t\telem.setAttribute('sizes', width);\n\n\t\t\tif(regPicture.test(parent.nodeName || '')){\n\t\t\t\tsources = parent.getElementsByTagName('source');\n\t\t\t\tfor(i = 0, len = sources.length; i < len; i++){\n\t\t\t\t\tsources[i].setAttribute('sizes', width);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(!event.detail.dataAttr){\n\t\t\t\tupdatePolyfill(elem, event.detail);\n\t\t\t}\n\t\t});\n\t\t/**\n\t\t *\n\t\t * @param elem {Element}\n\t\t * @param dataAttr\n\t\t * @param [width] { number }\n\t\t */\n\t\tvar getSizeElement = function (elem, dataAttr, width){\n\t\t\tvar event;\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif(parent){\n\t\t\t\twidth = getWidth(elem, parent, width);\n\t\t\t\tevent = triggerEvent(elem, 'lazybeforesizes', {width: width, dataAttr: !!dataAttr});\n\n\t\t\t\tif(!event.defaultPrevented){\n\t\t\t\t\twidth = event.detail.width;\n\n\t\t\t\t\tif(width && width !== elem._lazysizesWidth){\n\t\t\t\t\t\tsizeElement(elem, parent, event, width);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\tvar updateElementsSizes = function(){\n\t\t\tvar i;\n\t\t\tvar len = autosizesElems.length;\n\t\t\tif(len){\n\t\t\t\ti = 0;\n\n\t\t\t\tfor(; i < len; i++){\n\t\t\t\t\tgetSizeElement(autosizesElems[i]);\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\tvar debouncedUpdateElementsSizes = debounce(updateElementsSizes);\n\n\t\treturn {\n\t\t\t_: function(){\n\t\t\t\tautosizesElems = document.getElementsByClassName(lazySizesCfg.autosizesClass);\n\t\t\t\taddEventListener('resize', debouncedUpdateElementsSizes);\n\t\t\t},\n\t\t\tcheckElems: debouncedUpdateElementsSizes,\n\t\t\tupdateElem: getSizeElement\n\t\t};\n\t})();\n\n\tvar init = function(){\n\t\tif(!init.i && document.getElementsByClassName){\n\t\t\tinit.i = true;\n\t\t\tautoSizer._();\n\t\t\tloader._();\n\t\t}\n\t};\n\n\tsetTimeout(function(){\n\t\tif(lazySizesCfg.init){\n\t\t\tinit();\n\t\t}\n\t});\n\n\tlazysizes = {\n\t\t/**\n\t\t * @type { LazySizesConfigPartial }\n\t\t */\n\t\tcfg: lazySizesCfg,\n\t\tautoSizer: autoSizer,\n\t\tloader: loader,\n\t\tinit: init,\n\t\tuP: updatePolyfill,\n\t\taC: addClass,\n\t\trC: removeClass,\n\t\thC: hasClass,\n\t\tfire: triggerEvent,\n\t\tgW: getWidth,\n\t\trAF: rAF,\n\t};\n\n\treturn lazysizes;\n}\n));\n\n},{}],137:[function(require,module,exports){\n(function (global){(function (){\n/**\n * @license\n * lodash 3.10.1 (Custom Build) <https://lodash.com/>\n * Build: `lodash modern -d -o ./index.js`\n * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>\n * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>\n * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n * Available under MIT license <https://lodash.com/license>\n */\n;(function() {\n\n /** Used as a safe reference for `undefined` in pre-ES5 environments. */\n var undefined;\n\n /** Used as the semantic version number. */\n var VERSION = '3.10.1';\n\n /** Used to compose bitmasks for wrapper metadata. */\n var BIND_FLAG = 1,\n BIND_KEY_FLAG = 2,\n CURRY_BOUND_FLAG = 4,\n CURRY_FLAG = 8,\n CURRY_RIGHT_FLAG = 16,\n PARTIAL_FLAG = 32,\n PARTIAL_RIGHT_FLAG = 64,\n ARY_FLAG = 128,\n REARG_FLAG = 256;\n\n /** Used as default options for `_.trunc`. */\n var DEFAULT_TRUNC_LENGTH = 30,\n DEFAULT_TRUNC_OMISSION = '...';\n\n /** Used to detect when a function becomes hot. */\n var HOT_COUNT = 150,\n HOT_SPAN = 16;\n\n /** Used as the size to enable large array optimizations. */\n var LARGE_ARRAY_SIZE = 200;\n\n /** Used to indicate the type of lazy iteratees. */\n var LAZY_FILTER_FLAG = 1,\n LAZY_MAP_FLAG = 2;\n\n /** Used as the `TypeError` message for \"Functions\" methods. */\n var FUNC_ERROR_TEXT = 'Expected a function';\n\n /** Used as the internal argument placeholder. */\n var PLACEHOLDER = '__lodash_placeholder__';\n\n /** `Object#toString` result references. */\n var argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n objectTag = '[object Object]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n weakMapTag = '[object WeakMap]';\n\n var arrayBufferTag = '[object ArrayBuffer]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n /** Used to match empty string literals in compiled template source. */\n var reEmptyStringLeading = /\\b__p \\+= '';/g,\n reEmptyStringMiddle = /\\b(__p \\+=) '' \\+/g,\n reEmptyStringTrailing = /(__e\\(.*?\\)|\\b__t\\)) \\+\\n'';/g;\n\n /** Used to match HTML entities and HTML characters. */\n var reEscapedHtml = /&(?:amp|lt|gt|quot|#39|#96);/g,\n reUnescapedHtml = /[&<>\"'`]/g,\n reHasEscapedHtml = RegExp(reEscapedHtml.source),\n reHasUnescapedHtml = RegExp(reUnescapedHtml.source);\n\n /** Used to match template delimiters. */\n var reEscape = /<%-([\\s\\S]+?)%>/g,\n reEvaluate = /<%([\\s\\S]+?)%>/g,\n reInterpolate = /<%=([\\s\\S]+?)%>/g;\n\n /** Used to match property names within property paths. */\n var reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\n\\\\]|\\\\.)*?\\1)\\]/,\n reIsPlainProp = /^\\w*$/,\n rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\n\\\\]|\\\\.)*?)\\2)\\]/g;\n\n /**\n * Used to match `RegExp` [syntax characters](http://ecma-international.org/ecma-262/6.0/#sec-patterns)\n * and those outlined by [`EscapeRegExpPattern`](http://ecma-international.org/ecma-262/6.0/#sec-escaperegexppattern).\n */\n var reRegExpChars = /^[:!,]|[\\\\^$.*+?()[\\]{}|\\/]|(^[0-9a-fA-Fnrtuvx])|([\\n\\r\\u2028\\u2029])/g,\n reHasRegExpChars = RegExp(reRegExpChars.source);\n\n /** Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). */\n var reComboMark = /[\\u0300-\\u036f\\ufe20-\\ufe23]/g;\n\n /** Used to match backslashes in property paths. */\n var reEscapeChar = /\\\\(\\\\)?/g;\n\n /** Used to match [ES template delimiters](http://ecma-international.org/ecma-262/6.0/#sec-template-literal-lexical-components). */\n var reEsTemplate = /\\$\\{([^\\\\}]*(?:\\\\.[^\\\\}]*)*)\\}/g;\n\n /** Used to match `RegExp` flags from their coerced string values. */\n var reFlags = /\\w*$/;\n\n /** Used to detect hexadecimal string values. */\n var reHasHexPrefix = /^0[xX]/;\n\n /** Used to detect host constructors (Safari > 5). */\n var reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n /** Used to detect unsigned integer values. */\n var reIsUint = /^\\d+$/;\n\n /** Used to match latin-1 supplementary letters (excluding mathematical operators). */\n var reLatin1 = /[\\xc0-\\xd6\\xd8-\\xde\\xdf-\\xf6\\xf8-\\xff]/g;\n\n /** Used to ensure capturing order of template delimiters. */\n var reNoMatch = /($^)/;\n\n /** Used to match unescaped characters in compiled string literals. */\n var reUnescapedString = /['\\n\\r\\u2028\\u2029\\\\]/g;\n\n /** Used to match words to create compound words. */\n var reWords = (function() {\n var upper = '[A-Z\\\\xc0-\\\\xd6\\\\xd8-\\\\xde]',\n lower = '[a-z\\\\xdf-\\\\xf6\\\\xf8-\\\\xff]+';\n\n return RegExp(upper + '+(?=' + upper + lower + ')|' + upper + '?' + lower + '|' + upper + '+|[0-9]+', 'g');\n }());\n\n /** Used to assign default `context` object properties. */\n var contextProps = [\n 'Array', 'ArrayBuffer', 'Date', 'Error', 'Float32Array', 'Float64Array',\n 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Math', 'Number',\n 'Object', 'RegExp', 'Set', 'String', '_', 'clearTimeout', 'isFinite',\n 'parseFloat', 'parseInt', 'setTimeout', 'TypeError', 'Uint8Array',\n 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap'\n ];\n\n /** Used to make template sourceURLs easier to identify. */\n var templateCounter = -1;\n\n /** Used to identify `toStringTag` values of typed arrays. */\n var typedArrayTags = {};\n typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\n typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\n typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\n typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\n typedArrayTags[uint32Tag] = true;\n typedArrayTags[argsTag] = typedArrayTags[arrayTag] =\n typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\n typedArrayTags[dateTag] = typedArrayTags[errorTag] =\n typedArrayTags[funcTag] = typedArrayTags[mapTag] =\n typedArrayTags[numberTag] = typedArrayTags[objectTag] =\n typedArrayTags[regexpTag] = typedArrayTags[setTag] =\n typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;\n\n /** Used to identify `toStringTag` values supported by `_.clone`. */\n var cloneableTags = {};\n cloneableTags[argsTag] = cloneableTags[arrayTag] =\n cloneableTags[arrayBufferTag] = cloneableTags[boolTag] =\n cloneableTags[dateTag] = cloneableTags[float32Tag] =\n cloneableTags[float64Tag] = cloneableTags[int8Tag] =\n cloneableTags[int16Tag] = cloneableTags[int32Tag] =\n cloneableTags[numberTag] = cloneableTags[objectTag] =\n cloneableTags[regexpTag] = cloneableTags[stringTag] =\n cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =\n cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\n cloneableTags[errorTag] = cloneableTags[funcTag] =\n cloneableTags[mapTag] = cloneableTags[setTag] =\n cloneableTags[weakMapTag] = false;\n\n /** Used to map latin-1 supplementary letters to basic latin letters. */\n var deburredLetters = {\n '\\xc0': 'A', '\\xc1': 'A', '\\xc2': 'A', '\\xc3': 'A', '\\xc4': 'A', '\\xc5': 'A',\n '\\xe0': 'a', '\\xe1': 'a', '\\xe2': 'a', '\\xe3': 'a', '\\xe4': 'a', '\\xe5': 'a',\n '\\xc7': 'C', '\\xe7': 'c',\n '\\xd0': 'D', '\\xf0': 'd',\n '\\xc8': 'E', '\\xc9': 'E', '\\xca': 'E', '\\xcb': 'E',\n '\\xe8': 'e', '\\xe9': 'e', '\\xea': 'e', '\\xeb': 'e',\n '\\xcC': 'I', '\\xcd': 'I', '\\xce': 'I', '\\xcf': 'I',\n '\\xeC': 'i', '\\xed': 'i', '\\xee': 'i', '\\xef': 'i',\n '\\xd1': 'N', '\\xf1': 'n',\n '\\xd2': 'O', '\\xd3': 'O', '\\xd4': 'O', '\\xd5': 'O', '\\xd6': 'O', '\\xd8': 'O',\n '\\xf2': 'o', '\\xf3': 'o', '\\xf4': 'o', '\\xf5': 'o', '\\xf6': 'o', '\\xf8': 'o',\n '\\xd9': 'U', '\\xda': 'U', '\\xdb': 'U', '\\xdc': 'U',\n '\\xf9': 'u', '\\xfa': 'u', '\\xfb': 'u', '\\xfc': 'u',\n '\\xdd': 'Y', '\\xfd': 'y', '\\xff': 'y',\n '\\xc6': 'Ae', '\\xe6': 'ae',\n '\\xde': 'Th', '\\xfe': 'th',\n '\\xdf': 'ss'\n };\n\n /** Used to map characters to HTML entities. */\n var htmlEscapes = {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n \"'\": ''',\n '`': '`'\n };\n\n /** Used to map HTML entities to characters. */\n var htmlUnescapes = {\n '&': '&',\n '<': '<',\n '>': '>',\n '"': '\"',\n ''': \"'\",\n '`': '`'\n };\n\n /** Used to determine if values are of the language type `Object`. */\n var objectTypes = {\n 'function': true,\n 'object': true\n };\n\n /** Used to escape characters for inclusion in compiled regexes. */\n var regexpEscapes = {\n '0': 'x30', '1': 'x31', '2': 'x32', '3': 'x33', '4': 'x34',\n '5': 'x35', '6': 'x36', '7': 'x37', '8': 'x38', '9': 'x39',\n 'A': 'x41', 'B': 'x42', 'C': 'x43', 'D': 'x44', 'E': 'x45', 'F': 'x46',\n 'a': 'x61', 'b': 'x62', 'c': 'x63', 'd': 'x64', 'e': 'x65', 'f': 'x66',\n 'n': 'x6e', 'r': 'x72', 't': 'x74', 'u': 'x75', 'v': 'x76', 'x': 'x78'\n };\n\n /** Used to escape characters for inclusion in compiled string literals. */\n var stringEscapes = {\n '\\\\': '\\\\',\n \"'\": \"'\",\n '\\n': 'n',\n '\\r': 'r',\n '\\u2028': 'u2028',\n '\\u2029': 'u2029'\n };\n\n /** Detect free variable `exports`. */\n var freeExports = objectTypes[typeof exports] && exports && !exports.nodeType && exports;\n\n /** Detect free variable `module`. */\n var freeModule = objectTypes[typeof module] && module && !module.nodeType && module;\n\n /** Detect free variable `global` from Node.js. */\n var freeGlobal = freeExports && freeModule && typeof global == 'object' && global && global.Object && global;\n\n /** Detect free variable `self`. */\n var freeSelf = objectTypes[typeof self] && self && self.Object && self;\n\n /** Detect free variable `window`. */\n var freeWindow = objectTypes[typeof window] && window && window.Object && window;\n\n /** Detect the popular CommonJS extension `module.exports`. */\n var moduleExports = freeModule && freeModule.exports === freeExports && freeExports;\n\n /**\n * Used as a reference to the global object.\n *\n * The `this` value is used if it's the global object to avoid Greasemonkey's\n * restricted `window` object, otherwise the `window` object is used.\n */\n var root = freeGlobal || ((freeWindow !== (this && this.window)) && freeWindow) || freeSelf || this;\n\n /*--------------------------------------------------------------------------*/\n\n /**\n * The base implementation of `compareAscending` which compares values and\n * sorts them in ascending order without guaranteeing a stable sort.\n *\n * @private\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {number} Returns the sort order indicator for `value`.\n */\n function baseCompareAscending(value, other) {\n if (value !== other) {\n var valIsNull = value === null,\n valIsUndef = value === undefined,\n valIsReflexive = value === value;\n\n var othIsNull = other === null,\n othIsUndef = other === undefined,\n othIsReflexive = other === other;\n\n if ((value > other && !othIsNull) || !valIsReflexive ||\n (valIsNull && !othIsUndef && othIsReflexive) ||\n (valIsUndef && othIsReflexive)) {\n return 1;\n }\n if ((value < other && !valIsNull) || !othIsReflexive ||\n (othIsNull && !valIsUndef && valIsReflexive) ||\n (othIsUndef && valIsReflexive)) {\n return -1;\n }\n }\n return 0;\n }\n\n /**\n * The base implementation of `_.findIndex` and `_.findLastIndex` without\n * support for callback shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to search.\n * @param {Function} predicate The function invoked per iteration.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n function baseFindIndex(array, predicate, fromRight) {\n var length = array.length,\n index = fromRight ? length : -1;\n\n while ((fromRight ? index-- : ++index < length)) {\n if (predicate(array[index], index, array)) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * The base implementation of `_.indexOf` without support for binary searches.\n *\n * @private\n * @param {Array} array The array to search.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n function baseIndexOf(array, value, fromIndex) {\n if (value !== value) {\n return indexOfNaN(array, fromIndex);\n }\n var index = fromIndex - 1,\n length = array.length;\n\n while (++index < length) {\n if (array[index] === value) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * The base implementation of `_.isFunction` without support for environments\n * with incorrect `typeof` results.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n */\n function baseIsFunction(value) {\n // Avoid a Chakra JIT bug in compatibility modes of IE 11.\n // See https://github.com/jashkenas/underscore/issues/1621 for more details.\n return typeof value == 'function' || false;\n }\n\n /**\n * Converts `value` to a string if it's not one. An empty string is returned\n * for `null` or `undefined` values.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n */\n function baseToString(value) {\n return value == null ? '' : (value + '');\n }\n\n /**\n * Used by `_.trim` and `_.trimLeft` to get the index of the first character\n * of `string` that is not found in `chars`.\n *\n * @private\n * @param {string} string The string to inspect.\n * @param {string} chars The characters to find.\n * @returns {number} Returns the index of the first character not found in `chars`.\n */\n function charsLeftIndex(string, chars) {\n var index = -1,\n length = string.length;\n\n while (++index < length && chars.indexOf(string.charAt(index)) > -1) {}\n return index;\n }\n\n /**\n * Used by `_.trim` and `_.trimRight` to get the index of the last character\n * of `string` that is not found in `chars`.\n *\n * @private\n * @param {string} string The string to inspect.\n * @param {string} chars The characters to find.\n * @returns {number} Returns the index of the last character not found in `chars`.\n */\n function charsRightIndex(string, chars) {\n var index = string.length;\n\n while (index-- && chars.indexOf(string.charAt(index)) > -1) {}\n return index;\n }\n\n /**\n * Used by `_.sortBy` to compare transformed elements of a collection and stable\n * sort them in ascending order.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @returns {number} Returns the sort order indicator for `object`.\n */\n function compareAscending(object, other) {\n return baseCompareAscending(object.criteria, other.criteria) || (object.index - other.index);\n }\n\n /**\n * Used by `_.sortByOrder` to compare multiple properties of a value to another\n * and stable sort them.\n *\n * If `orders` is unspecified, all valuess are sorted in ascending order. Otherwise,\n * a value is sorted in ascending order if its corresponding order is \"asc\", and\n * descending if \"desc\".\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {boolean[]} orders The order to sort by for each property.\n * @returns {number} Returns the sort order indicator for `object`.\n */\n function compareMultiple(object, other, orders) {\n var index = -1,\n objCriteria = object.criteria,\n othCriteria = other.criteria,\n length = objCriteria.length,\n ordersLength = orders.length;\n\n while (++index < length) {\n var result = baseCompareAscending(objCriteria[index], othCriteria[index]);\n if (result) {\n if (index >= ordersLength) {\n return result;\n }\n var order = orders[index];\n return result * ((order === 'asc' || order === true) ? 1 : -1);\n }\n }\n // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications\n // that causes it, under certain circumstances, to provide the same value for\n // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247\n // for more details.\n //\n // This also ensures a stable sort in V8 and other engines.\n // See https://code.google.com/p/v8/issues/detail?id=90 for more details.\n return object.index - other.index;\n }\n\n /**\n * Used by `_.deburr` to convert latin-1 supplementary letters to basic latin letters.\n *\n * @private\n * @param {string} letter The matched letter to deburr.\n * @returns {string} Returns the deburred letter.\n */\n function deburrLetter(letter) {\n return deburredLetters[letter];\n }\n\n /**\n * Used by `_.escape` to convert characters to HTML entities.\n *\n * @private\n * @param {string} chr The matched character to escape.\n * @returns {string} Returns the escaped character.\n */\n function escapeHtmlChar(chr) {\n return htmlEscapes[chr];\n }\n\n /**\n * Used by `_.escapeRegExp` to escape characters for inclusion in compiled regexes.\n *\n * @private\n * @param {string} chr The matched character to escape.\n * @param {string} leadingChar The capture group for a leading character.\n * @param {string} whitespaceChar The capture group for a whitespace character.\n * @returns {string} Returns the escaped character.\n */\n function escapeRegExpChar(chr, leadingChar, whitespaceChar) {\n if (leadingChar) {\n chr = regexpEscapes[chr];\n } else if (whitespaceChar) {\n chr = stringEscapes[chr];\n }\n return '\\\\' + chr;\n }\n\n /**\n * Used by `_.template` to escape characters for inclusion in compiled string literals.\n *\n * @private\n * @param {string} chr The matched character to escape.\n * @returns {string} Returns the escaped character.\n */\n function escapeStringChar(chr) {\n return '\\\\' + stringEscapes[chr];\n }\n\n /**\n * Gets the index at which the first occurrence of `NaN` is found in `array`.\n *\n * @private\n * @param {Array} array The array to search.\n * @param {number} fromIndex The index to search from.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {number} Returns the index of the matched `NaN`, else `-1`.\n */\n function indexOfNaN(array, fromIndex, fromRight) {\n var length = array.length,\n index = fromIndex + (fromRight ? 0 : -1);\n\n while ((fromRight ? index-- : ++index < length)) {\n var other = array[index];\n if (other !== other) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * Checks if `value` is object-like.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n */\n function isObjectLike(value) {\n return !!value && typeof value == 'object';\n }\n\n /**\n * Used by `trimmedLeftIndex` and `trimmedRightIndex` to determine if a\n * character code is whitespace.\n *\n * @private\n * @param {number} charCode The character code to inspect.\n * @returns {boolean} Returns `true` if `charCode` is whitespace, else `false`.\n */\n function isSpace(charCode) {\n return ((charCode <= 160 && (charCode >= 9 && charCode <= 13) || charCode == 32 || charCode == 160) || charCode == 5760 || charCode == 6158 ||\n (charCode >= 8192 && (charCode <= 8202 || charCode == 8232 || charCode == 8233 || charCode == 8239 || charCode == 8287 || charCode == 12288 || charCode == 65279)));\n }\n\n /**\n * Replaces all `placeholder` elements in `array` with an internal placeholder\n * and returns an array of their indexes.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {*} placeholder The placeholder to replace.\n * @returns {Array} Returns the new array of placeholder indexes.\n */\n function replaceHolders(array, placeholder) {\n var index = -1,\n length = array.length,\n resIndex = -1,\n result = [];\n\n while (++index < length) {\n if (array[index] === placeholder) {\n array[index] = PLACEHOLDER;\n result[++resIndex] = index;\n }\n }\n return result;\n }\n\n /**\n * An implementation of `_.uniq` optimized for sorted arrays without support\n * for callback shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Function} [iteratee] The function invoked per iteration.\n * @returns {Array} Returns the new duplicate-value-free array.\n */\n function sortedUniq(array, iteratee) {\n var seen,\n index = -1,\n length = array.length,\n resIndex = -1,\n result = [];\n\n while (++index < length) {\n var value = array[index],\n computed = iteratee ? iteratee(value, index, array) : value;\n\n if (!index || seen !== computed) {\n seen = computed;\n result[++resIndex] = value;\n }\n }\n return result;\n }\n\n /**\n * Used by `_.trim` and `_.trimLeft` to get the index of the first non-whitespace\n * character of `string`.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {number} Returns the index of the first non-whitespace character.\n */\n function trimmedLeftIndex(string) {\n var index = -1,\n length = string.length;\n\n while (++index < length && isSpace(string.charCodeAt(index))) {}\n return index;\n }\n\n /**\n * Used by `_.trim` and `_.trimRight` to get the index of the last non-whitespace\n * character of `string`.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {number} Returns the index of the last non-whitespace character.\n */\n function trimmedRightIndex(string) {\n var index = string.length;\n\n while (index-- && isSpace(string.charCodeAt(index))) {}\n return index;\n }\n\n /**\n * Used by `_.unescape` to convert HTML entities to characters.\n *\n * @private\n * @param {string} chr The matched character to unescape.\n * @returns {string} Returns the unescaped character.\n */\n function unescapeHtmlChar(chr) {\n return htmlUnescapes[chr];\n }\n\n /*--------------------------------------------------------------------------*/\n\n /**\n * Create a new pristine `lodash` function using the given `context` object.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Object} [context=root] The context object.\n * @returns {Function} Returns a new `lodash` function.\n * @example\n *\n * _.mixin({ 'foo': _.constant('foo') });\n *\n * var lodash = _.runInContext();\n * lodash.mixin({ 'bar': lodash.constant('bar') });\n *\n * _.isFunction(_.foo);\n * // => true\n * _.isFunction(_.bar);\n * // => false\n *\n * lodash.isFunction(lodash.foo);\n * // => false\n * lodash.isFunction(lodash.bar);\n * // => true\n *\n * // using `context` to mock `Date#getTime` use in `_.now`\n * var mock = _.runInContext({\n * 'Date': function() {\n * return { 'getTime': getTimeMock };\n * }\n * });\n *\n * // or creating a suped-up `defer` in Node.js\n * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer;\n */\n function runInContext(context) {\n // Avoid issues with some ES3 environments that attempt to use values, named\n // after built-in constructors like `Object`, for the creation of literals.\n // ES5 clears this up by stating that literals must use built-in constructors.\n // See https://es5.github.io/#x11.1.5 for more details.\n context = context ? _.defaults(root.Object(), context, _.pick(root, contextProps)) : root;\n\n /** Native constructor references. */\n var Array = context.Array,\n Date = context.Date,\n Error = context.Error,\n Function = context.Function,\n Math = context.Math,\n Number = context.Number,\n Object = context.Object,\n RegExp = context.RegExp,\n String = context.String,\n TypeError = context.TypeError;\n\n /** Used for native method references. */\n var arrayProto = Array.prototype,\n objectProto = Object.prototype,\n stringProto = String.prototype;\n\n /** Used to resolve the decompiled source of functions. */\n var fnToString = Function.prototype.toString;\n\n /** Used to check objects for own properties. */\n var hasOwnProperty = objectProto.hasOwnProperty;\n\n /** Used to generate unique IDs. */\n var idCounter = 0;\n\n /**\n * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)\n * of values.\n */\n var objToString = objectProto.toString;\n\n /** Used to restore the original `_` reference in `_.noConflict`. */\n var oldDash = root._;\n\n /** Used to detect if a method is native. */\n var reIsNative = RegExp('^' +\n fnToString.call(hasOwnProperty).replace(/[\\\\^$.*+?()[\\]{}|]/g, '\\\\$&')\n .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n );\n\n /** Native method references. */\n var ArrayBuffer = context.ArrayBuffer,\n clearTimeout = context.clearTimeout,\n parseFloat = context.parseFloat,\n pow = Math.pow,\n propertyIsEnumerable = objectProto.propertyIsEnumerable,\n Set = getNative(context, 'Set'),\n setTimeout = context.setTimeout,\n splice = arrayProto.splice,\n Uint8Array = context.Uint8Array,\n WeakMap = getNative(context, 'WeakMap');\n\n /* Native method references for those with the same name as other `lodash` methods. */\n var nativeCeil = Math.ceil,\n nativeCreate = getNative(Object, 'create'),\n nativeFloor = Math.floor,\n nativeIsArray = getNative(Array, 'isArray'),\n nativeIsFinite = context.isFinite,\n nativeKeys = getNative(Object, 'keys'),\n nativeMax = Math.max,\n nativeMin = Math.min,\n nativeNow = getNative(Date, 'now'),\n nativeParseInt = context.parseInt,\n nativeRandom = Math.random;\n\n /** Used as references for `-Infinity` and `Infinity`. */\n var NEGATIVE_INFINITY = Number.NEGATIVE_INFINITY,\n POSITIVE_INFINITY = Number.POSITIVE_INFINITY;\n\n /** Used as references for the maximum length and index of an array. */\n var MAX_ARRAY_LENGTH = 4294967295,\n MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,\n HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;\n\n /**\n * Used as the [maximum length](http://ecma-international.org/ecma-262/6.0/#sec-number.max_safe_integer)\n * of an array-like value.\n */\n var MAX_SAFE_INTEGER = 9007199254740991;\n\n /** Used to store function metadata. */\n var metaMap = WeakMap && new WeakMap;\n\n /** Used to lookup unminified function names. */\n var realNames = {};\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a `lodash` object which wraps `value` to enable implicit chaining.\n * Methods that operate on and return arrays, collections, and functions can\n * be chained together. Methods that retrieve a single value or may return a\n * primitive value will automatically end the chain returning the unwrapped\n * value. Explicit chaining may be enabled using `_.chain`. The execution of\n * chained methods is lazy, that is, execution is deferred until `_#value`\n * is implicitly or explicitly called.\n *\n * Lazy evaluation allows several methods to support shortcut fusion. Shortcut\n * fusion is an optimization strategy which merge iteratee calls; this can help\n * to avoid the creation of intermediate data structures and greatly reduce the\n * number of iteratee executions.\n *\n * Chaining is supported in custom builds as long as the `_#value` method is\n * directly or indirectly included in the build.\n *\n * In addition to lodash methods, wrappers have `Array` and `String` methods.\n *\n * The wrapper `Array` methods are:\n * `concat`, `join`, `pop`, `push`, `reverse`, `shift`, `slice`, `sort`,\n * `splice`, and `unshift`\n *\n * The wrapper `String` methods are:\n * `replace` and `split`\n *\n * The wrapper methods that support shortcut fusion are:\n * `compact`, `drop`, `dropRight`, `dropRightWhile`, `dropWhile`, `filter`,\n * `first`, `initial`, `last`, `map`, `pluck`, `reject`, `rest`, `reverse`,\n * `slice`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, `toArray`,\n * and `where`\n *\n * The chainable wrapper methods are:\n * `after`, `ary`, `assign`, `at`, `before`, `bind`, `bindAll`, `bindKey`,\n * `callback`, `chain`, `chunk`, `commit`, `compact`, `concat`, `constant`,\n * `countBy`, `create`, `curry`, `debounce`, `defaults`, `defaultsDeep`,\n * `defer`, `delay`, `difference`, `drop`, `dropRight`, `dropRightWhile`,\n * `dropWhile`, `fill`, `filter`, `flatten`, `flattenDeep`, `flow`, `flowRight`,\n * `forEach`, `forEachRight`, `forIn`, `forInRight`, `forOwn`, `forOwnRight`,\n * `functions`, `groupBy`, `indexBy`, `initial`, `intersection`, `invert`,\n * `invoke`, `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`,\n * `matchesProperty`, `memoize`, `merge`, `method`, `methodOf`, `mixin`,\n * `modArgs`, `negate`, `omit`, `once`, `pairs`, `partial`, `partialRight`,\n * `partition`, `pick`, `plant`, `pluck`, `property`, `propertyOf`, `pull`,\n * `pullAt`, `push`, `range`, `rearg`, `reject`, `remove`, `rest`, `restParam`,\n * `reverse`, `set`, `shuffle`, `slice`, `sort`, `sortBy`, `sortByAll`,\n * `sortByOrder`, `splice`, `spread`, `take`, `takeRight`, `takeRightWhile`,\n * `takeWhile`, `tap`, `throttle`, `thru`, `times`, `toArray`, `toPlainObject`,\n * `transform`, `union`, `uniq`, `unshift`, `unzip`, `unzipWith`, `values`,\n * `valuesIn`, `where`, `without`, `wrap`, `xor`, `zip`, `zipObject`, `zipWith`\n *\n * The wrapper methods that are **not** chainable by default are:\n * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clone`, `cloneDeep`,\n * `deburr`, `endsWith`, `escape`, `escapeRegExp`, `every`, `find`, `findIndex`,\n * `findKey`, `findLast`, `findLastIndex`, `findLastKey`, `findWhere`, `first`,\n * `floor`, `get`, `gt`, `gte`, `has`, `identity`, `includes`, `indexOf`,\n * `inRange`, `isArguments`, `isArray`, `isBoolean`, `isDate`, `isElement`,\n * `isEmpty`, `isEqual`, `isError`, `isFinite` `isFunction`, `isMatch`,\n * `isNative`, `isNaN`, `isNull`, `isNumber`, `isObject`, `isPlainObject`,\n * `isRegExp`, `isString`, `isUndefined`, `isTypedArray`, `join`, `kebabCase`,\n * `last`, `lastIndexOf`, `lt`, `lte`, `max`, `min`, `noConflict`, `noop`,\n * `now`, `pad`, `padLeft`, `padRight`, `parseInt`, `pop`, `random`, `reduce`,\n * `reduceRight`, `repeat`, `result`, `round`, `runInContext`, `shift`, `size`,\n * `snakeCase`, `some`, `sortedIndex`, `sortedLastIndex`, `startCase`,\n * `startsWith`, `sum`, `template`, `trim`, `trimLeft`, `trimRight`, `trunc`,\n * `unescape`, `uniqueId`, `value`, and `words`\n *\n * The wrapper method `sample` will return a wrapped value when `n` is provided,\n * otherwise an unwrapped value is returned.\n *\n * @name _\n * @constructor\n * @category Chain\n * @param {*} value The value to wrap in a `lodash` instance.\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var wrapped = _([1, 2, 3]);\n *\n * // returns an unwrapped value\n * wrapped.reduce(function(total, n) {\n * return total + n;\n * });\n * // => 6\n *\n * // returns a wrapped value\n * var squares = wrapped.map(function(n) {\n * return n * n;\n * });\n *\n * _.isArray(squares);\n * // => false\n *\n * _.isArray(squares.value());\n * // => true\n */\n function lodash(value) {\n if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) {\n if (value instanceof LodashWrapper) {\n return value;\n }\n if (hasOwnProperty.call(value, '__chain__') && hasOwnProperty.call(value, '__wrapped__')) {\n return wrapperClone(value);\n }\n }\n return new LodashWrapper(value);\n }\n\n /**\n * The function whose prototype all chaining wrappers inherit from.\n *\n * @private\n */\n function baseLodash() {\n // No operation performed.\n }\n\n /**\n * The base constructor for creating `lodash` wrapper objects.\n *\n * @private\n * @param {*} value The value to wrap.\n * @param {boolean} [chainAll] Enable chaining for all wrapper methods.\n * @param {Array} [actions=[]] Actions to peform to resolve the unwrapped value.\n */\n function LodashWrapper(value, chainAll, actions) {\n this.__wrapped__ = value;\n this.__actions__ = actions || [];\n this.__chain__ = !!chainAll;\n }\n\n /**\n * An object environment feature flags.\n *\n * @static\n * @memberOf _\n * @type Object\n */\n var support = lodash.support = {};\n\n /**\n * By default, the template delimiters used by lodash are like those in\n * embedded Ruby (ERB). Change the following template settings to use\n * alternative delimiters.\n *\n * @static\n * @memberOf _\n * @type Object\n */\n lodash.templateSettings = {\n\n /**\n * Used to detect `data` property values to be HTML-escaped.\n *\n * @memberOf _.templateSettings\n * @type RegExp\n */\n 'escape': reEscape,\n\n /**\n * Used to detect code to be evaluated.\n *\n * @memberOf _.templateSettings\n * @type RegExp\n */\n 'evaluate': reEvaluate,\n\n /**\n * Used to detect `data` property values to inject.\n *\n * @memberOf _.templateSettings\n * @type RegExp\n */\n 'interpolate': reInterpolate,\n\n /**\n * Used to reference the data object in the template text.\n *\n * @memberOf _.templateSettings\n * @type string\n */\n 'variable': '',\n\n /**\n * Used to import variables into the compiled template.\n *\n * @memberOf _.templateSettings\n * @type Object\n */\n 'imports': {\n\n /**\n * A reference to the `lodash` function.\n *\n * @memberOf _.templateSettings.imports\n * @type Function\n */\n '_': lodash\n }\n };\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation.\n *\n * @private\n * @param {*} value The value to wrap.\n */\n function LazyWrapper(value) {\n this.__wrapped__ = value;\n this.__actions__ = [];\n this.__dir__ = 1;\n this.__filtered__ = false;\n this.__iteratees__ = [];\n this.__takeCount__ = POSITIVE_INFINITY;\n this.__views__ = [];\n }\n\n /**\n * Creates a clone of the lazy wrapper object.\n *\n * @private\n * @name clone\n * @memberOf LazyWrapper\n * @returns {Object} Returns the cloned `LazyWrapper` object.\n */\n function lazyClone() {\n var result = new LazyWrapper(this.__wrapped__);\n result.__actions__ = arrayCopy(this.__actions__);\n result.__dir__ = this.__dir__;\n result.__filtered__ = this.__filtered__;\n result.__iteratees__ = arrayCopy(this.__iteratees__);\n result.__takeCount__ = this.__takeCount__;\n result.__views__ = arrayCopy(this.__views__);\n return result;\n }\n\n /**\n * Reverses the direction of lazy iteration.\n *\n * @private\n * @name reverse\n * @memberOf LazyWrapper\n * @returns {Object} Returns the new reversed `LazyWrapper` object.\n */\n function lazyReverse() {\n if (this.__filtered__) {\n var result = new LazyWrapper(this);\n result.__dir__ = -1;\n result.__filtered__ = true;\n } else {\n result = this.clone();\n result.__dir__ *= -1;\n }\n return result;\n }\n\n /**\n * Extracts the unwrapped value from its lazy wrapper.\n *\n * @private\n * @name value\n * @memberOf LazyWrapper\n * @returns {*} Returns the unwrapped value.\n */\n function lazyValue() {\n var array = this.__wrapped__.value(),\n dir = this.__dir__,\n isArr = isArray(array),\n isRight = dir < 0,\n arrLength = isArr ? array.length : 0,\n view = getView(0, arrLength, this.__views__),\n start = view.start,\n end = view.end,\n length = end - start,\n index = isRight ? end : (start - 1),\n iteratees = this.__iteratees__,\n iterLength = iteratees.length,\n resIndex = 0,\n takeCount = nativeMin(length, this.__takeCount__);\n\n if (!isArr || arrLength < LARGE_ARRAY_SIZE || (arrLength == length && takeCount == length)) {\n return baseWrapperValue((isRight && isArr) ? array.reverse() : array, this.__actions__);\n }\n var result = [];\n\n outer:\n while (length-- && resIndex < takeCount) {\n index += dir;\n\n var iterIndex = -1,\n value = array[index];\n\n while (++iterIndex < iterLength) {\n var data = iteratees[iterIndex],\n iteratee = data.iteratee,\n type = data.type,\n computed = iteratee(value);\n\n if (type == LAZY_MAP_FLAG) {\n value = computed;\n } else if (!computed) {\n if (type == LAZY_FILTER_FLAG) {\n continue outer;\n } else {\n break outer;\n }\n }\n }\n result[resIndex++] = value;\n }\n return result;\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a cache object to store key/value pairs.\n *\n * @private\n * @static\n * @name Cache\n * @memberOf _.memoize\n */\n function MapCache() {\n this.__data__ = {};\n }\n\n /**\n * Removes `key` and its value from the cache.\n *\n * @private\n * @name delete\n * @memberOf _.memoize.Cache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed successfully, else `false`.\n */\n function mapDelete(key) {\n return this.has(key) && delete this.__data__[key];\n }\n\n /**\n * Gets the cached value for `key`.\n *\n * @private\n * @name get\n * @memberOf _.memoize.Cache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the cached value.\n */\n function mapGet(key) {\n return key == '__proto__' ? undefined : this.__data__[key];\n }\n\n /**\n * Checks if a cached value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf _.memoize.Cache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\n function mapHas(key) {\n return key != '__proto__' && hasOwnProperty.call(this.__data__, key);\n }\n\n /**\n * Sets `value` to `key` of the cache.\n *\n * @private\n * @name set\n * @memberOf _.memoize.Cache\n * @param {string} key The key of the value to cache.\n * @param {*} value The value to cache.\n * @returns {Object} Returns the cache object.\n */\n function mapSet(key, value) {\n if (key != '__proto__') {\n this.__data__[key] = value;\n }\n return this;\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n *\n * Creates a cache object to store unique values.\n *\n * @private\n * @param {Array} [values] The values to cache.\n */\n function SetCache(values) {\n var length = values ? values.length : 0;\n\n this.data = { 'hash': nativeCreate(null), 'set': new Set };\n while (length--) {\n this.push(values[length]);\n }\n }\n\n /**\n * Checks if `value` is in `cache` mimicking the return signature of\n * `_.indexOf` by returning `0` if the value is found, else `-1`.\n *\n * @private\n * @param {Object} cache The cache to search.\n * @param {*} value The value to search for.\n * @returns {number} Returns `0` if `value` is found, else `-1`.\n */\n function cacheIndexOf(cache, value) {\n var data = cache.data,\n result = (typeof value == 'string' || isObject(value)) ? data.set.has(value) : data.hash[value];\n\n return result ? 0 : -1;\n }\n\n /**\n * Adds `value` to the cache.\n *\n * @private\n * @name push\n * @memberOf SetCache\n * @param {*} value The value to cache.\n */\n function cachePush(value) {\n var data = this.data;\n if (typeof value == 'string' || isObject(value)) {\n data.set.add(value);\n } else {\n data.hash[value] = true;\n }\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a new array joining `array` with `other`.\n *\n * @private\n * @param {Array} array The array to join.\n * @param {Array} other The other array to join.\n * @returns {Array} Returns the new concatenated array.\n */\n function arrayConcat(array, other) {\n var index = -1,\n length = array.length,\n othIndex = -1,\n othLength = other.length,\n result = Array(length + othLength);\n\n while (++index < length) {\n result[index] = array[index];\n }\n while (++othIndex < othLength) {\n result[index++] = other[othIndex];\n }\n return result;\n }\n\n /**\n * Copies the values of `source` to `array`.\n *\n * @private\n * @param {Array} source The array to copy values from.\n * @param {Array} [array=[]] The array to copy values to.\n * @returns {Array} Returns `array`.\n */\n function arrayCopy(source, array) {\n var index = -1,\n length = source.length;\n\n array || (array = Array(length));\n while (++index < length) {\n array[index] = source[index];\n }\n return array;\n }\n\n /**\n * A specialized version of `_.forEach` for arrays without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns `array`.\n */\n function arrayEach(array, iteratee) {\n var index = -1,\n length = array.length;\n\n while (++index < length) {\n if (iteratee(array[index], index, array) === false) {\n break;\n }\n }\n return array;\n }\n\n /**\n * A specialized version of `_.forEachRight` for arrays without support for\n * callback shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns `array`.\n */\n function arrayEachRight(array, iteratee) {\n var length = array.length;\n\n while (length--) {\n if (iteratee(array[length], length, array) === false) {\n break;\n }\n }\n return array;\n }\n\n /**\n * A specialized version of `_.every` for arrays without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if all elements pass the predicate check,\n * else `false`.\n */\n function arrayEvery(array, predicate) {\n var index = -1,\n length = array.length;\n\n while (++index < length) {\n if (!predicate(array[index], index, array)) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * A specialized version of `baseExtremum` for arrays which invokes `iteratee`\n * with one argument: (value).\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} comparator The function used to compare values.\n * @param {*} exValue The initial extremum value.\n * @returns {*} Returns the extremum value.\n */\n function arrayExtremum(array, iteratee, comparator, exValue) {\n var index = -1,\n length = array.length,\n computed = exValue,\n result = computed;\n\n while (++index < length) {\n var value = array[index],\n current = +iteratee(value);\n\n if (comparator(current, computed)) {\n computed = current;\n result = value;\n }\n }\n return result;\n }\n\n /**\n * A specialized version of `_.filter` for arrays without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\n function arrayFilter(array, predicate) {\n var index = -1,\n length = array.length,\n resIndex = -1,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (predicate(value, index, array)) {\n result[++resIndex] = value;\n }\n }\n return result;\n }\n\n /**\n * A specialized version of `_.map` for arrays without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n */\n function arrayMap(array, iteratee) {\n var index = -1,\n length = array.length,\n result = Array(length);\n\n while (++index < length) {\n result[index] = iteratee(array[index], index, array);\n }\n return result;\n }\n\n /**\n * Appends the elements of `values` to `array`.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to append.\n * @returns {Array} Returns `array`.\n */\n function arrayPush(array, values) {\n var index = -1,\n length = values.length,\n offset = array.length;\n\n while (++index < length) {\n array[offset + index] = values[index];\n }\n return array;\n }\n\n /**\n * A specialized version of `_.reduce` for arrays without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {*} [accumulator] The initial value.\n * @param {boolean} [initFromArray] Specify using the first element of `array`\n * as the initial value.\n * @returns {*} Returns the accumulated value.\n */\n function arrayReduce(array, iteratee, accumulator, initFromArray) {\n var index = -1,\n length = array.length;\n\n if (initFromArray && length) {\n accumulator = array[++index];\n }\n while (++index < length) {\n accumulator = iteratee(accumulator, array[index], index, array);\n }\n return accumulator;\n }\n\n /**\n * A specialized version of `_.reduceRight` for arrays without support for\n * callback shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {*} [accumulator] The initial value.\n * @param {boolean} [initFromArray] Specify using the last element of `array`\n * as the initial value.\n * @returns {*} Returns the accumulated value.\n */\n function arrayReduceRight(array, iteratee, accumulator, initFromArray) {\n var length = array.length;\n if (initFromArray && length) {\n accumulator = array[--length];\n }\n while (length--) {\n accumulator = iteratee(accumulator, array[length], length, array);\n }\n return accumulator;\n }\n\n /**\n * A specialized version of `_.some` for arrays without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if any element passes the predicate check,\n * else `false`.\n */\n function arraySome(array, predicate) {\n var index = -1,\n length = array.length;\n\n while (++index < length) {\n if (predicate(array[index], index, array)) {\n return true;\n }\n }\n return false;\n }\n\n /**\n * A specialized version of `_.sum` for arrays without support for callback\n * shorthands and `this` binding..\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {number} Returns the sum.\n */\n function arraySum(array, iteratee) {\n var length = array.length,\n result = 0;\n\n while (length--) {\n result += +iteratee(array[length]) || 0;\n }\n return result;\n }\n\n /**\n * Used by `_.defaults` to customize its `_.assign` use.\n *\n * @private\n * @param {*} objectValue The destination object property value.\n * @param {*} sourceValue The source object property value.\n * @returns {*} Returns the value to assign to the destination object.\n */\n function assignDefaults(objectValue, sourceValue) {\n return objectValue === undefined ? sourceValue : objectValue;\n }\n\n /**\n * Used by `_.template` to customize its `_.assign` use.\n *\n * **Note:** This function is like `assignDefaults` except that it ignores\n * inherited property values when checking if a property is `undefined`.\n *\n * @private\n * @param {*} objectValue The destination object property value.\n * @param {*} sourceValue The source object property value.\n * @param {string} key The key associated with the object and source values.\n * @param {Object} object The destination object.\n * @returns {*} Returns the value to assign to the destination object.\n */\n function assignOwnDefaults(objectValue, sourceValue, key, object) {\n return (objectValue === undefined || !hasOwnProperty.call(object, key))\n ? sourceValue\n : objectValue;\n }\n\n /**\n * A specialized version of `_.assign` for customizing assigned values without\n * support for argument juggling, multiple sources, and `this` binding `customizer`\n * functions.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {Function} customizer The function to customize assigned values.\n * @returns {Object} Returns `object`.\n */\n function assignWith(object, source, customizer) {\n var index = -1,\n props = keys(source),\n length = props.length;\n\n while (++index < length) {\n var key = props[index],\n value = object[key],\n result = customizer(value, source[key], key, object, source);\n\n if ((result === result ? (result !== value) : (value === value)) ||\n (value === undefined && !(key in object))) {\n object[key] = result;\n }\n }\n return object;\n }\n\n /**\n * The base implementation of `_.assign` without support for argument juggling,\n * multiple sources, and `customizer` functions.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @returns {Object} Returns `object`.\n */\n function baseAssign(object, source) {\n return source == null\n ? object\n : baseCopy(source, keys(source), object);\n }\n\n /**\n * The base implementation of `_.at` without support for string collections\n * and individual key arguments.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {number[]|string[]} props The property names or indexes of elements to pick.\n * @returns {Array} Returns the new array of picked elements.\n */\n function baseAt(collection, props) {\n var index = -1,\n isNil = collection == null,\n isArr = !isNil && isArrayLike(collection),\n length = isArr ? collection.length : 0,\n propsLength = props.length,\n result = Array(propsLength);\n\n while(++index < propsLength) {\n var key = props[index];\n if (isArr) {\n result[index] = isIndex(key, length) ? collection[key] : undefined;\n } else {\n result[index] = isNil ? undefined : collection[key];\n }\n }\n return result;\n }\n\n /**\n * Copies properties of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy properties from.\n * @param {Array} props The property names to copy.\n * @param {Object} [object={}] The object to copy properties to.\n * @returns {Object} Returns `object`.\n */\n function baseCopy(source, props, object) {\n object || (object = {});\n\n var index = -1,\n length = props.length;\n\n while (++index < length) {\n var key = props[index];\n object[key] = source[key];\n }\n return object;\n }\n\n /**\n * The base implementation of `_.callback` which supports specifying the\n * number of arguments to provide to `func`.\n *\n * @private\n * @param {*} [func=_.identity] The value to convert to a callback.\n * @param {*} [thisArg] The `this` binding of `func`.\n * @param {number} [argCount] The number of arguments to provide to `func`.\n * @returns {Function} Returns the callback.\n */\n function baseCallback(func, thisArg, argCount) {\n var type = typeof func;\n if (type == 'function') {\n return thisArg === undefined\n ? func\n : bindCallback(func, thisArg, argCount);\n }\n if (func == null) {\n return identity;\n }\n if (type == 'object') {\n return baseMatches(func);\n }\n return thisArg === undefined\n ? property(func)\n : baseMatchesProperty(func, thisArg);\n }\n\n /**\n * The base implementation of `_.clone` without support for argument juggling\n * and `this` binding `customizer` functions.\n *\n * @private\n * @param {*} value The value to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @param {Function} [customizer] The function to customize cloning values.\n * @param {string} [key] The key of `value`.\n * @param {Object} [object] The object `value` belongs to.\n * @param {Array} [stackA=[]] Tracks traversed source objects.\n * @param {Array} [stackB=[]] Associates clones with source counterparts.\n * @returns {*} Returns the cloned value.\n */\n function baseClone(value, isDeep, customizer, key, object, stackA, stackB) {\n var result;\n if (customizer) {\n result = object ? customizer(value, key, object) : customizer(value);\n }\n if (result !== undefined) {\n return result;\n }\n if (!isObject(value)) {\n return value;\n }\n var isArr = isArray(value);\n if (isArr) {\n result = initCloneArray(value);\n if (!isDeep) {\n return arrayCopy(value, result);\n }\n } else {\n var tag = objToString.call(value),\n isFunc = tag == funcTag;\n\n if (tag == objectTag || tag == argsTag || (isFunc && !object)) {\n result = initCloneObject(isFunc ? {} : value);\n if (!isDeep) {\n return baseAssign(result, value);\n }\n } else {\n return cloneableTags[tag]\n ? initCloneByTag(value, tag, isDeep)\n : (object ? value : {});\n }\n }\n // Check for circular references and return its corresponding clone.\n stackA || (stackA = []);\n stackB || (stackB = []);\n\n var length = stackA.length;\n while (length--) {\n if (stackA[length] == value) {\n return stackB[length];\n }\n }\n // Add the source value to the stack of traversed objects and associate it with its clone.\n stackA.push(value);\n stackB.push(result);\n\n // Recursively populate clone (susceptible to call stack limits).\n (isArr ? arrayEach : baseForOwn)(value, function(subValue, key) {\n result[key] = baseClone(subValue, isDeep, customizer, key, value, stackA, stackB);\n });\n return result;\n }\n\n /**\n * The base implementation of `_.create` without support for assigning\n * properties to the created object.\n *\n * @private\n * @param {Object} prototype The object to inherit from.\n * @returns {Object} Returns the new object.\n */\n var baseCreate = (function() {\n function object() {}\n return function(prototype) {\n if (isObject(prototype)) {\n object.prototype = prototype;\n var result = new object;\n object.prototype = undefined;\n }\n return result || {};\n };\n }());\n\n /**\n * The base implementation of `_.delay` and `_.defer` which accepts an index\n * of where to slice the arguments to provide to `func`.\n *\n * @private\n * @param {Function} func The function to delay.\n * @param {number} wait The number of milliseconds to delay invocation.\n * @param {Object} args The arguments provide to `func`.\n * @returns {number} Returns the timer id.\n */\n function baseDelay(func, wait, args) {\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n return setTimeout(function() { func.apply(undefined, args); }, wait);\n }\n\n /**\n * The base implementation of `_.difference` which accepts a single array\n * of values to exclude.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Array} values The values to exclude.\n * @returns {Array} Returns the new array of filtered values.\n */\n function baseDifference(array, values) {\n var length = array ? array.length : 0,\n result = [];\n\n if (!length) {\n return result;\n }\n var index = -1,\n indexOf = getIndexOf(),\n isCommon = indexOf == baseIndexOf,\n cache = (isCommon && values.length >= LARGE_ARRAY_SIZE) ? createCache(values) : null,\n valuesLength = values.length;\n\n if (cache) {\n indexOf = cacheIndexOf;\n isCommon = false;\n values = cache;\n }\n outer:\n while (++index < length) {\n var value = array[index];\n\n if (isCommon && value === value) {\n var valuesIndex = valuesLength;\n while (valuesIndex--) {\n if (values[valuesIndex] === value) {\n continue outer;\n }\n }\n result.push(value);\n }\n else if (indexOf(values, value, 0) < 0) {\n result.push(value);\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.forEach` without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array|Object|string} Returns `collection`.\n */\n var baseEach = createBaseEach(baseForOwn);\n\n /**\n * The base implementation of `_.forEachRight` without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array|Object|string} Returns `collection`.\n */\n var baseEachRight = createBaseEach(baseForOwnRight, true);\n\n /**\n * The base implementation of `_.every` without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if all elements pass the predicate check,\n * else `false`\n */\n function baseEvery(collection, predicate) {\n var result = true;\n baseEach(collection, function(value, index, collection) {\n result = !!predicate(value, index, collection);\n return result;\n });\n return result;\n }\n\n /**\n * Gets the extremum value of `collection` invoking `iteratee` for each value\n * in `collection` to generate the criterion by which the value is ranked.\n * The `iteratee` is invoked with three arguments: (value, index|key, collection).\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} comparator The function used to compare values.\n * @param {*} exValue The initial extremum value.\n * @returns {*} Returns the extremum value.\n */\n function baseExtremum(collection, iteratee, comparator, exValue) {\n var computed = exValue,\n result = computed;\n\n baseEach(collection, function(value, index, collection) {\n var current = +iteratee(value, index, collection);\n if (comparator(current, computed) || (current === exValue && current === result)) {\n computed = current;\n result = value;\n }\n });\n return result;\n }\n\n /**\n * The base implementation of `_.fill` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to fill.\n * @param {*} value The value to fill `array` with.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns `array`.\n */\n function baseFill(array, value, start, end) {\n var length = array.length;\n\n start = start == null ? 0 : (+start || 0);\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = (end === undefined || end > length) ? length : (+end || 0);\n if (end < 0) {\n end += length;\n }\n length = start > end ? 0 : (end >>> 0);\n start >>>= 0;\n\n while (start < length) {\n array[start++] = value;\n }\n return array;\n }\n\n /**\n * The base implementation of `_.filter` without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\n function baseFilter(collection, predicate) {\n var result = [];\n baseEach(collection, function(value, index, collection) {\n if (predicate(value, index, collection)) {\n result.push(value);\n }\n });\n return result;\n }\n\n /**\n * The base implementation of `_.find`, `_.findLast`, `_.findKey`, and `_.findLastKey`,\n * without support for callback shorthands and `this` binding, which iterates\n * over `collection` using the provided `eachFunc`.\n *\n * @private\n * @param {Array|Object|string} collection The collection to search.\n * @param {Function} predicate The function invoked per iteration.\n * @param {Function} eachFunc The function to iterate over `collection`.\n * @param {boolean} [retKey] Specify returning the key of the found element\n * instead of the element itself.\n * @returns {*} Returns the found element or its key, else `undefined`.\n */\n function baseFind(collection, predicate, eachFunc, retKey) {\n var result;\n eachFunc(collection, function(value, key, collection) {\n if (predicate(value, key, collection)) {\n result = retKey ? key : value;\n return false;\n }\n });\n return result;\n }\n\n /**\n * The base implementation of `_.flatten` with added support for restricting\n * flattening and specifying the start index.\n *\n * @private\n * @param {Array} array The array to flatten.\n * @param {boolean} [isDeep] Specify a deep flatten.\n * @param {boolean} [isStrict] Restrict flattening to arrays-like objects.\n * @param {Array} [result=[]] The initial result value.\n * @returns {Array} Returns the new flattened array.\n */\n function baseFlatten(array, isDeep, isStrict, result) {\n result || (result = []);\n\n var index = -1,\n length = array.length;\n\n while (++index < length) {\n var value = array[index];\n if (isObjectLike(value) && isArrayLike(value) &&\n (isStrict || isArray(value) || isArguments(value))) {\n if (isDeep) {\n // Recursively flatten arrays (susceptible to call stack limits).\n baseFlatten(value, isDeep, isStrict, result);\n } else {\n arrayPush(result, value);\n }\n } else if (!isStrict) {\n result[result.length] = value;\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `baseForIn` and `baseForOwn` which iterates\n * over `object` properties returned by `keysFunc` invoking `iteratee` for\n * each property. Iteratee functions may exit iteration early by explicitly\n * returning `false`.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @returns {Object} Returns `object`.\n */\n var baseFor = createBaseFor();\n\n /**\n * This function is like `baseFor` except that it iterates over properties\n * in the opposite order.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @returns {Object} Returns `object`.\n */\n var baseForRight = createBaseFor(true);\n\n /**\n * The base implementation of `_.forIn` without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Object} Returns `object`.\n */\n function baseForIn(object, iteratee) {\n return baseFor(object, iteratee, keysIn);\n }\n\n /**\n * The base implementation of `_.forOwn` without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Object} Returns `object`.\n */\n function baseForOwn(object, iteratee) {\n return baseFor(object, iteratee, keys);\n }\n\n /**\n * The base implementation of `_.forOwnRight` without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Object} Returns `object`.\n */\n function baseForOwnRight(object, iteratee) {\n return baseForRight(object, iteratee, keys);\n }\n\n /**\n * The base implementation of `_.functions` which creates an array of\n * `object` function property names filtered from those provided.\n *\n * @private\n * @param {Object} object The object to inspect.\n * @param {Array} props The property names to filter.\n * @returns {Array} Returns the new array of filtered property names.\n */\n function baseFunctions(object, props) {\n var index = -1,\n length = props.length,\n resIndex = -1,\n result = [];\n\n while (++index < length) {\n var key = props[index];\n if (isFunction(object[key])) {\n result[++resIndex] = key;\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `get` without support for string paths\n * and default values.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array} path The path of the property to get.\n * @param {string} [pathKey] The key representation of path.\n * @returns {*} Returns the resolved value.\n */\n function baseGet(object, path, pathKey) {\n if (object == null) {\n return;\n }\n if (pathKey !== undefined && pathKey in toObject(object)) {\n path = [pathKey];\n }\n var index = 0,\n length = path.length;\n\n while (object != null && index < length) {\n object = object[path[index++]];\n }\n return (index && index == length) ? object : undefined;\n }\n\n /**\n * The base implementation of `_.isEqual` without support for `this` binding\n * `customizer` functions.\n *\n * @private\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @param {Function} [customizer] The function to customize comparing values.\n * @param {boolean} [isLoose] Specify performing partial comparisons.\n * @param {Array} [stackA] Tracks traversed `value` objects.\n * @param {Array} [stackB] Tracks traversed `other` objects.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n */\n function baseIsEqual(value, other, customizer, isLoose, stackA, stackB) {\n if (value === other) {\n return true;\n }\n if (value == null || other == null || (!isObject(value) && !isObjectLike(other))) {\n return value !== value && other !== other;\n }\n return baseIsEqualDeep(value, other, baseIsEqual, customizer, isLoose, stackA, stackB);\n }\n\n /**\n * A specialized version of `baseIsEqual` for arrays and objects which performs\n * deep comparisons and tracks traversed objects enabling objects with circular\n * references to be compared.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Function} [customizer] The function to customize comparing objects.\n * @param {boolean} [isLoose] Specify performing partial comparisons.\n * @param {Array} [stackA=[]] Tracks traversed `value` objects.\n * @param {Array} [stackB=[]] Tracks traversed `other` objects.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\n function baseIsEqualDeep(object, other, equalFunc, customizer, isLoose, stackA, stackB) {\n var objIsArr = isArray(object),\n othIsArr = isArray(other),\n objTag = arrayTag,\n othTag = arrayTag;\n\n if (!objIsArr) {\n objTag = objToString.call(object);\n if (objTag == argsTag) {\n objTag = objectTag;\n } else if (objTag != objectTag) {\n objIsArr = isTypedArray(object);\n }\n }\n if (!othIsArr) {\n othTag = objToString.call(other);\n if (othTag == argsTag) {\n othTag = objectTag;\n } else if (othTag != objectTag) {\n othIsArr = isTypedArray(other);\n }\n }\n var objIsObj = objTag == objectTag,\n othIsObj = othTag == objectTag,\n isSameTag = objTag == othTag;\n\n if (isSameTag && !(objIsArr || objIsObj)) {\n return equalByTag(object, other, objTag);\n }\n if (!isLoose) {\n var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),\n othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');\n\n if (objIsWrapped || othIsWrapped) {\n return equalFunc(objIsWrapped ? object.value() : object, othIsWrapped ? other.value() : other, customizer, isLoose, stackA, stackB);\n }\n }\n if (!isSameTag) {\n return false;\n }\n // Assume cyclic values are equal.\n // For more information on detecting circular references see https://es5.github.io/#JO.\n stackA || (stackA = []);\n stackB || (stackB = []);\n\n var length = stackA.length;\n while (length--) {\n if (stackA[length] == object) {\n return stackB[length] == other;\n }\n }\n // Add `object` and `other` to the stack of traversed objects.\n stackA.push(object);\n stackB.push(other);\n\n var result = (objIsArr ? equalArrays : equalObjects)(object, other, equalFunc, customizer, isLoose, stackA, stackB);\n\n stackA.pop();\n stackB.pop();\n\n return result;\n }\n\n /**\n * The base implementation of `_.isMatch` without support for callback\n * shorthands and `this` binding.\n *\n * @private\n * @param {Object} object The object to inspect.\n * @param {Array} matchData The propery names, values, and compare flags to match.\n * @param {Function} [customizer] The function to customize comparing objects.\n * @returns {boolean} Returns `true` if `object` is a match, else `false`.\n */\n function baseIsMatch(object, matchData, customizer) {\n var index = matchData.length,\n length = index,\n noCustomizer = !customizer;\n\n if (object == null) {\n return !length;\n }\n object = toObject(object);\n while (index--) {\n var data = matchData[index];\n if ((noCustomizer && data[2])\n ? data[1] !== object[data[0]]\n : !(data[0] in object)\n ) {\n return false;\n }\n }\n while (++index < length) {\n data = matchData[index];\n var key = data[0],\n objValue = object[key],\n srcValue = data[1];\n\n if (noCustomizer && data[2]) {\n if (objValue === undefined && !(key in object)) {\n return false;\n }\n } else {\n var result = customizer ? customizer(objValue, srcValue, key) : undefined;\n if (!(result === undefined ? baseIsEqual(srcValue, objValue, customizer, true) : result)) {\n return false;\n }\n }\n }\n return true;\n }\n\n /**\n * The base implementation of `_.map` without support for callback shorthands\n * and `this` binding.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n */\n function baseMap(collection, iteratee) {\n var index = -1,\n result = isArrayLike(collection) ? Array(collection.length) : [];\n\n baseEach(collection, function(value, key, collection) {\n result[++index] = iteratee(value, key, collection);\n });\n return result;\n }\n\n /**\n * The base implementation of `_.matches` which does not clone `source`.\n *\n * @private\n * @param {Object} source The object of property values to match.\n * @returns {Function} Returns the new function.\n */\n function baseMatches(source) {\n var matchData = getMatchData(source);\n if (matchData.length == 1 && matchData[0][2]) {\n var key = matchData[0][0],\n value = matchData[0][1];\n\n return function(object) {\n if (object == null) {\n return false;\n }\n return object[key] === value && (value !== undefined || (key in toObject(object)));\n };\n }\n return function(object) {\n return baseIsMatch(object, matchData);\n };\n }\n\n /**\n * The base implementation of `_.matchesProperty` which does not clone `srcValue`.\n *\n * @private\n * @param {string} path The path of the property to get.\n * @param {*} srcValue The value to compare.\n * @returns {Function} Returns the new function.\n */\n function baseMatchesProperty(path, srcValue) {\n var isArr = isArray(path),\n isCommon = isKey(path) && isStrictComparable(srcValue),\n pathKey = (path + '');\n\n path = toPath(path);\n return function(object) {\n if (object == null) {\n return false;\n }\n var key = pathKey;\n object = toObject(object);\n if ((isArr || !isCommon) && !(key in object)) {\n object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1));\n if (object == null) {\n return false;\n }\n key = last(path);\n object = toObject(object);\n }\n return object[key] === srcValue\n ? (srcValue !== undefined || (key in object))\n : baseIsEqual(srcValue, object[key], undefined, true);\n };\n }\n\n /**\n * The base implementation of `_.merge` without support for argument juggling,\n * multiple sources, and `this` binding `customizer` functions.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {Function} [customizer] The function to customize merged values.\n * @param {Array} [stackA=[]] Tracks traversed source objects.\n * @param {Array} [stackB=[]] Associates values with source counterparts.\n * @returns {Object} Returns `object`.\n */\n function baseMerge(object, source, customizer, stackA, stackB) {\n if (!isObject(object)) {\n return object;\n }\n var isSrcArr = isArrayLike(source) && (isArray(source) || isTypedArray(source)),\n props = isSrcArr ? undefined : keys(source);\n\n arrayEach(props || source, function(srcValue, key) {\n if (props) {\n key = srcValue;\n srcValue = source[key];\n }\n if (isObjectLike(srcValue)) {\n stackA || (stackA = []);\n stackB || (stackB = []);\n baseMergeDeep(object, source, key, baseMerge, customizer, stackA, stackB);\n }\n else {\n var value = object[key],\n result = customizer ? customizer(value, srcValue, key, object, source) : undefined,\n isCommon = result === undefined;\n\n if (isCommon) {\n result = srcValue;\n }\n if ((result !== undefined || (isSrcArr && !(key in object))) &&\n (isCommon || (result === result ? (result !== value) : (value === value)))) {\n object[key] = result;\n }\n }\n });\n return object;\n }\n\n /**\n * A specialized version of `baseMerge` for arrays and objects which performs\n * deep merges and tracks traversed objects enabling objects with circular\n * references to be merged.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {string} key The key of the value to merge.\n * @param {Function} mergeFunc The function to merge values.\n * @param {Function} [customizer] The function to customize merged values.\n * @param {Array} [stackA=[]] Tracks traversed source objects.\n * @param {Array} [stackB=[]] Associates values with source counterparts.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\n function baseMergeDeep(object, source, key, mergeFunc, customizer, stackA, stackB) {\n var length = stackA.length,\n srcValue = source[key];\n\n while (length--) {\n if (stackA[length] == srcValue) {\n object[key] = stackB[length];\n return;\n }\n }\n var value = object[key],\n result = customizer ? customizer(value, srcValue, key, object, source) : undefined,\n isCommon = result === undefined;\n\n if (isCommon) {\n result = srcValue;\n if (isArrayLike(srcValue) && (isArray(srcValue) || isTypedArray(srcValue))) {\n result = isArray(value)\n ? value\n : (isArrayLike(value) ? arrayCopy(value) : []);\n }\n else if (isPlainObject(srcValue) || isArguments(srcValue)) {\n result = isArguments(value)\n ? toPlainObject(value)\n : (isPlainObject(value) ? value : {});\n }\n else {\n isCommon = false;\n }\n }\n // Add the source value to the stack of traversed objects and associate\n // it with its merged value.\n stackA.push(srcValue);\n stackB.push(result);\n\n if (isCommon) {\n // Recursively merge objects and arrays (susceptible to call stack limits).\n object[key] = mergeFunc(result, srcValue, customizer, stackA, stackB);\n } else if (result === result ? (result !== value) : (value === value)) {\n object[key] = result;\n }\n }\n\n /**\n * The base implementation of `_.property` without support for deep paths.\n *\n * @private\n * @param {string} key The key of the property to get.\n * @returns {Function} Returns the new function.\n */\n function baseProperty(key) {\n return function(object) {\n return object == null ? undefined : object[key];\n };\n }\n\n /**\n * A specialized version of `baseProperty` which supports deep paths.\n *\n * @private\n * @param {Array|string} path The path of the property to get.\n * @returns {Function} Returns the new function.\n */\n function basePropertyDeep(path) {\n var pathKey = (path + '');\n path = toPath(path);\n return function(object) {\n return baseGet(object, path, pathKey);\n };\n }\n\n /**\n * The base implementation of `_.pullAt` without support for individual\n * index arguments and capturing the removed elements.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {number[]} indexes The indexes of elements to remove.\n * @returns {Array} Returns `array`.\n */\n function basePullAt(array, indexes) {\n var length = array ? indexes.length : 0;\n while (length--) {\n var index = indexes[length];\n if (index != previous && isIndex(index)) {\n var previous = index;\n splice.call(array, index, 1);\n }\n }\n return array;\n }\n\n /**\n * The base implementation of `_.random` without support for argument juggling\n * and returning floating-point numbers.\n *\n * @private\n * @param {number} min The minimum possible value.\n * @param {number} max The maximum possible value.\n * @returns {number} Returns the random number.\n */\n function baseRandom(min, max) {\n return min + nativeFloor(nativeRandom() * (max - min + 1));\n }\n\n /**\n * The base implementation of `_.reduce` and `_.reduceRight` without support\n * for callback shorthands and `this` binding, which iterates over `collection`\n * using the provided `eachFunc`.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {*} accumulator The initial value.\n * @param {boolean} initFromCollection Specify using the first or last element\n * of `collection` as the initial value.\n * @param {Function} eachFunc The function to iterate over `collection`.\n * @returns {*} Returns the accumulated value.\n */\n function baseReduce(collection, iteratee, accumulator, initFromCollection, eachFunc) {\n eachFunc(collection, function(value, index, collection) {\n accumulator = initFromCollection\n ? (initFromCollection = false, value)\n : iteratee(accumulator, value, index, collection);\n });\n return accumulator;\n }\n\n /**\n * The base implementation of `setData` without support for hot loop detection.\n *\n * @private\n * @param {Function} func The function to associate metadata with.\n * @param {*} data The metadata.\n * @returns {Function} Returns `func`.\n */\n var baseSetData = !metaMap ? identity : function(func, data) {\n metaMap.set(func, data);\n return func;\n };\n\n /**\n * The base implementation of `_.slice` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\n function baseSlice(array, start, end) {\n var index = -1,\n length = array.length;\n\n start = start == null ? 0 : (+start || 0);\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = (end === undefined || end > length) ? length : (+end || 0);\n if (end < 0) {\n end += length;\n }\n length = start > end ? 0 : ((end - start) >>> 0);\n start >>>= 0;\n\n var result = Array(length);\n while (++index < length) {\n result[index] = array[index + start];\n }\n return result;\n }\n\n /**\n * The base implementation of `_.some` without support for callback shorthands\n * and `this` binding.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if any element passes the predicate check,\n * else `false`.\n */\n function baseSome(collection, predicate) {\n var result;\n\n baseEach(collection, function(value, index, collection) {\n result = predicate(value, index, collection);\n return !result;\n });\n return !!result;\n }\n\n /**\n * The base implementation of `_.sortBy` which uses `comparer` to define\n * the sort order of `array` and replaces criteria objects with their\n * corresponding values.\n *\n * @private\n * @param {Array} array The array to sort.\n * @param {Function} comparer The function to define sort order.\n * @returns {Array} Returns `array`.\n */\n function baseSortBy(array, comparer) {\n var length = array.length;\n\n array.sort(comparer);\n while (length--) {\n array[length] = array[length].value;\n }\n return array;\n }\n\n /**\n * The base implementation of `_.sortByOrder` without param guards.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by.\n * @param {boolean[]} orders The sort orders of `iteratees`.\n * @returns {Array} Returns the new sorted array.\n */\n function baseSortByOrder(collection, iteratees, orders) {\n var callback = getCallback(),\n index = -1;\n\n iteratees = arrayMap(iteratees, function(iteratee) { return callback(iteratee); });\n\n var result = baseMap(collection, function(value) {\n var criteria = arrayMap(iteratees, function(iteratee) { return iteratee(value); });\n return { 'criteria': criteria, 'index': ++index, 'value': value };\n });\n\n return baseSortBy(result, function(object, other) {\n return compareMultiple(object, other, orders);\n });\n }\n\n /**\n * The base implementation of `_.sum` without support for callback shorthands\n * and `this` binding.\n *\n * @private\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {number} Returns the sum.\n */\n function baseSum(collection, iteratee) {\n var result = 0;\n baseEach(collection, function(value, index, collection) {\n result += +iteratee(value, index, collection) || 0;\n });\n return result;\n }\n\n /**\n * The base implementation of `_.uniq` without support for callback shorthands\n * and `this` binding.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Function} [iteratee] The function invoked per iteration.\n * @returns {Array} Returns the new duplicate-value-free array.\n */\n function baseUniq(array, iteratee) {\n var index = -1,\n indexOf = getIndexOf(),\n length = array.length,\n isCommon = indexOf == baseIndexOf,\n isLarge = isCommon && length >= LARGE_ARRAY_SIZE,\n seen = isLarge ? createCache() : null,\n result = [];\n\n if (seen) {\n indexOf = cacheIndexOf;\n isCommon = false;\n } else {\n isLarge = false;\n seen = iteratee ? [] : result;\n }\n outer:\n while (++index < length) {\n var value = array[index],\n computed = iteratee ? iteratee(value, index, array) : value;\n\n if (isCommon && value === value) {\n var seenIndex = seen.length;\n while (seenIndex--) {\n if (seen[seenIndex] === computed) {\n continue outer;\n }\n }\n if (iteratee) {\n seen.push(computed);\n }\n result.push(value);\n }\n else if (indexOf(seen, computed, 0) < 0) {\n if (iteratee || isLarge) {\n seen.push(computed);\n }\n result.push(value);\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.values` and `_.valuesIn` which creates an\n * array of `object` property values corresponding to the property names\n * of `props`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array} props The property names to get values for.\n * @returns {Object} Returns the array of property values.\n */\n function baseValues(object, props) {\n var index = -1,\n length = props.length,\n result = Array(length);\n\n while (++index < length) {\n result[index] = object[props[index]];\n }\n return result;\n }\n\n /**\n * The base implementation of `_.dropRightWhile`, `_.dropWhile`, `_.takeRightWhile`,\n * and `_.takeWhile` without support for callback shorthands and `this` binding.\n *\n * @private\n * @param {Array} array The array to query.\n * @param {Function} predicate The function invoked per iteration.\n * @param {boolean} [isDrop] Specify dropping elements instead of taking them.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Array} Returns the slice of `array`.\n */\n function baseWhile(array, predicate, isDrop, fromRight) {\n var length = array.length,\n index = fromRight ? length : -1;\n\n while ((fromRight ? index-- : ++index < length) && predicate(array[index], index, array)) {}\n return isDrop\n ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length))\n : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index));\n }\n\n /**\n * The base implementation of `wrapperValue` which returns the result of\n * performing a sequence of actions on the unwrapped `value`, where each\n * successive action is supplied the return value of the previous.\n *\n * @private\n * @param {*} value The unwrapped value.\n * @param {Array} actions Actions to peform to resolve the unwrapped value.\n * @returns {*} Returns the resolved value.\n */\n function baseWrapperValue(value, actions) {\n var result = value;\n if (result instanceof LazyWrapper) {\n result = result.value();\n }\n var index = -1,\n length = actions.length;\n\n while (++index < length) {\n var action = actions[index];\n result = action.func.apply(action.thisArg, arrayPush([result], action.args));\n }\n return result;\n }\n\n /**\n * Performs a binary search of `array` to determine the index at which `value`\n * should be inserted into `array` in order to maintain its sort order.\n *\n * @private\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @param {boolean} [retHighest] Specify returning the highest qualified index.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n */\n function binaryIndex(array, value, retHighest) {\n var low = 0,\n high = array ? array.length : low;\n\n if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) {\n while (low < high) {\n var mid = (low + high) >>> 1,\n computed = array[mid];\n\n if ((retHighest ? (computed <= value) : (computed < value)) && computed !== null) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return high;\n }\n return binaryIndexBy(array, value, identity, retHighest);\n }\n\n /**\n * This function is like `binaryIndex` except that it invokes `iteratee` for\n * `value` and each element of `array` to compute their sort ranking. The\n * iteratee is invoked with one argument; (value).\n *\n * @private\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {boolean} [retHighest] Specify returning the highest qualified index.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n */\n function binaryIndexBy(array, value, iteratee, retHighest) {\n value = iteratee(value);\n\n var low = 0,\n high = array ? array.length : 0,\n valIsNaN = value !== value,\n valIsNull = value === null,\n valIsUndef = value === undefined;\n\n while (low < high) {\n var mid = nativeFloor((low + high) / 2),\n computed = iteratee(array[mid]),\n isDef = computed !== undefined,\n isReflexive = computed === computed;\n\n if (valIsNaN) {\n var setLow = isReflexive || retHighest;\n } else if (valIsNull) {\n setLow = isReflexive && isDef && (retHighest || computed != null);\n } else if (valIsUndef) {\n setLow = isReflexive && (retHighest || isDef);\n } else if (computed == null) {\n setLow = false;\n } else {\n setLow = retHighest ? (computed <= value) : (computed < value);\n }\n if (setLow) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return nativeMin(high, MAX_ARRAY_INDEX);\n }\n\n /**\n * A specialized version of `baseCallback` which only supports `this` binding\n * and specifying the number of arguments to provide to `func`.\n *\n * @private\n * @param {Function} func The function to bind.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {number} [argCount] The number of arguments to provide to `func`.\n * @returns {Function} Returns the callback.\n */\n function bindCallback(func, thisArg, argCount) {\n if (typeof func != 'function') {\n return identity;\n }\n if (thisArg === undefined) {\n return func;\n }\n switch (argCount) {\n case 1: return function(value) {\n return func.call(thisArg, value);\n };\n case 3: return function(value, index, collection) {\n return func.call(thisArg, value, index, collection);\n };\n case 4: return function(accumulator, value, index, collection) {\n return func.call(thisArg, accumulator, value, index, collection);\n };\n case 5: return function(value, other, key, object, source) {\n return func.call(thisArg, value, other, key, object, source);\n };\n }\n return function() {\n return func.apply(thisArg, arguments);\n };\n }\n\n /**\n * Creates a clone of the given array buffer.\n *\n * @private\n * @param {ArrayBuffer} buffer The array buffer to clone.\n * @returns {ArrayBuffer} Returns the cloned array buffer.\n */\n function bufferClone(buffer) {\n var result = new ArrayBuffer(buffer.byteLength),\n view = new Uint8Array(result);\n\n view.set(new Uint8Array(buffer));\n return result;\n }\n\n /**\n * Creates an array that is the composition of partially applied arguments,\n * placeholders, and provided arguments into a single array of arguments.\n *\n * @private\n * @param {Array|Object} args The provided arguments.\n * @param {Array} partials The arguments to prepend to those provided.\n * @param {Array} holders The `partials` placeholder indexes.\n * @returns {Array} Returns the new array of composed arguments.\n */\n function composeArgs(args, partials, holders) {\n var holdersLength = holders.length,\n argsIndex = -1,\n argsLength = nativeMax(args.length - holdersLength, 0),\n leftIndex = -1,\n leftLength = partials.length,\n result = Array(leftLength + argsLength);\n\n while (++leftIndex < leftLength) {\n result[leftIndex] = partials[leftIndex];\n }\n while (++argsIndex < holdersLength) {\n result[holders[argsIndex]] = args[argsIndex];\n }\n while (argsLength--) {\n result[leftIndex++] = args[argsIndex++];\n }\n return result;\n }\n\n /**\n * This function is like `composeArgs` except that the arguments composition\n * is tailored for `_.partialRight`.\n *\n * @private\n * @param {Array|Object} args The provided arguments.\n * @param {Array} partials The arguments to append to those provided.\n * @param {Array} holders The `partials` placeholder indexes.\n * @returns {Array} Returns the new array of composed arguments.\n */\n function composeArgsRight(args, partials, holders) {\n var holdersIndex = -1,\n holdersLength = holders.length,\n argsIndex = -1,\n argsLength = nativeMax(args.length - holdersLength, 0),\n rightIndex = -1,\n rightLength = partials.length,\n result = Array(argsLength + rightLength);\n\n while (++argsIndex < argsLength) {\n result[argsIndex] = args[argsIndex];\n }\n var offset = argsIndex;\n while (++rightIndex < rightLength) {\n result[offset + rightIndex] = partials[rightIndex];\n }\n while (++holdersIndex < holdersLength) {\n result[offset + holders[holdersIndex]] = args[argsIndex++];\n }\n return result;\n }\n\n /**\n * Creates a `_.countBy`, `_.groupBy`, `_.indexBy`, or `_.partition` function.\n *\n * @private\n * @param {Function} setter The function to set keys and values of the accumulator object.\n * @param {Function} [initializer] The function to initialize the accumulator object.\n * @returns {Function} Returns the new aggregator function.\n */\n function createAggregator(setter, initializer) {\n return function(collection, iteratee, thisArg) {\n var result = initializer ? initializer() : {};\n iteratee = getCallback(iteratee, thisArg, 3);\n\n if (isArray(collection)) {\n var index = -1,\n length = collection.length;\n\n while (++index < length) {\n var value = collection[index];\n setter(result, value, iteratee(value, index, collection), collection);\n }\n } else {\n baseEach(collection, function(value, key, collection) {\n setter(result, value, iteratee(value, key, collection), collection);\n });\n }\n return result;\n };\n }\n\n /**\n * Creates a `_.assign`, `_.defaults`, or `_.merge` function.\n *\n * @private\n * @param {Function} assigner The function to assign values.\n * @returns {Function} Returns the new assigner function.\n */\n function createAssigner(assigner) {\n return restParam(function(object, sources) {\n var index = -1,\n length = object == null ? 0 : sources.length,\n customizer = length > 2 ? sources[length - 2] : undefined,\n guard = length > 2 ? sources[2] : undefined,\n thisArg = length > 1 ? sources[length - 1] : undefined;\n\n if (typeof customizer == 'function') {\n customizer = bindCallback(customizer, thisArg, 5);\n length -= 2;\n } else {\n customizer = typeof thisArg == 'function' ? thisArg : undefined;\n length -= (customizer ? 1 : 0);\n }\n if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n customizer = length < 3 ? undefined : customizer;\n length = 1;\n }\n while (++index < length) {\n var source = sources[index];\n if (source) {\n assigner(object, source, customizer);\n }\n }\n return object;\n });\n }\n\n /**\n * Creates a `baseEach` or `baseEachRight` function.\n *\n * @private\n * @param {Function} eachFunc The function to iterate over a collection.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\n function createBaseEach(eachFunc, fromRight) {\n return function(collection, iteratee) {\n var length = collection ? getLength(collection) : 0;\n if (!isLength(length)) {\n return eachFunc(collection, iteratee);\n }\n var index = fromRight ? length : -1,\n iterable = toObject(collection);\n\n while ((fromRight ? index-- : ++index < length)) {\n if (iteratee(iterable[index], index, iterable) === false) {\n break;\n }\n }\n return collection;\n };\n }\n\n /**\n * Creates a base function for `_.forIn` or `_.forInRight`.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\n function createBaseFor(fromRight) {\n return function(object, iteratee, keysFunc) {\n var iterable = toObject(object),\n props = keysFunc(object),\n length = props.length,\n index = fromRight ? length : -1;\n\n while ((fromRight ? index-- : ++index < length)) {\n var key = props[index];\n if (iteratee(iterable[key], key, iterable) === false) {\n break;\n }\n }\n return object;\n };\n }\n\n /**\n * Creates a function that wraps `func` and invokes it with the `this`\n * binding of `thisArg`.\n *\n * @private\n * @param {Function} func The function to bind.\n * @param {*} [thisArg] The `this` binding of `func`.\n * @returns {Function} Returns the new bound function.\n */\n function createBindWrapper(func, thisArg) {\n var Ctor = createCtorWrapper(func);\n\n function wrapper() {\n var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\n return fn.apply(thisArg, arguments);\n }\n return wrapper;\n }\n\n /**\n * Creates a `Set` cache object to optimize linear searches of large arrays.\n *\n * @private\n * @param {Array} [values] The values to cache.\n * @returns {null|Object} Returns the new cache object if `Set` is supported, else `null`.\n */\n function createCache(values) {\n return (nativeCreate && Set) ? new SetCache(values) : null;\n }\n\n /**\n * Creates a function that produces compound words out of the words in a\n * given string.\n *\n * @private\n * @param {Function} callback The function to combine each word.\n * @returns {Function} Returns the new compounder function.\n */\n function createCompounder(callback) {\n return function(string) {\n var index = -1,\n array = words(deburr(string)),\n length = array.length,\n result = '';\n\n while (++index < length) {\n result = callback(result, array[index], index);\n }\n return result;\n };\n }\n\n /**\n * Creates a function that produces an instance of `Ctor` regardless of\n * whether it was invoked as part of a `new` expression or by `call` or `apply`.\n *\n * @private\n * @param {Function} Ctor The constructor to wrap.\n * @returns {Function} Returns the new wrapped function.\n */\n function createCtorWrapper(Ctor) {\n return function() {\n // Use a `switch` statement to work with class constructors.\n // See http://ecma-international.org/ecma-262/6.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist\n // for more details.\n var args = arguments;\n switch (args.length) {\n case 0: return new Ctor;\n case 1: return new Ctor(args[0]);\n case 2: return new Ctor(args[0], args[1]);\n case 3: return new Ctor(args[0], args[1], args[2]);\n case 4: return new Ctor(args[0], args[1], args[2], args[3]);\n case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]);\n case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);\n case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);\n }\n var thisBinding = baseCreate(Ctor.prototype),\n result = Ctor.apply(thisBinding, args);\n\n // Mimic the constructor's `return` behavior.\n // See https://es5.github.io/#x13.2.2 for more details.\n return isObject(result) ? result : thisBinding;\n };\n }\n\n /**\n * Creates a `_.curry` or `_.curryRight` function.\n *\n * @private\n * @param {boolean} flag The curry bit flag.\n * @returns {Function} Returns the new curry function.\n */\n function createCurry(flag) {\n function curryFunc(func, arity, guard) {\n if (guard && isIterateeCall(func, arity, guard)) {\n arity = undefined;\n }\n var result = createWrapper(func, flag, undefined, undefined, undefined, undefined, undefined, arity);\n result.placeholder = curryFunc.placeholder;\n return result;\n }\n return curryFunc;\n }\n\n /**\n * Creates a `_.defaults` or `_.defaultsDeep` function.\n *\n * @private\n * @param {Function} assigner The function to assign values.\n * @param {Function} customizer The function to customize assigned values.\n * @returns {Function} Returns the new defaults function.\n */\n function createDefaults(assigner, customizer) {\n return restParam(function(args) {\n var object = args[0];\n if (object == null) {\n return object;\n }\n args.push(customizer);\n return assigner.apply(undefined, args);\n });\n }\n\n /**\n * Creates a `_.max` or `_.min` function.\n *\n * @private\n * @param {Function} comparator The function used to compare values.\n * @param {*} exValue The initial extremum value.\n * @returns {Function} Returns the new extremum function.\n */\n function createExtremum(comparator, exValue) {\n return function(collection, iteratee, thisArg) {\n if (thisArg && isIterateeCall(collection, iteratee, thisArg)) {\n iteratee = undefined;\n }\n iteratee = getCallback(iteratee, thisArg, 3);\n if (iteratee.length == 1) {\n collection = isArray(collection) ? collection : toIterable(collection);\n var result = arrayExtremum(collection, iteratee, comparator, exValue);\n if (!(collection.length && result === exValue)) {\n return result;\n }\n }\n return baseExtremum(collection, iteratee, comparator, exValue);\n };\n }\n\n /**\n * Creates a `_.find` or `_.findLast` function.\n *\n * @private\n * @param {Function} eachFunc The function to iterate over a collection.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new find function.\n */\n function createFind(eachFunc, fromRight) {\n return function(collection, predicate, thisArg) {\n predicate = getCallback(predicate, thisArg, 3);\n if (isArray(collection)) {\n var index = baseFindIndex(collection, predicate, fromRight);\n return index > -1 ? collection[index] : undefined;\n }\n return baseFind(collection, predicate, eachFunc);\n };\n }\n\n /**\n * Creates a `_.findIndex` or `_.findLastIndex` function.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new find function.\n */\n function createFindIndex(fromRight) {\n return function(array, predicate, thisArg) {\n if (!(array && array.length)) {\n return -1;\n }\n predicate = getCallback(predicate, thisArg, 3);\n return baseFindIndex(array, predicate, fromRight);\n };\n }\n\n /**\n * Creates a `_.findKey` or `_.findLastKey` function.\n *\n * @private\n * @param {Function} objectFunc The function to iterate over an object.\n * @returns {Function} Returns the new find function.\n */\n function createFindKey(objectFunc) {\n return function(object, predicate, thisArg) {\n predicate = getCallback(predicate, thisArg, 3);\n return baseFind(object, predicate, objectFunc, true);\n };\n }\n\n /**\n * Creates a `_.flow` or `_.flowRight` function.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new flow function.\n */\n function createFlow(fromRight) {\n return function() {\n var wrapper,\n length = arguments.length,\n index = fromRight ? length : -1,\n leftIndex = 0,\n funcs = Array(length);\n\n while ((fromRight ? index-- : ++index < length)) {\n var func = funcs[leftIndex++] = arguments[index];\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n if (!wrapper && LodashWrapper.prototype.thru && getFuncName(func) == 'wrapper') {\n wrapper = new LodashWrapper([], true);\n }\n }\n index = wrapper ? -1 : length;\n while (++index < length) {\n func = funcs[index];\n\n var funcName = getFuncName(func),\n data = funcName == 'wrapper' ? getData(func) : undefined;\n\n if (data && isLaziable(data[0]) && data[1] == (ARY_FLAG | CURRY_FLAG | PARTIAL_FLAG | REARG_FLAG) && !data[4].length && data[9] == 1) {\n wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]);\n } else {\n wrapper = (func.length == 1 && isLaziable(func)) ? wrapper[funcName]() : wrapper.thru(func);\n }\n }\n return function() {\n var args = arguments,\n value = args[0];\n\n if (wrapper && args.length == 1 && isArray(value) && value.length >= LARGE_ARRAY_SIZE) {\n return wrapper.plant(value).value();\n }\n var index = 0,\n result = length ? funcs[index].apply(this, args) : value;\n\n while (++index < length) {\n result = funcs[index].call(this, result);\n }\n return result;\n };\n };\n }\n\n /**\n * Creates a function for `_.forEach` or `_.forEachRight`.\n *\n * @private\n * @param {Function} arrayFunc The function to iterate over an array.\n * @param {Function} eachFunc The function to iterate over a collection.\n * @returns {Function} Returns the new each function.\n */\n function createForEach(arrayFunc, eachFunc) {\n return function(collection, iteratee, thisArg) {\n return (typeof iteratee == 'function' && thisArg === undefined && isArray(collection))\n ? arrayFunc(collection, iteratee)\n : eachFunc(collection, bindCallback(iteratee, thisArg, 3));\n };\n }\n\n /**\n * Creates a function for `_.forIn` or `_.forInRight`.\n *\n * @private\n * @param {Function} objectFunc The function to iterate over an object.\n * @returns {Function} Returns the new each function.\n */\n function createForIn(objectFunc) {\n return function(object, iteratee, thisArg) {\n if (typeof iteratee != 'function' || thisArg !== undefined) {\n iteratee = bindCallback(iteratee, thisArg, 3);\n }\n return objectFunc(object, iteratee, keysIn);\n };\n }\n\n /**\n * Creates a function for `_.forOwn` or `_.forOwnRight`.\n *\n * @private\n * @param {Function} objectFunc The function to iterate over an object.\n * @returns {Function} Returns the new each function.\n */\n function createForOwn(objectFunc) {\n return function(object, iteratee, thisArg) {\n if (typeof iteratee != 'function' || thisArg !== undefined) {\n iteratee = bindCallback(iteratee, thisArg, 3);\n }\n return objectFunc(object, iteratee);\n };\n }\n\n /**\n * Creates a function for `_.mapKeys` or `_.mapValues`.\n *\n * @private\n * @param {boolean} [isMapKeys] Specify mapping keys instead of values.\n * @returns {Function} Returns the new map function.\n */\n function createObjectMapper(isMapKeys) {\n return function(object, iteratee, thisArg) {\n var result = {};\n iteratee = getCallback(iteratee, thisArg, 3);\n\n baseForOwn(object, function(value, key, object) {\n var mapped = iteratee(value, key, object);\n key = isMapKeys ? mapped : key;\n value = isMapKeys ? value : mapped;\n result[key] = value;\n });\n return result;\n };\n }\n\n /**\n * Creates a function for `_.padLeft` or `_.padRight`.\n *\n * @private\n * @param {boolean} [fromRight] Specify padding from the right.\n * @returns {Function} Returns the new pad function.\n */\n function createPadDir(fromRight) {\n return function(string, length, chars) {\n string = baseToString(string);\n return (fromRight ? string : '') + createPadding(string, length, chars) + (fromRight ? '' : string);\n };\n }\n\n /**\n * Creates a `_.partial` or `_.partialRight` function.\n *\n * @private\n * @param {boolean} flag The partial bit flag.\n * @returns {Function} Returns the new partial function.\n */\n function createPartial(flag) {\n var partialFunc = restParam(function(func, partials) {\n var holders = replaceHolders(partials, partialFunc.placeholder);\n return createWrapper(func, flag, undefined, partials, holders);\n });\n return partialFunc;\n }\n\n /**\n * Creates a function for `_.reduce` or `_.reduceRight`.\n *\n * @private\n * @param {Function} arrayFunc The function to iterate over an array.\n * @param {Function} eachFunc The function to iterate over a collection.\n * @returns {Function} Returns the new each function.\n */\n function createReduce(arrayFunc, eachFunc) {\n return function(collection, iteratee, accumulator, thisArg) {\n var initFromArray = arguments.length < 3;\n return (typeof iteratee == 'function' && thisArg === undefined && isArray(collection))\n ? arrayFunc(collection, iteratee, accumulator, initFromArray)\n : baseReduce(collection, getCallback(iteratee, thisArg, 4), accumulator, initFromArray, eachFunc);\n };\n }\n\n /**\n * Creates a function that wraps `func` and invokes it with optional `this`\n * binding of, partial application, and currying.\n *\n * @private\n * @param {Function|string} func The function or method name to reference.\n * @param {number} bitmask The bitmask of flags. See `createWrapper` for more details.\n * @param {*} [thisArg] The `this` binding of `func`.\n * @param {Array} [partials] The arguments to prepend to those provided to the new function.\n * @param {Array} [holders] The `partials` placeholder indexes.\n * @param {Array} [partialsRight] The arguments to append to those provided to the new function.\n * @param {Array} [holdersRight] The `partialsRight` placeholder indexes.\n * @param {Array} [argPos] The argument positions of the new function.\n * @param {number} [ary] The arity cap of `func`.\n * @param {number} [arity] The arity of `func`.\n * @returns {Function} Returns the new wrapped function.\n */\n function createHybridWrapper(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) {\n var isAry = bitmask & ARY_FLAG,\n isBind = bitmask & BIND_FLAG,\n isBindKey = bitmask & BIND_KEY_FLAG,\n isCurry = bitmask & CURRY_FLAG,\n isCurryBound = bitmask & CURRY_BOUND_FLAG,\n isCurryRight = bitmask & CURRY_RIGHT_FLAG,\n Ctor = isBindKey ? undefined : createCtorWrapper(func);\n\n function wrapper() {\n // Avoid `arguments` object use disqualifying optimizations by\n // converting it to an array before providing it to other functions.\n var length = arguments.length,\n index = length,\n args = Array(length);\n\n while (index--) {\n args[index] = arguments[index];\n }\n if (partials) {\n args = composeArgs(args, partials, holders);\n }\n if (partialsRight) {\n args = composeArgsRight(args, partialsRight, holdersRight);\n }\n if (isCurry || isCurryRight) {\n var placeholder = wrapper.placeholder,\n argsHolders = replaceHolders(args, placeholder);\n\n length -= argsHolders.length;\n if (length < arity) {\n var newArgPos = argPos ? arrayCopy(argPos) : undefined,\n newArity = nativeMax(arity - length, 0),\n newsHolders = isCurry ? argsHolders : undefined,\n newHoldersRight = isCurry ? undefined : argsHolders,\n newPartials = isCurry ? args : undefined,\n newPartialsRight = isCurry ? undefined : args;\n\n bitmask |= (isCurry ? PARTIAL_FLAG : PARTIAL_RIGHT_FLAG);\n bitmask &= ~(isCurry ? PARTIAL_RIGHT_FLAG : PARTIAL_FLAG);\n\n if (!isCurryBound) {\n bitmask &= ~(BIND_FLAG | BIND_KEY_FLAG);\n }\n var newData = [func, bitmask, thisArg, newPartials, newsHolders, newPartialsRight, newHoldersRight, newArgPos, ary, newArity],\n result = createHybridWrapper.apply(undefined, newData);\n\n if (isLaziable(func)) {\n setData(result, newData);\n }\n result.placeholder = placeholder;\n return result;\n }\n }\n var thisBinding = isBind ? thisArg : this,\n fn = isBindKey ? thisBinding[func] : func;\n\n if (argPos) {\n args = reorder(args, argPos);\n }\n if (isAry && ary < args.length) {\n args.length = ary;\n }\n if (this && this !== root && this instanceof wrapper) {\n fn = Ctor || createCtorWrapper(func);\n }\n return fn.apply(thisBinding, args);\n }\n return wrapper;\n }\n\n /**\n * Creates the padding required for `string` based on the given `length`.\n * The `chars` string is truncated if the number of characters exceeds `length`.\n *\n * @private\n * @param {string} string The string to create padding for.\n * @param {number} [length=0] The padding length.\n * @param {string} [chars=' '] The string used as padding.\n * @returns {string} Returns the pad for `string`.\n */\n function createPadding(string, length, chars) {\n var strLength = string.length;\n length = +length;\n\n if (strLength >= length || !nativeIsFinite(length)) {\n return '';\n }\n var padLength = length - strLength;\n chars = chars == null ? ' ' : (chars + '');\n return repeat(chars, nativeCeil(padLength / chars.length)).slice(0, padLength);\n }\n\n /**\n * Creates a function that wraps `func` and invokes it with the optional `this`\n * binding of `thisArg` and the `partials` prepended to those provided to\n * the wrapper.\n *\n * @private\n * @param {Function} func The function to partially apply arguments to.\n * @param {number} bitmask The bitmask of flags. See `createWrapper` for more details.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {Array} partials The arguments to prepend to those provided to the new function.\n * @returns {Function} Returns the new bound function.\n */\n function createPartialWrapper(func, bitmask, thisArg, partials) {\n var isBind = bitmask & BIND_FLAG,\n Ctor = createCtorWrapper(func);\n\n function wrapper() {\n // Avoid `arguments` object use disqualifying optimizations by\n // converting it to an array before providing it `func`.\n var argsIndex = -1,\n argsLength = arguments.length,\n leftIndex = -1,\n leftLength = partials.length,\n args = Array(leftLength + argsLength);\n\n while (++leftIndex < leftLength) {\n args[leftIndex] = partials[leftIndex];\n }\n while (argsLength--) {\n args[leftIndex++] = arguments[++argsIndex];\n }\n var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\n return fn.apply(isBind ? thisArg : this, args);\n }\n return wrapper;\n }\n\n /**\n * Creates a `_.ceil`, `_.floor`, or `_.round` function.\n *\n * @private\n * @param {string} methodName The name of the `Math` method to use when rounding.\n * @returns {Function} Returns the new round function.\n */\n function createRound(methodName) {\n var func = Math[methodName];\n return function(number, precision) {\n precision = precision === undefined ? 0 : (+precision || 0);\n if (precision) {\n precision = pow(10, precision);\n return func(number * precision) / precision;\n }\n return func(number);\n };\n }\n\n /**\n * Creates a `_.sortedIndex` or `_.sortedLastIndex` function.\n *\n * @private\n * @param {boolean} [retHighest] Specify returning the highest qualified index.\n * @returns {Function} Returns the new index function.\n */\n function createSortedIndex(retHighest) {\n return function(array, value, iteratee, thisArg) {\n var callback = getCallback(iteratee);\n return (iteratee == null && callback === baseCallback)\n ? binaryIndex(array, value, retHighest)\n : binaryIndexBy(array, value, callback(iteratee, thisArg, 1), retHighest);\n };\n }\n\n /**\n * Creates a function that either curries or invokes `func` with optional\n * `this` binding and partially applied arguments.\n *\n * @private\n * @param {Function|string} func The function or method name to reference.\n * @param {number} bitmask The bitmask of flags.\n * The bitmask may be composed of the following flags:\n * 1 - `_.bind`\n * 2 - `_.bindKey`\n * 4 - `_.curry` or `_.curryRight` of a bound function\n * 8 - `_.curry`\n * 16 - `_.curryRight`\n * 32 - `_.partial`\n * 64 - `_.partialRight`\n * 128 - `_.rearg`\n * 256 - `_.ary`\n * @param {*} [thisArg] The `this` binding of `func`.\n * @param {Array} [partials] The arguments to be partially applied.\n * @param {Array} [holders] The `partials` placeholder indexes.\n * @param {Array} [argPos] The argument positions of the new function.\n * @param {number} [ary] The arity cap of `func`.\n * @param {number} [arity] The arity of `func`.\n * @returns {Function} Returns the new wrapped function.\n */\n function createWrapper(func, bitmask, thisArg, partials, holders, argPos, ary, arity) {\n var isBindKey = bitmask & BIND_KEY_FLAG;\n if (!isBindKey && typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var length = partials ? partials.length : 0;\n if (!length) {\n bitmask &= ~(PARTIAL_FLAG | PARTIAL_RIGHT_FLAG);\n partials = holders = undefined;\n }\n length -= (holders ? holders.length : 0);\n if (bitmask & PARTIAL_RIGHT_FLAG) {\n var partialsRight = partials,\n holdersRight = holders;\n\n partials = holders = undefined;\n }\n var data = isBindKey ? undefined : getData(func),\n newData = [func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity];\n\n if (data) {\n mergeData(newData, data);\n bitmask = newData[1];\n arity = newData[9];\n }\n newData[9] = arity == null\n ? (isBindKey ? 0 : func.length)\n : (nativeMax(arity - length, 0) || 0);\n\n if (bitmask == BIND_FLAG) {\n var result = createBindWrapper(newData[0], newData[2]);\n } else if ((bitmask == PARTIAL_FLAG || bitmask == (BIND_FLAG | PARTIAL_FLAG)) && !newData[4].length) {\n result = createPartialWrapper.apply(undefined, newData);\n } else {\n result = createHybridWrapper.apply(undefined, newData);\n }\n var setter = data ? baseSetData : setData;\n return setter(result, newData);\n }\n\n /**\n * A specialized version of `baseIsEqualDeep` for arrays with support for\n * partial deep comparisons.\n *\n * @private\n * @param {Array} array The array to compare.\n * @param {Array} other The other array to compare.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Function} [customizer] The function to customize comparing arrays.\n * @param {boolean} [isLoose] Specify performing partial comparisons.\n * @param {Array} [stackA] Tracks traversed `value` objects.\n * @param {Array} [stackB] Tracks traversed `other` objects.\n * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.\n */\n function equalArrays(array, other, equalFunc, customizer, isLoose, stackA, stackB) {\n var index = -1,\n arrLength = array.length,\n othLength = other.length;\n\n if (arrLength != othLength && !(isLoose && othLength > arrLength)) {\n return false;\n }\n // Ignore non-index properties.\n while (++index < arrLength) {\n var arrValue = array[index],\n othValue = other[index],\n result = customizer ? customizer(isLoose ? othValue : arrValue, isLoose ? arrValue : othValue, index) : undefined;\n\n if (result !== undefined) {\n if (result) {\n continue;\n }\n return false;\n }\n // Recursively compare arrays (susceptible to call stack limits).\n if (isLoose) {\n if (!arraySome(other, function(othValue) {\n return arrValue === othValue || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB);\n })) {\n return false;\n }\n } else if (!(arrValue === othValue || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB))) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * A specialized version of `baseIsEqualDeep` for comparing objects of\n * the same `toStringTag`.\n *\n * **Note:** This function only supports comparing values with tags of\n * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {string} tag The `toStringTag` of the objects to compare.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\n function equalByTag(object, other, tag) {\n switch (tag) {\n case boolTag:\n case dateTag:\n // Coerce dates and booleans to numbers, dates to milliseconds and booleans\n // to `1` or `0` treating invalid dates coerced to `NaN` as not equal.\n return +object == +other;\n\n case errorTag:\n return object.name == other.name && object.message == other.message;\n\n case numberTag:\n // Treat `NaN` vs. `NaN` as equal.\n return (object != +object)\n ? other != +other\n : object == +other;\n\n case regexpTag:\n case stringTag:\n // Coerce regexes to strings and treat strings primitives and string\n // objects as equal. See https://es5.github.io/#x15.10.6.4 for more details.\n return object == (other + '');\n }\n return false;\n }\n\n /**\n * A specialized version of `baseIsEqualDeep` for objects with support for\n * partial deep comparisons.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Function} [customizer] The function to customize comparing values.\n * @param {boolean} [isLoose] Specify performing partial comparisons.\n * @param {Array} [stackA] Tracks traversed `value` objects.\n * @param {Array} [stackB] Tracks traversed `other` objects.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\n function equalObjects(object, other, equalFunc, customizer, isLoose, stackA, stackB) {\n var objProps = keys(object),\n objLength = objProps.length,\n othProps = keys(other),\n othLength = othProps.length;\n\n if (objLength != othLength && !isLoose) {\n return false;\n }\n var index = objLength;\n while (index--) {\n var key = objProps[index];\n if (!(isLoose ? key in other : hasOwnProperty.call(other, key))) {\n return false;\n }\n }\n var skipCtor = isLoose;\n while (++index < objLength) {\n key = objProps[index];\n var objValue = object[key],\n othValue = other[key],\n result = customizer ? customizer(isLoose ? othValue : objValue, isLoose? objValue : othValue, key) : undefined;\n\n // Recursively compare objects (susceptible to call stack limits).\n if (!(result === undefined ? equalFunc(objValue, othValue, customizer, isLoose, stackA, stackB) : result)) {\n return false;\n }\n skipCtor || (skipCtor = key == 'constructor');\n }\n if (!skipCtor) {\n var objCtor = object.constructor,\n othCtor = other.constructor;\n\n // Non `Object` object instances with different constructors are not equal.\n if (objCtor != othCtor &&\n ('constructor' in object && 'constructor' in other) &&\n !(typeof objCtor == 'function' && objCtor instanceof objCtor &&\n typeof othCtor == 'function' && othCtor instanceof othCtor)) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * Gets the appropriate \"callback\" function. If the `_.callback` method is\n * customized this function returns the custom method, otherwise it returns\n * the `baseCallback` function. If arguments are provided the chosen function\n * is invoked with them and its result is returned.\n *\n * @private\n * @returns {Function} Returns the chosen function or its result.\n */\n function getCallback(func, thisArg, argCount) {\n var result = lodash.callback || callback;\n result = result === callback ? baseCallback : result;\n return argCount ? result(func, thisArg, argCount) : result;\n }\n\n /**\n * Gets metadata for `func`.\n *\n * @private\n * @param {Function} func The function to query.\n * @returns {*} Returns the metadata for `func`.\n */\n var getData = !metaMap ? noop : function(func) {\n return metaMap.get(func);\n };\n\n /**\n * Gets the name of `func`.\n *\n * @private\n * @param {Function} func The function to query.\n * @returns {string} Returns the function name.\n */\n function getFuncName(func) {\n var result = func.name,\n array = realNames[result],\n length = array ? array.length : 0;\n\n while (length--) {\n var data = array[length],\n otherFunc = data.func;\n if (otherFunc == null || otherFunc == func) {\n return data.name;\n }\n }\n return result;\n }\n\n /**\n * Gets the appropriate \"indexOf\" function. If the `_.indexOf` method is\n * customized this function returns the custom method, otherwise it returns\n * the `baseIndexOf` function. If arguments are provided the chosen function\n * is invoked with them and its result is returned.\n *\n * @private\n * @returns {Function|number} Returns the chosen function or its result.\n */\n function getIndexOf(collection, target, fromIndex) {\n var result = lodash.indexOf || indexOf;\n result = result === indexOf ? baseIndexOf : result;\n return collection ? result(collection, target, fromIndex) : result;\n }\n\n /**\n * Gets the \"length\" property value of `object`.\n *\n * **Note:** This function is used to avoid a [JIT bug](https://bugs.webkit.org/show_bug.cgi?id=142792)\n * that affects Safari on at least iOS 8.1-8.3 ARM64.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {*} Returns the \"length\" value.\n */\n var getLength = baseProperty('length');\n\n /**\n * Gets the propery names, values, and compare flags of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the match data of `object`.\n */\n function getMatchData(object) {\n var result = pairs(object),\n length = result.length;\n\n while (length--) {\n result[length][2] = isStrictComparable(result[length][1]);\n }\n return result;\n }\n\n /**\n * Gets the native function at `key` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the method to get.\n * @returns {*} Returns the function if it's native, else `undefined`.\n */\n function getNative(object, key) {\n var value = object == null ? undefined : object[key];\n return isNative(value) ? value : undefined;\n }\n\n /**\n * Gets the view, applying any `transforms` to the `start` and `end` positions.\n *\n * @private\n * @param {number} start The start of the view.\n * @param {number} end The end of the view.\n * @param {Array} transforms The transformations to apply to the view.\n * @returns {Object} Returns an object containing the `start` and `end`\n * positions of the view.\n */\n function getView(start, end, transforms) {\n var index = -1,\n length = transforms.length;\n\n while (++index < length) {\n var data = transforms[index],\n size = data.size;\n\n switch (data.type) {\n case 'drop': start += size; break;\n case 'dropRight': end -= size; break;\n case 'take': end = nativeMin(end, start + size); break;\n case 'takeRight': start = nativeMax(start, end - size); break;\n }\n }\n return { 'start': start, 'end': end };\n }\n\n /**\n * Initializes an array clone.\n *\n * @private\n * @param {Array} array The array to clone.\n * @returns {Array} Returns the initialized clone.\n */\n function initCloneArray(array) {\n var length = array.length,\n result = new array.constructor(length);\n\n // Add array properties assigned by `RegExp#exec`.\n if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {\n result.index = array.index;\n result.input = array.input;\n }\n return result;\n }\n\n /**\n * Initializes an object clone.\n *\n * @private\n * @param {Object} object The object to clone.\n * @returns {Object} Returns the initialized clone.\n */\n function initCloneObject(object) {\n var Ctor = object.constructor;\n if (!(typeof Ctor == 'function' && Ctor instanceof Ctor)) {\n Ctor = Object;\n }\n return new Ctor;\n }\n\n /**\n * Initializes an object clone based on its `toStringTag`.\n *\n * **Note:** This function only supports cloning values with tags of\n * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n *\n * @private\n * @param {Object} object The object to clone.\n * @param {string} tag The `toStringTag` of the object to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the initialized clone.\n */\n function initCloneByTag(object, tag, isDeep) {\n var Ctor = object.constructor;\n switch (tag) {\n case arrayBufferTag:\n return bufferClone(object);\n\n case boolTag:\n case dateTag:\n return new Ctor(+object);\n\n case float32Tag: case float64Tag:\n case int8Tag: case int16Tag: case int32Tag:\n case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:\n var buffer = object.buffer;\n return new Ctor(isDeep ? bufferClone(buffer) : buffer, object.byteOffset, object.length);\n\n case numberTag:\n case stringTag:\n return new Ctor(object);\n\n case regexpTag:\n var result = new Ctor(object.source, reFlags.exec(object));\n result.lastIndex = object.lastIndex;\n }\n return result;\n }\n\n /**\n * Invokes the method at `path` on `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the method to invoke.\n * @param {Array} args The arguments to invoke the method with.\n * @returns {*} Returns the result of the invoked method.\n */\n function invokePath(object, path, args) {\n if (object != null && !isKey(path, object)) {\n path = toPath(path);\n object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1));\n path = last(path);\n }\n var func = object == null ? object : object[path];\n return func == null ? undefined : func.apply(object, args);\n }\n\n /**\n * Checks if `value` is array-like.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n */\n function isArrayLike(value) {\n return value != null && isLength(getLength(value));\n }\n\n /**\n * Checks if `value` is a valid array-like index.\n *\n * @private\n * @param {*} value The value to check.\n * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n */\n function isIndex(value, length) {\n value = (typeof value == 'number' || reIsUint.test(value)) ? +value : -1;\n length = length == null ? MAX_SAFE_INTEGER : length;\n return value > -1 && value % 1 == 0 && value < length;\n }\n\n /**\n * Checks if the provided arguments are from an iteratee call.\n *\n * @private\n * @param {*} value The potential iteratee value argument.\n * @param {*} index The potential iteratee index or key argument.\n * @param {*} object The potential iteratee object argument.\n * @returns {boolean} Returns `true` if the arguments are from an iteratee call, else `false`.\n */\n function isIterateeCall(value, index, object) {\n if (!isObject(object)) {\n return false;\n }\n var type = typeof index;\n if (type == 'number'\n ? (isArrayLike(object) && isIndex(index, object.length))\n : (type == 'string' && index in object)) {\n var other = object[index];\n return value === value ? (value === other) : (other !== other);\n }\n return false;\n }\n\n /**\n * Checks if `value` is a property name and not a property path.\n *\n * @private\n * @param {*} value The value to check.\n * @param {Object} [object] The object to query keys on.\n * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n */\n function isKey(value, object) {\n var type = typeof value;\n if ((type == 'string' && reIsPlainProp.test(value)) || type == 'number') {\n return true;\n }\n if (isArray(value)) {\n return false;\n }\n var result = !reIsDeepProp.test(value);\n return result || (object != null && value in toObject(object));\n }\n\n /**\n * Checks if `func` has a lazy counterpart.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` has a lazy counterpart, else `false`.\n */\n function isLaziable(func) {\n var funcName = getFuncName(func);\n if (!(funcName in LazyWrapper.prototype)) {\n return false;\n }\n var other = lodash[funcName];\n if (func === other) {\n return true;\n }\n var data = getData(other);\n return !!data && func === data[0];\n }\n\n /**\n * Checks if `value` is a valid array-like length.\n *\n * **Note:** This function is based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength).\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n */\n function isLength(value) {\n return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n }\n\n /**\n * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` if suitable for strict\n * equality comparisons, else `false`.\n */\n function isStrictComparable(value) {\n return value === value && !isObject(value);\n }\n\n /**\n * Merges the function metadata of `source` into `data`.\n *\n * Merging metadata reduces the number of wrappers required to invoke a function.\n * This is possible because methods like `_.bind`, `_.curry`, and `_.partial`\n * may be applied regardless of execution order. Methods like `_.ary` and `_.rearg`\n * augment function arguments, making the order in which they are executed important,\n * preventing the merging of metadata. However, we make an exception for a safe\n * common case where curried functions have `_.ary` and or `_.rearg` applied.\n *\n * @private\n * @param {Array} data The destination metadata.\n * @param {Array} source The source metadata.\n * @returns {Array} Returns `data`.\n */\n function mergeData(data, source) {\n var bitmask = data[1],\n srcBitmask = source[1],\n newBitmask = bitmask | srcBitmask,\n isCommon = newBitmask < ARY_FLAG;\n\n var isCombo =\n (srcBitmask == ARY_FLAG && bitmask == CURRY_FLAG) ||\n (srcBitmask == ARY_FLAG && bitmask == REARG_FLAG && data[7].length <= source[8]) ||\n (srcBitmask == (ARY_FLAG | REARG_FLAG) && bitmask == CURRY_FLAG);\n\n // Exit early if metadata can't be merged.\n if (!(isCommon || isCombo)) {\n return data;\n }\n // Use source `thisArg` if available.\n if (srcBitmask & BIND_FLAG) {\n data[2] = source[2];\n // Set when currying a bound function.\n newBitmask |= (bitmask & BIND_FLAG) ? 0 : CURRY_BOUND_FLAG;\n }\n // Compose partial arguments.\n var value = source[3];\n if (value) {\n var partials = data[3];\n data[3] = partials ? composeArgs(partials, value, source[4]) : arrayCopy(value);\n data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : arrayCopy(source[4]);\n }\n // Compose partial right arguments.\n value = source[5];\n if (value) {\n partials = data[5];\n data[5] = partials ? composeArgsRight(partials, value, source[6]) : arrayCopy(value);\n data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : arrayCopy(source[6]);\n }\n // Use source `argPos` if available.\n value = source[7];\n if (value) {\n data[7] = arrayCopy(value);\n }\n // Use source `ary` if it's smaller.\n if (srcBitmask & ARY_FLAG) {\n data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]);\n }\n // Use source `arity` if one is not provided.\n if (data[9] == null) {\n data[9] = source[9];\n }\n // Use source `func` and merge bitmasks.\n data[0] = source[0];\n data[1] = newBitmask;\n\n return data;\n }\n\n /**\n * Used by `_.defaultsDeep` to customize its `_.merge` use.\n *\n * @private\n * @param {*} objectValue The destination object property value.\n * @param {*} sourceValue The source object property value.\n * @returns {*} Returns the value to assign to the destination object.\n */\n function mergeDefaults(objectValue, sourceValue) {\n return objectValue === undefined ? sourceValue : merge(objectValue, sourceValue, mergeDefaults);\n }\n\n /**\n * A specialized version of `_.pick` which picks `object` properties specified\n * by `props`.\n *\n * @private\n * @param {Object} object The source object.\n * @param {string[]} props The property names to pick.\n * @returns {Object} Returns the new object.\n */\n function pickByArray(object, props) {\n object = toObject(object);\n\n var index = -1,\n length = props.length,\n result = {};\n\n while (++index < length) {\n var key = props[index];\n if (key in object) {\n result[key] = object[key];\n }\n }\n return result;\n }\n\n /**\n * A specialized version of `_.pick` which picks `object` properties `predicate`\n * returns truthy for.\n *\n * @private\n * @param {Object} object The source object.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Object} Returns the new object.\n */\n function pickByCallback(object, predicate) {\n var result = {};\n baseForIn(object, function(value, key, object) {\n if (predicate(value, key, object)) {\n result[key] = value;\n }\n });\n return result;\n }\n\n /**\n * Reorder `array` according to the specified indexes where the element at\n * the first index is assigned as the first element, the element at\n * the second index is assigned as the second element, and so on.\n *\n * @private\n * @param {Array} array The array to reorder.\n * @param {Array} indexes The arranged array indexes.\n * @returns {Array} Returns `array`.\n */\n function reorder(array, indexes) {\n var arrLength = array.length,\n length = nativeMin(indexes.length, arrLength),\n oldArray = arrayCopy(array);\n\n while (length--) {\n var index = indexes[length];\n array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined;\n }\n return array;\n }\n\n /**\n * Sets metadata for `func`.\n *\n * **Note:** If this function becomes hot, i.e. is invoked a lot in a short\n * period of time, it will trip its breaker and transition to an identity function\n * to avoid garbage collection pauses in V8. See [V8 issue 2070](https://code.google.com/p/v8/issues/detail?id=2070)\n * for more details.\n *\n * @private\n * @param {Function} func The function to associate metadata with.\n * @param {*} data The metadata.\n * @returns {Function} Returns `func`.\n */\n var setData = (function() {\n var count = 0,\n lastCalled = 0;\n\n return function(key, value) {\n var stamp = now(),\n remaining = HOT_SPAN - (stamp - lastCalled);\n\n lastCalled = stamp;\n if (remaining > 0) {\n if (++count >= HOT_COUNT) {\n return key;\n }\n } else {\n count = 0;\n }\n return baseSetData(key, value);\n };\n }());\n\n /**\n * A fallback implementation of `Object.keys` which creates an array of the\n * own enumerable property names of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\n function shimKeys(object) {\n var props = keysIn(object),\n propsLength = props.length,\n length = propsLength && object.length;\n\n var allowIndexes = !!length && isLength(length) &&\n (isArray(object) || isArguments(object));\n\n var index = -1,\n result = [];\n\n while (++index < propsLength) {\n var key = props[index];\n if ((allowIndexes && isIndex(key, length)) || hasOwnProperty.call(object, key)) {\n result.push(key);\n }\n }\n return result;\n }\n\n /**\n * Converts `value` to an array-like object if it's not one.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {Array|Object} Returns the array-like object.\n */\n function toIterable(value) {\n if (value == null) {\n return [];\n }\n if (!isArrayLike(value)) {\n return values(value);\n }\n return isObject(value) ? value : Object(value);\n }\n\n /**\n * Converts `value` to an object if it's not one.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {Object} Returns the object.\n */\n function toObject(value) {\n return isObject(value) ? value : Object(value);\n }\n\n /**\n * Converts `value` to property path array if it's not one.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {Array} Returns the property path array.\n */\n function toPath(value) {\n if (isArray(value)) {\n return value;\n }\n var result = [];\n baseToString(value).replace(rePropName, function(match, number, quote, string) {\n result.push(quote ? string.replace(reEscapeChar, '$1') : (number || match));\n });\n return result;\n }\n\n /**\n * Creates a clone of `wrapper`.\n *\n * @private\n * @param {Object} wrapper The wrapper to clone.\n * @returns {Object} Returns the cloned wrapper.\n */\n function wrapperClone(wrapper) {\n return wrapper instanceof LazyWrapper\n ? wrapper.clone()\n : new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__, arrayCopy(wrapper.__actions__));\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates an array of elements split into groups the length of `size`.\n * If `collection` can't be split evenly, the final chunk will be the remaining\n * elements.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to process.\n * @param {number} [size=1] The length of each chunk.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Array} Returns the new array containing chunks.\n * @example\n *\n * _.chunk(['a', 'b', 'c', 'd'], 2);\n * // => [['a', 'b'], ['c', 'd']]\n *\n * _.chunk(['a', 'b', 'c', 'd'], 3);\n * // => [['a', 'b', 'c'], ['d']]\n */\n function chunk(array, size, guard) {\n if (guard ? isIterateeCall(array, size, guard) : size == null) {\n size = 1;\n } else {\n size = nativeMax(nativeFloor(size) || 1, 1);\n }\n var index = 0,\n length = array ? array.length : 0,\n resIndex = -1,\n result = Array(nativeCeil(length / size));\n\n while (index < length) {\n result[++resIndex] = baseSlice(array, index, (index += size));\n }\n return result;\n }\n\n /**\n * Creates an array with all falsey values removed. The values `false`, `null`,\n * `0`, `\"\"`, `undefined`, and `NaN` are falsey.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to compact.\n * @returns {Array} Returns the new array of filtered values.\n * @example\n *\n * _.compact([0, 1, false, 2, '', 3]);\n * // => [1, 2, 3]\n */\n function compact(array) {\n var index = -1,\n length = array ? array.length : 0,\n resIndex = -1,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (value) {\n result[++resIndex] = value;\n }\n }\n return result;\n }\n\n /**\n * Creates an array of unique `array` values not included in the other\n * provided arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {...Array} [values] The arrays of values to exclude.\n * @returns {Array} Returns the new array of filtered values.\n * @example\n *\n * _.difference([1, 2, 3], [4, 2]);\n * // => [1, 3]\n */\n var difference = restParam(function(array, values) {\n return (isObjectLike(array) && isArrayLike(array))\n ? baseDifference(array, baseFlatten(values, false, true))\n : [];\n });\n\n /**\n * Creates a slice of `array` with `n` elements dropped from the beginning.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to drop.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.drop([1, 2, 3]);\n * // => [2, 3]\n *\n * _.drop([1, 2, 3], 2);\n * // => [3]\n *\n * _.drop([1, 2, 3], 5);\n * // => []\n *\n * _.drop([1, 2, 3], 0);\n * // => [1, 2, 3]\n */\n function drop(array, n, guard) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n if (guard ? isIterateeCall(array, n, guard) : n == null) {\n n = 1;\n }\n return baseSlice(array, n < 0 ? 0 : n);\n }\n\n /**\n * Creates a slice of `array` with `n` elements dropped from the end.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to drop.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.dropRight([1, 2, 3]);\n * // => [1, 2]\n *\n * _.dropRight([1, 2, 3], 2);\n * // => [1]\n *\n * _.dropRight([1, 2, 3], 5);\n * // => []\n *\n * _.dropRight([1, 2, 3], 0);\n * // => [1, 2, 3]\n */\n function dropRight(array, n, guard) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n if (guard ? isIterateeCall(array, n, guard) : n == null) {\n n = 1;\n }\n n = length - (+n || 0);\n return baseSlice(array, 0, n < 0 ? 0 : n);\n }\n\n /**\n * Creates a slice of `array` excluding elements dropped from the end.\n * Elements are dropped until `predicate` returns falsey. The predicate is\n * bound to `thisArg` and invoked with three arguments: (value, index, array).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that match the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.dropRightWhile([1, 2, 3], function(n) {\n * return n > 1;\n * });\n * // => [1]\n *\n * var users = [\n * { 'user': 'barney', 'active': true },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': false }\n * ];\n *\n * // using the `_.matches` callback shorthand\n * _.pluck(_.dropRightWhile(users, { 'user': 'pebbles', 'active': false }), 'user');\n * // => ['barney', 'fred']\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.pluck(_.dropRightWhile(users, 'active', false), 'user');\n * // => ['barney']\n *\n * // using the `_.property` callback shorthand\n * _.pluck(_.dropRightWhile(users, 'active'), 'user');\n * // => ['barney', 'fred', 'pebbles']\n */\n function dropRightWhile(array, predicate, thisArg) {\n return (array && array.length)\n ? baseWhile(array, getCallback(predicate, thisArg, 3), true, true)\n : [];\n }\n\n /**\n * Creates a slice of `array` excluding elements dropped from the beginning.\n * Elements are dropped until `predicate` returns falsey. The predicate is\n * bound to `thisArg` and invoked with three arguments: (value, index, array).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.dropWhile([1, 2, 3], function(n) {\n * return n < 3;\n * });\n * // => [3]\n *\n * var users = [\n * { 'user': 'barney', 'active': false },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': true }\n * ];\n *\n * // using the `_.matches` callback shorthand\n * _.pluck(_.dropWhile(users, { 'user': 'barney', 'active': false }), 'user');\n * // => ['fred', 'pebbles']\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.pluck(_.dropWhile(users, 'active', false), 'user');\n * // => ['pebbles']\n *\n * // using the `_.property` callback shorthand\n * _.pluck(_.dropWhile(users, 'active'), 'user');\n * // => ['barney', 'fred', 'pebbles']\n */\n function dropWhile(array, predicate, thisArg) {\n return (array && array.length)\n ? baseWhile(array, getCallback(predicate, thisArg, 3), true)\n : [];\n }\n\n /**\n * Fills elements of `array` with `value` from `start` up to, but not\n * including, `end`.\n *\n * **Note:** This method mutates `array`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to fill.\n * @param {*} value The value to fill `array` with.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns `array`.\n * @example\n *\n * var array = [1, 2, 3];\n *\n * _.fill(array, 'a');\n * console.log(array);\n * // => ['a', 'a', 'a']\n *\n * _.fill(Array(3), 2);\n * // => [2, 2, 2]\n *\n * _.fill([4, 6, 8], '*', 1, 2);\n * // => [4, '*', 8]\n */\n function fill(array, value, start, end) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n if (start && typeof start != 'number' && isIterateeCall(array, value, start)) {\n start = 0;\n end = length;\n }\n return baseFill(array, value, start, end);\n }\n\n /**\n * This method is like `_.find` except that it returns the index of the first\n * element `predicate` returns truthy for instead of the element itself.\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to search.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {number} Returns the index of the found element, else `-1`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'active': false },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': true }\n * ];\n *\n * _.findIndex(users, function(chr) {\n * return chr.user == 'barney';\n * });\n * // => 0\n *\n * // using the `_.matches` callback shorthand\n * _.findIndex(users, { 'user': 'fred', 'active': false });\n * // => 1\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.findIndex(users, 'active', false);\n * // => 0\n *\n * // using the `_.property` callback shorthand\n * _.findIndex(users, 'active');\n * // => 2\n */\n var findIndex = createFindIndex();\n\n /**\n * This method is like `_.findIndex` except that it iterates over elements\n * of `collection` from right to left.\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to search.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {number} Returns the index of the found element, else `-1`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'active': true },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': false }\n * ];\n *\n * _.findLastIndex(users, function(chr) {\n * return chr.user == 'pebbles';\n * });\n * // => 2\n *\n * // using the `_.matches` callback shorthand\n * _.findLastIndex(users, { 'user': 'barney', 'active': true });\n * // => 0\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.findLastIndex(users, 'active', false);\n * // => 2\n *\n * // using the `_.property` callback shorthand\n * _.findLastIndex(users, 'active');\n * // => 0\n */\n var findLastIndex = createFindIndex(true);\n\n /**\n * Gets the first element of `array`.\n *\n * @static\n * @memberOf _\n * @alias head\n * @category Array\n * @param {Array} array The array to query.\n * @returns {*} Returns the first element of `array`.\n * @example\n *\n * _.first([1, 2, 3]);\n * // => 1\n *\n * _.first([]);\n * // => undefined\n */\n function first(array) {\n return array ? array[0] : undefined;\n }\n\n /**\n * Flattens a nested array. If `isDeep` is `true` the array is recursively\n * flattened, otherwise it is only flattened a single level.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to flatten.\n * @param {boolean} [isDeep] Specify a deep flatten.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * _.flatten([1, [2, 3, [4]]]);\n * // => [1, 2, 3, [4]]\n *\n * // using `isDeep`\n * _.flatten([1, [2, 3, [4]]], true);\n * // => [1, 2, 3, 4]\n */\n function flatten(array, isDeep, guard) {\n var length = array ? array.length : 0;\n if (guard && isIterateeCall(array, isDeep, guard)) {\n isDeep = false;\n }\n return length ? baseFlatten(array, isDeep) : [];\n }\n\n /**\n * Recursively flattens a nested array.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to recursively flatten.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * _.flattenDeep([1, [2, 3, [4]]]);\n * // => [1, 2, 3, 4]\n */\n function flattenDeep(array) {\n var length = array ? array.length : 0;\n return length ? baseFlatten(array, true) : [];\n }\n\n /**\n * Gets the index at which the first occurrence of `value` is found in `array`\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)\n * for equality comparisons. If `fromIndex` is negative, it is used as the offset\n * from the end of `array`. If `array` is sorted providing `true` for `fromIndex`\n * performs a faster binary search.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to search.\n * @param {*} value The value to search for.\n * @param {boolean|number} [fromIndex=0] The index to search from or `true`\n * to perform a binary search on a sorted array.\n * @returns {number} Returns the index of the matched value, else `-1`.\n * @example\n *\n * _.indexOf([1, 2, 1, 2], 2);\n * // => 1\n *\n * // using `fromIndex`\n * _.indexOf([1, 2, 1, 2], 2, 2);\n * // => 3\n *\n * // performing a binary search\n * _.indexOf([1, 1, 2, 2], 2, true);\n * // => 2\n */\n function indexOf(array, value, fromIndex) {\n var length = array ? array.length : 0;\n if (!length) {\n return -1;\n }\n if (typeof fromIndex == 'number') {\n fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : fromIndex;\n } else if (fromIndex) {\n var index = binaryIndex(array, value);\n if (index < length &&\n (value === value ? (value === array[index]) : (array[index] !== array[index]))) {\n return index;\n }\n return -1;\n }\n return baseIndexOf(array, value, fromIndex || 0);\n }\n\n /**\n * Gets all but the last element of `array`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.initial([1, 2, 3]);\n * // => [1, 2]\n */\n function initial(array) {\n return dropRight(array, 1);\n }\n\n /**\n * Creates an array of unique values that are included in all of the provided\n * arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @returns {Array} Returns the new array of shared values.\n * @example\n * _.intersection([1, 2], [4, 2], [2, 1]);\n * // => [2]\n */\n var intersection = restParam(function(arrays) {\n var othLength = arrays.length,\n othIndex = othLength,\n caches = Array(length),\n indexOf = getIndexOf(),\n isCommon = indexOf == baseIndexOf,\n result = [];\n\n while (othIndex--) {\n var value = arrays[othIndex] = isArrayLike(value = arrays[othIndex]) ? value : [];\n caches[othIndex] = (isCommon && value.length >= 120) ? createCache(othIndex && value) : null;\n }\n var array = arrays[0],\n index = -1,\n length = array ? array.length : 0,\n seen = caches[0];\n\n outer:\n while (++index < length) {\n value = array[index];\n if ((seen ? cacheIndexOf(seen, value) : indexOf(result, value, 0)) < 0) {\n var othIndex = othLength;\n while (--othIndex) {\n var cache = caches[othIndex];\n if ((cache ? cacheIndexOf(cache, value) : indexOf(arrays[othIndex], value, 0)) < 0) {\n continue outer;\n }\n }\n if (seen) {\n seen.push(value);\n }\n result.push(value);\n }\n }\n return result;\n });\n\n /**\n * Gets the last element of `array`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @returns {*} Returns the last element of `array`.\n * @example\n *\n * _.last([1, 2, 3]);\n * // => 3\n */\n function last(array) {\n var length = array ? array.length : 0;\n return length ? array[length - 1] : undefined;\n }\n\n /**\n * This method is like `_.indexOf` except that it iterates over elements of\n * `array` from right to left.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to search.\n * @param {*} value The value to search for.\n * @param {boolean|number} [fromIndex=array.length-1] The index to search from\n * or `true` to perform a binary search on a sorted array.\n * @returns {number} Returns the index of the matched value, else `-1`.\n * @example\n *\n * _.lastIndexOf([1, 2, 1, 2], 2);\n * // => 3\n *\n * // using `fromIndex`\n * _.lastIndexOf([1, 2, 1, 2], 2, 2);\n * // => 1\n *\n * // performing a binary search\n * _.lastIndexOf([1, 1, 2, 2], 2, true);\n * // => 3\n */\n function lastIndexOf(array, value, fromIndex) {\n var length = array ? array.length : 0;\n if (!length) {\n return -1;\n }\n var index = length;\n if (typeof fromIndex == 'number') {\n index = (fromIndex < 0 ? nativeMax(length + fromIndex, 0) : nativeMin(fromIndex || 0, length - 1)) + 1;\n } else if (fromIndex) {\n index = binaryIndex(array, value, true) - 1;\n var other = array[index];\n if (value === value ? (value === other) : (other !== other)) {\n return index;\n }\n return -1;\n }\n if (value !== value) {\n return indexOfNaN(array, index, true);\n }\n while (index--) {\n if (array[index] === value) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * Removes all provided values from `array` using\n * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * **Note:** Unlike `_.without`, this method mutates `array`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to modify.\n * @param {...*} [values] The values to remove.\n * @returns {Array} Returns `array`.\n * @example\n *\n * var array = [1, 2, 3, 1, 2, 3];\n *\n * _.pull(array, 2, 3);\n * console.log(array);\n * // => [1, 1]\n */\n function pull() {\n var args = arguments,\n array = args[0];\n\n if (!(array && array.length)) {\n return array;\n }\n var index = 0,\n indexOf = getIndexOf(),\n length = args.length;\n\n while (++index < length) {\n var fromIndex = 0,\n value = args[index];\n\n while ((fromIndex = indexOf(array, value, fromIndex)) > -1) {\n splice.call(array, fromIndex, 1);\n }\n }\n return array;\n }\n\n /**\n * Removes elements from `array` corresponding to the given indexes and returns\n * an array of the removed elements. Indexes may be specified as an array of\n * indexes or as individual arguments.\n *\n * **Note:** Unlike `_.at`, this method mutates `array`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to modify.\n * @param {...(number|number[])} [indexes] The indexes of elements to remove,\n * specified as individual indexes or arrays of indexes.\n * @returns {Array} Returns the new array of removed elements.\n * @example\n *\n * var array = [5, 10, 15, 20];\n * var evens = _.pullAt(array, 1, 3);\n *\n * console.log(array);\n * // => [5, 15]\n *\n * console.log(evens);\n * // => [10, 20]\n */\n var pullAt = restParam(function(array, indexes) {\n indexes = baseFlatten(indexes);\n\n var result = baseAt(array, indexes);\n basePullAt(array, indexes.sort(baseCompareAscending));\n return result;\n });\n\n /**\n * Removes all elements from `array` that `predicate` returns truthy for\n * and returns an array of the removed elements. The predicate is bound to\n * `thisArg` and invoked with three arguments: (value, index, array).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * **Note:** Unlike `_.filter`, this method mutates `array`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to modify.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Array} Returns the new array of removed elements.\n * @example\n *\n * var array = [1, 2, 3, 4];\n * var evens = _.remove(array, function(n) {\n * return n % 2 == 0;\n * });\n *\n * console.log(array);\n * // => [1, 3]\n *\n * console.log(evens);\n * // => [2, 4]\n */\n function remove(array, predicate, thisArg) {\n var result = [];\n if (!(array && array.length)) {\n return result;\n }\n var index = -1,\n indexes = [],\n length = array.length;\n\n predicate = getCallback(predicate, thisArg, 3);\n while (++index < length) {\n var value = array[index];\n if (predicate(value, index, array)) {\n result.push(value);\n indexes.push(index);\n }\n }\n basePullAt(array, indexes);\n return result;\n }\n\n /**\n * Gets all but the first element of `array`.\n *\n * @static\n * @memberOf _\n * @alias tail\n * @category Array\n * @param {Array} array The array to query.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.rest([1, 2, 3]);\n * // => [2, 3]\n */\n function rest(array) {\n return drop(array, 1);\n }\n\n /**\n * Creates a slice of `array` from `start` up to, but not including, `end`.\n *\n * **Note:** This method is used instead of `Array#slice` to support node\n * lists in IE < 9 and to ensure dense arrays are returned.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\n function slice(array, start, end) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n if (end && typeof end != 'number' && isIterateeCall(array, start, end)) {\n start = 0;\n end = length;\n }\n return baseSlice(array, start, end);\n }\n\n /**\n * Uses a binary search to determine the lowest index at which `value` should\n * be inserted into `array` in order to maintain its sort order. If an iteratee\n * function is provided it is invoked for `value` and each element of `array`\n * to compute their sort ranking. The iteratee is bound to `thisArg` and\n * invoked with one argument; (value).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n * @example\n *\n * _.sortedIndex([30, 50], 40);\n * // => 1\n *\n * _.sortedIndex([4, 4, 5, 5], 5);\n * // => 2\n *\n * var dict = { 'data': { 'thirty': 30, 'forty': 40, 'fifty': 50 } };\n *\n * // using an iteratee function\n * _.sortedIndex(['thirty', 'fifty'], 'forty', function(word) {\n * return this.data[word];\n * }, dict);\n * // => 1\n *\n * // using the `_.property` callback shorthand\n * _.sortedIndex([{ 'x': 30 }, { 'x': 50 }], { 'x': 40 }, 'x');\n * // => 1\n */\n var sortedIndex = createSortedIndex();\n\n /**\n * This method is like `_.sortedIndex` except that it returns the highest\n * index at which `value` should be inserted into `array` in order to\n * maintain its sort order.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n * @example\n *\n * _.sortedLastIndex([4, 4, 5, 5], 5);\n * // => 4\n */\n var sortedLastIndex = createSortedIndex(true);\n\n /**\n * Creates a slice of `array` with `n` elements taken from the beginning.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to take.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.take([1, 2, 3]);\n * // => [1]\n *\n * _.take([1, 2, 3], 2);\n * // => [1, 2]\n *\n * _.take([1, 2, 3], 5);\n * // => [1, 2, 3]\n *\n * _.take([1, 2, 3], 0);\n * // => []\n */\n function take(array, n, guard) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n if (guard ? isIterateeCall(array, n, guard) : n == null) {\n n = 1;\n }\n return baseSlice(array, 0, n < 0 ? 0 : n);\n }\n\n /**\n * Creates a slice of `array` with `n` elements taken from the end.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to take.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.takeRight([1, 2, 3]);\n * // => [3]\n *\n * _.takeRight([1, 2, 3], 2);\n * // => [2, 3]\n *\n * _.takeRight([1, 2, 3], 5);\n * // => [1, 2, 3]\n *\n * _.takeRight([1, 2, 3], 0);\n * // => []\n */\n function takeRight(array, n, guard) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n if (guard ? isIterateeCall(array, n, guard) : n == null) {\n n = 1;\n }\n n = length - (+n || 0);\n return baseSlice(array, n < 0 ? 0 : n);\n }\n\n /**\n * Creates a slice of `array` with elements taken from the end. Elements are\n * taken until `predicate` returns falsey. The predicate is bound to `thisArg`\n * and invoked with three arguments: (value, index, array).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.takeRightWhile([1, 2, 3], function(n) {\n * return n > 1;\n * });\n * // => [2, 3]\n *\n * var users = [\n * { 'user': 'barney', 'active': true },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': false }\n * ];\n *\n * // using the `_.matches` callback shorthand\n * _.pluck(_.takeRightWhile(users, { 'user': 'pebbles', 'active': false }), 'user');\n * // => ['pebbles']\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.pluck(_.takeRightWhile(users, 'active', false), 'user');\n * // => ['fred', 'pebbles']\n *\n * // using the `_.property` callback shorthand\n * _.pluck(_.takeRightWhile(users, 'active'), 'user');\n * // => []\n */\n function takeRightWhile(array, predicate, thisArg) {\n return (array && array.length)\n ? baseWhile(array, getCallback(predicate, thisArg, 3), false, true)\n : [];\n }\n\n /**\n * Creates a slice of `array` with elements taken from the beginning. Elements\n * are taken until `predicate` returns falsey. The predicate is bound to\n * `thisArg` and invoked with three arguments: (value, index, array).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.takeWhile([1, 2, 3], function(n) {\n * return n < 3;\n * });\n * // => [1, 2]\n *\n * var users = [\n * { 'user': 'barney', 'active': false },\n * { 'user': 'fred', 'active': false},\n * { 'user': 'pebbles', 'active': true }\n * ];\n *\n * // using the `_.matches` callback shorthand\n * _.pluck(_.takeWhile(users, { 'user': 'barney', 'active': false }), 'user');\n * // => ['barney']\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.pluck(_.takeWhile(users, 'active', false), 'user');\n * // => ['barney', 'fred']\n *\n * // using the `_.property` callback shorthand\n * _.pluck(_.takeWhile(users, 'active'), 'user');\n * // => []\n */\n function takeWhile(array, predicate, thisArg) {\n return (array && array.length)\n ? baseWhile(array, getCallback(predicate, thisArg, 3))\n : [];\n }\n\n /**\n * Creates an array of unique values, in order, from all of the provided arrays\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @returns {Array} Returns the new array of combined values.\n * @example\n *\n * _.union([1, 2], [4, 2], [2, 1]);\n * // => [1, 2, 4]\n */\n var union = restParam(function(arrays) {\n return baseUniq(baseFlatten(arrays, false, true));\n });\n\n /**\n * Creates a duplicate-free version of an array, using\n * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)\n * for equality comparisons, in which only the first occurence of each element\n * is kept. Providing `true` for `isSorted` performs a faster search algorithm\n * for sorted arrays. If an iteratee function is provided it is invoked for\n * each element in the array to generate the criterion by which uniqueness\n * is computed. The `iteratee` is bound to `thisArg` and invoked with three\n * arguments: (value, index, array).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @alias unique\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {boolean} [isSorted] Specify the array is sorted.\n * @param {Function|Object|string} [iteratee] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Array} Returns the new duplicate-value-free array.\n * @example\n *\n * _.uniq([2, 1, 2]);\n * // => [2, 1]\n *\n * // using `isSorted`\n * _.uniq([1, 1, 2], true);\n * // => [1, 2]\n *\n * // using an iteratee function\n * _.uniq([1, 2.5, 1.5, 2], function(n) {\n * return this.floor(n);\n * }, Math);\n * // => [1, 2.5]\n *\n * // using the `_.property` callback shorthand\n * _.uniq([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x');\n * // => [{ 'x': 1 }, { 'x': 2 }]\n */\n function uniq(array, isSorted, iteratee, thisArg) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n if (isSorted != null && typeof isSorted != 'boolean') {\n thisArg = iteratee;\n iteratee = isIterateeCall(array, isSorted, thisArg) ? undefined : isSorted;\n isSorted = false;\n }\n var callback = getCallback();\n if (!(iteratee == null && callback === baseCallback)) {\n iteratee = callback(iteratee, thisArg, 3);\n }\n return (isSorted && getIndexOf() == baseIndexOf)\n ? sortedUniq(array, iteratee)\n : baseUniq(array, iteratee);\n }\n\n /**\n * This method is like `_.zip` except that it accepts an array of grouped\n * elements and creates an array regrouping the elements to their pre-zip\n * configuration.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array of grouped elements to process.\n * @returns {Array} Returns the new array of regrouped elements.\n * @example\n *\n * var zipped = _.zip(['fred', 'barney'], [30, 40], [true, false]);\n * // => [['fred', 30, true], ['barney', 40, false]]\n *\n * _.unzip(zipped);\n * // => [['fred', 'barney'], [30, 40], [true, false]]\n */\n function unzip(array) {\n if (!(array && array.length)) {\n return [];\n }\n var index = -1,\n length = 0;\n\n array = arrayFilter(array, function(group) {\n if (isArrayLike(group)) {\n length = nativeMax(group.length, length);\n return true;\n }\n });\n var result = Array(length);\n while (++index < length) {\n result[index] = arrayMap(array, baseProperty(index));\n }\n return result;\n }\n\n /**\n * This method is like `_.unzip` except that it accepts an iteratee to specify\n * how regrouped values should be combined. The `iteratee` is bound to `thisArg`\n * and invoked with four arguments: (accumulator, value, index, group).\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array of grouped elements to process.\n * @param {Function} [iteratee] The function to combine regrouped values.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Array} Returns the new array of regrouped elements.\n * @example\n *\n * var zipped = _.zip([1, 2], [10, 20], [100, 200]);\n * // => [[1, 10, 100], [2, 20, 200]]\n *\n * _.unzipWith(zipped, _.add);\n * // => [3, 30, 300]\n */\n function unzipWith(array, iteratee, thisArg) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n var result = unzip(array);\n if (iteratee == null) {\n return result;\n }\n iteratee = bindCallback(iteratee, thisArg, 4);\n return arrayMap(result, function(group) {\n return arrayReduce(group, iteratee, undefined, true);\n });\n }\n\n /**\n * Creates an array excluding all provided values using\n * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to filter.\n * @param {...*} [values] The values to exclude.\n * @returns {Array} Returns the new array of filtered values.\n * @example\n *\n * _.without([1, 2, 1, 3], 1, 2);\n * // => [3]\n */\n var without = restParam(function(array, values) {\n return isArrayLike(array)\n ? baseDifference(array, values)\n : [];\n });\n\n /**\n * Creates an array of unique values that is the [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference)\n * of the provided arrays.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @returns {Array} Returns the new array of values.\n * @example\n *\n * _.xor([1, 2], [4, 2]);\n * // => [1, 4]\n */\n function xor() {\n var index = -1,\n length = arguments.length;\n\n while (++index < length) {\n var array = arguments[index];\n if (isArrayLike(array)) {\n var result = result\n ? arrayPush(baseDifference(result, array), baseDifference(array, result))\n : array;\n }\n }\n return result ? baseUniq(result) : [];\n }\n\n /**\n * Creates an array of grouped elements, the first of which contains the first\n * elements of the given arrays, the second of which contains the second elements\n * of the given arrays, and so on.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {...Array} [arrays] The arrays to process.\n * @returns {Array} Returns the new array of grouped elements.\n * @example\n *\n * _.zip(['fred', 'barney'], [30, 40], [true, false]);\n * // => [['fred', 30, true], ['barney', 40, false]]\n */\n var zip = restParam(unzip);\n\n /**\n * The inverse of `_.pairs`; this method returns an object composed from arrays\n * of property names and values. Provide either a single two dimensional array,\n * e.g. `[[key1, value1], [key2, value2]]` or two arrays, one of property names\n * and one of corresponding values.\n *\n * @static\n * @memberOf _\n * @alias object\n * @category Array\n * @param {Array} props The property names.\n * @param {Array} [values=[]] The property values.\n * @returns {Object} Returns the new object.\n * @example\n *\n * _.zipObject([['fred', 30], ['barney', 40]]);\n * // => { 'fred': 30, 'barney': 40 }\n *\n * _.zipObject(['fred', 'barney'], [30, 40]);\n * // => { 'fred': 30, 'barney': 40 }\n */\n function zipObject(props, values) {\n var index = -1,\n length = props ? props.length : 0,\n result = {};\n\n if (length && !values && !isArray(props[0])) {\n values = [];\n }\n while (++index < length) {\n var key = props[index];\n if (values) {\n result[key] = values[index];\n } else if (key) {\n result[key[0]] = key[1];\n }\n }\n return result;\n }\n\n /**\n * This method is like `_.zip` except that it accepts an iteratee to specify\n * how grouped values should be combined. The `iteratee` is bound to `thisArg`\n * and invoked with four arguments: (accumulator, value, index, group).\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {...Array} [arrays] The arrays to process.\n * @param {Function} [iteratee] The function to combine grouped values.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Array} Returns the new array of grouped elements.\n * @example\n *\n * _.zipWith([1, 2], [10, 20], [100, 200], _.add);\n * // => [111, 222]\n */\n var zipWith = restParam(function(arrays) {\n var length = arrays.length,\n iteratee = length > 2 ? arrays[length - 2] : undefined,\n thisArg = length > 1 ? arrays[length - 1] : undefined;\n\n if (length > 2 && typeof iteratee == 'function') {\n length -= 2;\n } else {\n iteratee = (length > 1 && typeof thisArg == 'function') ? (--length, thisArg) : undefined;\n thisArg = undefined;\n }\n arrays.length = length;\n return unzipWith(arrays, iteratee, thisArg);\n });\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a `lodash` object that wraps `value` with explicit method\n * chaining enabled.\n *\n * @static\n * @memberOf _\n * @category Chain\n * @param {*} value The value to wrap.\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 },\n * { 'user': 'pebbles', 'age': 1 }\n * ];\n *\n * var youngest = _.chain(users)\n * .sortBy('age')\n * .map(function(chr) {\n * return chr.user + ' is ' + chr.age;\n * })\n * .first()\n * .value();\n * // => 'pebbles is 1'\n */\n function chain(value) {\n var result = lodash(value);\n result.__chain__ = true;\n return result;\n }\n\n /**\n * This method invokes `interceptor` and returns `value`. The interceptor is\n * bound to `thisArg` and invoked with one argument; (value). The purpose of\n * this method is to \"tap into\" a method chain in order to perform operations\n * on intermediate results within the chain.\n *\n * @static\n * @memberOf _\n * @category Chain\n * @param {*} value The value to provide to `interceptor`.\n * @param {Function} interceptor The function to invoke.\n * @param {*} [thisArg] The `this` binding of `interceptor`.\n * @returns {*} Returns `value`.\n * @example\n *\n * _([1, 2, 3])\n * .tap(function(array) {\n * array.pop();\n * })\n * .reverse()\n * .value();\n * // => [2, 1]\n */\n function tap(value, interceptor, thisArg) {\n interceptor.call(thisArg, value);\n return value;\n }\n\n /**\n * This method is like `_.tap` except that it returns the result of `interceptor`.\n *\n * @static\n * @memberOf _\n * @category Chain\n * @param {*} value The value to provide to `interceptor`.\n * @param {Function} interceptor The function to invoke.\n * @param {*} [thisArg] The `this` binding of `interceptor`.\n * @returns {*} Returns the result of `interceptor`.\n * @example\n *\n * _(' abc ')\n * .chain()\n * .trim()\n * .thru(function(value) {\n * return [value];\n * })\n * .value();\n * // => ['abc']\n */\n function thru(value, interceptor, thisArg) {\n return interceptor.call(thisArg, value);\n }\n\n /**\n * Enables explicit method chaining on the wrapper object.\n *\n * @name chain\n * @memberOf _\n * @category Chain\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 }\n * ];\n *\n * // without explicit chaining\n * _(users).first();\n * // => { 'user': 'barney', 'age': 36 }\n *\n * // with explicit chaining\n * _(users).chain()\n * .first()\n * .pick('user')\n * .value();\n * // => { 'user': 'barney' }\n */\n function wrapperChain() {\n return chain(this);\n }\n\n /**\n * Executes the chained sequence and returns the wrapped result.\n *\n * @name commit\n * @memberOf _\n * @category Chain\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var array = [1, 2];\n * var wrapped = _(array).push(3);\n *\n * console.log(array);\n * // => [1, 2]\n *\n * wrapped = wrapped.commit();\n * console.log(array);\n * // => [1, 2, 3]\n *\n * wrapped.last();\n * // => 3\n *\n * console.log(array);\n * // => [1, 2, 3]\n */\n function wrapperCommit() {\n return new LodashWrapper(this.value(), this.__chain__);\n }\n\n /**\n * Creates a new array joining a wrapped array with any additional arrays\n * and/or values.\n *\n * @name concat\n * @memberOf _\n * @category Chain\n * @param {...*} [values] The values to concatenate.\n * @returns {Array} Returns the new concatenated array.\n * @example\n *\n * var array = [1];\n * var wrapped = _(array).concat(2, [3], [[4]]);\n *\n * console.log(wrapped.value());\n * // => [1, 2, 3, [4]]\n *\n * console.log(array);\n * // => [1]\n */\n var wrapperConcat = restParam(function(values) {\n values = baseFlatten(values);\n return this.thru(function(array) {\n return arrayConcat(isArray(array) ? array : [toObject(array)], values);\n });\n });\n\n /**\n * Creates a clone of the chained sequence planting `value` as the wrapped value.\n *\n * @name plant\n * @memberOf _\n * @category Chain\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var array = [1, 2];\n * var wrapped = _(array).map(function(value) {\n * return Math.pow(value, 2);\n * });\n *\n * var other = [3, 4];\n * var otherWrapped = wrapped.plant(other);\n *\n * otherWrapped.value();\n * // => [9, 16]\n *\n * wrapped.value();\n * // => [1, 4]\n */\n function wrapperPlant(value) {\n var result,\n parent = this;\n\n while (parent instanceof baseLodash) {\n var clone = wrapperClone(parent);\n if (result) {\n previous.__wrapped__ = clone;\n } else {\n result = clone;\n }\n var previous = clone;\n parent = parent.__wrapped__;\n }\n previous.__wrapped__ = value;\n return result;\n }\n\n /**\n * Reverses the wrapped array so the first element becomes the last, the\n * second element becomes the second to last, and so on.\n *\n * **Note:** This method mutates the wrapped array.\n *\n * @name reverse\n * @memberOf _\n * @category Chain\n * @returns {Object} Returns the new reversed `lodash` wrapper instance.\n * @example\n *\n * var array = [1, 2, 3];\n *\n * _(array).reverse().value()\n * // => [3, 2, 1]\n *\n * console.log(array);\n * // => [3, 2, 1]\n */\n function wrapperReverse() {\n var value = this.__wrapped__;\n\n var interceptor = function(value) {\n return (wrapped && wrapped.__dir__ < 0) ? value : value.reverse();\n };\n if (value instanceof LazyWrapper) {\n var wrapped = value;\n if (this.__actions__.length) {\n wrapped = new LazyWrapper(this);\n }\n wrapped = wrapped.reverse();\n wrapped.__actions__.push({ 'func': thru, 'args': [interceptor], 'thisArg': undefined });\n return new LodashWrapper(wrapped, this.__chain__);\n }\n return this.thru(interceptor);\n }\n\n /**\n * Produces the result of coercing the unwrapped value to a string.\n *\n * @name toString\n * @memberOf _\n * @category Chain\n * @returns {string} Returns the coerced string value.\n * @example\n *\n * _([1, 2, 3]).toString();\n * // => '1,2,3'\n */\n function wrapperToString() {\n return (this.value() + '');\n }\n\n /**\n * Executes the chained sequence to extract the unwrapped value.\n *\n * @name value\n * @memberOf _\n * @alias run, toJSON, valueOf\n * @category Chain\n * @returns {*} Returns the resolved unwrapped value.\n * @example\n *\n * _([1, 2, 3]).value();\n * // => [1, 2, 3]\n */\n function wrapperValue() {\n return baseWrapperValue(this.__wrapped__, this.__actions__);\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates an array of elements corresponding to the given keys, or indexes,\n * of `collection`. Keys may be specified as individual arguments or as arrays\n * of keys.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {...(number|number[]|string|string[])} [props] The property names\n * or indexes of elements to pick, specified individually or in arrays.\n * @returns {Array} Returns the new array of picked elements.\n * @example\n *\n * _.at(['a', 'b', 'c'], [0, 2]);\n * // => ['a', 'c']\n *\n * _.at(['barney', 'fred', 'pebbles'], 0, 2);\n * // => ['barney', 'pebbles']\n */\n var at = restParam(function(collection, props) {\n return baseAt(collection, baseFlatten(props));\n });\n\n /**\n * Creates an object composed of keys generated from the results of running\n * each element of `collection` through `iteratee`. The corresponding value\n * of each key is the number of times the key was returned by `iteratee`.\n * The `iteratee` is bound to `thisArg` and invoked with three arguments:\n * (value, index|key, collection).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns the composed aggregate object.\n * @example\n *\n * _.countBy([4.3, 6.1, 6.4], function(n) {\n * return Math.floor(n);\n * });\n * // => { '4': 1, '6': 2 }\n *\n * _.countBy([4.3, 6.1, 6.4], function(n) {\n * return this.floor(n);\n * }, Math);\n * // => { '4': 1, '6': 2 }\n *\n * _.countBy(['one', 'two', 'three'], 'length');\n * // => { '3': 2, '5': 1 }\n */\n var countBy = createAggregator(function(result, value, key) {\n hasOwnProperty.call(result, key) ? ++result[key] : (result[key] = 1);\n });\n\n /**\n * Checks if `predicate` returns truthy for **all** elements of `collection`.\n * The predicate is bound to `thisArg` and invoked with three arguments:\n * (value, index|key, collection).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @alias all\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {boolean} Returns `true` if all elements pass the predicate check,\n * else `false`.\n * @example\n *\n * _.every([true, 1, null, 'yes'], Boolean);\n * // => false\n *\n * var users = [\n * { 'user': 'barney', 'active': false },\n * { 'user': 'fred', 'active': false }\n * ];\n *\n * // using the `_.matches` callback shorthand\n * _.every(users, { 'user': 'barney', 'active': false });\n * // => false\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.every(users, 'active', false);\n * // => true\n *\n * // using the `_.property` callback shorthand\n * _.every(users, 'active');\n * // => false\n */\n function every(collection, predicate, thisArg) {\n var func = isArray(collection) ? arrayEvery : baseEvery;\n if (thisArg && isIterateeCall(collection, predicate, thisArg)) {\n predicate = undefined;\n }\n if (typeof predicate != 'function' || thisArg !== undefined) {\n predicate = getCallback(predicate, thisArg, 3);\n }\n return func(collection, predicate);\n }\n\n /**\n * Iterates over elements of `collection`, returning an array of all elements\n * `predicate` returns truthy for. The predicate is bound to `thisArg` and\n * invoked with three arguments: (value, index|key, collection).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @alias select\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Array} Returns the new filtered array.\n * @example\n *\n * _.filter([4, 5, 6], function(n) {\n * return n % 2 == 0;\n * });\n * // => [4, 6]\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': true },\n * { 'user': 'fred', 'age': 40, 'active': false }\n * ];\n *\n * // using the `_.matches` callback shorthand\n * _.pluck(_.filter(users, { 'age': 36, 'active': true }), 'user');\n * // => ['barney']\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.pluck(_.filter(users, 'active', false), 'user');\n * // => ['fred']\n *\n * // using the `_.property` callback shorthand\n * _.pluck(_.filter(users, 'active'), 'user');\n * // => ['barney']\n */\n function filter(collection, predicate, thisArg) {\n var func = isArray(collection) ? arrayFilter : baseFilter;\n predicate = getCallback(predicate, thisArg, 3);\n return func(collection, predicate);\n }\n\n /**\n * Iterates over elements of `collection`, returning the first element\n * `predicate` returns truthy for. The predicate is bound to `thisArg` and\n * invoked with three arguments: (value, index|key, collection).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @alias detect\n * @category Collection\n * @param {Array|Object|string} collection The collection to search.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {*} Returns the matched element, else `undefined`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': true },\n * { 'user': 'fred', 'age': 40, 'active': false },\n * { 'user': 'pebbles', 'age': 1, 'active': true }\n * ];\n *\n * _.result(_.find(users, function(chr) {\n * return chr.age < 40;\n * }), 'user');\n * // => 'barney'\n *\n * // using the `_.matches` callback shorthand\n * _.result(_.find(users, { 'age': 1, 'active': true }), 'user');\n * // => 'pebbles'\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.result(_.find(users, 'active', false), 'user');\n * // => 'fred'\n *\n * // using the `_.property` callback shorthand\n * _.result(_.find(users, 'active'), 'user');\n * // => 'barney'\n */\n var find = createFind(baseEach);\n\n /**\n * This method is like `_.find` except that it iterates over elements of\n * `collection` from right to left.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to search.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {*} Returns the matched element, else `undefined`.\n * @example\n *\n * _.findLast([1, 2, 3, 4], function(n) {\n * return n % 2 == 1;\n * });\n * // => 3\n */\n var findLast = createFind(baseEachRight, true);\n\n /**\n * Performs a deep comparison between each element in `collection` and the\n * source object, returning the first element that has equivalent property\n * values.\n *\n * **Note:** This method supports comparing arrays, booleans, `Date` objects,\n * numbers, `Object` objects, regexes, and strings. Objects are compared by\n * their own, not inherited, enumerable properties. For comparing a single\n * own or inherited property value see `_.matchesProperty`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to search.\n * @param {Object} source The object of property values to match.\n * @returns {*} Returns the matched element, else `undefined`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': true },\n * { 'user': 'fred', 'age': 40, 'active': false }\n * ];\n *\n * _.result(_.findWhere(users, { 'age': 36, 'active': true }), 'user');\n * // => 'barney'\n *\n * _.result(_.findWhere(users, { 'age': 40, 'active': false }), 'user');\n * // => 'fred'\n */\n function findWhere(collection, source) {\n return find(collection, baseMatches(source));\n }\n\n /**\n * Iterates over elements of `collection` invoking `iteratee` for each element.\n * The `iteratee` is bound to `thisArg` and invoked with three arguments:\n * (value, index|key, collection). Iteratee functions may exit iteration early\n * by explicitly returning `false`.\n *\n * **Note:** As with other \"Collections\" methods, objects with a \"length\" property\n * are iterated like arrays. To avoid this behavior `_.forIn` or `_.forOwn`\n * may be used for object iteration.\n *\n * @static\n * @memberOf _\n * @alias each\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Array|Object|string} Returns `collection`.\n * @example\n *\n * _([1, 2]).forEach(function(n) {\n * console.log(n);\n * }).value();\n * // => logs each value from left to right and returns the array\n *\n * _.forEach({ 'a': 1, 'b': 2 }, function(n, key) {\n * console.log(n, key);\n * });\n * // => logs each value-key pair and returns the object (iteration order is not guaranteed)\n */\n var forEach = createForEach(arrayEach, baseEach);\n\n /**\n * This method is like `_.forEach` except that it iterates over elements of\n * `collection` from right to left.\n *\n * @static\n * @memberOf _\n * @alias eachRight\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Array|Object|string} Returns `collection`.\n * @example\n *\n * _([1, 2]).forEachRight(function(n) {\n * console.log(n);\n * }).value();\n * // => logs each value from right to left and returns the array\n */\n var forEachRight = createForEach(arrayEachRight, baseEachRight);\n\n /**\n * Creates an object composed of keys generated from the results of running\n * each element of `collection` through `iteratee`. The corresponding value\n * of each key is an array of the elements responsible for generating the key.\n * The `iteratee` is bound to `thisArg` and invoked with three arguments:\n * (value, index|key, collection).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns the composed aggregate object.\n * @example\n *\n * _.groupBy([4.2, 6.1, 6.4], function(n) {\n * return Math.floor(n);\n * });\n * // => { '4': [4.2], '6': [6.1, 6.4] }\n *\n * _.groupBy([4.2, 6.1, 6.4], function(n) {\n * return this.floor(n);\n * }, Math);\n * // => { '4': [4.2], '6': [6.1, 6.4] }\n *\n * // using the `_.property` callback shorthand\n * _.groupBy(['one', 'two', 'three'], 'length');\n * // => { '3': ['one', 'two'], '5': ['three'] }\n */\n var groupBy = createAggregator(function(result, value, key) {\n if (hasOwnProperty.call(result, key)) {\n result[key].push(value);\n } else {\n result[key] = [value];\n }\n });\n\n /**\n * Checks if `value` is in `collection` using\n * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)\n * for equality comparisons. If `fromIndex` is negative, it is used as the offset\n * from the end of `collection`.\n *\n * @static\n * @memberOf _\n * @alias contains, include\n * @category Collection\n * @param {Array|Object|string} collection The collection to search.\n * @param {*} target The value to search for.\n * @param {number} [fromIndex=0] The index to search from.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.reduce`.\n * @returns {boolean} Returns `true` if a matching element is found, else `false`.\n * @example\n *\n * _.includes([1, 2, 3], 1);\n * // => true\n *\n * _.includes([1, 2, 3], 1, 2);\n * // => false\n *\n * _.includes({ 'user': 'fred', 'age': 40 }, 'fred');\n * // => true\n *\n * _.includes('pebbles', 'eb');\n * // => true\n */\n function includes(collection, target, fromIndex, guard) {\n var length = collection ? getLength(collection) : 0;\n if (!isLength(length)) {\n collection = values(collection);\n length = collection.length;\n }\n if (typeof fromIndex != 'number' || (guard && isIterateeCall(target, fromIndex, guard))) {\n fromIndex = 0;\n } else {\n fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : (fromIndex || 0);\n }\n return (typeof collection == 'string' || !isArray(collection) && isString(collection))\n ? (fromIndex <= length && collection.indexOf(target, fromIndex) > -1)\n : (!!length && getIndexOf(collection, target, fromIndex) > -1);\n }\n\n /**\n * Creates an object composed of keys generated from the results of running\n * each element of `collection` through `iteratee`. The corresponding value\n * of each key is the last element responsible for generating the key. The\n * iteratee function is bound to `thisArg` and invoked with three arguments:\n * (value, index|key, collection).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns the composed aggregate object.\n * @example\n *\n * var keyData = [\n * { 'dir': 'left', 'code': 97 },\n * { 'dir': 'right', 'code': 100 }\n * ];\n *\n * _.indexBy(keyData, 'dir');\n * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } }\n *\n * _.indexBy(keyData, function(object) {\n * return String.fromCharCode(object.code);\n * });\n * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }\n *\n * _.indexBy(keyData, function(object) {\n * return this.fromCharCode(object.code);\n * }, String);\n * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }\n */\n var indexBy = createAggregator(function(result, value, key) {\n result[key] = value;\n });\n\n /**\n * Invokes the method at `path` of each element in `collection`, returning\n * an array of the results of each invoked method. Any additional arguments\n * are provided to each invoked method. If `methodName` is a function it is\n * invoked for, and `this` bound to, each element in `collection`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Array|Function|string} path The path of the method to invoke or\n * the function invoked per iteration.\n * @param {...*} [args] The arguments to invoke the method with.\n * @returns {Array} Returns the array of results.\n * @example\n *\n * _.invoke([[5, 1, 7], [3, 2, 1]], 'sort');\n * // => [[1, 5, 7], [1, 2, 3]]\n *\n * _.invoke([123, 456], String.prototype.split, '');\n * // => [['1', '2', '3'], ['4', '5', '6']]\n */\n var invoke = restParam(function(collection, path, args) {\n var index = -1,\n isFunc = typeof path == 'function',\n isProp = isKey(path),\n result = isArrayLike(collection) ? Array(collection.length) : [];\n\n baseEach(collection, function(value) {\n var func = isFunc ? path : ((isProp && value != null) ? value[path] : undefined);\n result[++index] = func ? func.apply(value, args) : invokePath(value, path, args);\n });\n return result;\n });\n\n /**\n * Creates an array of values by running each element in `collection` through\n * `iteratee`. The `iteratee` is bound to `thisArg` and invoked with three\n * arguments: (value, index|key, collection).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * Many lodash methods are guarded to work as iteratees for methods like\n * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.\n *\n * The guarded methods are:\n * `ary`, `callback`, `chunk`, `clone`, `create`, `curry`, `curryRight`,\n * `drop`, `dropRight`, `every`, `fill`, `flatten`, `invert`, `max`, `min`,\n * `parseInt`, `slice`, `sortBy`, `take`, `takeRight`, `template`, `trim`,\n * `trimLeft`, `trimRight`, `trunc`, `random`, `range`, `sample`, `some`,\n * `sum`, `uniq`, and `words`\n *\n * @static\n * @memberOf _\n * @alias collect\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Array} Returns the new mapped array.\n * @example\n *\n * function timesThree(n) {\n * return n * 3;\n * }\n *\n * _.map([1, 2], timesThree);\n * // => [3, 6]\n *\n * _.map({ 'a': 1, 'b': 2 }, timesThree);\n * // => [3, 6] (iteration order is not guaranteed)\n *\n * var users = [\n * { 'user': 'barney' },\n * { 'user': 'fred' }\n * ];\n *\n * // using the `_.property` callback shorthand\n * _.map(users, 'user');\n * // => ['barney', 'fred']\n */\n function map(collection, iteratee, thisArg) {\n var func = isArray(collection) ? arrayMap : baseMap;\n iteratee = getCallback(iteratee, thisArg, 3);\n return func(collection, iteratee);\n }\n\n /**\n * Creates an array of elements split into two groups, the first of which\n * contains elements `predicate` returns truthy for, while the second of which\n * contains elements `predicate` returns falsey for. The predicate is bound\n * to `thisArg` and invoked with three arguments: (value, index|key, collection).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Array} Returns the array of grouped elements.\n * @example\n *\n * _.partition([1, 2, 3], function(n) {\n * return n % 2;\n * });\n * // => [[1, 3], [2]]\n *\n * _.partition([1.2, 2.3, 3.4], function(n) {\n * return this.floor(n) % 2;\n * }, Math);\n * // => [[1.2, 3.4], [2.3]]\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': false },\n * { 'user': 'fred', 'age': 40, 'active': true },\n * { 'user': 'pebbles', 'age': 1, 'active': false }\n * ];\n *\n * var mapper = function(array) {\n * return _.pluck(array, 'user');\n * };\n *\n * // using the `_.matches` callback shorthand\n * _.map(_.partition(users, { 'age': 1, 'active': false }), mapper);\n * // => [['pebbles'], ['barney', 'fred']]\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.map(_.partition(users, 'active', false), mapper);\n * // => [['barney', 'pebbles'], ['fred']]\n *\n * // using the `_.property` callback shorthand\n * _.map(_.partition(users, 'active'), mapper);\n * // => [['fred'], ['barney', 'pebbles']]\n */\n var partition = createAggregator(function(result, value, key) {\n result[key ? 0 : 1].push(value);\n }, function() { return [[], []]; });\n\n /**\n * Gets the property value of `path` from all elements in `collection`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Array|string} path The path of the property to pluck.\n * @returns {Array} Returns the property values.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 }\n * ];\n *\n * _.pluck(users, 'user');\n * // => ['barney', 'fred']\n *\n * var userIndex = _.indexBy(users, 'user');\n * _.pluck(userIndex, 'age');\n * // => [36, 40] (iteration order is not guaranteed)\n */\n function pluck(collection, path) {\n return map(collection, property(path));\n }\n\n /**\n * Reduces `collection` to a value which is the accumulated result of running\n * each element in `collection` through `iteratee`, where each successive\n * invocation is supplied the return value of the previous. If `accumulator`\n * is not provided the first element of `collection` is used as the initial\n * value. The `iteratee` is bound to `thisArg` and invoked with four arguments:\n * (accumulator, value, index|key, collection).\n *\n * Many lodash methods are guarded to work as iteratees for methods like\n * `_.reduce`, `_.reduceRight`, and `_.transform`.\n *\n * The guarded methods are:\n * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `sortByAll`,\n * and `sortByOrder`\n *\n * @static\n * @memberOf _\n * @alias foldl, inject\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [accumulator] The initial value.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {*} Returns the accumulated value.\n * @example\n *\n * _.reduce([1, 2], function(total, n) {\n * return total + n;\n * });\n * // => 3\n *\n * _.reduce({ 'a': 1, 'b': 2 }, function(result, n, key) {\n * result[key] = n * 3;\n * return result;\n * }, {});\n * // => { 'a': 3, 'b': 6 } (iteration order is not guaranteed)\n */\n var reduce = createReduce(arrayReduce, baseEach);\n\n /**\n * This method is like `_.reduce` except that it iterates over elements of\n * `collection` from right to left.\n *\n * @static\n * @memberOf _\n * @alias foldr\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [accumulator] The initial value.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {*} Returns the accumulated value.\n * @example\n *\n * var array = [[0, 1], [2, 3], [4, 5]];\n *\n * _.reduceRight(array, function(flattened, other) {\n * return flattened.concat(other);\n * }, []);\n * // => [4, 5, 2, 3, 0, 1]\n */\n var reduceRight = createReduce(arrayReduceRight, baseEachRight);\n\n /**\n * The opposite of `_.filter`; this method returns the elements of `collection`\n * that `predicate` does **not** return truthy for.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Array} Returns the new filtered array.\n * @example\n *\n * _.reject([1, 2, 3, 4], function(n) {\n * return n % 2 == 0;\n * });\n * // => [1, 3]\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': false },\n * { 'user': 'fred', 'age': 40, 'active': true }\n * ];\n *\n * // using the `_.matches` callback shorthand\n * _.pluck(_.reject(users, { 'age': 40, 'active': true }), 'user');\n * // => ['barney']\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.pluck(_.reject(users, 'active', false), 'user');\n * // => ['fred']\n *\n * // using the `_.property` callback shorthand\n * _.pluck(_.reject(users, 'active'), 'user');\n * // => ['barney']\n */\n function reject(collection, predicate, thisArg) {\n var func = isArray(collection) ? arrayFilter : baseFilter;\n predicate = getCallback(predicate, thisArg, 3);\n return func(collection, function(value, index, collection) {\n return !predicate(value, index, collection);\n });\n }\n\n /**\n * Gets a random element or `n` random elements from a collection.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to sample.\n * @param {number} [n] The number of elements to sample.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {*} Returns the random sample(s).\n * @example\n *\n * _.sample([1, 2, 3, 4]);\n * // => 2\n *\n * _.sample([1, 2, 3, 4], 2);\n * // => [3, 1]\n */\n function sample(collection, n, guard) {\n if (guard ? isIterateeCall(collection, n, guard) : n == null) {\n collection = toIterable(collection);\n var length = collection.length;\n return length > 0 ? collection[baseRandom(0, length - 1)] : undefined;\n }\n var index = -1,\n result = toArray(collection),\n length = result.length,\n lastIndex = length - 1;\n\n n = nativeMin(n < 0 ? 0 : (+n || 0), length);\n while (++index < n) {\n var rand = baseRandom(index, lastIndex),\n value = result[rand];\n\n result[rand] = result[index];\n result[index] = value;\n }\n result.length = n;\n return result;\n }\n\n /**\n * Creates an array of shuffled values, using a version of the\n * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle).\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to shuffle.\n * @returns {Array} Returns the new shuffled array.\n * @example\n *\n * _.shuffle([1, 2, 3, 4]);\n * // => [4, 1, 3, 2]\n */\n function shuffle(collection) {\n return sample(collection, POSITIVE_INFINITY);\n }\n\n /**\n * Gets the size of `collection` by returning its length for array-like\n * values or the number of own enumerable properties for objects.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to inspect.\n * @returns {number} Returns the size of `collection`.\n * @example\n *\n * _.size([1, 2, 3]);\n * // => 3\n *\n * _.size({ 'a': 1, 'b': 2 });\n * // => 2\n *\n * _.size('pebbles');\n * // => 7\n */\n function size(collection) {\n var length = collection ? getLength(collection) : 0;\n return isLength(length) ? length : keys(collection).length;\n }\n\n /**\n * Checks if `predicate` returns truthy for **any** element of `collection`.\n * The function returns as soon as it finds a passing value and does not iterate\n * over the entire collection. The predicate is bound to `thisArg` and invoked\n * with three arguments: (value, index|key, collection).\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @alias any\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {boolean} Returns `true` if any element passes the predicate check,\n * else `false`.\n * @example\n *\n * _.some([null, 0, 'yes', false], Boolean);\n * // => true\n *\n * var users = [\n * { 'user': 'barney', 'active': true },\n * { 'user': 'fred', 'active': false }\n * ];\n *\n * // using the `_.matches` callback shorthand\n * _.some(users, { 'user': 'barney', 'active': false });\n * // => false\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.some(users, 'active', false);\n * // => true\n *\n * // using the `_.property` callback shorthand\n * _.some(users, 'active');\n * // => true\n */\n function some(collection, predicate, thisArg) {\n var func = isArray(collection) ? arraySome : baseSome;\n if (thisArg && isIterateeCall(collection, predicate, thisArg)) {\n predicate = undefined;\n }\n if (typeof predicate != 'function' || thisArg !== undefined) {\n predicate = getCallback(predicate, thisArg, 3);\n }\n return func(collection, predicate);\n }\n\n /**\n * Creates an array of elements, sorted in ascending order by the results of\n * running each element in a collection through `iteratee`. This method performs\n * a stable sort, that is, it preserves the original sort order of equal elements.\n * The `iteratee` is bound to `thisArg` and invoked with three arguments:\n * (value, index|key, collection).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Array} Returns the new sorted array.\n * @example\n *\n * _.sortBy([1, 2, 3], function(n) {\n * return Math.sin(n);\n * });\n * // => [3, 1, 2]\n *\n * _.sortBy([1, 2, 3], function(n) {\n * return this.sin(n);\n * }, Math);\n * // => [3, 1, 2]\n *\n * var users = [\n * { 'user': 'fred' },\n * { 'user': 'pebbles' },\n * { 'user': 'barney' }\n * ];\n *\n * // using the `_.property` callback shorthand\n * _.pluck(_.sortBy(users, 'user'), 'user');\n * // => ['barney', 'fred', 'pebbles']\n */\n function sortBy(collection, iteratee, thisArg) {\n if (collection == null) {\n return [];\n }\n if (thisArg && isIterateeCall(collection, iteratee, thisArg)) {\n iteratee = undefined;\n }\n var index = -1;\n iteratee = getCallback(iteratee, thisArg, 3);\n\n var result = baseMap(collection, function(value, key, collection) {\n return { 'criteria': iteratee(value, key, collection), 'index': ++index, 'value': value };\n });\n return baseSortBy(result, compareAscending);\n }\n\n /**\n * This method is like `_.sortBy` except that it can sort by multiple iteratees\n * or property names.\n *\n * If a property name is provided for an iteratee the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If an object is provided for an iteratee the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {...(Function|Function[]|Object|Object[]|string|string[])} iteratees\n * The iteratees to sort by, specified as individual values or arrays of values.\n * @returns {Array} Returns the new sorted array.\n * @example\n *\n * var users = [\n * { 'user': 'fred', 'age': 48 },\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 42 },\n * { 'user': 'barney', 'age': 34 }\n * ];\n *\n * _.map(_.sortByAll(users, ['user', 'age']), _.values);\n * // => [['barney', 34], ['barney', 36], ['fred', 42], ['fred', 48]]\n *\n * _.map(_.sortByAll(users, 'user', function(chr) {\n * return Math.floor(chr.age / 10);\n * }), _.values);\n * // => [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]]\n */\n var sortByAll = restParam(function(collection, iteratees) {\n if (collection == null) {\n return [];\n }\n var guard = iteratees[2];\n if (guard && isIterateeCall(iteratees[0], iteratees[1], guard)) {\n iteratees.length = 1;\n }\n return baseSortByOrder(collection, baseFlatten(iteratees), []);\n });\n\n /**\n * This method is like `_.sortByAll` except that it allows specifying the\n * sort orders of the iteratees to sort by. If `orders` is unspecified, all\n * values are sorted in ascending order. Otherwise, a value is sorted in\n * ascending order if its corresponding order is \"asc\", and descending if \"desc\".\n *\n * If a property name is provided for an iteratee the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If an object is provided for an iteratee the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by.\n * @param {boolean[]} [orders] The sort orders of `iteratees`.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.reduce`.\n * @returns {Array} Returns the new sorted array.\n * @example\n *\n * var users = [\n * { 'user': 'fred', 'age': 48 },\n * { 'user': 'barney', 'age': 34 },\n * { 'user': 'fred', 'age': 42 },\n * { 'user': 'barney', 'age': 36 }\n * ];\n *\n * // sort by `user` in ascending order and by `age` in descending order\n * _.map(_.sortByOrder(users, ['user', 'age'], ['asc', 'desc']), _.values);\n * // => [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]]\n */\n function sortByOrder(collection, iteratees, orders, guard) {\n if (collection == null) {\n return [];\n }\n if (guard && isIterateeCall(iteratees, orders, guard)) {\n orders = undefined;\n }\n if (!isArray(iteratees)) {\n iteratees = iteratees == null ? [] : [iteratees];\n }\n if (!isArray(orders)) {\n orders = orders == null ? [] : [orders];\n }\n return baseSortByOrder(collection, iteratees, orders);\n }\n\n /**\n * Performs a deep comparison between each element in `collection` and the\n * source object, returning an array of all elements that have equivalent\n * property values.\n *\n * **Note:** This method supports comparing arrays, booleans, `Date` objects,\n * numbers, `Object` objects, regexes, and strings. Objects are compared by\n * their own, not inherited, enumerable properties. For comparing a single\n * own or inherited property value see `_.matchesProperty`.\n *\n * @static\n * @memberOf _\n * @category Collection\n * @param {Array|Object|string} collection The collection to search.\n * @param {Object} source The object of property values to match.\n * @returns {Array} Returns the new filtered array.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': false, 'pets': ['hoppy'] },\n * { 'user': 'fred', 'age': 40, 'active': true, 'pets': ['baby puss', 'dino'] }\n * ];\n *\n * _.pluck(_.where(users, { 'age': 36, 'active': false }), 'user');\n * // => ['barney']\n *\n * _.pluck(_.where(users, { 'pets': ['dino'] }), 'user');\n * // => ['fred']\n */\n function where(collection, source) {\n return filter(collection, baseMatches(source));\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Gets the number of milliseconds that have elapsed since the Unix epoch\n * (1 January 1970 00:00:00 UTC).\n *\n * @static\n * @memberOf _\n * @category Date\n * @example\n *\n * _.defer(function(stamp) {\n * console.log(_.now() - stamp);\n * }, _.now());\n * // => logs the number of milliseconds it took for the deferred function to be invoked\n */\n var now = nativeNow || function() {\n return new Date().getTime();\n };\n\n /*------------------------------------------------------------------------*/\n\n /**\n * The opposite of `_.before`; this method creates a function that invokes\n * `func` once it is called `n` or more times.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {number} n The number of calls before `func` is invoked.\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new restricted function.\n * @example\n *\n * var saves = ['profile', 'settings'];\n *\n * var done = _.after(saves.length, function() {\n * console.log('done saving!');\n * });\n *\n * _.forEach(saves, function(type) {\n * asyncSave({ 'type': type, 'complete': done });\n * });\n * // => logs 'done saving!' after the two async saves have completed\n */\n function after(n, func) {\n if (typeof func != 'function') {\n if (typeof n == 'function') {\n var temp = n;\n n = func;\n func = temp;\n } else {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n }\n n = nativeIsFinite(n = +n) ? n : 0;\n return function() {\n if (--n < 1) {\n return func.apply(this, arguments);\n }\n };\n }\n\n /**\n * Creates a function that accepts up to `n` arguments ignoring any\n * additional arguments.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to cap arguments for.\n * @param {number} [n=func.length] The arity cap.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Function} Returns the new function.\n * @example\n *\n * _.map(['6', '8', '10'], _.ary(parseInt, 1));\n * // => [6, 8, 10]\n */\n function ary(func, n, guard) {\n if (guard && isIterateeCall(func, n, guard)) {\n n = undefined;\n }\n n = (func && n == null) ? func.length : nativeMax(+n || 0, 0);\n return createWrapper(func, ARY_FLAG, undefined, undefined, undefined, undefined, n);\n }\n\n /**\n * Creates a function that invokes `func`, with the `this` binding and arguments\n * of the created function, while it is called less than `n` times. Subsequent\n * calls to the created function return the result of the last `func` invocation.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {number} n The number of calls at which `func` is no longer invoked.\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new restricted function.\n * @example\n *\n * jQuery('#add').on('click', _.before(5, addContactToList));\n * // => allows adding up to 4 contacts to the list\n */\n function before(n, func) {\n var result;\n if (typeof func != 'function') {\n if (typeof n == 'function') {\n var temp = n;\n n = func;\n func = temp;\n } else {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n }\n return function() {\n if (--n > 0) {\n result = func.apply(this, arguments);\n }\n if (n <= 1) {\n func = undefined;\n }\n return result;\n };\n }\n\n /**\n * Creates a function that invokes `func` with the `this` binding of `thisArg`\n * and prepends any additional `_.bind` arguments to those provided to the\n * bound function.\n *\n * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds,\n * may be used as a placeholder for partially applied arguments.\n *\n * **Note:** Unlike native `Function#bind` this method does not set the \"length\"\n * property of bound functions.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to bind.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {...*} [partials] The arguments to be partially applied.\n * @returns {Function} Returns the new bound function.\n * @example\n *\n * var greet = function(greeting, punctuation) {\n * return greeting + ' ' + this.user + punctuation;\n * };\n *\n * var object = { 'user': 'fred' };\n *\n * var bound = _.bind(greet, object, 'hi');\n * bound('!');\n * // => 'hi fred!'\n *\n * // using placeholders\n * var bound = _.bind(greet, object, _, '!');\n * bound('hi');\n * // => 'hi fred!'\n */\n var bind = restParam(function(func, thisArg, partials) {\n var bitmask = BIND_FLAG;\n if (partials.length) {\n var holders = replaceHolders(partials, bind.placeholder);\n bitmask |= PARTIAL_FLAG;\n }\n return createWrapper(func, bitmask, thisArg, partials, holders);\n });\n\n /**\n * Binds methods of an object to the object itself, overwriting the existing\n * method. Method names may be specified as individual arguments or as arrays\n * of method names. If no method names are provided all enumerable function\n * properties, own and inherited, of `object` are bound.\n *\n * **Note:** This method does not set the \"length\" property of bound functions.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Object} object The object to bind and assign the bound methods to.\n * @param {...(string|string[])} [methodNames] The object method names to bind,\n * specified as individual method names or arrays of method names.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var view = {\n * 'label': 'docs',\n * 'onClick': function() {\n * console.log('clicked ' + this.label);\n * }\n * };\n *\n * _.bindAll(view);\n * jQuery('#docs').on('click', view.onClick);\n * // => logs 'clicked docs' when the element is clicked\n */\n var bindAll = restParam(function(object, methodNames) {\n methodNames = methodNames.length ? baseFlatten(methodNames) : functions(object);\n\n var index = -1,\n length = methodNames.length;\n\n while (++index < length) {\n var key = methodNames[index];\n object[key] = createWrapper(object[key], BIND_FLAG, object);\n }\n return object;\n });\n\n /**\n * Creates a function that invokes the method at `object[key]` and prepends\n * any additional `_.bindKey` arguments to those provided to the bound function.\n *\n * This method differs from `_.bind` by allowing bound functions to reference\n * methods that may be redefined or don't yet exist.\n * See [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern)\n * for more details.\n *\n * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic\n * builds, may be used as a placeholder for partially applied arguments.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Object} object The object the method belongs to.\n * @param {string} key The key of the method.\n * @param {...*} [partials] The arguments to be partially applied.\n * @returns {Function} Returns the new bound function.\n * @example\n *\n * var object = {\n * 'user': 'fred',\n * 'greet': function(greeting, punctuation) {\n * return greeting + ' ' + this.user + punctuation;\n * }\n * };\n *\n * var bound = _.bindKey(object, 'greet', 'hi');\n * bound('!');\n * // => 'hi fred!'\n *\n * object.greet = function(greeting, punctuation) {\n * return greeting + 'ya ' + this.user + punctuation;\n * };\n *\n * bound('!');\n * // => 'hiya fred!'\n *\n * // using placeholders\n * var bound = _.bindKey(object, 'greet', _, '!');\n * bound('hi');\n * // => 'hiya fred!'\n */\n var bindKey = restParam(function(object, key, partials) {\n var bitmask = BIND_FLAG | BIND_KEY_FLAG;\n if (partials.length) {\n var holders = replaceHolders(partials, bindKey.placeholder);\n bitmask |= PARTIAL_FLAG;\n }\n return createWrapper(key, bitmask, object, partials, holders);\n });\n\n /**\n * Creates a function that accepts one or more arguments of `func` that when\n * called either invokes `func` returning its result, if all `func` arguments\n * have been provided, or returns a function that accepts one or more of the\n * remaining `func` arguments, and so on. The arity of `func` may be specified\n * if `func.length` is not sufficient.\n *\n * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds,\n * may be used as a placeholder for provided arguments.\n *\n * **Note:** This method does not set the \"length\" property of curried functions.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to curry.\n * @param {number} [arity=func.length] The arity of `func`.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Function} Returns the new curried function.\n * @example\n *\n * var abc = function(a, b, c) {\n * return [a, b, c];\n * };\n *\n * var curried = _.curry(abc);\n *\n * curried(1)(2)(3);\n * // => [1, 2, 3]\n *\n * curried(1, 2)(3);\n * // => [1, 2, 3]\n *\n * curried(1, 2, 3);\n * // => [1, 2, 3]\n *\n * // using placeholders\n * curried(1)(_, 3)(2);\n * // => [1, 2, 3]\n */\n var curry = createCurry(CURRY_FLAG);\n\n /**\n * This method is like `_.curry` except that arguments are applied to `func`\n * in the manner of `_.partialRight` instead of `_.partial`.\n *\n * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic\n * builds, may be used as a placeholder for provided arguments.\n *\n * **Note:** This method does not set the \"length\" property of curried functions.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to curry.\n * @param {number} [arity=func.length] The arity of `func`.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Function} Returns the new curried function.\n * @example\n *\n * var abc = function(a, b, c) {\n * return [a, b, c];\n * };\n *\n * var curried = _.curryRight(abc);\n *\n * curried(3)(2)(1);\n * // => [1, 2, 3]\n *\n * curried(2, 3)(1);\n * // => [1, 2, 3]\n *\n * curried(1, 2, 3);\n * // => [1, 2, 3]\n *\n * // using placeholders\n * curried(3)(1, _)(2);\n * // => [1, 2, 3]\n */\n var curryRight = createCurry(CURRY_RIGHT_FLAG);\n\n /**\n * Creates a debounced function that delays invoking `func` until after `wait`\n * milliseconds have elapsed since the last time the debounced function was\n * invoked. The debounced function comes with a `cancel` method to cancel\n * delayed invocations. Provide an options object to indicate that `func`\n * should be invoked on the leading and/or trailing edge of the `wait` timeout.\n * Subsequent calls to the debounced function return the result of the last\n * `func` invocation.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked\n * on the trailing edge of the timeout only if the the debounced function is\n * invoked more than once during the `wait` timeout.\n *\n * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation)\n * for details over the differences between `_.debounce` and `_.throttle`.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to debounce.\n * @param {number} [wait=0] The number of milliseconds to delay.\n * @param {Object} [options] The options object.\n * @param {boolean} [options.leading=false] Specify invoking on the leading\n * edge of the timeout.\n * @param {number} [options.maxWait] The maximum time `func` is allowed to be\n * delayed before it is invoked.\n * @param {boolean} [options.trailing=true] Specify invoking on the trailing\n * edge of the timeout.\n * @returns {Function} Returns the new debounced function.\n * @example\n *\n * // avoid costly calculations while the window size is in flux\n * jQuery(window).on('resize', _.debounce(calculateLayout, 150));\n *\n * // invoke `sendMail` when the click event is fired, debouncing subsequent calls\n * jQuery('#postbox').on('click', _.debounce(sendMail, 300, {\n * 'leading': true,\n * 'trailing': false\n * }));\n *\n * // ensure `batchLog` is invoked once after 1 second of debounced calls\n * var source = new EventSource('/stream');\n * jQuery(source).on('message', _.debounce(batchLog, 250, {\n * 'maxWait': 1000\n * }));\n *\n * // cancel a debounced call\n * var todoChanges = _.debounce(batchLog, 1000);\n * Object.observe(models.todo, todoChanges);\n *\n * Object.observe(models, function(changes) {\n * if (_.find(changes, { 'user': 'todo', 'type': 'delete'})) {\n * todoChanges.cancel();\n * }\n * }, ['delete']);\n *\n * // ...at some point `models.todo` is changed\n * models.todo.completed = true;\n *\n * // ...before 1 second has passed `models.todo` is deleted\n * // which cancels the debounced `todoChanges` call\n * delete models.todo;\n */\n function debounce(func, wait, options) {\n var args,\n maxTimeoutId,\n result,\n stamp,\n thisArg,\n timeoutId,\n trailingCall,\n lastCalled = 0,\n maxWait = false,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n wait = wait < 0 ? 0 : (+wait || 0);\n if (options === true) {\n var leading = true;\n trailing = false;\n } else if (isObject(options)) {\n leading = !!options.leading;\n maxWait = 'maxWait' in options && nativeMax(+options.maxWait || 0, wait);\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n\n function cancel() {\n if (timeoutId) {\n clearTimeout(timeoutId);\n }\n if (maxTimeoutId) {\n clearTimeout(maxTimeoutId);\n }\n lastCalled = 0;\n maxTimeoutId = timeoutId = trailingCall = undefined;\n }\n\n function complete(isCalled, id) {\n if (id) {\n clearTimeout(id);\n }\n maxTimeoutId = timeoutId = trailingCall = undefined;\n if (isCalled) {\n lastCalled = now();\n result = func.apply(thisArg, args);\n if (!timeoutId && !maxTimeoutId) {\n args = thisArg = undefined;\n }\n }\n }\n\n function delayed() {\n var remaining = wait - (now() - stamp);\n if (remaining <= 0 || remaining > wait) {\n complete(trailingCall, maxTimeoutId);\n } else {\n timeoutId = setTimeout(delayed, remaining);\n }\n }\n\n function maxDelayed() {\n complete(trailing, timeoutId);\n }\n\n function debounced() {\n args = arguments;\n stamp = now();\n thisArg = this;\n trailingCall = trailing && (timeoutId || !leading);\n\n if (maxWait === false) {\n var leadingCall = leading && !timeoutId;\n } else {\n if (!maxTimeoutId && !leading) {\n lastCalled = stamp;\n }\n var remaining = maxWait - (stamp - lastCalled),\n isCalled = remaining <= 0 || remaining > maxWait;\n\n if (isCalled) {\n if (maxTimeoutId) {\n maxTimeoutId = clearTimeout(maxTimeoutId);\n }\n lastCalled = stamp;\n result = func.apply(thisArg, args);\n }\n else if (!maxTimeoutId) {\n maxTimeoutId = setTimeout(maxDelayed, remaining);\n }\n }\n if (isCalled && timeoutId) {\n timeoutId = clearTimeout(timeoutId);\n }\n else if (!timeoutId && wait !== maxWait) {\n timeoutId = setTimeout(delayed, wait);\n }\n if (leadingCall) {\n isCalled = true;\n result = func.apply(thisArg, args);\n }\n if (isCalled && !timeoutId && !maxTimeoutId) {\n args = thisArg = undefined;\n }\n return result;\n }\n debounced.cancel = cancel;\n return debounced;\n }\n\n /**\n * Defers invoking the `func` until the current call stack has cleared. Any\n * additional arguments are provided to `func` when it is invoked.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to defer.\n * @param {...*} [args] The arguments to invoke the function with.\n * @returns {number} Returns the timer id.\n * @example\n *\n * _.defer(function(text) {\n * console.log(text);\n * }, 'deferred');\n * // logs 'deferred' after one or more milliseconds\n */\n var defer = restParam(function(func, args) {\n return baseDelay(func, 1, args);\n });\n\n /**\n * Invokes `func` after `wait` milliseconds. Any additional arguments are\n * provided to `func` when it is invoked.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to delay.\n * @param {number} wait The number of milliseconds to delay invocation.\n * @param {...*} [args] The arguments to invoke the function with.\n * @returns {number} Returns the timer id.\n * @example\n *\n * _.delay(function(text) {\n * console.log(text);\n * }, 1000, 'later');\n * // => logs 'later' after one second\n */\n var delay = restParam(function(func, wait, args) {\n return baseDelay(func, wait, args);\n });\n\n /**\n * Creates a function that returns the result of invoking the provided\n * functions with the `this` binding of the created function, where each\n * successive invocation is supplied the return value of the previous.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {...Function} [funcs] Functions to invoke.\n * @returns {Function} Returns the new function.\n * @example\n *\n * function square(n) {\n * return n * n;\n * }\n *\n * var addSquare = _.flow(_.add, square);\n * addSquare(1, 2);\n * // => 9\n */\n var flow = createFlow();\n\n /**\n * This method is like `_.flow` except that it creates a function that\n * invokes the provided functions from right to left.\n *\n * @static\n * @memberOf _\n * @alias backflow, compose\n * @category Function\n * @param {...Function} [funcs] Functions to invoke.\n * @returns {Function} Returns the new function.\n * @example\n *\n * function square(n) {\n * return n * n;\n * }\n *\n * var addSquare = _.flowRight(square, _.add);\n * addSquare(1, 2);\n * // => 9\n */\n var flowRight = createFlow(true);\n\n /**\n * Creates a function that memoizes the result of `func`. If `resolver` is\n * provided it determines the cache key for storing the result based on the\n * arguments provided to the memoized function. By default, the first argument\n * provided to the memoized function is coerced to a string and used as the\n * cache key. The `func` is invoked with the `this` binding of the memoized\n * function.\n *\n * **Note:** The cache is exposed as the `cache` property on the memoized\n * function. Its creation may be customized by replacing the `_.memoize.Cache`\n * constructor with one whose instances implement the [`Map`](http://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-map-prototype-object)\n * method interface of `get`, `has`, and `set`.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to have its output memoized.\n * @param {Function} [resolver] The function to resolve the cache key.\n * @returns {Function} Returns the new memoizing function.\n * @example\n *\n * var upperCase = _.memoize(function(string) {\n * return string.toUpperCase();\n * });\n *\n * upperCase('fred');\n * // => 'FRED'\n *\n * // modifying the result cache\n * upperCase.cache.set('fred', 'BARNEY');\n * upperCase('fred');\n * // => 'BARNEY'\n *\n * // replacing `_.memoize.Cache`\n * var object = { 'user': 'fred' };\n * var other = { 'user': 'barney' };\n * var identity = _.memoize(_.identity);\n *\n * identity(object);\n * // => { 'user': 'fred' }\n * identity(other);\n * // => { 'user': 'fred' }\n *\n * _.memoize.Cache = WeakMap;\n * var identity = _.memoize(_.identity);\n *\n * identity(object);\n * // => { 'user': 'fred' }\n * identity(other);\n * // => { 'user': 'barney' }\n */\n function memoize(func, resolver) {\n if (typeof func != 'function' || (resolver && typeof resolver != 'function')) {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var memoized = function() {\n var args = arguments,\n key = resolver ? resolver.apply(this, args) : args[0],\n cache = memoized.cache;\n\n if (cache.has(key)) {\n return cache.get(key);\n }\n var result = func.apply(this, args);\n memoized.cache = cache.set(key, result);\n return result;\n };\n memoized.cache = new memoize.Cache;\n return memoized;\n }\n\n /**\n * Creates a function that runs each argument through a corresponding\n * transform function.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to wrap.\n * @param {...(Function|Function[])} [transforms] The functions to transform\n * arguments, specified as individual functions or arrays of functions.\n * @returns {Function} Returns the new function.\n * @example\n *\n * function doubled(n) {\n * return n * 2;\n * }\n *\n * function square(n) {\n * return n * n;\n * }\n *\n * var modded = _.modArgs(function(x, y) {\n * return [x, y];\n * }, square, doubled);\n *\n * modded(1, 2);\n * // => [1, 4]\n *\n * modded(5, 10);\n * // => [25, 20]\n */\n var modArgs = restParam(function(func, transforms) {\n transforms = baseFlatten(transforms);\n if (typeof func != 'function' || !arrayEvery(transforms, baseIsFunction)) {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var length = transforms.length;\n return restParam(function(args) {\n var index = nativeMin(args.length, length);\n while (index--) {\n args[index] = transforms[index](args[index]);\n }\n return func.apply(this, args);\n });\n });\n\n /**\n * Creates a function that negates the result of the predicate `func`. The\n * `func` predicate is invoked with the `this` binding and arguments of the\n * created function.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} predicate The predicate to negate.\n * @returns {Function} Returns the new function.\n * @example\n *\n * function isEven(n) {\n * return n % 2 == 0;\n * }\n *\n * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven));\n * // => [1, 3, 5]\n */\n function negate(predicate) {\n if (typeof predicate != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n return function() {\n return !predicate.apply(this, arguments);\n };\n }\n\n /**\n * Creates a function that is restricted to invoking `func` once. Repeat calls\n * to the function return the value of the first call. The `func` is invoked\n * with the `this` binding and arguments of the created function.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new restricted function.\n * @example\n *\n * var initialize = _.once(createApplication);\n * initialize();\n * initialize();\n * // `initialize` invokes `createApplication` once\n */\n function once(func) {\n return before(2, func);\n }\n\n /**\n * Creates a function that invokes `func` with `partial` arguments prepended\n * to those provided to the new function. This method is like `_.bind` except\n * it does **not** alter the `this` binding.\n *\n * The `_.partial.placeholder` value, which defaults to `_` in monolithic\n * builds, may be used as a placeholder for partially applied arguments.\n *\n * **Note:** This method does not set the \"length\" property of partially\n * applied functions.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to partially apply arguments to.\n * @param {...*} [partials] The arguments to be partially applied.\n * @returns {Function} Returns the new partially applied function.\n * @example\n *\n * var greet = function(greeting, name) {\n * return greeting + ' ' + name;\n * };\n *\n * var sayHelloTo = _.partial(greet, 'hello');\n * sayHelloTo('fred');\n * // => 'hello fred'\n *\n * // using placeholders\n * var greetFred = _.partial(greet, _, 'fred');\n * greetFred('hi');\n * // => 'hi fred'\n */\n var partial = createPartial(PARTIAL_FLAG);\n\n /**\n * This method is like `_.partial` except that partially applied arguments\n * are appended to those provided to the new function.\n *\n * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic\n * builds, may be used as a placeholder for partially applied arguments.\n *\n * **Note:** This method does not set the \"length\" property of partially\n * applied functions.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to partially apply arguments to.\n * @param {...*} [partials] The arguments to be partially applied.\n * @returns {Function} Returns the new partially applied function.\n * @example\n *\n * var greet = function(greeting, name) {\n * return greeting + ' ' + name;\n * };\n *\n * var greetFred = _.partialRight(greet, 'fred');\n * greetFred('hi');\n * // => 'hi fred'\n *\n * // using placeholders\n * var sayHelloTo = _.partialRight(greet, 'hello', _);\n * sayHelloTo('fred');\n * // => 'hello fred'\n */\n var partialRight = createPartial(PARTIAL_RIGHT_FLAG);\n\n /**\n * Creates a function that invokes `func` with arguments arranged according\n * to the specified indexes where the argument value at the first index is\n * provided as the first argument, the argument value at the second index is\n * provided as the second argument, and so on.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to rearrange arguments for.\n * @param {...(number|number[])} indexes The arranged argument indexes,\n * specified as individual indexes or arrays of indexes.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var rearged = _.rearg(function(a, b, c) {\n * return [a, b, c];\n * }, 2, 0, 1);\n *\n * rearged('b', 'c', 'a')\n * // => ['a', 'b', 'c']\n *\n * var map = _.rearg(_.map, [1, 0]);\n * map(function(n) {\n * return n * 3;\n * }, [1, 2, 3]);\n * // => [3, 6, 9]\n */\n var rearg = restParam(function(func, indexes) {\n return createWrapper(func, REARG_FLAG, undefined, undefined, undefined, baseFlatten(indexes));\n });\n\n /**\n * Creates a function that invokes `func` with the `this` binding of the\n * created function and arguments from `start` and beyond provided as an array.\n *\n * **Note:** This method is based on the [rest parameter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters).\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var say = _.restParam(function(what, names) {\n * return what + ' ' + _.initial(names).join(', ') +\n * (_.size(names) > 1 ? ', & ' : '') + _.last(names);\n * });\n *\n * say('hello', 'fred', 'barney', 'pebbles');\n * // => 'hello fred, barney, & pebbles'\n */\n function restParam(func, start) {\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n start = nativeMax(start === undefined ? (func.length - 1) : (+start || 0), 0);\n return function() {\n var args = arguments,\n index = -1,\n length = nativeMax(args.length - start, 0),\n rest = Array(length);\n\n while (++index < length) {\n rest[index] = args[start + index];\n }\n switch (start) {\n case 0: return func.call(this, rest);\n case 1: return func.call(this, args[0], rest);\n case 2: return func.call(this, args[0], args[1], rest);\n }\n var otherArgs = Array(start + 1);\n index = -1;\n while (++index < start) {\n otherArgs[index] = args[index];\n }\n otherArgs[start] = rest;\n return func.apply(this, otherArgs);\n };\n }\n\n /**\n * Creates a function that invokes `func` with the `this` binding of the created\n * function and an array of arguments much like [`Function#apply`](https://es5.github.io/#x15.3.4.3).\n *\n * **Note:** This method is based on the [spread operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator).\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to spread arguments over.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var say = _.spread(function(who, what) {\n * return who + ' says ' + what;\n * });\n *\n * say(['fred', 'hello']);\n * // => 'fred says hello'\n *\n * // with a Promise\n * var numbers = Promise.all([\n * Promise.resolve(40),\n * Promise.resolve(36)\n * ]);\n *\n * numbers.then(_.spread(function(x, y) {\n * return x + y;\n * }));\n * // => a Promise of 76\n */\n function spread(func) {\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n return function(array) {\n return func.apply(this, array);\n };\n }\n\n /**\n * Creates a throttled function that only invokes `func` at most once per\n * every `wait` milliseconds. The throttled function comes with a `cancel`\n * method to cancel delayed invocations. Provide an options object to indicate\n * that `func` should be invoked on the leading and/or trailing edge of the\n * `wait` timeout. Subsequent calls to the throttled function return the\n * result of the last `func` call.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked\n * on the trailing edge of the timeout only if the the throttled function is\n * invoked more than once during the `wait` timeout.\n *\n * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation)\n * for details over the differences between `_.throttle` and `_.debounce`.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {Function} func The function to throttle.\n * @param {number} [wait=0] The number of milliseconds to throttle invocations to.\n * @param {Object} [options] The options object.\n * @param {boolean} [options.leading=true] Specify invoking on the leading\n * edge of the timeout.\n * @param {boolean} [options.trailing=true] Specify invoking on the trailing\n * edge of the timeout.\n * @returns {Function} Returns the new throttled function.\n * @example\n *\n * // avoid excessively updating the position while scrolling\n * jQuery(window).on('scroll', _.throttle(updatePosition, 100));\n *\n * // invoke `renewToken` when the click event is fired, but not more than once every 5 minutes\n * jQuery('.interactive').on('click', _.throttle(renewToken, 300000, {\n * 'trailing': false\n * }));\n *\n * // cancel a trailing throttled call\n * jQuery(window).on('popstate', throttled.cancel);\n */\n function throttle(func, wait, options) {\n var leading = true,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n if (options === false) {\n leading = false;\n } else if (isObject(options)) {\n leading = 'leading' in options ? !!options.leading : leading;\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n return debounce(func, wait, { 'leading': leading, 'maxWait': +wait, 'trailing': trailing });\n }\n\n /**\n * Creates a function that provides `value` to the wrapper function as its\n * first argument. Any additional arguments provided to the function are\n * appended to those provided to the wrapper function. The wrapper is invoked\n * with the `this` binding of the created function.\n *\n * @static\n * @memberOf _\n * @category Function\n * @param {*} value The value to wrap.\n * @param {Function} wrapper The wrapper function.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var p = _.wrap(_.escape, function(func, text) {\n * return '<p>' + func(text) + '</p>';\n * });\n *\n * p('fred, barney, & pebbles');\n * // => '<p>fred, barney, & pebbles</p>'\n */\n function wrap(value, wrapper) {\n wrapper = wrapper == null ? identity : wrapper;\n return createWrapper(wrapper, PARTIAL_FLAG, undefined, [value], []);\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a clone of `value`. If `isDeep` is `true` nested objects are cloned,\n * otherwise they are assigned by reference. If `customizer` is provided it is\n * invoked to produce the cloned values. If `customizer` returns `undefined`\n * cloning is handled by the method instead. The `customizer` is bound to\n * `thisArg` and invoked with two argument; (value [, index|key, object]).\n *\n * **Note:** This method is loosely based on the\n * [structured clone algorithm](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm).\n * The enumerable properties of `arguments` objects and objects created by\n * constructors other than `Object` are cloned to plain `Object` objects. An\n * empty object is returned for uncloneable values such as functions, DOM nodes,\n * Maps, Sets, and WeakMaps.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @param {Function} [customizer] The function to customize cloning values.\n * @param {*} [thisArg] The `this` binding of `customizer`.\n * @returns {*} Returns the cloned value.\n * @example\n *\n * var users = [\n * { 'user': 'barney' },\n * { 'user': 'fred' }\n * ];\n *\n * var shallow = _.clone(users);\n * shallow[0] === users[0];\n * // => true\n *\n * var deep = _.clone(users, true);\n * deep[0] === users[0];\n * // => false\n *\n * // using a customizer callback\n * var el = _.clone(document.body, function(value) {\n * if (_.isElement(value)) {\n * return value.cloneNode(false);\n * }\n * });\n *\n * el === document.body\n * // => false\n * el.nodeName\n * // => BODY\n * el.childNodes.length;\n * // => 0\n */\n function clone(value, isDeep, customizer, thisArg) {\n if (isDeep && typeof isDeep != 'boolean' && isIterateeCall(value, isDeep, customizer)) {\n isDeep = false;\n }\n else if (typeof isDeep == 'function') {\n thisArg = customizer;\n customizer = isDeep;\n isDeep = false;\n }\n return typeof customizer == 'function'\n ? baseClone(value, isDeep, bindCallback(customizer, thisArg, 1))\n : baseClone(value, isDeep);\n }\n\n /**\n * Creates a deep clone of `value`. If `customizer` is provided it is invoked\n * to produce the cloned values. If `customizer` returns `undefined` cloning\n * is handled by the method instead. The `customizer` is bound to `thisArg`\n * and invoked with two argument; (value [, index|key, object]).\n *\n * **Note:** This method is loosely based on the\n * [structured clone algorithm](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm).\n * The enumerable properties of `arguments` objects and objects created by\n * constructors other than `Object` are cloned to plain `Object` objects. An\n * empty object is returned for uncloneable values such as functions, DOM nodes,\n * Maps, Sets, and WeakMaps.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to deep clone.\n * @param {Function} [customizer] The function to customize cloning values.\n * @param {*} [thisArg] The `this` binding of `customizer`.\n * @returns {*} Returns the deep cloned value.\n * @example\n *\n * var users = [\n * { 'user': 'barney' },\n * { 'user': 'fred' }\n * ];\n *\n * var deep = _.cloneDeep(users);\n * deep[0] === users[0];\n * // => false\n *\n * // using a customizer callback\n * var el = _.cloneDeep(document.body, function(value) {\n * if (_.isElement(value)) {\n * return value.cloneNode(true);\n * }\n * });\n *\n * el === document.body\n * // => false\n * el.nodeName\n * // => BODY\n * el.childNodes.length;\n * // => 20\n */\n function cloneDeep(value, customizer, thisArg) {\n return typeof customizer == 'function'\n ? baseClone(value, true, bindCallback(customizer, thisArg, 1))\n : baseClone(value, true);\n }\n\n /**\n * Checks if `value` is greater than `other`.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is greater than `other`, else `false`.\n * @example\n *\n * _.gt(3, 1);\n * // => true\n *\n * _.gt(3, 3);\n * // => false\n *\n * _.gt(1, 3);\n * // => false\n */\n function gt(value, other) {\n return value > other;\n }\n\n /**\n * Checks if `value` is greater than or equal to `other`.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is greater than or equal to `other`, else `false`.\n * @example\n *\n * _.gte(3, 1);\n * // => true\n *\n * _.gte(3, 3);\n * // => true\n *\n * _.gte(1, 3);\n * // => false\n */\n function gte(value, other) {\n return value >= other;\n }\n\n /**\n * Checks if `value` is classified as an `arguments` object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\n function isArguments(value) {\n return isObjectLike(value) && isArrayLike(value) &&\n hasOwnProperty.call(value, 'callee') && !propertyIsEnumerable.call(value, 'callee');\n }\n\n /**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(function() { return arguments; }());\n * // => false\n */\n var isArray = nativeIsArray || function(value) {\n return isObjectLike(value) && isLength(value.length) && objToString.call(value) == arrayTag;\n };\n\n /**\n * Checks if `value` is classified as a boolean primitive or object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isBoolean(false);\n * // => true\n *\n * _.isBoolean(null);\n * // => false\n */\n function isBoolean(value) {\n return value === true || value === false || (isObjectLike(value) && objToString.call(value) == boolTag);\n }\n\n /**\n * Checks if `value` is classified as a `Date` object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isDate(new Date);\n * // => true\n *\n * _.isDate('Mon April 23 2012');\n * // => false\n */\n function isDate(value) {\n return isObjectLike(value) && objToString.call(value) == dateTag;\n }\n\n /**\n * Checks if `value` is a DOM element.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`.\n * @example\n *\n * _.isElement(document.body);\n * // => true\n *\n * _.isElement('<body>');\n * // => false\n */\n function isElement(value) {\n return !!value && value.nodeType === 1 && isObjectLike(value) && !isPlainObject(value);\n }\n\n /**\n * Checks if `value` is empty. A value is considered empty unless it is an\n * `arguments` object, array, string, or jQuery-like collection with a length\n * greater than `0` or an object with own enumerable properties.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {Array|Object|string} value The value to inspect.\n * @returns {boolean} Returns `true` if `value` is empty, else `false`.\n * @example\n *\n * _.isEmpty(null);\n * // => true\n *\n * _.isEmpty(true);\n * // => true\n *\n * _.isEmpty(1);\n * // => true\n *\n * _.isEmpty([1, 2, 3]);\n * // => false\n *\n * _.isEmpty({ 'a': 1 });\n * // => false\n */\n function isEmpty(value) {\n if (value == null) {\n return true;\n }\n if (isArrayLike(value) && (isArray(value) || isString(value) || isArguments(value) ||\n (isObjectLike(value) && isFunction(value.splice)))) {\n return !value.length;\n }\n return !keys(value).length;\n }\n\n /**\n * Performs a deep comparison between two values to determine if they are\n * equivalent. If `customizer` is provided it is invoked to compare values.\n * If `customizer` returns `undefined` comparisons are handled by the method\n * instead. The `customizer` is bound to `thisArg` and invoked with three\n * arguments: (value, other [, index|key]).\n *\n * **Note:** This method supports comparing arrays, booleans, `Date` objects,\n * numbers, `Object` objects, regexes, and strings. Objects are compared by\n * their own, not inherited, enumerable properties. Functions and DOM nodes\n * are **not** supported. Provide a customizer function to extend support\n * for comparing other values.\n *\n * @static\n * @memberOf _\n * @alias eq\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @param {Function} [customizer] The function to customize value comparisons.\n * @param {*} [thisArg] The `this` binding of `customizer`.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'user': 'fred' };\n * var other = { 'user': 'fred' };\n *\n * object == other;\n * // => false\n *\n * _.isEqual(object, other);\n * // => true\n *\n * // using a customizer callback\n * var array = ['hello', 'goodbye'];\n * var other = ['hi', 'goodbye'];\n *\n * _.isEqual(array, other, function(value, other) {\n * if (_.every([value, other], RegExp.prototype.test, /^h(?:i|ello)$/)) {\n * return true;\n * }\n * });\n * // => true\n */\n function isEqual(value, other, customizer, thisArg) {\n customizer = typeof customizer == 'function' ? bindCallback(customizer, thisArg, 3) : undefined;\n var result = customizer ? customizer(value, other) : undefined;\n return result === undefined ? baseIsEqual(value, other, customizer) : !!result;\n }\n\n /**\n * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`,\n * `SyntaxError`, `TypeError`, or `URIError` object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an error object, else `false`.\n * @example\n *\n * _.isError(new Error);\n * // => true\n *\n * _.isError(Error);\n * // => false\n */\n function isError(value) {\n return isObjectLike(value) && typeof value.message == 'string' && objToString.call(value) == errorTag;\n }\n\n /**\n * Checks if `value` is a finite primitive number.\n *\n * **Note:** This method is based on [`Number.isFinite`](http://ecma-international.org/ecma-262/6.0/#sec-number.isfinite).\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a finite number, else `false`.\n * @example\n *\n * _.isFinite(10);\n * // => true\n *\n * _.isFinite('10');\n * // => false\n *\n * _.isFinite(true);\n * // => false\n *\n * _.isFinite(Object(10));\n * // => false\n *\n * _.isFinite(Infinity);\n * // => false\n */\n function isFinite(value) {\n return typeof value == 'number' && nativeIsFinite(value);\n }\n\n /**\n * Checks if `value` is classified as a `Function` object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isFunction(_);\n * // => true\n *\n * _.isFunction(/abc/);\n * // => false\n */\n function isFunction(value) {\n // The use of `Object#toString` avoids issues with the `typeof` operator\n // in older versions of Chrome and Safari which return 'function' for regexes\n // and Safari 8 equivalents which return 'object' for typed array constructors.\n return isObject(value) && objToString.call(value) == funcTag;\n }\n\n /**\n * Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`.\n * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(1);\n * // => false\n */\n function isObject(value) {\n // Avoid a V8 JIT bug in Chrome 19-20.\n // See https://code.google.com/p/v8/issues/detail?id=2291 for more details.\n var type = typeof value;\n return !!value && (type == 'object' || type == 'function');\n }\n\n /**\n * Performs a deep comparison between `object` and `source` to determine if\n * `object` contains equivalent property values. If `customizer` is provided\n * it is invoked to compare values. If `customizer` returns `undefined`\n * comparisons are handled by the method instead. The `customizer` is bound\n * to `thisArg` and invoked with three arguments: (value, other, index|key).\n *\n * **Note:** This method supports comparing properties of arrays, booleans,\n * `Date` objects, numbers, `Object` objects, regexes, and strings. Functions\n * and DOM nodes are **not** supported. Provide a customizer function to extend\n * support for comparing other values.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {Object} object The object to inspect.\n * @param {Object} source The object of property values to match.\n * @param {Function} [customizer] The function to customize value comparisons.\n * @param {*} [thisArg] The `this` binding of `customizer`.\n * @returns {boolean} Returns `true` if `object` is a match, else `false`.\n * @example\n *\n * var object = { 'user': 'fred', 'age': 40 };\n *\n * _.isMatch(object, { 'age': 40 });\n * // => true\n *\n * _.isMatch(object, { 'age': 36 });\n * // => false\n *\n * // using a customizer callback\n * var object = { 'greeting': 'hello' };\n * var source = { 'greeting': 'hi' };\n *\n * _.isMatch(object, source, function(value, other) {\n * return _.every([value, other], RegExp.prototype.test, /^h(?:i|ello)$/) || undefined;\n * });\n * // => true\n */\n function isMatch(object, source, customizer, thisArg) {\n customizer = typeof customizer == 'function' ? bindCallback(customizer, thisArg, 3) : undefined;\n return baseIsMatch(object, getMatchData(source), customizer);\n }\n\n /**\n * Checks if `value` is `NaN`.\n *\n * **Note:** This method is not the same as [`isNaN`](https://es5.github.io/#x15.1.2.4)\n * which returns `true` for `undefined` and other non-numeric values.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\n * @example\n *\n * _.isNaN(NaN);\n * // => true\n *\n * _.isNaN(new Number(NaN));\n * // => true\n *\n * isNaN(undefined);\n * // => true\n *\n * _.isNaN(undefined);\n * // => false\n */\n function isNaN(value) {\n // An `NaN` primitive is the only value that is not equal to itself.\n // Perform the `toStringTag` check first to avoid errors with some host objects in IE.\n return isNumber(value) && value != +value;\n }\n\n /**\n * Checks if `value` is a native function.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function, else `false`.\n * @example\n *\n * _.isNative(Array.prototype.push);\n * // => true\n *\n * _.isNative(_);\n * // => false\n */\n function isNative(value) {\n if (value == null) {\n return false;\n }\n if (isFunction(value)) {\n return reIsNative.test(fnToString.call(value));\n }\n return isObjectLike(value) && reIsHostCtor.test(value);\n }\n\n /**\n * Checks if `value` is `null`.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `null`, else `false`.\n * @example\n *\n * _.isNull(null);\n * // => true\n *\n * _.isNull(void 0);\n * // => false\n */\n function isNull(value) {\n return value === null;\n }\n\n /**\n * Checks if `value` is classified as a `Number` primitive or object.\n *\n * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are classified\n * as numbers, use the `_.isFinite` method.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isNumber(8.4);\n * // => true\n *\n * _.isNumber(NaN);\n * // => true\n *\n * _.isNumber('8.4');\n * // => false\n */\n function isNumber(value) {\n return typeof value == 'number' || (isObjectLike(value) && objToString.call(value) == numberTag);\n }\n\n /**\n * Checks if `value` is a plain object, that is, an object created by the\n * `Object` constructor or one with a `[[Prototype]]` of `null`.\n *\n * **Note:** This method assumes objects created by the `Object` constructor\n * have no inherited enumerable properties.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * _.isPlainObject(new Foo);\n * // => false\n *\n * _.isPlainObject([1, 2, 3]);\n * // => false\n *\n * _.isPlainObject({ 'x': 0, 'y': 0 });\n * // => true\n *\n * _.isPlainObject(Object.create(null));\n * // => true\n */\n function isPlainObject(value) {\n var Ctor;\n\n // Exit early for non `Object` objects.\n if (!(isObjectLike(value) && objToString.call(value) == objectTag && !isArguments(value)) ||\n (!hasOwnProperty.call(value, 'constructor') && (Ctor = value.constructor, typeof Ctor == 'function' && !(Ctor instanceof Ctor)))) {\n return false;\n }\n // IE < 9 iterates inherited properties before own properties. If the first\n // iterated property is an object's own property then there are no inherited\n // enumerable properties.\n var result;\n // In most environments an object's own properties are iterated before\n // its inherited properties. If the last iterated property is an object's\n // own property then there are no inherited enumerable properties.\n baseForIn(value, function(subValue, key) {\n result = key;\n });\n return result === undefined || hasOwnProperty.call(value, result);\n }\n\n /**\n * Checks if `value` is classified as a `RegExp` object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isRegExp(/abc/);\n * // => true\n *\n * _.isRegExp('/abc/');\n * // => false\n */\n function isRegExp(value) {\n return isObject(value) && objToString.call(value) == regexpTag;\n }\n\n /**\n * Checks if `value` is classified as a `String` primitive or object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isString('abc');\n * // => true\n *\n * _.isString(1);\n * // => false\n */\n function isString(value) {\n return typeof value == 'string' || (isObjectLike(value) && objToString.call(value) == stringTag);\n }\n\n /**\n * Checks if `value` is classified as a typed array.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.\n * @example\n *\n * _.isTypedArray(new Uint8Array);\n * // => true\n *\n * _.isTypedArray([]);\n * // => false\n */\n function isTypedArray(value) {\n return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[objToString.call(value)];\n }\n\n /**\n * Checks if `value` is `undefined`.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`.\n * @example\n *\n * _.isUndefined(void 0);\n * // => true\n *\n * _.isUndefined(null);\n * // => false\n */\n function isUndefined(value) {\n return value === undefined;\n }\n\n /**\n * Checks if `value` is less than `other`.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is less than `other`, else `false`.\n * @example\n *\n * _.lt(1, 3);\n * // => true\n *\n * _.lt(3, 3);\n * // => false\n *\n * _.lt(3, 1);\n * // => false\n */\n function lt(value, other) {\n return value < other;\n }\n\n /**\n * Checks if `value` is less than or equal to `other`.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is less than or equal to `other`, else `false`.\n * @example\n *\n * _.lte(1, 3);\n * // => true\n *\n * _.lte(3, 3);\n * // => true\n *\n * _.lte(3, 1);\n * // => false\n */\n function lte(value, other) {\n return value <= other;\n }\n\n /**\n * Converts `value` to an array.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {Array} Returns the converted array.\n * @example\n *\n * (function() {\n * return _.toArray(arguments).slice(1);\n * }(1, 2, 3));\n * // => [2, 3]\n */\n function toArray(value) {\n var length = value ? getLength(value) : 0;\n if (!isLength(length)) {\n return values(value);\n }\n if (!length) {\n return [];\n }\n return arrayCopy(value);\n }\n\n /**\n * Converts `value` to a plain object flattening inherited enumerable\n * properties of `value` to own properties of the plain object.\n *\n * @static\n * @memberOf _\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {Object} Returns the converted plain object.\n * @example\n *\n * function Foo() {\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.assign({ 'a': 1 }, new Foo);\n * // => { 'a': 1, 'b': 2 }\n *\n * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\n * // => { 'a': 1, 'b': 2, 'c': 3 }\n */\n function toPlainObject(value) {\n return baseCopy(value, keysIn(value));\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Recursively merges own enumerable properties of the source object(s), that\n * don't resolve to `undefined` into the destination object. Subsequent sources\n * overwrite property assignments of previous sources. If `customizer` is\n * provided it is invoked to produce the merged values of the destination and\n * source properties. If `customizer` returns `undefined` merging is handled\n * by the method instead. The `customizer` is bound to `thisArg` and invoked\n * with five arguments: (objectValue, sourceValue, key, object, source).\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @param {Function} [customizer] The function to customize assigned values.\n * @param {*} [thisArg] The `this` binding of `customizer`.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var users = {\n * 'data': [{ 'user': 'barney' }, { 'user': 'fred' }]\n * };\n *\n * var ages = {\n * 'data': [{ 'age': 36 }, { 'age': 40 }]\n * };\n *\n * _.merge(users, ages);\n * // => { 'data': [{ 'user': 'barney', 'age': 36 }, { 'user': 'fred', 'age': 40 }] }\n *\n * // using a customizer callback\n * var object = {\n * 'fruits': ['apple'],\n * 'vegetables': ['beet']\n * };\n *\n * var other = {\n * 'fruits': ['banana'],\n * 'vegetables': ['carrot']\n * };\n *\n * _.merge(object, other, function(a, b) {\n * if (_.isArray(a)) {\n * return a.concat(b);\n * }\n * });\n * // => { 'fruits': ['apple', 'banana'], 'vegetables': ['beet', 'carrot'] }\n */\n var merge = createAssigner(baseMerge);\n\n /**\n * Assigns own enumerable properties of source object(s) to the destination\n * object. Subsequent sources overwrite property assignments of previous sources.\n * If `customizer` is provided it is invoked to produce the assigned values.\n * The `customizer` is bound to `thisArg` and invoked with five arguments:\n * (objectValue, sourceValue, key, object, source).\n *\n * **Note:** This method mutates `object` and is based on\n * [`Object.assign`](http://ecma-international.org/ecma-262/6.0/#sec-object.assign).\n *\n * @static\n * @memberOf _\n * @alias extend\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @param {Function} [customizer] The function to customize assigned values.\n * @param {*} [thisArg] The `this` binding of `customizer`.\n * @returns {Object} Returns `object`.\n * @example\n *\n * _.assign({ 'user': 'barney' }, { 'age': 40 }, { 'user': 'fred' });\n * // => { 'user': 'fred', 'age': 40 }\n *\n * // using a customizer callback\n * var defaults = _.partialRight(_.assign, function(value, other) {\n * return _.isUndefined(value) ? other : value;\n * });\n *\n * defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' });\n * // => { 'user': 'barney', 'age': 36 }\n */\n var assign = createAssigner(function(object, source, customizer) {\n return customizer\n ? assignWith(object, source, customizer)\n : baseAssign(object, source);\n });\n\n /**\n * Creates an object that inherits from the given `prototype` object. If a\n * `properties` object is provided its own enumerable properties are assigned\n * to the created object.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} prototype The object to inherit from.\n * @param {Object} [properties] The properties to assign to the object.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Object} Returns the new object.\n * @example\n *\n * function Shape() {\n * this.x = 0;\n * this.y = 0;\n * }\n *\n * function Circle() {\n * Shape.call(this);\n * }\n *\n * Circle.prototype = _.create(Shape.prototype, {\n * 'constructor': Circle\n * });\n *\n * var circle = new Circle;\n * circle instanceof Circle;\n * // => true\n *\n * circle instanceof Shape;\n * // => true\n */\n function create(prototype, properties, guard) {\n var result = baseCreate(prototype);\n if (guard && isIterateeCall(prototype, properties, guard)) {\n properties = undefined;\n }\n return properties ? baseAssign(result, properties) : result;\n }\n\n /**\n * Assigns own enumerable properties of source object(s) to the destination\n * object for all destination properties that resolve to `undefined`. Once a\n * property is set, additional values of the same property are ignored.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @example\n *\n * _.defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' });\n * // => { 'user': 'barney', 'age': 36 }\n */\n var defaults = createDefaults(assign, assignDefaults);\n\n /**\n * This method is like `_.defaults` except that it recursively assigns\n * default properties.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @example\n *\n * _.defaultsDeep({ 'user': { 'name': 'barney' } }, { 'user': { 'name': 'fred', 'age': 36 } });\n * // => { 'user': { 'name': 'barney', 'age': 36 } }\n *\n */\n var defaultsDeep = createDefaults(merge, mergeDefaults);\n\n /**\n * This method is like `_.find` except that it returns the key of the first\n * element `predicate` returns truthy for instead of the element itself.\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to search.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {string|undefined} Returns the key of the matched element, else `undefined`.\n * @example\n *\n * var users = {\n * 'barney': { 'age': 36, 'active': true },\n * 'fred': { 'age': 40, 'active': false },\n * 'pebbles': { 'age': 1, 'active': true }\n * };\n *\n * _.findKey(users, function(chr) {\n * return chr.age < 40;\n * });\n * // => 'barney' (iteration order is not guaranteed)\n *\n * // using the `_.matches` callback shorthand\n * _.findKey(users, { 'age': 1, 'active': true });\n * // => 'pebbles'\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.findKey(users, 'active', false);\n * // => 'fred'\n *\n * // using the `_.property` callback shorthand\n * _.findKey(users, 'active');\n * // => 'barney'\n */\n var findKey = createFindKey(baseForOwn);\n\n /**\n * This method is like `_.findKey` except that it iterates over elements of\n * a collection in the opposite order.\n *\n * If a property name is provided for `predicate` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `predicate` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to search.\n * @param {Function|Object|string} [predicate=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {string|undefined} Returns the key of the matched element, else `undefined`.\n * @example\n *\n * var users = {\n * 'barney': { 'age': 36, 'active': true },\n * 'fred': { 'age': 40, 'active': false },\n * 'pebbles': { 'age': 1, 'active': true }\n * };\n *\n * _.findLastKey(users, function(chr) {\n * return chr.age < 40;\n * });\n * // => returns `pebbles` assuming `_.findKey` returns `barney`\n *\n * // using the `_.matches` callback shorthand\n * _.findLastKey(users, { 'age': 36, 'active': true });\n * // => 'barney'\n *\n * // using the `_.matchesProperty` callback shorthand\n * _.findLastKey(users, 'active', false);\n * // => 'fred'\n *\n * // using the `_.property` callback shorthand\n * _.findLastKey(users, 'active');\n * // => 'pebbles'\n */\n var findLastKey = createFindKey(baseForOwnRight);\n\n /**\n * Iterates over own and inherited enumerable properties of an object invoking\n * `iteratee` for each property. The `iteratee` is bound to `thisArg` and invoked\n * with three arguments: (value, key, object). Iteratee functions may exit\n * iteration early by explicitly returning `false`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns `object`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.forIn(new Foo, function(value, key) {\n * console.log(key);\n * });\n * // => logs 'a', 'b', and 'c' (iteration order is not guaranteed)\n */\n var forIn = createForIn(baseFor);\n\n /**\n * This method is like `_.forIn` except that it iterates over properties of\n * `object` in the opposite order.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns `object`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.forInRight(new Foo, function(value, key) {\n * console.log(key);\n * });\n * // => logs 'c', 'b', and 'a' assuming `_.forIn ` logs 'a', 'b', and 'c'\n */\n var forInRight = createForIn(baseForRight);\n\n /**\n * Iterates over own enumerable properties of an object invoking `iteratee`\n * for each property. The `iteratee` is bound to `thisArg` and invoked with\n * three arguments: (value, key, object). Iteratee functions may exit iteration\n * early by explicitly returning `false`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns `object`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.forOwn(new Foo, function(value, key) {\n * console.log(key);\n * });\n * // => logs 'a' and 'b' (iteration order is not guaranteed)\n */\n var forOwn = createForOwn(baseForOwn);\n\n /**\n * This method is like `_.forOwn` except that it iterates over properties of\n * `object` in the opposite order.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns `object`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.forOwnRight(new Foo, function(value, key) {\n * console.log(key);\n * });\n * // => logs 'b' and 'a' assuming `_.forOwn` logs 'a' and 'b'\n */\n var forOwnRight = createForOwn(baseForOwnRight);\n\n /**\n * Creates an array of function property names from all enumerable properties,\n * own and inherited, of `object`.\n *\n * @static\n * @memberOf _\n * @alias methods\n * @category Object\n * @param {Object} object The object to inspect.\n * @returns {Array} Returns the new array of property names.\n * @example\n *\n * _.functions(_);\n * // => ['after', 'ary', 'assign', ...]\n */\n function functions(object) {\n return baseFunctions(object, keysIn(object));\n }\n\n /**\n * Gets the property value at `path` of `object`. If the resolved value is\n * `undefined` the `defaultValue` is used in its place.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to get.\n * @param {*} [defaultValue] The value returned if the resolved value is `undefined`.\n * @returns {*} Returns the resolved value.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n *\n * _.get(object, 'a[0].b.c');\n * // => 3\n *\n * _.get(object, ['a', '0', 'b', 'c']);\n * // => 3\n *\n * _.get(object, 'a.b.c', 'default');\n * // => 'default'\n */\n function get(object, path, defaultValue) {\n var result = object == null ? undefined : baseGet(object, toPath(path), path + '');\n return result === undefined ? defaultValue : result;\n }\n\n /**\n * Checks if `path` is a direct property.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path to check.\n * @returns {boolean} Returns `true` if `path` is a direct property, else `false`.\n * @example\n *\n * var object = { 'a': { 'b': { 'c': 3 } } };\n *\n * _.has(object, 'a');\n * // => true\n *\n * _.has(object, 'a.b.c');\n * // => true\n *\n * _.has(object, ['a', 'b', 'c']);\n * // => true\n */\n function has(object, path) {\n if (object == null) {\n return false;\n }\n var result = hasOwnProperty.call(object, path);\n if (!result && !isKey(path)) {\n path = toPath(path);\n object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1));\n if (object == null) {\n return false;\n }\n path = last(path);\n result = hasOwnProperty.call(object, path);\n }\n return result || (isLength(object.length) && isIndex(path, object.length) &&\n (isArray(object) || isArguments(object)));\n }\n\n /**\n * Creates an object composed of the inverted keys and values of `object`.\n * If `object` contains duplicate values, subsequent values overwrite property\n * assignments of previous values unless `multiValue` is `true`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to invert.\n * @param {boolean} [multiValue] Allow multiple values per key.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Object} Returns the new inverted object.\n * @example\n *\n * var object = { 'a': 1, 'b': 2, 'c': 1 };\n *\n * _.invert(object);\n * // => { '1': 'c', '2': 'b' }\n *\n * // with `multiValue`\n * _.invert(object, true);\n * // => { '1': ['a', 'c'], '2': ['b'] }\n */\n function invert(object, multiValue, guard) {\n if (guard && isIterateeCall(object, multiValue, guard)) {\n multiValue = undefined;\n }\n var index = -1,\n props = keys(object),\n length = props.length,\n result = {};\n\n while (++index < length) {\n var key = props[index],\n value = object[key];\n\n if (multiValue) {\n if (hasOwnProperty.call(result, value)) {\n result[value].push(key);\n } else {\n result[value] = [key];\n }\n }\n else {\n result[value] = key;\n }\n }\n return result;\n }\n\n /**\n * Creates an array of the own enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects. See the\n * [ES spec](http://ecma-international.org/ecma-262/6.0/#sec-object.keys)\n * for more details.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keys(new Foo);\n * // => ['a', 'b'] (iteration order is not guaranteed)\n *\n * _.keys('hi');\n * // => ['0', '1']\n */\n var keys = !nativeKeys ? shimKeys : function(object) {\n var Ctor = object == null ? undefined : object.constructor;\n if ((typeof Ctor == 'function' && Ctor.prototype === object) ||\n (typeof object != 'function' && isArrayLike(object))) {\n return shimKeys(object);\n }\n return isObject(object) ? nativeKeys(object) : [];\n };\n\n /**\n * Creates an array of the own and inherited enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keysIn(new Foo);\n * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n */\n function keysIn(object) {\n if (object == null) {\n return [];\n }\n if (!isObject(object)) {\n object = Object(object);\n }\n var length = object.length;\n length = (length && isLength(length) &&\n (isArray(object) || isArguments(object)) && length) || 0;\n\n var Ctor = object.constructor,\n index = -1,\n isProto = typeof Ctor == 'function' && Ctor.prototype === object,\n result = Array(length),\n skipIndexes = length > 0;\n\n while (++index < length) {\n result[index] = (index + '');\n }\n for (var key in object) {\n if (!(skipIndexes && isIndex(key, length)) &&\n !(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n result.push(key);\n }\n }\n return result;\n }\n\n /**\n * The opposite of `_.mapValues`; this method creates an object with the\n * same values as `object` and keys generated by running each own enumerable\n * property of `object` through `iteratee`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns the new mapped object.\n * @example\n *\n * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) {\n * return key + value;\n * });\n * // => { 'a1': 1, 'b2': 2 }\n */\n var mapKeys = createObjectMapper(true);\n\n /**\n * Creates an object with the same keys as `object` and values generated by\n * running each own enumerable property of `object` through `iteratee`. The\n * iteratee function is bound to `thisArg` and invoked with three arguments:\n * (value, key, object).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function|Object|string} [iteratee=_.identity] The function invoked\n * per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Object} Returns the new mapped object.\n * @example\n *\n * _.mapValues({ 'a': 1, 'b': 2 }, function(n) {\n * return n * 3;\n * });\n * // => { 'a': 3, 'b': 6 }\n *\n * var users = {\n * 'fred': { 'user': 'fred', 'age': 40 },\n * 'pebbles': { 'user': 'pebbles', 'age': 1 }\n * };\n *\n * // using the `_.property` callback shorthand\n * _.mapValues(users, 'age');\n * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\n */\n var mapValues = createObjectMapper();\n\n /**\n * The opposite of `_.pick`; this method creates an object composed of the\n * own and inherited enumerable properties of `object` that are not omitted.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The source object.\n * @param {Function|...(string|string[])} [predicate] The function invoked per\n * iteration or property names to omit, specified as individual property\n * names or arrays of property names.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Object} Returns the new object.\n * @example\n *\n * var object = { 'user': 'fred', 'age': 40 };\n *\n * _.omit(object, 'age');\n * // => { 'user': 'fred' }\n *\n * _.omit(object, _.isNumber);\n * // => { 'user': 'fred' }\n */\n var omit = restParam(function(object, props) {\n if (object == null) {\n return {};\n }\n if (typeof props[0] != 'function') {\n var props = arrayMap(baseFlatten(props), String);\n return pickByArray(object, baseDifference(keysIn(object), props));\n }\n var predicate = bindCallback(props[0], props[1], 3);\n return pickByCallback(object, function(value, key, object) {\n return !predicate(value, key, object);\n });\n });\n\n /**\n * Creates a two dimensional array of the key-value pairs for `object`,\n * e.g. `[[key1, value1], [key2, value2]]`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the new array of key-value pairs.\n * @example\n *\n * _.pairs({ 'barney': 36, 'fred': 40 });\n * // => [['barney', 36], ['fred', 40]] (iteration order is not guaranteed)\n */\n function pairs(object) {\n object = toObject(object);\n\n var index = -1,\n props = keys(object),\n length = props.length,\n result = Array(length);\n\n while (++index < length) {\n var key = props[index];\n result[index] = [key, object[key]];\n }\n return result;\n }\n\n /**\n * Creates an object composed of the picked `object` properties. Property\n * names may be specified as individual arguments or as arrays of property\n * names. If `predicate` is provided it is invoked for each property of `object`\n * picking the properties `predicate` returns truthy for. The predicate is\n * bound to `thisArg` and invoked with three arguments: (value, key, object).\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The source object.\n * @param {Function|...(string|string[])} [predicate] The function invoked per\n * iteration or property names to pick, specified as individual property\n * names or arrays of property names.\n * @param {*} [thisArg] The `this` binding of `predicate`.\n * @returns {Object} Returns the new object.\n * @example\n *\n * var object = { 'user': 'fred', 'age': 40 };\n *\n * _.pick(object, 'user');\n * // => { 'user': 'fred' }\n *\n * _.pick(object, _.isString);\n * // => { 'user': 'fred' }\n */\n var pick = restParam(function(object, props) {\n if (object == null) {\n return {};\n }\n return typeof props[0] == 'function'\n ? pickByCallback(object, bindCallback(props[0], props[1], 3))\n : pickByArray(object, baseFlatten(props));\n });\n\n /**\n * This method is like `_.get` except that if the resolved value is a function\n * it is invoked with the `this` binding of its parent object and its result\n * is returned.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to resolve.\n * @param {*} [defaultValue] The value returned if the resolved value is `undefined`.\n * @returns {*} Returns the resolved value.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] };\n *\n * _.result(object, 'a[0].b.c1');\n * // => 3\n *\n * _.result(object, 'a[0].b.c2');\n * // => 4\n *\n * _.result(object, 'a.b.c', 'default');\n * // => 'default'\n *\n * _.result(object, 'a.b.c', _.constant('default'));\n * // => 'default'\n */\n function result(object, path, defaultValue) {\n var result = object == null ? undefined : object[path];\n if (result === undefined) {\n if (object != null && !isKey(path, object)) {\n path = toPath(path);\n object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1));\n result = object == null ? undefined : object[last(path)];\n }\n result = result === undefined ? defaultValue : result;\n }\n return isFunction(result) ? result.call(object) : result;\n }\n\n /**\n * Sets the property value of `path` on `object`. If a portion of `path`\n * does not exist it is created.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to augment.\n * @param {Array|string} path The path of the property to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n *\n * _.set(object, 'a[0].b.c', 4);\n * console.log(object.a[0].b.c);\n * // => 4\n *\n * _.set(object, 'x[0].y.z', 5);\n * console.log(object.x[0].y.z);\n * // => 5\n */\n function set(object, path, value) {\n if (object == null) {\n return object;\n }\n var pathKey = (path + '');\n path = (object[pathKey] != null || isKey(path, object)) ? [pathKey] : toPath(path);\n\n var index = -1,\n length = path.length,\n lastIndex = length - 1,\n nested = object;\n\n while (nested != null && ++index < length) {\n var key = path[index];\n if (isObject(nested)) {\n if (index == lastIndex) {\n nested[key] = value;\n } else if (nested[key] == null) {\n nested[key] = isIndex(path[index + 1]) ? [] : {};\n }\n }\n nested = nested[key];\n }\n return object;\n }\n\n /**\n * An alternative to `_.reduce`; this method transforms `object` to a new\n * `accumulator` object which is the result of running each of its own enumerable\n * properties through `iteratee`, with each invocation potentially mutating\n * the `accumulator` object. The `iteratee` is bound to `thisArg` and invoked\n * with four arguments: (accumulator, value, key, object). Iteratee functions\n * may exit iteration early by explicitly returning `false`.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Array|Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [accumulator] The custom accumulator value.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {*} Returns the accumulated value.\n * @example\n *\n * _.transform([2, 3, 4], function(result, n) {\n * result.push(n *= n);\n * return n % 2 == 0;\n * });\n * // => [4, 9]\n *\n * _.transform({ 'a': 1, 'b': 2 }, function(result, n, key) {\n * result[key] = n * 3;\n * });\n * // => { 'a': 3, 'b': 6 }\n */\n function transform(object, iteratee, accumulator, thisArg) {\n var isArr = isArray(object) || isTypedArray(object);\n iteratee = getCallback(iteratee, thisArg, 4);\n\n if (accumulator == null) {\n if (isArr || isObject(object)) {\n var Ctor = object.constructor;\n if (isArr) {\n accumulator = isArray(object) ? new Ctor : [];\n } else {\n accumulator = baseCreate(isFunction(Ctor) ? Ctor.prototype : undefined);\n }\n } else {\n accumulator = {};\n }\n }\n (isArr ? arrayEach : baseForOwn)(object, function(value, index, object) {\n return iteratee(accumulator, value, index, object);\n });\n return accumulator;\n }\n\n /**\n * Creates an array of the own enumerable property values of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property values.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.values(new Foo);\n * // => [1, 2] (iteration order is not guaranteed)\n *\n * _.values('hi');\n * // => ['h', 'i']\n */\n function values(object) {\n return baseValues(object, keys(object));\n }\n\n /**\n * Creates an array of the own and inherited enumerable property values\n * of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property values.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.valuesIn(new Foo);\n * // => [1, 2, 3] (iteration order is not guaranteed)\n */\n function valuesIn(object) {\n return baseValues(object, keysIn(object));\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Checks if `n` is between `start` and up to but not including, `end`. If\n * `end` is not specified it is set to `start` with `start` then set to `0`.\n *\n * @static\n * @memberOf _\n * @category Number\n * @param {number} n The number to check.\n * @param {number} [start=0] The start of the range.\n * @param {number} end The end of the range.\n * @returns {boolean} Returns `true` if `n` is in the range, else `false`.\n * @example\n *\n * _.inRange(3, 2, 4);\n * // => true\n *\n * _.inRange(4, 8);\n * // => true\n *\n * _.inRange(4, 2);\n * // => false\n *\n * _.inRange(2, 2);\n * // => false\n *\n * _.inRange(1.2, 2);\n * // => true\n *\n * _.inRange(5.2, 4);\n * // => false\n */\n function inRange(value, start, end) {\n start = +start || 0;\n if (end === undefined) {\n end = start;\n start = 0;\n } else {\n end = +end || 0;\n }\n return value >= nativeMin(start, end) && value < nativeMax(start, end);\n }\n\n /**\n * Produces a random number between `min` and `max` (inclusive). If only one\n * argument is provided a number between `0` and the given number is returned.\n * If `floating` is `true`, or either `min` or `max` are floats, a floating-point\n * number is returned instead of an integer.\n *\n * @static\n * @memberOf _\n * @category Number\n * @param {number} [min=0] The minimum possible value.\n * @param {number} [max=1] The maximum possible value.\n * @param {boolean} [floating] Specify returning a floating-point number.\n * @returns {number} Returns the random number.\n * @example\n *\n * _.random(0, 5);\n * // => an integer between 0 and 5\n *\n * _.random(5);\n * // => also an integer between 0 and 5\n *\n * _.random(5, true);\n * // => a floating-point number between 0 and 5\n *\n * _.random(1.2, 5.2);\n * // => a floating-point number between 1.2 and 5.2\n */\n function random(min, max, floating) {\n if (floating && isIterateeCall(min, max, floating)) {\n max = floating = undefined;\n }\n var noMin = min == null,\n noMax = max == null;\n\n if (floating == null) {\n if (noMax && typeof min == 'boolean') {\n floating = min;\n min = 1;\n }\n else if (typeof max == 'boolean') {\n floating = max;\n noMax = true;\n }\n }\n if (noMin && noMax) {\n max = 1;\n noMax = false;\n }\n min = +min || 0;\n if (noMax) {\n max = min;\n min = 0;\n } else {\n max = +max || 0;\n }\n if (floating || min % 1 || max % 1) {\n var rand = nativeRandom();\n return nativeMin(min + (rand * (max - min + parseFloat('1e-' + ((rand + '').length - 1)))), max);\n }\n return baseRandom(min, max);\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase).\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the camel cased string.\n * @example\n *\n * _.camelCase('Foo Bar');\n * // => 'fooBar'\n *\n * _.camelCase('--foo-bar');\n * // => 'fooBar'\n *\n * _.camelCase('__foo_bar__');\n * // => 'fooBar'\n */\n var camelCase = createCompounder(function(result, word, index) {\n word = word.toLowerCase();\n return result + (index ? (word.charAt(0).toUpperCase() + word.slice(1)) : word);\n });\n\n /**\n * Capitalizes the first character of `string`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to capitalize.\n * @returns {string} Returns the capitalized string.\n * @example\n *\n * _.capitalize('fred');\n * // => 'Fred'\n */\n function capitalize(string) {\n string = baseToString(string);\n return string && (string.charAt(0).toUpperCase() + string.slice(1));\n }\n\n /**\n * Deburrs `string` by converting [latin-1 supplementary letters](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table)\n * to basic latin letters and removing [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks).\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to deburr.\n * @returns {string} Returns the deburred string.\n * @example\n *\n * _.deburr('déjà vu');\n * // => 'deja vu'\n */\n function deburr(string) {\n string = baseToString(string);\n return string && string.replace(reLatin1, deburrLetter).replace(reComboMark, '');\n }\n\n /**\n * Checks if `string` ends with the given target string.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to search.\n * @param {string} [target] The string to search for.\n * @param {number} [position=string.length] The position to search from.\n * @returns {boolean} Returns `true` if `string` ends with `target`, else `false`.\n * @example\n *\n * _.endsWith('abc', 'c');\n * // => true\n *\n * _.endsWith('abc', 'b');\n * // => false\n *\n * _.endsWith('abc', 'b', 2);\n * // => true\n */\n function endsWith(string, target, position) {\n string = baseToString(string);\n target = (target + '');\n\n var length = string.length;\n position = position === undefined\n ? length\n : nativeMin(position < 0 ? 0 : (+position || 0), length);\n\n position -= target.length;\n return position >= 0 && string.indexOf(target, position) == position;\n }\n\n /**\n * Converts the characters \"&\", \"<\", \">\", '\"', \"'\", and \"\\`\", in `string` to\n * their corresponding HTML entities.\n *\n * **Note:** No other characters are escaped. To escape additional characters\n * use a third-party library like [_he_](https://mths.be/he).\n *\n * Though the \">\" character is escaped for symmetry, characters like\n * \">\" and \"/\" don't need escaping in HTML and have no special meaning\n * unless they're part of a tag or unquoted attribute value.\n * See [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands)\n * (under \"semi-related fun fact\") for more details.\n *\n * Backticks are escaped because in Internet Explorer < 9, they can break out\n * of attribute values or HTML comments. See [#59](https://html5sec.org/#59),\n * [#102](https://html5sec.org/#102), [#108](https://html5sec.org/#108), and\n * [#133](https://html5sec.org/#133) of the [HTML5 Security Cheatsheet](https://html5sec.org/)\n * for more details.\n *\n * When working with HTML you should always [quote attribute values](http://wonko.com/post/html-escaping)\n * to reduce XSS vectors.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to escape.\n * @returns {string} Returns the escaped string.\n * @example\n *\n * _.escape('fred, barney, & pebbles');\n * // => 'fred, barney, & pebbles'\n */\n function escape(string) {\n // Reset `lastIndex` because in IE < 9 `String#replace` does not.\n string = baseToString(string);\n return (string && reHasUnescapedHtml.test(string))\n ? string.replace(reUnescapedHtml, escapeHtmlChar)\n : string;\n }\n\n /**\n * Escapes the `RegExp` special characters \"\\\", \"/\", \"^\", \"$\", \".\", \"|\", \"?\",\n * \"*\", \"+\", \"(\", \")\", \"[\", \"]\", \"{\" and \"}\" in `string`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to escape.\n * @returns {string} Returns the escaped string.\n * @example\n *\n * _.escapeRegExp('[lodash](https://lodash.com/)');\n * // => '\\[lodash\\]\\(https:\\/\\/lodash\\.com\\/\\)'\n */\n function escapeRegExp(string) {\n string = baseToString(string);\n return (string && reHasRegExpChars.test(string))\n ? string.replace(reRegExpChars, escapeRegExpChar)\n : (string || '(?:)');\n }\n\n /**\n * Converts `string` to [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles).\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the kebab cased string.\n * @example\n *\n * _.kebabCase('Foo Bar');\n * // => 'foo-bar'\n *\n * _.kebabCase('fooBar');\n * // => 'foo-bar'\n *\n * _.kebabCase('__foo_bar__');\n * // => 'foo-bar'\n */\n var kebabCase = createCompounder(function(result, word, index) {\n return result + (index ? '-' : '') + word.toLowerCase();\n });\n\n /**\n * Pads `string` on the left and right sides if it's shorter than `length`.\n * Padding characters are truncated if they can't be evenly divided by `length`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to pad.\n * @param {number} [length=0] The padding length.\n * @param {string} [chars=' '] The string used as padding.\n * @returns {string} Returns the padded string.\n * @example\n *\n * _.pad('abc', 8);\n * // => ' abc '\n *\n * _.pad('abc', 8, '_-');\n * // => '_-abc_-_'\n *\n * _.pad('abc', 3);\n * // => 'abc'\n */\n function pad(string, length, chars) {\n string = baseToString(string);\n length = +length;\n\n var strLength = string.length;\n if (strLength >= length || !nativeIsFinite(length)) {\n return string;\n }\n var mid = (length - strLength) / 2,\n leftLength = nativeFloor(mid),\n rightLength = nativeCeil(mid);\n\n chars = createPadding('', rightLength, chars);\n return chars.slice(0, leftLength) + string + chars;\n }\n\n /**\n * Pads `string` on the left side if it's shorter than `length`. Padding\n * characters are truncated if they exceed `length`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to pad.\n * @param {number} [length=0] The padding length.\n * @param {string} [chars=' '] The string used as padding.\n * @returns {string} Returns the padded string.\n * @example\n *\n * _.padLeft('abc', 6);\n * // => ' abc'\n *\n * _.padLeft('abc', 6, '_-');\n * // => '_-_abc'\n *\n * _.padLeft('abc', 3);\n * // => 'abc'\n */\n var padLeft = createPadDir();\n\n /**\n * Pads `string` on the right side if it's shorter than `length`. Padding\n * characters are truncated if they exceed `length`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to pad.\n * @param {number} [length=0] The padding length.\n * @param {string} [chars=' '] The string used as padding.\n * @returns {string} Returns the padded string.\n * @example\n *\n * _.padRight('abc', 6);\n * // => 'abc '\n *\n * _.padRight('abc', 6, '_-');\n * // => 'abc_-_'\n *\n * _.padRight('abc', 3);\n * // => 'abc'\n */\n var padRight = createPadDir(true);\n\n /**\n * Converts `string` to an integer of the specified radix. If `radix` is\n * `undefined` or `0`, a `radix` of `10` is used unless `value` is a hexadecimal,\n * in which case a `radix` of `16` is used.\n *\n * **Note:** This method aligns with the [ES5 implementation](https://es5.github.io/#E)\n * of `parseInt`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} string The string to convert.\n * @param {number} [radix] The radix to interpret `value` by.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {number} Returns the converted integer.\n * @example\n *\n * _.parseInt('08');\n * // => 8\n *\n * _.map(['6', '08', '10'], _.parseInt);\n * // => [6, 8, 10]\n */\n function parseInt(string, radix, guard) {\n // Firefox < 21 and Opera < 15 follow ES3 for `parseInt`.\n // Chrome fails to trim leading <BOM> whitespace characters.\n // See https://code.google.com/p/v8/issues/detail?id=3109 for more details.\n if (guard ? isIterateeCall(string, radix, guard) : radix == null) {\n radix = 0;\n } else if (radix) {\n radix = +radix;\n }\n string = trim(string);\n return nativeParseInt(string, radix || (reHasHexPrefix.test(string) ? 16 : 10));\n }\n\n /**\n * Repeats the given string `n` times.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to repeat.\n * @param {number} [n=0] The number of times to repeat the string.\n * @returns {string} Returns the repeated string.\n * @example\n *\n * _.repeat('*', 3);\n * // => '***'\n *\n * _.repeat('abc', 2);\n * // => 'abcabc'\n *\n * _.repeat('abc', 0);\n * // => ''\n */\n function repeat(string, n) {\n var result = '';\n string = baseToString(string);\n n = +n;\n if (n < 1 || !string || !nativeIsFinite(n)) {\n return result;\n }\n // Leverage the exponentiation by squaring algorithm for a faster repeat.\n // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details.\n do {\n if (n % 2) {\n result += string;\n }\n n = nativeFloor(n / 2);\n string += string;\n } while (n);\n\n return result;\n }\n\n /**\n * Converts `string` to [snake case](https://en.wikipedia.org/wiki/Snake_case).\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the snake cased string.\n * @example\n *\n * _.snakeCase('Foo Bar');\n * // => 'foo_bar'\n *\n * _.snakeCase('fooBar');\n * // => 'foo_bar'\n *\n * _.snakeCase('--foo-bar');\n * // => 'foo_bar'\n */\n var snakeCase = createCompounder(function(result, word, index) {\n return result + (index ? '_' : '') + word.toLowerCase();\n });\n\n /**\n * Converts `string` to [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage).\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the start cased string.\n * @example\n *\n * _.startCase('--foo-bar');\n * // => 'Foo Bar'\n *\n * _.startCase('fooBar');\n * // => 'Foo Bar'\n *\n * _.startCase('__foo_bar__');\n * // => 'Foo Bar'\n */\n var startCase = createCompounder(function(result, word, index) {\n return result + (index ? ' ' : '') + (word.charAt(0).toUpperCase() + word.slice(1));\n });\n\n /**\n * Checks if `string` starts with the given target string.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to search.\n * @param {string} [target] The string to search for.\n * @param {number} [position=0] The position to search from.\n * @returns {boolean} Returns `true` if `string` starts with `target`, else `false`.\n * @example\n *\n * _.startsWith('abc', 'a');\n * // => true\n *\n * _.startsWith('abc', 'b');\n * // => false\n *\n * _.startsWith('abc', 'b', 1);\n * // => true\n */\n function startsWith(string, target, position) {\n string = baseToString(string);\n position = position == null\n ? 0\n : nativeMin(position < 0 ? 0 : (+position || 0), string.length);\n\n return string.lastIndexOf(target, position) == position;\n }\n\n /**\n * Creates a compiled template function that can interpolate data properties\n * in \"interpolate\" delimiters, HTML-escape interpolated data properties in\n * \"escape\" delimiters, and execute JavaScript in \"evaluate\" delimiters. Data\n * properties may be accessed as free variables in the template. If a setting\n * object is provided it takes precedence over `_.templateSettings` values.\n *\n * **Note:** In the development build `_.template` utilizes\n * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)\n * for easier debugging.\n *\n * For more information on precompiling templates see\n * [lodash's custom builds documentation](https://lodash.com/custom-builds).\n *\n * For more information on Chrome extension sandboxes see\n * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval).\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The template string.\n * @param {Object} [options] The options object.\n * @param {RegExp} [options.escape] The HTML \"escape\" delimiter.\n * @param {RegExp} [options.evaluate] The \"evaluate\" delimiter.\n * @param {Object} [options.imports] An object to import into the template as free variables.\n * @param {RegExp} [options.interpolate] The \"interpolate\" delimiter.\n * @param {string} [options.sourceURL] The sourceURL of the template's compiled source.\n * @param {string} [options.variable] The data object variable name.\n * @param- {Object} [otherOptions] Enables the legacy `options` param signature.\n * @returns {Function} Returns the compiled template function.\n * @example\n *\n * // using the \"interpolate\" delimiter to create a compiled template\n * var compiled = _.template('hello <%= user %>!');\n * compiled({ 'user': 'fred' });\n * // => 'hello fred!'\n *\n * // using the HTML \"escape\" delimiter to escape data property values\n * var compiled = _.template('<b><%- value %></b>');\n * compiled({ 'value': '<script>' });\n * // => '<b><script></b>'\n *\n * // using the \"evaluate\" delimiter to execute JavaScript and generate HTML\n * var compiled = _.template('<% _.forEach(users, function(user) { %><li><%- user %></li><% }); %>');\n * compiled({ 'users': ['fred', 'barney'] });\n * // => '<li>fred</li><li>barney</li>'\n *\n * // using the internal `print` function in \"evaluate\" delimiters\n * var compiled = _.template('<% print(\"hello \" + user); %>!');\n * compiled({ 'user': 'barney' });\n * // => 'hello barney!'\n *\n * // using the ES delimiter as an alternative to the default \"interpolate\" delimiter\n * var compiled = _.template('hello ${ user }!');\n * compiled({ 'user': 'pebbles' });\n * // => 'hello pebbles!'\n *\n * // using custom template delimiters\n * _.templateSettings.interpolate = /{{([\\s\\S]+?)}}/g;\n * var compiled = _.template('hello {{ user }}!');\n * compiled({ 'user': 'mustache' });\n * // => 'hello mustache!'\n *\n * // using backslashes to treat delimiters as plain text\n * var compiled = _.template('<%= \"\\\\<%- value %\\\\>\" %>');\n * compiled({ 'value': 'ignored' });\n * // => '<%- value %>'\n *\n * // using the `imports` option to import `jQuery` as `jq`\n * var text = '<% jq.each(users, function(user) { %><li><%- user %></li><% }); %>';\n * var compiled = _.template(text, { 'imports': { 'jq': jQuery } });\n * compiled({ 'users': ['fred', 'barney'] });\n * // => '<li>fred</li><li>barney</li>'\n *\n * // using the `sourceURL` option to specify a custom sourceURL for the template\n * var compiled = _.template('hello <%= user %>!', { 'sourceURL': '/basic/greeting.jst' });\n * compiled(data);\n * // => find the source of \"greeting.jst\" under the Sources tab or Resources panel of the web inspector\n *\n * // using the `variable` option to ensure a with-statement isn't used in the compiled template\n * var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' });\n * compiled.source;\n * // => function(data) {\n * // var __t, __p = '';\n * // __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!';\n * // return __p;\n * // }\n *\n * // using the `source` property to inline compiled templates for meaningful\n * // line numbers in error messages and a stack trace\n * fs.writeFileSync(path.join(cwd, 'jst.js'), '\\\n * var JST = {\\\n * \"main\": ' + _.template(mainText).source + '\\\n * };\\\n * ');\n */\n function template(string, options, otherOptions) {\n // Based on John Resig's `tmpl` implementation (http://ejohn.org/blog/javascript-micro-templating/)\n // and Laura Doktorova's doT.js (https://github.com/olado/doT).\n var settings = lodash.templateSettings;\n\n if (otherOptions && isIterateeCall(string, options, otherOptions)) {\n options = otherOptions = undefined;\n }\n string = baseToString(string);\n options = assignWith(baseAssign({}, otherOptions || options), settings, assignOwnDefaults);\n\n var imports = assignWith(baseAssign({}, options.imports), settings.imports, assignOwnDefaults),\n importsKeys = keys(imports),\n importsValues = baseValues(imports, importsKeys);\n\n var isEscaping,\n isEvaluating,\n index = 0,\n interpolate = options.interpolate || reNoMatch,\n source = \"__p += '\";\n\n // Compile the regexp to match each delimiter.\n var reDelimiters = RegExp(\n (options.escape || reNoMatch).source + '|' +\n interpolate.source + '|' +\n (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + '|' +\n (options.evaluate || reNoMatch).source + '|$'\n , 'g');\n\n // Use a sourceURL for easier debugging.\n var sourceURL = '//# sourceURL=' +\n ('sourceURL' in options\n ? options.sourceURL\n : ('lodash.templateSources[' + (++templateCounter) + ']')\n ) + '\\n';\n\n string.replace(reDelimiters, function(match, escapeValue, interpolateValue, esTemplateValue, evaluateValue, offset) {\n interpolateValue || (interpolateValue = esTemplateValue);\n\n // Escape characters that can't be included in string literals.\n source += string.slice(index, offset).replace(reUnescapedString, escapeStringChar);\n\n // Replace delimiters with snippets.\n if (escapeValue) {\n isEscaping = true;\n source += \"' +\\n__e(\" + escapeValue + \") +\\n'\";\n }\n if (evaluateValue) {\n isEvaluating = true;\n source += \"';\\n\" + evaluateValue + \";\\n__p += '\";\n }\n if (interpolateValue) {\n source += \"' +\\n((__t = (\" + interpolateValue + \")) == null ? '' : __t) +\\n'\";\n }\n index = offset + match.length;\n\n // The JS engine embedded in Adobe products requires returning the `match`\n // string in order to produce the correct `offset` value.\n return match;\n });\n\n source += \"';\\n\";\n\n // If `variable` is not specified wrap a with-statement around the generated\n // code to add the data object to the top of the scope chain.\n var variable = options.variable;\n if (!variable) {\n source = 'with (obj) {\\n' + source + '\\n}\\n';\n }\n // Cleanup code by stripping empty strings.\n source = (isEvaluating ? source.replace(reEmptyStringLeading, '') : source)\n .replace(reEmptyStringMiddle, '$1')\n .replace(reEmptyStringTrailing, '$1;');\n\n // Frame code as the function body.\n source = 'function(' + (variable || 'obj') + ') {\\n' +\n (variable\n ? ''\n : 'obj || (obj = {});\\n'\n ) +\n \"var __t, __p = ''\" +\n (isEscaping\n ? ', __e = _.escape'\n : ''\n ) +\n (isEvaluating\n ? ', __j = Array.prototype.join;\\n' +\n \"function print() { __p += __j.call(arguments, '') }\\n\"\n : ';\\n'\n ) +\n source +\n 'return __p\\n}';\n\n var result = attempt(function() {\n return Function(importsKeys, sourceURL + 'return ' + source).apply(undefined, importsValues);\n });\n\n // Provide the compiled function's source by its `toString` method or\n // the `source` property as a convenience for inlining compiled templates.\n result.source = source;\n if (isError(result)) {\n throw result;\n }\n return result;\n }\n\n /**\n * Removes leading and trailing whitespace or specified characters from `string`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to trim.\n * @param {string} [chars=whitespace] The characters to trim.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {string} Returns the trimmed string.\n * @example\n *\n * _.trim(' abc ');\n * // => 'abc'\n *\n * _.trim('-_-abc-_-', '_-');\n * // => 'abc'\n *\n * _.map([' foo ', ' bar '], _.trim);\n * // => ['foo', 'bar']\n */\n function trim(string, chars, guard) {\n var value = string;\n string = baseToString(string);\n if (!string) {\n return string;\n }\n if (guard ? isIterateeCall(value, chars, guard) : chars == null) {\n return string.slice(trimmedLeftIndex(string), trimmedRightIndex(string) + 1);\n }\n chars = (chars + '');\n return string.slice(charsLeftIndex(string, chars), charsRightIndex(string, chars) + 1);\n }\n\n /**\n * Removes leading whitespace or specified characters from `string`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to trim.\n * @param {string} [chars=whitespace] The characters to trim.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {string} Returns the trimmed string.\n * @example\n *\n * _.trimLeft(' abc ');\n * // => 'abc '\n *\n * _.trimLeft('-_-abc-_-', '_-');\n * // => 'abc-_-'\n */\n function trimLeft(string, chars, guard) {\n var value = string;\n string = baseToString(string);\n if (!string) {\n return string;\n }\n if (guard ? isIterateeCall(value, chars, guard) : chars == null) {\n return string.slice(trimmedLeftIndex(string));\n }\n return string.slice(charsLeftIndex(string, (chars + '')));\n }\n\n /**\n * Removes trailing whitespace or specified characters from `string`.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to trim.\n * @param {string} [chars=whitespace] The characters to trim.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {string} Returns the trimmed string.\n * @example\n *\n * _.trimRight(' abc ');\n * // => ' abc'\n *\n * _.trimRight('-_-abc-_-', '_-');\n * // => '-_-abc'\n */\n function trimRight(string, chars, guard) {\n var value = string;\n string = baseToString(string);\n if (!string) {\n return string;\n }\n if (guard ? isIterateeCall(value, chars, guard) : chars == null) {\n return string.slice(0, trimmedRightIndex(string) + 1);\n }\n return string.slice(0, charsRightIndex(string, (chars + '')) + 1);\n }\n\n /**\n * Truncates `string` if it's longer than the given maximum string length.\n * The last characters of the truncated string are replaced with the omission\n * string which defaults to \"...\".\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to truncate.\n * @param {Object|number} [options] The options object or maximum string length.\n * @param {number} [options.length=30] The maximum string length.\n * @param {string} [options.omission='...'] The string to indicate text is omitted.\n * @param {RegExp|string} [options.separator] The separator pattern to truncate to.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {string} Returns the truncated string.\n * @example\n *\n * _.trunc('hi-diddly-ho there, neighborino');\n * // => 'hi-diddly-ho there, neighbo...'\n *\n * _.trunc('hi-diddly-ho there, neighborino', 24);\n * // => 'hi-diddly-ho there, n...'\n *\n * _.trunc('hi-diddly-ho there, neighborino', {\n * 'length': 24,\n * 'separator': ' '\n * });\n * // => 'hi-diddly-ho there,...'\n *\n * _.trunc('hi-diddly-ho there, neighborino', {\n * 'length': 24,\n * 'separator': /,? +/\n * });\n * // => 'hi-diddly-ho there...'\n *\n * _.trunc('hi-diddly-ho there, neighborino', {\n * 'omission': ' [...]'\n * });\n * // => 'hi-diddly-ho there, neig [...]'\n */\n function trunc(string, options, guard) {\n if (guard && isIterateeCall(string, options, guard)) {\n options = undefined;\n }\n var length = DEFAULT_TRUNC_LENGTH,\n omission = DEFAULT_TRUNC_OMISSION;\n\n if (options != null) {\n if (isObject(options)) {\n var separator = 'separator' in options ? options.separator : separator;\n length = 'length' in options ? (+options.length || 0) : length;\n omission = 'omission' in options ? baseToString(options.omission) : omission;\n } else {\n length = +options || 0;\n }\n }\n string = baseToString(string);\n if (length >= string.length) {\n return string;\n }\n var end = length - omission.length;\n if (end < 1) {\n return omission;\n }\n var result = string.slice(0, end);\n if (separator == null) {\n return result + omission;\n }\n if (isRegExp(separator)) {\n if (string.slice(end).search(separator)) {\n var match,\n newEnd,\n substring = string.slice(0, end);\n\n if (!separator.global) {\n separator = RegExp(separator.source, (reFlags.exec(separator) || '') + 'g');\n }\n separator.lastIndex = 0;\n while ((match = separator.exec(substring))) {\n newEnd = match.index;\n }\n result = result.slice(0, newEnd == null ? end : newEnd);\n }\n } else if (string.indexOf(separator, end) != end) {\n var index = result.lastIndexOf(separator);\n if (index > -1) {\n result = result.slice(0, index);\n }\n }\n return result + omission;\n }\n\n /**\n * The inverse of `_.escape`; this method converts the HTML entities\n * `&`, `<`, `>`, `"`, `'`, and ``` in `string` to their\n * corresponding characters.\n *\n * **Note:** No other HTML entities are unescaped. To unescape additional HTML\n * entities use a third-party library like [_he_](https://mths.be/he).\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to unescape.\n * @returns {string} Returns the unescaped string.\n * @example\n *\n * _.unescape('fred, barney, & pebbles');\n * // => 'fred, barney, & pebbles'\n */\n function unescape(string) {\n string = baseToString(string);\n return (string && reHasEscapedHtml.test(string))\n ? string.replace(reEscapedHtml, unescapeHtmlChar)\n : string;\n }\n\n /**\n * Splits `string` into an array of its words.\n *\n * @static\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to inspect.\n * @param {RegExp|string} [pattern] The pattern to match words.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Array} Returns the words of `string`.\n * @example\n *\n * _.words('fred, barney, & pebbles');\n * // => ['fred', 'barney', 'pebbles']\n *\n * _.words('fred, barney, & pebbles', /[^, ]+/g);\n * // => ['fred', 'barney', '&', 'pebbles']\n */\n function words(string, pattern, guard) {\n if (guard && isIterateeCall(string, pattern, guard)) {\n pattern = undefined;\n }\n string = baseToString(string);\n return string.match(pattern || reWords) || [];\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Attempts to invoke `func`, returning either the result or the caught error\n * object. Any additional arguments are provided to `func` when it is invoked.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Function} func The function to attempt.\n * @returns {*} Returns the `func` result or error object.\n * @example\n *\n * // avoid throwing errors for invalid selectors\n * var elements = _.attempt(function(selector) {\n * return document.querySelectorAll(selector);\n * }, '>_>');\n *\n * if (_.isError(elements)) {\n * elements = [];\n * }\n */\n var attempt = restParam(function(func, args) {\n try {\n return func.apply(undefined, args);\n } catch(e) {\n return isError(e) ? e : new Error(e);\n }\n });\n\n /**\n * Creates a function that invokes `func` with the `this` binding of `thisArg`\n * and arguments of the created function. If `func` is a property name the\n * created callback returns the property value for a given element. If `func`\n * is an object the created callback returns `true` for elements that contain\n * the equivalent object properties, otherwise it returns `false`.\n *\n * @static\n * @memberOf _\n * @alias iteratee\n * @category Utility\n * @param {*} [func=_.identity] The value to convert to a callback.\n * @param {*} [thisArg] The `this` binding of `func`.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Function} Returns the callback.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 }\n * ];\n *\n * // wrap to create custom callback shorthands\n * _.callback = _.wrap(_.callback, function(callback, func, thisArg) {\n * var match = /^(.+?)__([gl]t)(.+)$/.exec(func);\n * if (!match) {\n * return callback(func, thisArg);\n * }\n * return function(object) {\n * return match[2] == 'gt'\n * ? object[match[1]] > match[3]\n * : object[match[1]] < match[3];\n * };\n * });\n *\n * _.filter(users, 'age__gt36');\n * // => [{ 'user': 'fred', 'age': 40 }]\n */\n function callback(func, thisArg, guard) {\n if (guard && isIterateeCall(func, thisArg, guard)) {\n thisArg = undefined;\n }\n return isObjectLike(func)\n ? matches(func)\n : baseCallback(func, thisArg);\n }\n\n /**\n * Creates a function that returns `value`.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {*} value The value to return from the new function.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var object = { 'user': 'fred' };\n * var getter = _.constant(object);\n *\n * getter() === object;\n * // => true\n */\n function constant(value) {\n return function() {\n return value;\n };\n }\n\n /**\n * This method returns the first argument provided to it.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'user': 'fred' };\n *\n * _.identity(object) === object;\n * // => true\n */\n function identity(value) {\n return value;\n }\n\n /**\n * Creates a function that performs a deep comparison between a given object\n * and `source`, returning `true` if the given object has equivalent property\n * values, else `false`.\n *\n * **Note:** This method supports comparing arrays, booleans, `Date` objects,\n * numbers, `Object` objects, regexes, and strings. Objects are compared by\n * their own, not inherited, enumerable properties. For comparing a single\n * own or inherited property value see `_.matchesProperty`.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Object} source The object of property values to match.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': true },\n * { 'user': 'fred', 'age': 40, 'active': false }\n * ];\n *\n * _.filter(users, _.matches({ 'age': 40, 'active': false }));\n * // => [{ 'user': 'fred', 'age': 40, 'active': false }]\n */\n function matches(source) {\n return baseMatches(baseClone(source, true));\n }\n\n /**\n * Creates a function that compares the property value of `path` on a given\n * object to `value`.\n *\n * **Note:** This method supports comparing arrays, booleans, `Date` objects,\n * numbers, `Object` objects, regexes, and strings. Objects are compared by\n * their own, not inherited, enumerable properties.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Array|string} path The path of the property to get.\n * @param {*} srcValue The value to match.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var users = [\n * { 'user': 'barney' },\n * { 'user': 'fred' }\n * ];\n *\n * _.find(users, _.matchesProperty('user', 'fred'));\n * // => { 'user': 'fred' }\n */\n function matchesProperty(path, srcValue) {\n return baseMatchesProperty(path, baseClone(srcValue, true));\n }\n\n /**\n * Creates a function that invokes the method at `path` on a given object.\n * Any additional arguments are provided to the invoked method.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Array|string} path The path of the method to invoke.\n * @param {...*} [args] The arguments to invoke the method with.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var objects = [\n * { 'a': { 'b': { 'c': _.constant(2) } } },\n * { 'a': { 'b': { 'c': _.constant(1) } } }\n * ];\n *\n * _.map(objects, _.method('a.b.c'));\n * // => [2, 1]\n *\n * _.invoke(_.sortBy(objects, _.method(['a', 'b', 'c'])), 'a.b.c');\n * // => [1, 2]\n */\n var method = restParam(function(path, args) {\n return function(object) {\n return invokePath(object, path, args);\n };\n });\n\n /**\n * The opposite of `_.method`; this method creates a function that invokes\n * the method at a given path on `object`. Any additional arguments are\n * provided to the invoked method.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Object} object The object to query.\n * @param {...*} [args] The arguments to invoke the method with.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var array = _.times(3, _.constant),\n * object = { 'a': array, 'b': array, 'c': array };\n *\n * _.map(['a[2]', 'c[0]'], _.methodOf(object));\n * // => [2, 0]\n *\n * _.map([['a', '2'], ['c', '0']], _.methodOf(object));\n * // => [2, 0]\n */\n var methodOf = restParam(function(object, args) {\n return function(path) {\n return invokePath(object, path, args);\n };\n });\n\n /**\n * Adds all own enumerable function properties of a source object to the\n * destination object. If `object` is a function then methods are added to\n * its prototype as well.\n *\n * **Note:** Use `_.runInContext` to create a pristine `lodash` function to\n * avoid conflicts caused by modifying the original.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Function|Object} [object=lodash] The destination object.\n * @param {Object} source The object of functions to add.\n * @param {Object} [options] The options object.\n * @param {boolean} [options.chain=true] Specify whether the functions added\n * are chainable.\n * @returns {Function|Object} Returns `object`.\n * @example\n *\n * function vowels(string) {\n * return _.filter(string, function(v) {\n * return /[aeiou]/i.test(v);\n * });\n * }\n *\n * _.mixin({ 'vowels': vowels });\n * _.vowels('fred');\n * // => ['e']\n *\n * _('fred').vowels().value();\n * // => ['e']\n *\n * _.mixin({ 'vowels': vowels }, { 'chain': false });\n * _('fred').vowels();\n * // => ['e']\n */\n function mixin(object, source, options) {\n if (options == null) {\n var isObj = isObject(source),\n props = isObj ? keys(source) : undefined,\n methodNames = (props && props.length) ? baseFunctions(source, props) : undefined;\n\n if (!(methodNames ? methodNames.length : isObj)) {\n methodNames = false;\n options = source;\n source = object;\n object = this;\n }\n }\n if (!methodNames) {\n methodNames = baseFunctions(source, keys(source));\n }\n var chain = true,\n index = -1,\n isFunc = isFunction(object),\n length = methodNames.length;\n\n if (options === false) {\n chain = false;\n } else if (isObject(options) && 'chain' in options) {\n chain = options.chain;\n }\n while (++index < length) {\n var methodName = methodNames[index],\n func = source[methodName];\n\n object[methodName] = func;\n if (isFunc) {\n object.prototype[methodName] = (function(func) {\n return function() {\n var chainAll = this.__chain__;\n if (chain || chainAll) {\n var result = object(this.__wrapped__),\n actions = result.__actions__ = arrayCopy(this.__actions__);\n\n actions.push({ 'func': func, 'args': arguments, 'thisArg': object });\n result.__chain__ = chainAll;\n return result;\n }\n return func.apply(object, arrayPush([this.value()], arguments));\n };\n }(func));\n }\n }\n return object;\n }\n\n /**\n * Reverts the `_` variable to its previous value and returns a reference to\n * the `lodash` function.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @returns {Function} Returns the `lodash` function.\n * @example\n *\n * var lodash = _.noConflict();\n */\n function noConflict() {\n root._ = oldDash;\n return this;\n }\n\n /**\n * A no-operation function that returns `undefined` regardless of the\n * arguments it receives.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @example\n *\n * var object = { 'user': 'fred' };\n *\n * _.noop(object) === undefined;\n * // => true\n */\n function noop() {\n // No operation performed.\n }\n\n /**\n * Creates a function that returns the property value at `path` on a\n * given object.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Array|string} path The path of the property to get.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var objects = [\n * { 'a': { 'b': { 'c': 2 } } },\n * { 'a': { 'b': { 'c': 1 } } }\n * ];\n *\n * _.map(objects, _.property('a.b.c'));\n * // => [2, 1]\n *\n * _.pluck(_.sortBy(objects, _.property(['a', 'b', 'c'])), 'a.b.c');\n * // => [1, 2]\n */\n function property(path) {\n return isKey(path) ? baseProperty(path) : basePropertyDeep(path);\n }\n\n /**\n * The opposite of `_.property`; this method creates a function that returns\n * the property value at a given path on `object`.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {Object} object The object to query.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var array = [0, 1, 2],\n * object = { 'a': array, 'b': array, 'c': array };\n *\n * _.map(['a[2]', 'c[0]'], _.propertyOf(object));\n * // => [2, 0]\n *\n * _.map([['a', '2'], ['c', '0']], _.propertyOf(object));\n * // => [2, 0]\n */\n function propertyOf(object) {\n return function(path) {\n return baseGet(object, toPath(path), path + '');\n };\n }\n\n /**\n * Creates an array of numbers (positive and/or negative) progressing from\n * `start` up to, but not including, `end`. If `end` is not specified it is\n * set to `start` with `start` then set to `0`. If `end` is less than `start`\n * a zero-length range is created unless a negative `step` is specified.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {number} [start=0] The start of the range.\n * @param {number} end The end of the range.\n * @param {number} [step=1] The value to increment or decrement by.\n * @returns {Array} Returns the new array of numbers.\n * @example\n *\n * _.range(4);\n * // => [0, 1, 2, 3]\n *\n * _.range(1, 5);\n * // => [1, 2, 3, 4]\n *\n * _.range(0, 20, 5);\n * // => [0, 5, 10, 15]\n *\n * _.range(0, -4, -1);\n * // => [0, -1, -2, -3]\n *\n * _.range(1, 4, 0);\n * // => [1, 1, 1]\n *\n * _.range(0);\n * // => []\n */\n function range(start, end, step) {\n if (step && isIterateeCall(start, end, step)) {\n end = step = undefined;\n }\n start = +start || 0;\n step = step == null ? 1 : (+step || 0);\n\n if (end == null) {\n end = start;\n start = 0;\n } else {\n end = +end || 0;\n }\n // Use `Array(length)` so engines like Chakra and V8 avoid slower modes.\n // See https://youtu.be/XAqIpGU8ZZk#t=17m25s for more details.\n var index = -1,\n length = nativeMax(nativeCeil((end - start) / (step || 1)), 0),\n result = Array(length);\n\n while (++index < length) {\n result[index] = start;\n start += step;\n }\n return result;\n }\n\n /**\n * Invokes the iteratee function `n` times, returning an array of the results\n * of each invocation. The `iteratee` is bound to `thisArg` and invoked with\n * one argument; (index).\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {Array} Returns the array of results.\n * @example\n *\n * var diceRolls = _.times(3, _.partial(_.random, 1, 6, false));\n * // => [3, 6, 4]\n *\n * _.times(3, function(n) {\n * mage.castSpell(n);\n * });\n * // => invokes `mage.castSpell(n)` three times with `n` of `0`, `1`, and `2`\n *\n * _.times(3, function(n) {\n * this.cast(n);\n * }, mage);\n * // => also invokes `mage.castSpell(n)` three times\n */\n function times(n, iteratee, thisArg) {\n n = nativeFloor(n);\n\n // Exit early to avoid a JSC JIT bug in Safari 8\n // where `Array(0)` is treated as `Array(1)`.\n if (n < 1 || !nativeIsFinite(n)) {\n return [];\n }\n var index = -1,\n result = Array(nativeMin(n, MAX_ARRAY_LENGTH));\n\n iteratee = bindCallback(iteratee, thisArg, 1);\n while (++index < n) {\n if (index < MAX_ARRAY_LENGTH) {\n result[index] = iteratee(index);\n } else {\n iteratee(index);\n }\n }\n return result;\n }\n\n /**\n * Generates a unique ID. If `prefix` is provided the ID is appended to it.\n *\n * @static\n * @memberOf _\n * @category Utility\n * @param {string} [prefix] The value to prefix the ID with.\n * @returns {string} Returns the unique ID.\n * @example\n *\n * _.uniqueId('contact_');\n * // => 'contact_104'\n *\n * _.uniqueId();\n * // => '105'\n */\n function uniqueId(prefix) {\n var id = ++idCounter;\n return baseToString(prefix) + id;\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Adds two numbers.\n *\n * @static\n * @memberOf _\n * @category Math\n * @param {number} augend The first number to add.\n * @param {number} addend The second number to add.\n * @returns {number} Returns the sum.\n * @example\n *\n * _.add(6, 4);\n * // => 10\n */\n function add(augend, addend) {\n return (+augend || 0) + (+addend || 0);\n }\n\n /**\n * Calculates `n` rounded up to `precision`.\n *\n * @static\n * @memberOf _\n * @category Math\n * @param {number} n The number to round up.\n * @param {number} [precision=0] The precision to round up to.\n * @returns {number} Returns the rounded up number.\n * @example\n *\n * _.ceil(4.006);\n * // => 5\n *\n * _.ceil(6.004, 2);\n * // => 6.01\n *\n * _.ceil(6040, -2);\n * // => 6100\n */\n var ceil = createRound('ceil');\n\n /**\n * Calculates `n` rounded down to `precision`.\n *\n * @static\n * @memberOf _\n * @category Math\n * @param {number} n The number to round down.\n * @param {number} [precision=0] The precision to round down to.\n * @returns {number} Returns the rounded down number.\n * @example\n *\n * _.floor(4.006);\n * // => 4\n *\n * _.floor(0.046, 2);\n * // => 0.04\n *\n * _.floor(4060, -2);\n * // => 4000\n */\n var floor = createRound('floor');\n\n /**\n * Gets the maximum value of `collection`. If `collection` is empty or falsey\n * `-Infinity` is returned. If an iteratee function is provided it is invoked\n * for each value in `collection` to generate the criterion by which the value\n * is ranked. The `iteratee` is bound to `thisArg` and invoked with three\n * arguments: (value, index, collection).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Math\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [iteratee] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {*} Returns the maximum value.\n * @example\n *\n * _.max([4, 2, 8, 6]);\n * // => 8\n *\n * _.max([]);\n * // => -Infinity\n *\n * var users = [\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 }\n * ];\n *\n * _.max(users, function(chr) {\n * return chr.age;\n * });\n * // => { 'user': 'fred', 'age': 40 }\n *\n * // using the `_.property` callback shorthand\n * _.max(users, 'age');\n * // => { 'user': 'fred', 'age': 40 }\n */\n var max = createExtremum(gt, NEGATIVE_INFINITY);\n\n /**\n * Gets the minimum value of `collection`. If `collection` is empty or falsey\n * `Infinity` is returned. If an iteratee function is provided it is invoked\n * for each value in `collection` to generate the criterion by which the value\n * is ranked. The `iteratee` is bound to `thisArg` and invoked with three\n * arguments: (value, index, collection).\n *\n * If a property name is provided for `iteratee` the created `_.property`\n * style callback returns the property value of the given element.\n *\n * If a value is also provided for `thisArg` the created `_.matchesProperty`\n * style callback returns `true` for elements that have a matching property\n * value, else `false`.\n *\n * If an object is provided for `iteratee` the created `_.matches` style\n * callback returns `true` for elements that have the properties of the given\n * object, else `false`.\n *\n * @static\n * @memberOf _\n * @category Math\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [iteratee] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {*} Returns the minimum value.\n * @example\n *\n * _.min([4, 2, 8, 6]);\n * // => 2\n *\n * _.min([]);\n * // => Infinity\n *\n * var users = [\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 }\n * ];\n *\n * _.min(users, function(chr) {\n * return chr.age;\n * });\n * // => { 'user': 'barney', 'age': 36 }\n *\n * // using the `_.property` callback shorthand\n * _.min(users, 'age');\n * // => { 'user': 'barney', 'age': 36 }\n */\n var min = createExtremum(lt, POSITIVE_INFINITY);\n\n /**\n * Calculates `n` rounded to `precision`.\n *\n * @static\n * @memberOf _\n * @category Math\n * @param {number} n The number to round.\n * @param {number} [precision=0] The precision to round to.\n * @returns {number} Returns the rounded number.\n * @example\n *\n * _.round(4.006);\n * // => 4\n *\n * _.round(4.006, 2);\n * // => 4.01\n *\n * _.round(4060, -2);\n * // => 4100\n */\n var round = createRound('round');\n\n /**\n * Gets the sum of the values in `collection`.\n *\n * @static\n * @memberOf _\n * @category Math\n * @param {Array|Object|string} collection The collection to iterate over.\n * @param {Function|Object|string} [iteratee] The function invoked per iteration.\n * @param {*} [thisArg] The `this` binding of `iteratee`.\n * @returns {number} Returns the sum.\n * @example\n *\n * _.sum([4, 6]);\n * // => 10\n *\n * _.sum({ 'a': 4, 'b': 6 });\n * // => 10\n *\n * var objects = [\n * { 'n': 4 },\n * { 'n': 6 }\n * ];\n *\n * _.sum(objects, function(object) {\n * return object.n;\n * });\n * // => 10\n *\n * // using the `_.property` callback shorthand\n * _.sum(objects, 'n');\n * // => 10\n */\n function sum(collection, iteratee, thisArg) {\n if (thisArg && isIterateeCall(collection, iteratee, thisArg)) {\n iteratee = undefined;\n }\n iteratee = getCallback(iteratee, thisArg, 3);\n return iteratee.length == 1\n ? arraySum(isArray(collection) ? collection : toIterable(collection), iteratee)\n : baseSum(collection, iteratee);\n }\n\n /*------------------------------------------------------------------------*/\n\n // Ensure wrappers are instances of `baseLodash`.\n lodash.prototype = baseLodash.prototype;\n\n LodashWrapper.prototype = baseCreate(baseLodash.prototype);\n LodashWrapper.prototype.constructor = LodashWrapper;\n\n LazyWrapper.prototype = baseCreate(baseLodash.prototype);\n LazyWrapper.prototype.constructor = LazyWrapper;\n\n // Add functions to the `Map` cache.\n MapCache.prototype['delete'] = mapDelete;\n MapCache.prototype.get = mapGet;\n MapCache.prototype.has = mapHas;\n MapCache.prototype.set = mapSet;\n\n // Add functions to the `Set` cache.\n SetCache.prototype.push = cachePush;\n\n // Assign cache to `_.memoize`.\n memoize.Cache = MapCache;\n\n // Add functions that return wrapped values when chaining.\n lodash.after = after;\n lodash.ary = ary;\n lodash.assign = assign;\n lodash.at = at;\n lodash.before = before;\n lodash.bind = bind;\n lodash.bindAll = bindAll;\n lodash.bindKey = bindKey;\n lodash.callback = callback;\n lodash.chain = chain;\n lodash.chunk = chunk;\n lodash.compact = compact;\n lodash.constant = constant;\n lodash.countBy = countBy;\n lodash.create = create;\n lodash.curry = curry;\n lodash.curryRight = curryRight;\n lodash.debounce = debounce;\n lodash.defaults = defaults;\n lodash.defaultsDeep = defaultsDeep;\n lodash.defer = defer;\n lodash.delay = delay;\n lodash.difference = difference;\n lodash.drop = drop;\n lodash.dropRight = dropRight;\n lodash.dropRightWhile = dropRightWhile;\n lodash.dropWhile = dropWhile;\n lodash.fill = fill;\n lodash.filter = filter;\n lodash.flatten = flatten;\n lodash.flattenDeep = flattenDeep;\n lodash.flow = flow;\n lodash.flowRight = flowRight;\n lodash.forEach = forEach;\n lodash.forEachRight = forEachRight;\n lodash.forIn = forIn;\n lodash.forInRight = forInRight;\n lodash.forOwn = forOwn;\n lodash.forOwnRight = forOwnRight;\n lodash.functions = functions;\n lodash.groupBy = groupBy;\n lodash.indexBy = indexBy;\n lodash.initial = initial;\n lodash.intersection = intersection;\n lodash.invert = invert;\n lodash.invoke = invoke;\n lodash.keys = keys;\n lodash.keysIn = keysIn;\n lodash.map = map;\n lodash.mapKeys = mapKeys;\n lodash.mapValues = mapValues;\n lodash.matches = matches;\n lodash.matchesProperty = matchesProperty;\n lodash.memoize = memoize;\n lodash.merge = merge;\n lodash.method = method;\n lodash.methodOf = methodOf;\n lodash.mixin = mixin;\n lodash.modArgs = modArgs;\n lodash.negate = negate;\n lodash.omit = omit;\n lodash.once = once;\n lodash.pairs = pairs;\n lodash.partial = partial;\n lodash.partialRight = partialRight;\n lodash.partition = partition;\n lodash.pick = pick;\n lodash.pluck = pluck;\n lodash.property = property;\n lodash.propertyOf = propertyOf;\n lodash.pull = pull;\n lodash.pullAt = pullAt;\n lodash.range = range;\n lodash.rearg = rearg;\n lodash.reject = reject;\n lodash.remove = remove;\n lodash.rest = rest;\n lodash.restParam = restParam;\n lodash.set = set;\n lodash.shuffle = shuffle;\n lodash.slice = slice;\n lodash.sortBy = sortBy;\n lodash.sortByAll = sortByAll;\n lodash.sortByOrder = sortByOrder;\n lodash.spread = spread;\n lodash.take = take;\n lodash.takeRight = takeRight;\n lodash.takeRightWhile = takeRightWhile;\n lodash.takeWhile = takeWhile;\n lodash.tap = tap;\n lodash.throttle = throttle;\n lodash.thru = thru;\n lodash.times = times;\n lodash.toArray = toArray;\n lodash.toPlainObject = toPlainObject;\n lodash.transform = transform;\n lodash.union = union;\n lodash.uniq = uniq;\n lodash.unzip = unzip;\n lodash.unzipWith = unzipWith;\n lodash.values = values;\n lodash.valuesIn = valuesIn;\n lodash.where = where;\n lodash.without = without;\n lodash.wrap = wrap;\n lodash.xor = xor;\n lodash.zip = zip;\n lodash.zipObject = zipObject;\n lodash.zipWith = zipWith;\n\n // Add aliases.\n lodash.backflow = flowRight;\n lodash.collect = map;\n lodash.compose = flowRight;\n lodash.each = forEach;\n lodash.eachRight = forEachRight;\n lodash.extend = assign;\n lodash.iteratee = callback;\n lodash.methods = functions;\n lodash.object = zipObject;\n lodash.select = filter;\n lodash.tail = rest;\n lodash.unique = uniq;\n\n // Add functions to `lodash.prototype`.\n mixin(lodash, lodash);\n\n /*------------------------------------------------------------------------*/\n\n // Add functions that return unwrapped values when chaining.\n lodash.add = add;\n lodash.attempt = attempt;\n lodash.camelCase = camelCase;\n lodash.capitalize = capitalize;\n lodash.ceil = ceil;\n lodash.clone = clone;\n lodash.cloneDeep = cloneDeep;\n lodash.deburr = deburr;\n lodash.endsWith = endsWith;\n lodash.escape = escape;\n lodash.escapeRegExp = escapeRegExp;\n lodash.every = every;\n lodash.find = find;\n lodash.findIndex = findIndex;\n lodash.findKey = findKey;\n lodash.findLast = findLast;\n lodash.findLastIndex = findLastIndex;\n lodash.findLastKey = findLastKey;\n lodash.findWhere = findWhere;\n lodash.first = first;\n lodash.floor = floor;\n lodash.get = get;\n lodash.gt = gt;\n lodash.gte = gte;\n lodash.has = has;\n lodash.identity = identity;\n lodash.includes = includes;\n lodash.indexOf = indexOf;\n lodash.inRange = inRange;\n lodash.isArguments = isArguments;\n lodash.isArray = isArray;\n lodash.isBoolean = isBoolean;\n lodash.isDate = isDate;\n lodash.isElement = isElement;\n lodash.isEmpty = isEmpty;\n lodash.isEqual = isEqual;\n lodash.isError = isError;\n lodash.isFinite = isFinite;\n lodash.isFunction = isFunction;\n lodash.isMatch = isMatch;\n lodash.isNaN = isNaN;\n lodash.isNative = isNative;\n lodash.isNull = isNull;\n lodash.isNumber = isNumber;\n lodash.isObject = isObject;\n lodash.isPlainObject = isPlainObject;\n lodash.isRegExp = isRegExp;\n lodash.isString = isString;\n lodash.isTypedArray = isTypedArray;\n lodash.isUndefined = isUndefined;\n lodash.kebabCase = kebabCase;\n lodash.last = last;\n lodash.lastIndexOf = lastIndexOf;\n lodash.lt = lt;\n lodash.lte = lte;\n lodash.max = max;\n lodash.min = min;\n lodash.noConflict = noConflict;\n lodash.noop = noop;\n lodash.now = now;\n lodash.pad = pad;\n lodash.padLeft = padLeft;\n lodash.padRight = padRight;\n lodash.parseInt = parseInt;\n lodash.random = random;\n lodash.reduce = reduce;\n lodash.reduceRight = reduceRight;\n lodash.repeat = repeat;\n lodash.result = result;\n lodash.round = round;\n lodash.runInContext = runInContext;\n lodash.size = size;\n lodash.snakeCase = snakeCase;\n lodash.some = some;\n lodash.sortedIndex = sortedIndex;\n lodash.sortedLastIndex = sortedLastIndex;\n lodash.startCase = startCase;\n lodash.startsWith = startsWith;\n lodash.sum = sum;\n lodash.template = template;\n lodash.trim = trim;\n lodash.trimLeft = trimLeft;\n lodash.trimRight = trimRight;\n lodash.trunc = trunc;\n lodash.unescape = unescape;\n lodash.uniqueId = uniqueId;\n lodash.words = words;\n\n // Add aliases.\n lodash.all = every;\n lodash.any = some;\n lodash.contains = includes;\n lodash.eq = isEqual;\n lodash.detect = find;\n lodash.foldl = reduce;\n lodash.foldr = reduceRight;\n lodash.head = first;\n lodash.include = includes;\n lodash.inject = reduce;\n\n mixin(lodash, (function() {\n var source = {};\n baseForOwn(lodash, function(func, methodName) {\n if (!lodash.prototype[methodName]) {\n source[methodName] = func;\n }\n });\n return source;\n }()), false);\n\n /*------------------------------------------------------------------------*/\n\n // Add functions capable of returning wrapped and unwrapped values when chaining.\n lodash.sample = sample;\n\n lodash.prototype.sample = function(n) {\n if (!this.__chain__ && n == null) {\n return sample(this.value());\n }\n return this.thru(function(value) {\n return sample(value, n);\n });\n };\n\n /*------------------------------------------------------------------------*/\n\n /**\n * The semantic version number.\n *\n * @static\n * @memberOf _\n * @type string\n */\n lodash.VERSION = VERSION;\n\n // Assign default placeholders.\n arrayEach(['bind', 'bindKey', 'curry', 'curryRight', 'partial', 'partialRight'], function(methodName) {\n lodash[methodName].placeholder = lodash;\n });\n\n // Add `LazyWrapper` methods for `_.drop` and `_.take` variants.\n arrayEach(['drop', 'take'], function(methodName, index) {\n LazyWrapper.prototype[methodName] = function(n) {\n var filtered = this.__filtered__;\n if (filtered && !index) {\n return new LazyWrapper(this);\n }\n n = n == null ? 1 : nativeMax(nativeFloor(n) || 0, 0);\n\n var result = this.clone();\n if (filtered) {\n result.__takeCount__ = nativeMin(result.__takeCount__, n);\n } else {\n result.__views__.push({ 'size': n, 'type': methodName + (result.__dir__ < 0 ? 'Right' : '') });\n }\n return result;\n };\n\n LazyWrapper.prototype[methodName + 'Right'] = function(n) {\n return this.reverse()[methodName](n).reverse();\n };\n });\n\n // Add `LazyWrapper` methods that accept an `iteratee` value.\n arrayEach(['filter', 'map', 'takeWhile'], function(methodName, index) {\n var type = index + 1,\n isFilter = type != LAZY_MAP_FLAG;\n\n LazyWrapper.prototype[methodName] = function(iteratee, thisArg) {\n var result = this.clone();\n result.__iteratees__.push({ 'iteratee': getCallback(iteratee, thisArg, 1), 'type': type });\n result.__filtered__ = result.__filtered__ || isFilter;\n return result;\n };\n });\n\n // Add `LazyWrapper` methods for `_.first` and `_.last`.\n arrayEach(['first', 'last'], function(methodName, index) {\n var takeName = 'take' + (index ? 'Right' : '');\n\n LazyWrapper.prototype[methodName] = function() {\n return this[takeName](1).value()[0];\n };\n });\n\n // Add `LazyWrapper` methods for `_.initial` and `_.rest`.\n arrayEach(['initial', 'rest'], function(methodName, index) {\n var dropName = 'drop' + (index ? '' : 'Right');\n\n LazyWrapper.prototype[methodName] = function() {\n return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1);\n };\n });\n\n // Add `LazyWrapper` methods for `_.pluck` and `_.where`.\n arrayEach(['pluck', 'where'], function(methodName, index) {\n var operationName = index ? 'filter' : 'map',\n createCallback = index ? baseMatches : property;\n\n LazyWrapper.prototype[methodName] = function(value) {\n return this[operationName](createCallback(value));\n };\n });\n\n LazyWrapper.prototype.compact = function() {\n return this.filter(identity);\n };\n\n LazyWrapper.prototype.reject = function(predicate, thisArg) {\n predicate = getCallback(predicate, thisArg, 1);\n return this.filter(function(value) {\n return !predicate(value);\n });\n };\n\n LazyWrapper.prototype.slice = function(start, end) {\n start = start == null ? 0 : (+start || 0);\n\n var result = this;\n if (result.__filtered__ && (start > 0 || end < 0)) {\n return new LazyWrapper(result);\n }\n if (start < 0) {\n result = result.takeRight(-start);\n } else if (start) {\n result = result.drop(start);\n }\n if (end !== undefined) {\n end = (+end || 0);\n result = end < 0 ? result.dropRight(-end) : result.take(end - start);\n }\n return result;\n };\n\n LazyWrapper.prototype.takeRightWhile = function(predicate, thisArg) {\n return this.reverse().takeWhile(predicate, thisArg).reverse();\n };\n\n LazyWrapper.prototype.toArray = function() {\n return this.take(POSITIVE_INFINITY);\n };\n\n // Add `LazyWrapper` methods to `lodash.prototype`.\n baseForOwn(LazyWrapper.prototype, function(func, methodName) {\n var checkIteratee = /^(?:filter|map|reject)|While$/.test(methodName),\n retUnwrapped = /^(?:first|last)$/.test(methodName),\n lodashFunc = lodash[retUnwrapped ? ('take' + (methodName == 'last' ? 'Right' : '')) : methodName];\n\n if (!lodashFunc) {\n return;\n }\n lodash.prototype[methodName] = function() {\n var args = retUnwrapped ? [1] : arguments,\n chainAll = this.__chain__,\n value = this.__wrapped__,\n isHybrid = !!this.__actions__.length,\n isLazy = value instanceof LazyWrapper,\n iteratee = args[0],\n useLazy = isLazy || isArray(value);\n\n if (useLazy && checkIteratee && typeof iteratee == 'function' && iteratee.length != 1) {\n // Avoid lazy use if the iteratee has a \"length\" value other than `1`.\n isLazy = useLazy = false;\n }\n var interceptor = function(value) {\n return (retUnwrapped && chainAll)\n ? lodashFunc(value, 1)[0]\n : lodashFunc.apply(undefined, arrayPush([value], args));\n };\n\n var action = { 'func': thru, 'args': [interceptor], 'thisArg': undefined },\n onlyLazy = isLazy && !isHybrid;\n\n if (retUnwrapped && !chainAll) {\n if (onlyLazy) {\n value = value.clone();\n value.__actions__.push(action);\n return func.call(value);\n }\n return lodashFunc.call(undefined, this.value())[0];\n }\n if (!retUnwrapped && useLazy) {\n value = onlyLazy ? value : new LazyWrapper(this);\n var result = func.apply(value, args);\n result.__actions__.push(action);\n return new LodashWrapper(result, chainAll);\n }\n return this.thru(interceptor);\n };\n });\n\n // Add `Array` and `String` methods to `lodash.prototype`.\n arrayEach(['join', 'pop', 'push', 'replace', 'shift', 'sort', 'splice', 'split', 'unshift'], function(methodName) {\n var func = (/^(?:replace|split)$/.test(methodName) ? stringProto : arrayProto)[methodName],\n chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' : 'thru',\n retUnwrapped = /^(?:join|pop|replace|shift)$/.test(methodName);\n\n lodash.prototype[methodName] = function() {\n var args = arguments;\n if (retUnwrapped && !this.__chain__) {\n return func.apply(this.value(), args);\n }\n return this[chainName](function(value) {\n return func.apply(value, args);\n });\n };\n });\n\n // Map minified function names to their real names.\n baseForOwn(LazyWrapper.prototype, function(func, methodName) {\n var lodashFunc = lodash[methodName];\n if (lodashFunc) {\n var key = lodashFunc.name,\n names = realNames[key] || (realNames[key] = []);\n\n names.push({ 'name': methodName, 'func': lodashFunc });\n }\n });\n\n realNames[createHybridWrapper(undefined, BIND_KEY_FLAG).name] = [{ 'name': 'wrapper', 'func': undefined }];\n\n // Add functions to the lazy wrapper.\n LazyWrapper.prototype.clone = lazyClone;\n LazyWrapper.prototype.reverse = lazyReverse;\n LazyWrapper.prototype.value = lazyValue;\n\n // Add chaining functions to the `lodash` wrapper.\n lodash.prototype.chain = wrapperChain;\n lodash.prototype.commit = wrapperCommit;\n lodash.prototype.concat = wrapperConcat;\n lodash.prototype.plant = wrapperPlant;\n lodash.prototype.reverse = wrapperReverse;\n lodash.prototype.toString = wrapperToString;\n lodash.prototype.run = lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;\n\n // Add function aliases to the `lodash` wrapper.\n lodash.prototype.collect = lodash.prototype.map;\n lodash.prototype.head = lodash.prototype.first;\n lodash.prototype.select = lodash.prototype.filter;\n lodash.prototype.tail = lodash.prototype.rest;\n\n return lodash;\n }\n\n /*--------------------------------------------------------------------------*/\n\n // Export lodash.\n var _ = runInContext();\n\n // Some AMD build optimizers like r.js check for condition patterns like the following:\n if (typeof define == 'function' && typeof define.amd == 'object' && define.amd) {\n // Expose lodash to the global object when an AMD loader is present to avoid\n // errors in cases where lodash is loaded by a script tag and not intended\n // as an AMD module. See http://requirejs.org/docs/errors.html#mismatch for\n // more details.\n root._ = _;\n\n // Define as an anonymous module so, through path mapping, it can be\n // referenced as the \"underscore\" module.\n define(function() {\n return _;\n });\n }\n // Check for `exports` after `define` in case a build optimizer adds an `exports` object.\n else if (freeExports && freeModule) {\n // Export for Node.js or RingoJS.\n if (moduleExports) {\n (freeModule.exports = _)._ = _;\n }\n // Export for Rhino with CommonJS support.\n else {\n freeExports._ = _;\n }\n }\n else {\n // Export for a browser or Rhino.\n root._ = _;\n }\n}.call(this));\n\n}).call(this)}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n},{}],138:[function(require,module,exports){\n(function (global){(function (){\nvar hasMap = typeof Map === 'function' && Map.prototype;\nvar mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;\nvar mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null;\nvar mapForEach = hasMap && Map.prototype.forEach;\nvar hasSet = typeof Set === 'function' && Set.prototype;\nvar setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescriptor(Set.prototype, 'size') : null;\nvar setSize = hasSet && setSizeDescriptor && typeof setSizeDescriptor.get === 'function' ? setSizeDescriptor.get : null;\nvar setForEach = hasSet && Set.prototype.forEach;\nvar hasWeakMap = typeof WeakMap === 'function' && WeakMap.prototype;\nvar weakMapHas = hasWeakMap ? WeakMap.prototype.has : null;\nvar hasWeakSet = typeof WeakSet === 'function' && WeakSet.prototype;\nvar weakSetHas = hasWeakSet ? WeakSet.prototype.has : null;\nvar hasWeakRef = typeof WeakRef === 'function' && WeakRef.prototype;\nvar weakRefDeref = hasWeakRef ? WeakRef.prototype.deref : null;\nvar booleanValueOf = Boolean.prototype.valueOf;\nvar objectToString = Object.prototype.toString;\nvar functionToString = Function.prototype.toString;\nvar $match = String.prototype.match;\nvar $slice = String.prototype.slice;\nvar $replace = String.prototype.replace;\nvar $toUpperCase = String.prototype.toUpperCase;\nvar $toLowerCase = String.prototype.toLowerCase;\nvar $test = RegExp.prototype.test;\nvar $concat = Array.prototype.concat;\nvar $join = Array.prototype.join;\nvar $arrSlice = Array.prototype.slice;\nvar $floor = Math.floor;\nvar bigIntValueOf = typeof BigInt === 'function' ? BigInt.prototype.valueOf : null;\nvar gOPS = Object.getOwnPropertySymbols;\nvar symToString = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol' ? Symbol.prototype.toString : null;\nvar hasShammedSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'object';\n// ie, `has-tostringtag/shams\nvar toStringTag = typeof Symbol === 'function' && Symbol.toStringTag && (typeof Symbol.toStringTag === hasShammedSymbols ? 'object' : 'symbol')\n ? Symbol.toStringTag\n : null;\nvar isEnumerable = Object.prototype.propertyIsEnumerable;\n\nvar gPO = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPrototypeOf) || (\n [].__proto__ === Array.prototype // eslint-disable-line no-proto\n ? function (O) {\n return O.__proto__; // eslint-disable-line no-proto\n }\n : null\n);\n\nfunction addNumericSeparator(num, str) {\n if (\n num === Infinity\n || num === -Infinity\n || num !== num\n || (num && num > -1000 && num < 1000)\n || $test.call(/e/, str)\n ) {\n return str;\n }\n var sepRegex = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;\n if (typeof num === 'number') {\n var int = num < 0 ? -$floor(-num) : $floor(num); // trunc(num)\n if (int !== num) {\n var intStr = String(int);\n var dec = $slice.call(str, intStr.length + 1);\n return $replace.call(intStr, sepRegex, '$&_') + '.' + $replace.call($replace.call(dec, /([0-9]{3})/g, '$&_'), /_$/, '');\n }\n }\n return $replace.call(str, sepRegex, '$&_');\n}\n\nvar utilInspect = require('./util.inspect');\nvar inspectCustom = utilInspect.custom;\nvar inspectSymbol = isSymbol(inspectCustom) ? inspectCustom : null;\n\nvar quotes = {\n __proto__: null,\n 'double': '\"',\n single: \"'\"\n};\nvar quoteREs = {\n __proto__: null,\n 'double': /([\"\\\\])/g,\n single: /(['\\\\])/g\n};\n\nmodule.exports = function inspect_(obj, options, depth, seen) {\n var opts = options || {};\n\n if (has(opts, 'quoteStyle') && !has(quotes, opts.quoteStyle)) {\n throw new TypeError('option \"quoteStyle\" must be \"single\" or \"double\"');\n }\n if (\n has(opts, 'maxStringLength') && (typeof opts.maxStringLength === 'number'\n ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity\n : opts.maxStringLength !== null\n )\n ) {\n throw new TypeError('option \"maxStringLength\", if provided, must be a positive integer, Infinity, or `null`');\n }\n var customInspect = has(opts, 'customInspect') ? opts.customInspect : true;\n if (typeof customInspect !== 'boolean' && customInspect !== 'symbol') {\n throw new TypeError('option \"customInspect\", if provided, must be `true`, `false`, or `\\'symbol\\'`');\n }\n\n if (\n has(opts, 'indent')\n && opts.indent !== null\n && opts.indent !== '\\t'\n && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0)\n ) {\n throw new TypeError('option \"indent\" must be \"\\\\t\", an integer > 0, or `null`');\n }\n if (has(opts, 'numericSeparator') && typeof opts.numericSeparator !== 'boolean') {\n throw new TypeError('option \"numericSeparator\", if provided, must be `true` or `false`');\n }\n var numericSeparator = opts.numericSeparator;\n\n if (typeof obj === 'undefined') {\n return 'undefined';\n }\n if (obj === null) {\n return 'null';\n }\n if (typeof obj === 'boolean') {\n return obj ? 'true' : 'false';\n }\n\n if (typeof obj === 'string') {\n return inspectString(obj, opts);\n }\n if (typeof obj === 'number') {\n if (obj === 0) {\n return Infinity / obj > 0 ? '0' : '-0';\n }\n var str = String(obj);\n return numericSeparator ? addNumericSeparator(obj, str) : str;\n }\n if (typeof obj === 'bigint') {\n var bigIntStr = String(obj) + 'n';\n return numericSeparator ? addNumericSeparator(obj, bigIntStr) : bigIntStr;\n }\n\n var maxDepth = typeof opts.depth === 'undefined' ? 5 : opts.depth;\n if (typeof depth === 'undefined') { depth = 0; }\n if (depth >= maxDepth && maxDepth > 0 && typeof obj === 'object') {\n return isArray(obj) ? '[Array]' : '[Object]';\n }\n\n var indent = getIndent(opts, depth);\n\n if (typeof seen === 'undefined') {\n seen = [];\n } else if (indexOf(seen, obj) >= 0) {\n return '[Circular]';\n }\n\n function inspect(value, from, noIndent) {\n if (from) {\n seen = $arrSlice.call(seen);\n seen.push(from);\n }\n if (noIndent) {\n var newOpts = {\n depth: opts.depth\n };\n if (has(opts, 'quoteStyle')) {\n newOpts.quoteStyle = opts.quoteStyle;\n }\n return inspect_(value, newOpts, depth + 1, seen);\n }\n return inspect_(value, opts, depth + 1, seen);\n }\n\n if (typeof obj === 'function' && !isRegExp(obj)) { // in older engines, regexes are callable\n var name = nameOf(obj);\n var keys = arrObjKeys(obj, inspect);\n return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : '');\n }\n if (isSymbol(obj)) {\n var symString = hasShammedSymbols ? $replace.call(String(obj), /^(Symbol\\(.*\\))_[^)]*$/, '$1') : symToString.call(obj);\n return typeof obj === 'object' && !hasShammedSymbols ? markBoxed(symString) : symString;\n }\n if (isElement(obj)) {\n var s = '<' + $toLowerCase.call(String(obj.nodeName));\n var attrs = obj.attributes || [];\n for (var i = 0; i < attrs.length; i++) {\n s += ' ' + attrs[i].name + '=' + wrapQuotes(quote(attrs[i].value), 'double', opts);\n }\n s += '>';\n if (obj.childNodes && obj.childNodes.length) { s += '...'; }\n s += '</' + $toLowerCase.call(String(obj.nodeName)) + '>';\n return s;\n }\n if (isArray(obj)) {\n if (obj.length === 0) { return '[]'; }\n var xs = arrObjKeys(obj, inspect);\n if (indent && !singleLineValues(xs)) {\n return '[' + indentedJoin(xs, indent) + ']';\n }\n return '[ ' + $join.call(xs, ', ') + ' ]';\n }\n if (isError(obj)) {\n var parts = arrObjKeys(obj, inspect);\n if (!('cause' in Error.prototype) && 'cause' in obj && !isEnumerable.call(obj, 'cause')) {\n return '{ [' + String(obj) + '] ' + $join.call($concat.call('[cause]: ' + inspect(obj.cause), parts), ', ') + ' }';\n }\n if (parts.length === 0) { return '[' + String(obj) + ']'; }\n return '{ [' + String(obj) + '] ' + $join.call(parts, ', ') + ' }';\n }\n if (typeof obj === 'object' && customInspect) {\n if (inspectSymbol && typeof obj[inspectSymbol] === 'function' && utilInspect) {\n return utilInspect(obj, { depth: maxDepth - depth });\n } else if (customInspect !== 'symbol' && typeof obj.inspect === 'function') {\n return obj.inspect();\n }\n }\n if (isMap(obj)) {\n var mapParts = [];\n if (mapForEach) {\n mapForEach.call(obj, function (value, key) {\n mapParts.push(inspect(key, obj, true) + ' => ' + inspect(value, obj));\n });\n }\n return collectionOf('Map', mapSize.call(obj), mapParts, indent);\n }\n if (isSet(obj)) {\n var setParts = [];\n if (setForEach) {\n setForEach.call(obj, function (value) {\n setParts.push(inspect(value, obj));\n });\n }\n return collectionOf('Set', setSize.call(obj), setParts, indent);\n }\n if (isWeakMap(obj)) {\n return weakCollectionOf('WeakMap');\n }\n if (isWeakSet(obj)) {\n return weakCollectionOf('WeakSet');\n }\n if (isWeakRef(obj)) {\n return weakCollectionOf('WeakRef');\n }\n if (isNumber(obj)) {\n return markBoxed(inspect(Number(obj)));\n }\n if (isBigInt(obj)) {\n return markBoxed(inspect(bigIntValueOf.call(obj)));\n }\n if (isBoolean(obj)) {\n return markBoxed(booleanValueOf.call(obj));\n }\n if (isString(obj)) {\n return markBoxed(inspect(String(obj)));\n }\n // note: in IE 8, sometimes `global !== window` but both are the prototypes of each other\n /* eslint-env browser */\n if (typeof window !== 'undefined' && obj === window) {\n return '{ [object Window] }';\n }\n if (\n (typeof globalThis !== 'undefined' && obj === globalThis)\n || (typeof global !== 'undefined' && obj === global)\n ) {\n return '{ [object globalThis] }';\n }\n if (!isDate(obj) && !isRegExp(obj)) {\n var ys = arrObjKeys(obj, inspect);\n var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;\n var protoTag = obj instanceof Object ? '' : 'null prototype';\n var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? 'Object' : '';\n var constructorTag = isPlainObject || typeof obj.constructor !== 'function' ? '' : obj.constructor.name ? obj.constructor.name + ' ' : '';\n var tag = constructorTag + (stringTag || protoTag ? '[' + $join.call($concat.call([], stringTag || [], protoTag || []), ': ') + '] ' : '');\n if (ys.length === 0) { return tag + '{}'; }\n if (indent) {\n return tag + '{' + indentedJoin(ys, indent) + '}';\n }\n return tag + '{ ' + $join.call(ys, ', ') + ' }';\n }\n return String(obj);\n};\n\nfunction wrapQuotes(s, defaultStyle, opts) {\n var style = opts.quoteStyle || defaultStyle;\n var quoteChar = quotes[style];\n return quoteChar + s + quoteChar;\n}\n\nfunction quote(s) {\n return $replace.call(String(s), /\"/g, '"');\n}\n\nfunction isArray(obj) { return toStr(obj) === '[object Array]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isDate(obj) { return toStr(obj) === '[object Date]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isRegExp(obj) { return toStr(obj) === '[object RegExp]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isError(obj) { return toStr(obj) === '[object Error]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isString(obj) { return toStr(obj) === '[object String]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isNumber(obj) { return toStr(obj) === '[object Number]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isBoolean(obj) { return toStr(obj) === '[object Boolean]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\n\n// Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives\nfunction isSymbol(obj) {\n if (hasShammedSymbols) {\n return obj && typeof obj === 'object' && obj instanceof Symbol;\n }\n if (typeof obj === 'symbol') {\n return true;\n }\n if (!obj || typeof obj !== 'object' || !symToString) {\n return false;\n }\n try {\n symToString.call(obj);\n return true;\n } catch (e) {}\n return false;\n}\n\nfunction isBigInt(obj) {\n if (!obj || typeof obj !== 'object' || !bigIntValueOf) {\n return false;\n }\n try {\n bigIntValueOf.call(obj);\n return true;\n } catch (e) {}\n return false;\n}\n\nvar hasOwn = Object.prototype.hasOwnProperty || function (key) { return key in this; };\nfunction has(obj, key) {\n return hasOwn.call(obj, key);\n}\n\nfunction toStr(obj) {\n return objectToString.call(obj);\n}\n\nfunction nameOf(f) {\n if (f.name) { return f.name; }\n var m = $match.call(functionToString.call(f), /^function\\s*([\\w$]+)/);\n if (m) { return m[1]; }\n return null;\n}\n\nfunction indexOf(xs, x) {\n if (xs.indexOf) { return xs.indexOf(x); }\n for (var i = 0, l = xs.length; i < l; i++) {\n if (xs[i] === x) { return i; }\n }\n return -1;\n}\n\nfunction isMap(x) {\n if (!mapSize || !x || typeof x !== 'object') {\n return false;\n }\n try {\n mapSize.call(x);\n try {\n setSize.call(x);\n } catch (s) {\n return true;\n }\n return x instanceof Map; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakMap(x) {\n if (!weakMapHas || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakMapHas.call(x, weakMapHas);\n try {\n weakSetHas.call(x, weakSetHas);\n } catch (s) {\n return true;\n }\n return x instanceof WeakMap; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakRef(x) {\n if (!weakRefDeref || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakRefDeref.call(x);\n return true;\n } catch (e) {}\n return false;\n}\n\nfunction isSet(x) {\n if (!setSize || !x || typeof x !== 'object') {\n return false;\n }\n try {\n setSize.call(x);\n try {\n mapSize.call(x);\n } catch (m) {\n return true;\n }\n return x instanceof Set; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakSet(x) {\n if (!weakSetHas || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakSetHas.call(x, weakSetHas);\n try {\n weakMapHas.call(x, weakMapHas);\n } catch (s) {\n return true;\n }\n return x instanceof WeakSet; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isElement(x) {\n if (!x || typeof x !== 'object') { return false; }\n if (typeof HTMLElement !== 'undefined' && x instanceof HTMLElement) {\n return true;\n }\n return typeof x.nodeName === 'string' && typeof x.getAttribute === 'function';\n}\n\nfunction inspectString(str, opts) {\n if (str.length > opts.maxStringLength) {\n var remaining = str.length - opts.maxStringLength;\n var trailer = '... ' + remaining + ' more character' + (remaining > 1 ? 's' : '');\n return inspectString($slice.call(str, 0, opts.maxStringLength), opts) + trailer;\n }\n var quoteRE = quoteREs[opts.quoteStyle || 'single'];\n quoteRE.lastIndex = 0;\n // eslint-disable-next-line no-control-regex\n var s = $replace.call($replace.call(str, quoteRE, '\\\\$1'), /[\\x00-\\x1f]/g, lowbyte);\n return wrapQuotes(s, 'single', opts);\n}\n\nfunction lowbyte(c) {\n var n = c.charCodeAt(0);\n var x = {\n 8: 'b',\n 9: 't',\n 10: 'n',\n 12: 'f',\n 13: 'r'\n }[n];\n if (x) { return '\\\\' + x; }\n return '\\\\x' + (n < 0x10 ? '0' : '') + $toUpperCase.call(n.toString(16));\n}\n\nfunction markBoxed(str) {\n return 'Object(' + str + ')';\n}\n\nfunction weakCollectionOf(type) {\n return type + ' { ? }';\n}\n\nfunction collectionOf(type, size, entries, indent) {\n var joinedEntries = indent ? indentedJoin(entries, indent) : $join.call(entries, ', ');\n return type + ' (' + size + ') {' + joinedEntries + '}';\n}\n\nfunction singleLineValues(xs) {\n for (var i = 0; i < xs.length; i++) {\n if (indexOf(xs[i], '\\n') >= 0) {\n return false;\n }\n }\n return true;\n}\n\nfunction getIndent(opts, depth) {\n var baseIndent;\n if (opts.indent === '\\t') {\n baseIndent = '\\t';\n } else if (typeof opts.indent === 'number' && opts.indent > 0) {\n baseIndent = $join.call(Array(opts.indent + 1), ' ');\n } else {\n return null;\n }\n return {\n base: baseIndent,\n prev: $join.call(Array(depth + 1), baseIndent)\n };\n}\n\nfunction indentedJoin(xs, indent) {\n if (xs.length === 0) { return ''; }\n var lineJoiner = '\\n' + indent.prev + indent.base;\n return lineJoiner + $join.call(xs, ',' + lineJoiner) + '\\n' + indent.prev;\n}\n\nfunction arrObjKeys(obj, inspect) {\n var isArr = isArray(obj);\n var xs = [];\n if (isArr) {\n xs.length = obj.length;\n for (var i = 0; i < obj.length; i++) {\n xs[i] = has(obj, i) ? inspect(obj[i], obj) : '';\n }\n }\n var syms = typeof gOPS === 'function' ? gOPS(obj) : [];\n var symMap;\n if (hasShammedSymbols) {\n symMap = {};\n for (var k = 0; k < syms.length; k++) {\n symMap['$' + syms[k]] = syms[k];\n }\n }\n\n for (var key in obj) { // eslint-disable-line no-restricted-syntax\n if (!has(obj, key)) { continue; } // eslint-disable-line no-restricted-syntax, no-continue\n if (isArr && String(Number(key)) === key && key < obj.length) { continue; } // eslint-disable-line no-restricted-syntax, no-continue\n if (hasShammedSymbols && symMap['$' + key] instanceof Symbol) {\n // this is to prevent shammed Symbols, which are stored as strings, from being included in the string key section\n continue; // eslint-disable-line no-restricted-syntax, no-continue\n } else if ($test.call(/[^\\w$]/, key)) {\n xs.push(inspect(key, obj) + ': ' + inspect(obj[key], obj));\n } else {\n xs.push(key + ': ' + inspect(obj[key], obj));\n }\n }\n if (typeof gOPS === 'function') {\n for (var j = 0; j < syms.length; j++) {\n if (isEnumerable.call(obj, syms[j])) {\n xs.push('[' + inspect(syms[j]) + ']: ' + inspect(obj[syms[j]], obj));\n }\n }\n }\n return xs;\n}\n\n}).call(this)}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n},{\"./util.inspect\":100}],139:[function(require,module,exports){\n/**\n * Owl Carousel v2.3.4\n * Copyright 2013-2018 David Deutsch\n * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE\n */\n/**\n * Owl carousel\n * @version 2.3.4\n * @author Bartosz Wojciechowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n * @todo Lazy Load Icon\n * @todo prevent animationend bubling\n * @todo itemsScaleUp\n * @todo Test Zepto\n * @todo stagePadding calculate wrong active classes\n */\n;(function($, window, document, undefined) {\n\n\t/**\n\t * Creates a carousel.\n\t * @class The Owl Carousel.\n\t * @public\n\t * @param {HTMLElement|jQuery} element - The element to create the carousel for.\n\t * @param {Object} [options] - The options\n\t */\n\tfunction Owl(element, options) {\n\n\t\t/**\n\t\t * Current settings for the carousel.\n\t\t * @public\n\t\t */\n\t\tthis.settings = null;\n\n\t\t/**\n\t\t * Current options set by the caller including defaults.\n\t\t * @public\n\t\t */\n\t\tthis.options = $.extend({}, Owl.Defaults, options);\n\n\t\t/**\n\t\t * Plugin element.\n\t\t * @public\n\t\t */\n\t\tthis.$element = $(element);\n\n\t\t/**\n\t\t * Proxied event handlers.\n\t\t * @protected\n\t\t */\n\t\tthis._handlers = {};\n\n\t\t/**\n\t\t * References to the running plugins of this carousel.\n\t\t * @protected\n\t\t */\n\t\tthis._plugins = {};\n\n\t\t/**\n\t\t * Currently suppressed events to prevent them from being retriggered.\n\t\t * @protected\n\t\t */\n\t\tthis._supress = {};\n\n\t\t/**\n\t\t * Absolute current position.\n\t\t * @protected\n\t\t */\n\t\tthis._current = null;\n\n\t\t/**\n\t\t * Animation speed in milliseconds.\n\t\t * @protected\n\t\t */\n\t\tthis._speed = null;\n\n\t\t/**\n\t\t * Coordinates of all items in pixel.\n\t\t * @todo The name of this member is missleading.\n\t\t * @protected\n\t\t */\n\t\tthis._coordinates = [];\n\n\t\t/**\n\t\t * Current breakpoint.\n\t\t * @todo Real media queries would be nice.\n\t\t * @protected\n\t\t */\n\t\tthis._breakpoint = null;\n\n\t\t/**\n\t\t * Current width of the plugin element.\n\t\t */\n\t\tthis._width = null;\n\n\t\t/**\n\t\t * All real items.\n\t\t * @protected\n\t\t */\n\t\tthis._items = [];\n\n\t\t/**\n\t\t * All cloned items.\n\t\t * @protected\n\t\t */\n\t\tthis._clones = [];\n\n\t\t/**\n\t\t * Merge values of all items.\n\t\t * @todo Maybe this could be part of a plugin.\n\t\t * @protected\n\t\t */\n\t\tthis._mergers = [];\n\n\t\t/**\n\t\t * Widths of all items.\n\t\t */\n\t\tthis._widths = [];\n\n\t\t/**\n\t\t * Invalidated parts within the update process.\n\t\t * @protected\n\t\t */\n\t\tthis._invalidated = {};\n\n\t\t/**\n\t\t * Ordered list of workers for the update process.\n\t\t * @protected\n\t\t */\n\t\tthis._pipe = [];\n\n\t\t/**\n\t\t * Current state information for the drag operation.\n\t\t * @todo #261\n\t\t * @protected\n\t\t */\n\t\tthis._drag = {\n\t\t\ttime: null,\n\t\t\ttarget: null,\n\t\t\tpointer: null,\n\t\t\tstage: {\n\t\t\t\tstart: null,\n\t\t\t\tcurrent: null\n\t\t\t},\n\t\t\tdirection: null\n\t\t};\n\n\t\t/**\n\t\t * Current state information and their tags.\n\t\t * @type {Object}\n\t\t * @protected\n\t\t */\n\t\tthis._states = {\n\t\t\tcurrent: {},\n\t\t\ttags: {\n\t\t\t\t'initializing': [ 'busy' ],\n\t\t\t\t'animating': [ 'busy' ],\n\t\t\t\t'dragging': [ 'interacting' ]\n\t\t\t}\n\t\t};\n\n\t\t$.each([ 'onResize', 'onThrottledResize' ], $.proxy(function(i, handler) {\n\t\t\tthis._handlers[handler] = $.proxy(this[handler], this);\n\t\t}, this));\n\n\t\t$.each(Owl.Plugins, $.proxy(function(key, plugin) {\n\t\t\tthis._plugins[key.charAt(0).toLowerCase() + key.slice(1)]\n\t\t\t\t= new plugin(this);\n\t\t}, this));\n\n\t\t$.each(Owl.Workers, $.proxy(function(priority, worker) {\n\t\t\tthis._pipe.push({\n\t\t\t\t'filter': worker.filter,\n\t\t\t\t'run': $.proxy(worker.run, this)\n\t\t\t});\n\t\t}, this));\n\n\t\tthis.setup();\n\t\tthis.initialize();\n\t}\n\n\t/**\n\t * Default options for the carousel.\n\t * @public\n\t */\n\tOwl.Defaults = {\n\t\titems: 3,\n\t\tloop: false,\n\t\tcenter: false,\n\t\trewind: false,\n\t\tcheckVisibility: true,\n\n\t\tmouseDrag: true,\n\t\ttouchDrag: true,\n\t\tpullDrag: true,\n\t\tfreeDrag: false,\n\n\t\tmargin: 0,\n\t\tstagePadding: 0,\n\n\t\tmerge: false,\n\t\tmergeFit: true,\n\t\tautoWidth: false,\n\n\t\tstartPosition: 0,\n\t\trtl: false,\n\n\t\tsmartSpeed: 250,\n\t\tfluidSpeed: false,\n\t\tdragEndSpeed: false,\n\n\t\tresponsive: {},\n\t\tresponsiveRefreshRate: 200,\n\t\tresponsiveBaseElement: window,\n\n\t\tfallbackEasing: 'swing',\n\t\tslideTransition: '',\n\n\t\tinfo: false,\n\n\t\tnestedItemSelector: false,\n\t\titemElement: 'div',\n\t\tstageElement: 'div',\n\n\t\trefreshClass: 'owl-refresh',\n\t\tloadedClass: 'owl-loaded',\n\t\tloadingClass: 'owl-loading',\n\t\trtlClass: 'owl-rtl',\n\t\tresponsiveClass: 'owl-responsive',\n\t\tdragClass: 'owl-drag',\n\t\titemClass: 'owl-item',\n\t\tstageClass: 'owl-stage',\n\t\tstageOuterClass: 'owl-stage-outer',\n\t\tgrabClass: 'owl-grab'\n\t};\n\n\t/**\n\t * Enumeration for width.\n\t * @public\n\t * @readonly\n\t * @enum {String}\n\t */\n\tOwl.Width = {\n\t\tDefault: 'default',\n\t\tInner: 'inner',\n\t\tOuter: 'outer'\n\t};\n\n\t/**\n\t * Enumeration for types.\n\t * @public\n\t * @readonly\n\t * @enum {String}\n\t */\n\tOwl.Type = {\n\t\tEvent: 'event',\n\t\tState: 'state'\n\t};\n\n\t/**\n\t * Contains all registered plugins.\n\t * @public\n\t */\n\tOwl.Plugins = {};\n\n\t/**\n\t * List of workers involved in the update process.\n\t */\n\tOwl.Workers = [ {\n\t\tfilter: [ 'width', 'settings' ],\n\t\trun: function() {\n\t\t\tthis._width = this.$element.width();\n\t\t}\n\t}, {\n\t\tfilter: [ 'width', 'items', 'settings' ],\n\t\trun: function(cache) {\n\t\t\tcache.current = this._items && this._items[this.relative(this._current)];\n\t\t}\n\t}, {\n\t\tfilter: [ 'items', 'settings' ],\n\t\trun: function() {\n\t\t\tthis.$stage.children('.cloned').remove();\n\t\t}\n\t}, {\n\t\tfilter: [ 'width', 'items', 'settings' ],\n\t\trun: function(cache) {\n\t\t\tvar margin = this.settings.margin || '',\n\t\t\t\tgrid = !this.settings.autoWidth,\n\t\t\t\trtl = this.settings.rtl,\n\t\t\t\tcss = {\n\t\t\t\t\t'width': 'auto',\n\t\t\t\t\t'margin-left': rtl ? margin : '',\n\t\t\t\t\t'margin-right': rtl ? '' : margin\n\t\t\t\t};\n\n\t\t\t!grid && this.$stage.children().css(css);\n\n\t\t\tcache.css = css;\n\t\t}\n\t}, {\n\t\tfilter: [ 'width', 'items', 'settings' ],\n\t\trun: function(cache) {\n\t\t\tvar width = (this.width() / this.settings.items).toFixed(3) - this.settings.margin,\n\t\t\t\tmerge = null,\n\t\t\t\titerator = this._items.length,\n\t\t\t\tgrid = !this.settings.autoWidth,\n\t\t\t\twidths = [];\n\n\t\t\tcache.items = {\n\t\t\t\tmerge: false,\n\t\t\t\twidth: width\n\t\t\t};\n\n\t\t\twhile (iterator--) {\n\t\t\t\tmerge = this._mergers[iterator];\n\t\t\t\tmerge = this.settings.mergeFit && Math.min(merge, this.settings.items) || merge;\n\n\t\t\t\tcache.items.merge = merge > 1 || cache.items.merge;\n\n\t\t\t\twidths[iterator] = !grid ? this._items[iterator].width() : width * merge;\n\t\t\t}\n\n\t\t\tthis._widths = widths;\n\t\t}\n\t}, {\n\t\tfilter: [ 'items', 'settings' ],\n\t\trun: function() {\n\t\t\tvar clones = [],\n\t\t\t\titems = this._items,\n\t\t\t\tsettings = this.settings,\n\t\t\t\t// TODO: Should be computed from number of min width items in stage\n\t\t\t\tview = Math.max(settings.items * 2, 4),\n\t\t\t\tsize = Math.ceil(items.length / 2) * 2,\n\t\t\t\trepeat = settings.loop && items.length ? settings.rewind ? view : Math.max(view, size) : 0,\n\t\t\t\tappend = '',\n\t\t\t\tprepend = '';\n\n\t\t\trepeat /= 2;\n\n\t\t\twhile (repeat > 0) {\n\t\t\t\t// Switch to only using appended clones\n\t\t\t\tclones.push(this.normalize(clones.length / 2, true));\n\t\t\t\tappend = append + items[clones[clones.length - 1]][0].outerHTML;\n\t\t\t\tclones.push(this.normalize(items.length - 1 - (clones.length - 1) / 2, true));\n\t\t\t\tprepend = items[clones[clones.length - 1]][0].outerHTML + prepend;\n\t\t\t\trepeat -= 1;\n\t\t\t}\n\n\t\t\tthis._clones = clones;\n\n\t\t\t$(append).addClass('cloned').appendTo(this.$stage);\n\t\t\t$(prepend).addClass('cloned').prependTo(this.$stage);\n\t\t}\n\t}, {\n\t\tfilter: [ 'width', 'items', 'settings' ],\n\t\trun: function() {\n\t\t\tvar rtl = this.settings.rtl ? 1 : -1,\n\t\t\t\tsize = this._clones.length + this._items.length,\n\t\t\t\titerator = -1,\n\t\t\t\tprevious = 0,\n\t\t\t\tcurrent = 0,\n\t\t\t\tcoordinates = [];\n\n\t\t\twhile (++iterator < size) {\n\t\t\t\tprevious = coordinates[iterator - 1] || 0;\n\t\t\t\tcurrent = this._widths[this.relative(iterator)] + this.settings.margin;\n\t\t\t\tcoordinates.push(previous + current * rtl);\n\t\t\t}\n\n\t\t\tthis._coordinates = coordinates;\n\t\t}\n\t}, {\n\t\tfilter: [ 'width', 'items', 'settings' ],\n\t\trun: function() {\n\t\t\tvar padding = this.settings.stagePadding,\n\t\t\t\tcoordinates = this._coordinates,\n\t\t\t\tcss = {\n\t\t\t\t\t'width': Math.ceil(Math.abs(coordinates[coordinates.length - 1])) + padding * 2,\n\t\t\t\t\t'padding-left': padding || '',\n\t\t\t\t\t'padding-right': padding || ''\n\t\t\t\t};\n\n\t\t\tthis.$stage.css(css);\n\t\t}\n\t}, {\n\t\tfilter: [ 'width', 'items', 'settings' ],\n\t\trun: function(cache) {\n\t\t\tvar iterator = this._coordinates.length,\n\t\t\t\tgrid = !this.settings.autoWidth,\n\t\t\t\titems = this.$stage.children();\n\n\t\t\tif (grid && cache.items.merge) {\n\t\t\t\twhile (iterator--) {\n\t\t\t\t\tcache.css.width = this._widths[this.relative(iterator)];\n\t\t\t\t\titems.eq(iterator).css(cache.css);\n\t\t\t\t}\n\t\t\t} else if (grid) {\n\t\t\t\tcache.css.width = cache.items.width;\n\t\t\t\titems.css(cache.css);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tfilter: [ 'items' ],\n\t\trun: function() {\n\t\t\tthis._coordinates.length < 1 && this.$stage.removeAttr('style');\n\t\t}\n\t}, {\n\t\tfilter: [ 'width', 'items', 'settings' ],\n\t\trun: function(cache) {\n\t\t\tcache.current = cache.current ? this.$stage.children().index(cache.current) : 0;\n\t\t\tcache.current = Math.max(this.minimum(), Math.min(this.maximum(), cache.current));\n\t\t\tthis.reset(cache.current);\n\t\t}\n\t}, {\n\t\tfilter: [ 'position' ],\n\t\trun: function() {\n\t\t\tthis.animate(this.coordinates(this._current));\n\t\t}\n\t}, {\n\t\tfilter: [ 'width', 'position', 'items', 'settings' ],\n\t\trun: function() {\n\t\t\tvar rtl = this.settings.rtl ? 1 : -1,\n\t\t\t\tpadding = this.settings.stagePadding * 2,\n\t\t\t\tbegin = this.coordinates(this.current()) + padding,\n\t\t\t\tend = begin + this.width() * rtl,\n\t\t\t\tinner, outer, matches = [], i, n;\n\n\t\t\tfor (i = 0, n = this._coordinates.length; i < n; i++) {\n\t\t\t\tinner = this._coordinates[i - 1] || 0;\n\t\t\t\touter = Math.abs(this._coordinates[i]) + padding * rtl;\n\n\t\t\t\tif ((this.op(inner, '<=', begin) && (this.op(inner, '>', end)))\n\t\t\t\t\t|| (this.op(outer, '<', begin) && this.op(outer, '>', end))) {\n\t\t\t\t\tmatches.push(i);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tthis.$stage.children('.active').removeClass('active');\n\t\t\tthis.$stage.children(':eq(' + matches.join('), :eq(') + ')').addClass('active');\n\n\t\t\tthis.$stage.children('.center').removeClass('center');\n\t\t\tif (this.settings.center) {\n\t\t\t\tthis.$stage.children().eq(this.current()).addClass('center');\n\t\t\t}\n\t\t}\n\t} ];\n\n\t/**\n\t * Create the stage DOM element\n\t */\n\tOwl.prototype.initializeStage = function() {\n\t\tthis.$stage = this.$element.find('.' + this.settings.stageClass);\n\n\t\t// if the stage is already in the DOM, grab it and skip stage initialization\n\t\tif (this.$stage.length) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.$element.addClass(this.options.loadingClass);\n\n\t\t// create stage\n\t\tthis.$stage = $('<' + this.settings.stageElement + '>', {\n\t\t\t\"class\": this.settings.stageClass\n\t\t}).wrap( $( '<div/>', {\n\t\t\t\"class\": this.settings.stageOuterClass\n\t\t}));\n\n\t\t// append stage\n\t\tthis.$element.append(this.$stage.parent());\n\t};\n\n\t/**\n\t * Create item DOM elements\n\t */\n\tOwl.prototype.initializeItems = function() {\n\t\tvar $items = this.$element.find('.owl-item');\n\n\t\t// if the items are already in the DOM, grab them and skip item initialization\n\t\tif ($items.length) {\n\t\t\tthis._items = $items.get().map(function(item) {\n\t\t\t\treturn $(item);\n\t\t\t});\n\n\t\t\tthis._mergers = this._items.map(function() {\n\t\t\t\treturn 1;\n\t\t\t});\n\n\t\t\tthis.refresh();\n\n\t\t\treturn;\n\t\t}\n\n\t\t// append content\n\t\tthis.replace(this.$element.children().not(this.$stage.parent()));\n\n\t\t// check visibility\n\t\tif (this.isVisible()) {\n\t\t\t// update view\n\t\t\tthis.refresh();\n\t\t} else {\n\t\t\t// invalidate width\n\t\t\tthis.invalidate('width');\n\t\t}\n\n\t\tthis.$element\n\t\t\t.removeClass(this.options.loadingClass)\n\t\t\t.addClass(this.options.loadedClass);\n\t};\n\n\t/**\n\t * Initializes the carousel.\n\t * @protected\n\t */\n\tOwl.prototype.initialize = function() {\n\t\tthis.enter('initializing');\n\t\tthis.trigger('initialize');\n\n\t\tthis.$element.toggleClass(this.settings.rtlClass, this.settings.rtl);\n\n\t\tif (this.settings.autoWidth && !this.is('pre-loading')) {\n\t\t\tvar imgs, nestedSelector, width;\n\t\t\timgs = this.$element.find('img');\n\t\t\tnestedSelector = this.settings.nestedItemSelector ? '.' + this.settings.nestedItemSelector : undefined;\n\t\t\twidth = this.$element.children(nestedSelector).width();\n\n\t\t\tif (imgs.length && width <= 0) {\n\t\t\t\tthis.preloadAutoWidthImages(imgs);\n\t\t\t}\n\t\t}\n\n\t\tthis.initializeStage();\n\t\tthis.initializeItems();\n\n\t\t// register event handlers\n\t\tthis.registerEventHandlers();\n\n\t\tthis.leave('initializing');\n\t\tthis.trigger('initialized');\n\t};\n\n\t/**\n\t * @returns {Boolean} visibility of $element\n\t * if you know the carousel will always be visible you can set `checkVisibility` to `false` to\n\t * prevent the expensive browser layout forced reflow the $element.is(':visible') does\n\t */\n\tOwl.prototype.isVisible = function() {\n\t\treturn this.settings.checkVisibility\n\t\t\t? this.$element.is(':visible')\n\t\t\t: true;\n\t};\n\n\t/**\n\t * Setups the current settings.\n\t * @todo Remove responsive classes. Why should adaptive designs be brought into IE8?\n\t * @todo Support for media queries by using `matchMedia` would be nice.\n\t * @public\n\t */\n\tOwl.prototype.setup = function() {\n\t\tvar viewport = this.viewport(),\n\t\t\toverwrites = this.options.responsive,\n\t\t\tmatch = -1,\n\t\t\tsettings = null;\n\n\t\tif (!overwrites) {\n\t\t\tsettings = $.extend({}, this.options);\n\t\t} else {\n\t\t\t$.each(overwrites, function(breakpoint) {\n\t\t\t\tif (breakpoint <= viewport && breakpoint > match) {\n\t\t\t\t\tmatch = Number(breakpoint);\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tsettings = $.extend({}, this.options, overwrites[match]);\n\t\t\tif (typeof settings.stagePadding === 'function') {\n\t\t\t\tsettings.stagePadding = settings.stagePadding();\n\t\t\t}\n\t\t\tdelete settings.responsive;\n\n\t\t\t// responsive class\n\t\t\tif (settings.responsiveClass) {\n\t\t\t\tthis.$element.attr('class',\n\t\t\t\t\tthis.$element.attr('class').replace(new RegExp('(' + this.options.responsiveClass + '-)\\\\S+\\\\s', 'g'), '$1' + match)\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\n\t\tthis.trigger('change', { property: { name: 'settings', value: settings } });\n\t\tthis._breakpoint = match;\n\t\tthis.settings = settings;\n\t\tthis.invalidate('settings');\n\t\tthis.trigger('changed', { property: { name: 'settings', value: this.settings } });\n\t};\n\n\t/**\n\t * Updates option logic if necessery.\n\t * @protected\n\t */\n\tOwl.prototype.optionsLogic = function() {\n\t\tif (this.settings.autoWidth) {\n\t\t\tthis.settings.stagePadding = false;\n\t\t\tthis.settings.merge = false;\n\t\t}\n\t};\n\n\t/**\n\t * Prepares an item before add.\n\t * @todo Rename event parameter `content` to `item`.\n\t * @protected\n\t * @returns {jQuery|HTMLElement} - The item container.\n\t */\n\tOwl.prototype.prepare = function(item) {\n\t\tvar event = this.trigger('prepare', { content: item });\n\n\t\tif (!event.data) {\n\t\t\tevent.data = $('<' + this.settings.itemElement + '/>')\n\t\t\t\t.addClass(this.options.itemClass).append(item)\n\t\t}\n\n\t\tthis.trigger('prepared', { content: event.data });\n\n\t\treturn event.data;\n\t};\n\n\t/**\n\t * Updates the view.\n\t * @public\n\t */\n\tOwl.prototype.update = function() {\n\t\tvar i = 0,\n\t\t\tn = this._pipe.length,\n\t\t\tfilter = $.proxy(function(p) { return this[p] }, this._invalidated),\n\t\t\tcache = {};\n\n\t\twhile (i < n) {\n\t\t\tif (this._invalidated.all || $.grep(this._pipe[i].filter, filter).length > 0) {\n\t\t\t\tthis._pipe[i].run(cache);\n\t\t\t}\n\t\t\ti++;\n\t\t}\n\n\t\tthis._invalidated = {};\n\n\t\t!this.is('valid') && this.enter('valid');\n\t};\n\n\t/**\n\t * Gets the width of the view.\n\t * @public\n\t * @param {Owl.Width} [dimension=Owl.Width.Default] - The dimension to return.\n\t * @returns {Number} - The width of the view in pixel.\n\t */\n\tOwl.prototype.width = function(dimension) {\n\t\tdimension = dimension || Owl.Width.Default;\n\t\tswitch (dimension) {\n\t\t\tcase Owl.Width.Inner:\n\t\t\tcase Owl.Width.Outer:\n\t\t\t\treturn this._width;\n\t\t\tdefault:\n\t\t\t\treturn this._width - this.settings.stagePadding * 2 + this.settings.margin;\n\t\t}\n\t};\n\n\t/**\n\t * Refreshes the carousel primarily for adaptive purposes.\n\t * @public\n\t */\n\tOwl.prototype.refresh = function() {\n\t\tthis.enter('refreshing');\n\t\tthis.trigger('refresh');\n\n\t\tthis.setup();\n\n\t\tthis.optionsLogic();\n\n\t\tthis.$element.addClass(this.options.refreshClass);\n\n\t\tthis.update();\n\n\t\tthis.$element.removeClass(this.options.refreshClass);\n\n\t\tthis.leave('refreshing');\n\t\tthis.trigger('refreshed');\n\t};\n\n\t/**\n\t * Checks window `resize` event.\n\t * @protected\n\t */\n\tOwl.prototype.onThrottledResize = function() {\n\t\twindow.clearTimeout(this.resizeTimer);\n\t\tthis.resizeTimer = window.setTimeout(this._handlers.onResize, this.settings.responsiveRefreshRate);\n\t};\n\n\t/**\n\t * Checks window `resize` event.\n\t * @protected\n\t */\n\tOwl.prototype.onResize = function() {\n\t\tif (!this._items.length) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (this._width === this.$element.width()) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.isVisible()) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthis.enter('resizing');\n\n\t\tif (this.trigger('resize').isDefaultPrevented()) {\n\t\t\tthis.leave('resizing');\n\t\t\treturn false;\n\t\t}\n\n\t\tthis.invalidate('width');\n\n\t\tthis.refresh();\n\n\t\tthis.leave('resizing');\n\t\tthis.trigger('resized');\n\t};\n\n\t/**\n\t * Registers event handlers.\n\t * @todo Check `msPointerEnabled`\n\t * @todo #261\n\t * @protected\n\t */\n\tOwl.prototype.registerEventHandlers = function() {\n\t\tif ($.support.transition) {\n\t\t\tthis.$stage.on($.support.transition.end + '.owl.core', $.proxy(this.onTransitionEnd, this));\n\t\t}\n\n\t\tif (this.settings.responsive !== false) {\n\t\t\tthis.on(window, 'resize', this._handlers.onThrottledResize);\n\t\t}\n\n\t\tif (this.settings.mouseDrag) {\n\t\t\tthis.$element.addClass(this.options.dragClass);\n\t\t\tthis.$stage.on('mousedown.owl.core', $.proxy(this.onDragStart, this));\n\t\t\tthis.$stage.on('dragstart.owl.core selectstart.owl.core', function() { return false });\n\t\t}\n\n\t\tif (this.settings.touchDrag){\n\t\t\tthis.$stage.on('touchstart.owl.core', $.proxy(this.onDragStart, this));\n\t\t\tthis.$stage.on('touchcancel.owl.core', $.proxy(this.onDragEnd, this));\n\t\t}\n\t};\n\n\t/**\n\t * Handles `touchstart` and `mousedown` events.\n\t * @todo Horizontal swipe threshold as option\n\t * @todo #261\n\t * @protected\n\t * @param {Event} event - The event arguments.\n\t */\n\tOwl.prototype.onDragStart = function(event) {\n\t\tvar stage = null;\n\n\t\tif (event.which === 3) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ($.support.transform) {\n\t\t\tstage = this.$stage.css('transform').replace(/.*\\(|\\)| /g, '').split(',');\n\t\t\tstage = {\n\t\t\t\tx: stage[stage.length === 16 ? 12 : 4],\n\t\t\t\ty: stage[stage.length === 16 ? 13 : 5]\n\t\t\t};\n\t\t} else {\n\t\t\tstage = this.$stage.position();\n\t\t\tstage = {\n\t\t\t\tx: this.settings.rtl ?\n\t\t\t\t\tstage.left + this.$stage.width() - this.width() + this.settings.margin :\n\t\t\t\t\tstage.left,\n\t\t\t\ty: stage.top\n\t\t\t};\n\t\t}\n\n\t\tif (this.is('animating')) {\n\t\t\t$.support.transform ? this.animate(stage.x) : this.$stage.stop()\n\t\t\tthis.invalidate('position');\n\t\t}\n\n\t\tthis.$element.toggleClass(this.options.grabClass, event.type === 'mousedown');\n\n\t\tthis.speed(0);\n\n\t\tthis._drag.time = new Date().getTime();\n\t\tthis._drag.target = $(event.target);\n\t\tthis._drag.stage.start = stage;\n\t\tthis._drag.stage.current = stage;\n\t\tthis._drag.pointer = this.pointer(event);\n\n\t\t$(document).on('mouseup.owl.core touchend.owl.core', $.proxy(this.onDragEnd, this));\n\n\t\t$(document).one('mousemove.owl.core touchmove.owl.core', $.proxy(function(event) {\n\t\t\tvar delta = this.difference(this._drag.pointer, this.pointer(event));\n\n\t\t\t$(document).on('mousemove.owl.core touchmove.owl.core', $.proxy(this.onDragMove, this));\n\n\t\t\tif (Math.abs(delta.x) < Math.abs(delta.y) && this.is('valid')) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tevent.preventDefault();\n\n\t\t\tthis.enter('dragging');\n\t\t\tthis.trigger('drag');\n\t\t}, this));\n\t};\n\n\t/**\n\t * Handles the `touchmove` and `mousemove` events.\n\t * @todo #261\n\t * @protected\n\t * @param {Event} event - The event arguments.\n\t */\n\tOwl.prototype.onDragMove = function(event) {\n\t\tvar minimum = null,\n\t\t\tmaximum = null,\n\t\t\tpull = null,\n\t\t\tdelta = this.difference(this._drag.pointer, this.pointer(event)),\n\t\t\tstage = this.difference(this._drag.stage.start, delta);\n\n\t\tif (!this.is('dragging')) {\n\t\t\treturn;\n\t\t}\n\n\t\tevent.preventDefault();\n\n\t\tif (this.settings.loop) {\n\t\t\tminimum = this.coordinates(this.minimum());\n\t\t\tmaximum = this.coordinates(this.maximum() + 1) - minimum;\n\t\t\tstage.x = (((stage.x - minimum) % maximum + maximum) % maximum) + minimum;\n\t\t} else {\n\t\t\tminimum = this.settings.rtl ? this.coordinates(this.maximum()) : this.coordinates(this.minimum());\n\t\t\tmaximum = this.settings.rtl ? this.coordinates(this.minimum()) : this.coordinates(this.maximum());\n\t\t\tpull = this.settings.pullDrag ? -1 * delta.x / 5 : 0;\n\t\t\tstage.x = Math.max(Math.min(stage.x, minimum + pull), maximum + pull);\n\t\t}\n\n\t\tthis._drag.stage.current = stage;\n\n\t\tthis.animate(stage.x);\n\t};\n\n\t/**\n\t * Handles the `touchend` and `mouseup` events.\n\t * @todo #261\n\t * @todo Threshold for click event\n\t * @protected\n\t * @param {Event} event - The event arguments.\n\t */\n\tOwl.prototype.onDragEnd = function(event) {\n\t\tvar delta = this.difference(this._drag.pointer, this.pointer(event)),\n\t\t\tstage = this._drag.stage.current,\n\t\t\tdirection = delta.x > 0 ^ this.settings.rtl ? 'left' : 'right';\n\n\t\t$(document).off('.owl.core');\n\n\t\tthis.$element.removeClass(this.options.grabClass);\n\n\t\tif (delta.x !== 0 && this.is('dragging') || !this.is('valid')) {\n\t\t\tthis.speed(this.settings.dragEndSpeed || this.settings.smartSpeed);\n\t\t\tthis.current(this.closest(stage.x, delta.x !== 0 ? direction : this._drag.direction));\n\t\t\tthis.invalidate('position');\n\t\t\tthis.update();\n\n\t\t\tthis._drag.direction = direction;\n\n\t\t\tif (Math.abs(delta.x) > 3 || new Date().getTime() - this._drag.time > 300) {\n\t\t\t\tthis._drag.target.one('click.owl.core', function() { return false; });\n\t\t\t}\n\t\t}\n\n\t\tif (!this.is('dragging')) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.leave('dragging');\n\t\tthis.trigger('dragged');\n\t};\n\n\t/**\n\t * Gets absolute position of the closest item for a coordinate.\n\t * @todo Setting `freeDrag` makes `closest` not reusable. See #165.\n\t * @protected\n\t * @param {Number} coordinate - The coordinate in pixel.\n\t * @param {String} direction - The direction to check for the closest item. Ether `left` or `right`.\n\t * @return {Number} - The absolute position of the closest item.\n\t */\n\tOwl.prototype.closest = function(coordinate, direction) {\n\t\tvar position = -1,\n\t\t\tpull = 30,\n\t\t\twidth = this.width(),\n\t\t\tcoordinates = this.coordinates();\n\n\t\tif (!this.settings.freeDrag) {\n\t\t\t// check closest item\n\t\t\t$.each(coordinates, $.proxy(function(index, value) {\n\t\t\t\t// on a left pull, check on current index\n\t\t\t\tif (direction === 'left' && coordinate > value - pull && coordinate < value + pull) {\n\t\t\t\t\tposition = index;\n\t\t\t\t// on a right pull, check on previous index\n\t\t\t\t// to do so, subtract width from value and set position = index + 1\n\t\t\t\t} else if (direction === 'right' && coordinate > value - width - pull && coordinate < value - width + pull) {\n\t\t\t\t\tposition = index + 1;\n\t\t\t\t} else if (this.op(coordinate, '<', value)\n\t\t\t\t\t&& this.op(coordinate, '>', coordinates[index + 1] !== undefined ? coordinates[index + 1] : value - width)) {\n\t\t\t\t\tposition = direction === 'left' ? index + 1 : index;\n\t\t\t\t}\n\t\t\t\treturn position === -1;\n\t\t\t}, this));\n\t\t}\n\n\t\tif (!this.settings.loop) {\n\t\t\t// non loop boundries\n\t\t\tif (this.op(coordinate, '>', coordinates[this.minimum()])) {\n\t\t\t\tposition = coordinate = this.minimum();\n\t\t\t} else if (this.op(coordinate, '<', coordinates[this.maximum()])) {\n\t\t\t\tposition = coordinate = this.maximum();\n\t\t\t}\n\t\t}\n\n\t\treturn position;\n\t};\n\n\t/**\n\t * Animates the stage.\n\t * @todo #270\n\t * @public\n\t * @param {Number} coordinate - The coordinate in pixels.\n\t */\n\tOwl.prototype.animate = function(coordinate) {\n\t\tvar animate = this.speed() > 0;\n\n\t\tthis.is('animating') && this.onTransitionEnd();\n\n\t\tif (animate) {\n\t\t\tthis.enter('animating');\n\t\t\tthis.trigger('translate');\n\t\t}\n\n\t\tif ($.support.transform3d && $.support.transition) {\n\t\t\tthis.$stage.css({\n\t\t\t\ttransform: 'translate3d(' + coordinate + 'px,0px,0px)',\n\t\t\t\ttransition: (this.speed() / 1000) + 's' + (\n\t\t\t\t\tthis.settings.slideTransition ? ' ' + this.settings.slideTransition : ''\n\t\t\t\t)\n\t\t\t});\n\t\t} else if (animate) {\n\t\t\tthis.$stage.animate({\n\t\t\t\tleft: coordinate + 'px'\n\t\t\t}, this.speed(), this.settings.fallbackEasing, $.proxy(this.onTransitionEnd, this));\n\t\t} else {\n\t\t\tthis.$stage.css({\n\t\t\t\tleft: coordinate + 'px'\n\t\t\t});\n\t\t}\n\t};\n\n\t/**\n\t * Checks whether the carousel is in a specific state or not.\n\t * @param {String} state - The state to check.\n\t * @returns {Boolean} - The flag which indicates if the carousel is busy.\n\t */\n\tOwl.prototype.is = function(state) {\n\t\treturn this._states.current[state] && this._states.current[state] > 0;\n\t};\n\n\t/**\n\t * Sets the absolute position of the current item.\n\t * @public\n\t * @param {Number} [position] - The new absolute position or nothing to leave it unchanged.\n\t * @returns {Number} - The absolute position of the current item.\n\t */\n\tOwl.prototype.current = function(position) {\n\t\tif (position === undefined) {\n\t\t\treturn this._current;\n\t\t}\n\n\t\tif (this._items.length === 0) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\tposition = this.normalize(position);\n\n\t\tif (this._current !== position) {\n\t\t\tvar event = this.trigger('change', { property: { name: 'position', value: position } });\n\n\t\t\tif (event.data !== undefined) {\n\t\t\t\tposition = this.normalize(event.data);\n\t\t\t}\n\n\t\t\tthis._current = position;\n\n\t\t\tthis.invalidate('position');\n\n\t\t\tthis.trigger('changed', { property: { name: 'position', value: this._current } });\n\t\t}\n\n\t\treturn this._current;\n\t};\n\n\t/**\n\t * Invalidates the given part of the update routine.\n\t * @param {String} [part] - The part to invalidate.\n\t * @returns {Array.<String>} - The invalidated parts.\n\t */\n\tOwl.prototype.invalidate = function(part) {\n\t\tif ($.type(part) === 'string') {\n\t\t\tthis._invalidated[part] = true;\n\t\t\tthis.is('valid') && this.leave('valid');\n\t\t}\n\t\treturn $.map(this._invalidated, function(v, i) { return i });\n\t};\n\n\t/**\n\t * Resets the absolute position of the current item.\n\t * @public\n\t * @param {Number} position - The absolute position of the new item.\n\t */\n\tOwl.prototype.reset = function(position) {\n\t\tposition = this.normalize(position);\n\n\t\tif (position === undefined) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._speed = 0;\n\t\tthis._current = position;\n\n\t\tthis.suppress([ 'translate', 'translated' ]);\n\n\t\tthis.animate(this.coordinates(position));\n\n\t\tthis.release([ 'translate', 'translated' ]);\n\t};\n\n\t/**\n\t * Normalizes an absolute or a relative position of an item.\n\t * @public\n\t * @param {Number} position - The absolute or relative position to normalize.\n\t * @param {Boolean} [relative=false] - Whether the given position is relative or not.\n\t * @returns {Number} - The normalized position.\n\t */\n\tOwl.prototype.normalize = function(position, relative) {\n\t\tvar n = this._items.length,\n\t\t\tm = relative ? 0 : this._clones.length;\n\n\t\tif (!this.isNumeric(position) || n < 1) {\n\t\t\tposition = undefined;\n\t\t} else if (position < 0 || position >= n + m) {\n\t\t\tposition = ((position - m / 2) % n + n) % n + m / 2;\n\t\t}\n\n\t\treturn position;\n\t};\n\n\t/**\n\t * Converts an absolute position of an item into a relative one.\n\t * @public\n\t * @param {Number} position - The absolute position to convert.\n\t * @returns {Number} - The converted position.\n\t */\n\tOwl.prototype.relative = function(position) {\n\t\tposition -= this._clones.length / 2;\n\t\treturn this.normalize(position, true);\n\t};\n\n\t/**\n\t * Gets the maximum position for the current item.\n\t * @public\n\t * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position.\n\t * @returns {Number}\n\t */\n\tOwl.prototype.maximum = function(relative) {\n\t\tvar settings = this.settings,\n\t\t\tmaximum = this._coordinates.length,\n\t\t\titerator,\n\t\t\treciprocalItemsWidth,\n\t\t\telementWidth;\n\n\t\tif (settings.loop) {\n\t\t\tmaximum = this._clones.length / 2 + this._items.length - 1;\n\t\t} else if (settings.autoWidth || settings.merge) {\n\t\t\titerator = this._items.length;\n\t\t\tif (iterator) {\n\t\t\t\treciprocalItemsWidth = this._items[--iterator].width();\n\t\t\t\telementWidth = this.$element.width();\n\t\t\t\twhile (iterator--) {\n\t\t\t\t\treciprocalItemsWidth += this._items[iterator].width() + this.settings.margin;\n\t\t\t\t\tif (reciprocalItemsWidth > elementWidth) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tmaximum = iterator + 1;\n\t\t} else if (settings.center) {\n\t\t\tmaximum = this._items.length - 1;\n\t\t} else {\n\t\t\tmaximum = this._items.length - settings.items;\n\t\t}\n\n\t\tif (relative) {\n\t\t\tmaximum -= this._clones.length / 2;\n\t\t}\n\n\t\treturn Math.max(maximum, 0);\n\t};\n\n\t/**\n\t * Gets the minimum position for the current item.\n\t * @public\n\t * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position.\n\t * @returns {Number}\n\t */\n\tOwl.prototype.minimum = function(relative) {\n\t\treturn relative ? 0 : this._clones.length / 2;\n\t};\n\n\t/**\n\t * Gets an item at the specified relative position.\n\t * @public\n\t * @param {Number} [position] - The relative position of the item.\n\t * @return {jQuery|Array.<jQuery>} - The item at the given position or all items if no position was given.\n\t */\n\tOwl.prototype.items = function(position) {\n\t\tif (position === undefined) {\n\t\t\treturn this._items.slice();\n\t\t}\n\n\t\tposition = this.normalize(position, true);\n\t\treturn this._items[position];\n\t};\n\n\t/**\n\t * Gets an item at the specified relative position.\n\t * @public\n\t * @param {Number} [position] - The relative position of the item.\n\t * @return {jQuery|Array.<jQuery>} - The item at the given position or all items if no position was given.\n\t */\n\tOwl.prototype.mergers = function(position) {\n\t\tif (position === undefined) {\n\t\t\treturn this._mergers.slice();\n\t\t}\n\n\t\tposition = this.normalize(position, true);\n\t\treturn this._mergers[position];\n\t};\n\n\t/**\n\t * Gets the absolute positions of clones for an item.\n\t * @public\n\t * @param {Number} [position] - The relative position of the item.\n\t * @returns {Array.<Number>} - The absolute positions of clones for the item or all if no position was given.\n\t */\n\tOwl.prototype.clones = function(position) {\n\t\tvar odd = this._clones.length / 2,\n\t\t\teven = odd + this._items.length,\n\t\t\tmap = function(index) { return index % 2 === 0 ? even + index / 2 : odd - (index + 1) / 2 };\n\n\t\tif (position === undefined) {\n\t\t\treturn $.map(this._clones, function(v, i) { return map(i) });\n\t\t}\n\n\t\treturn $.map(this._clones, function(v, i) { return v === position ? map(i) : null });\n\t};\n\n\t/**\n\t * Sets the current animation speed.\n\t * @public\n\t * @param {Number} [speed] - The animation speed in milliseconds or nothing to leave it unchanged.\n\t * @returns {Number} - The current animation speed in milliseconds.\n\t */\n\tOwl.prototype.speed = function(speed) {\n\t\tif (speed !== undefined) {\n\t\t\tthis._speed = speed;\n\t\t}\n\n\t\treturn this._speed;\n\t};\n\n\t/**\n\t * Gets the coordinate of an item.\n\t * @todo The name of this method is missleanding.\n\t * @public\n\t * @param {Number} position - The absolute position of the item within `minimum()` and `maximum()`.\n\t * @returns {Number|Array.<Number>} - The coordinate of the item in pixel or all coordinates.\n\t */\n\tOwl.prototype.coordinates = function(position) {\n\t\tvar multiplier = 1,\n\t\t\tnewPosition = position - 1,\n\t\t\tcoordinate;\n\n\t\tif (position === undefined) {\n\t\t\treturn $.map(this._coordinates, $.proxy(function(coordinate, index) {\n\t\t\t\treturn this.coordinates(index);\n\t\t\t}, this));\n\t\t}\n\n\t\tif (this.settings.center) {\n\t\t\tif (this.settings.rtl) {\n\t\t\t\tmultiplier = -1;\n\t\t\t\tnewPosition = position + 1;\n\t\t\t}\n\n\t\t\tcoordinate = this._coordinates[position];\n\t\t\tcoordinate += (this.width() - coordinate + (this._coordinates[newPosition] || 0)) / 2 * multiplier;\n\t\t} else {\n\t\t\tcoordinate = this._coordinates[newPosition] || 0;\n\t\t}\n\n\t\tcoordinate = Math.ceil(coordinate);\n\n\t\treturn coordinate;\n\t};\n\n\t/**\n\t * Calculates the speed for a translation.\n\t * @protected\n\t * @param {Number} from - The absolute position of the start item.\n\t * @param {Number} to - The absolute position of the target item.\n\t * @param {Number} [factor=undefined] - The time factor in milliseconds.\n\t * @returns {Number} - The time in milliseconds for the translation.\n\t */\n\tOwl.prototype.duration = function(from, to, factor) {\n\t\tif (factor === 0) {\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn Math.min(Math.max(Math.abs(to - from), 1), 6) * Math.abs((factor || this.settings.smartSpeed));\n\t};\n\n\t/**\n\t * Slides to the specified item.\n\t * @public\n\t * @param {Number} position - The position of the item.\n\t * @param {Number} [speed] - The time in milliseconds for the transition.\n\t */\n\tOwl.prototype.to = function(position, speed) {\n\t\tvar current = this.current(),\n\t\t\trevert = null,\n\t\t\tdistance = position - this.relative(current),\n\t\t\tdirection = (distance > 0) - (distance < 0),\n\t\t\titems = this._items.length,\n\t\t\tminimum = this.minimum(),\n\t\t\tmaximum = this.maximum();\n\n\t\tif (this.settings.loop) {\n\t\t\tif (!this.settings.rewind && Math.abs(distance) > items / 2) {\n\t\t\t\tdistance += direction * -1 * items;\n\t\t\t}\n\n\t\t\tposition = current + distance;\n\t\t\trevert = ((position - minimum) % items + items) % items + minimum;\n\n\t\t\tif (revert !== position && revert - distance <= maximum && revert - distance > 0) {\n\t\t\t\tcurrent = revert - distance;\n\t\t\t\tposition = revert;\n\t\t\t\tthis.reset(current);\n\t\t\t}\n\t\t} else if (this.settings.rewind) {\n\t\t\tmaximum += 1;\n\t\t\tposition = (position % maximum + maximum) % maximum;\n\t\t} else {\n\t\t\tposition = Math.max(minimum, Math.min(maximum, position));\n\t\t}\n\n\t\tthis.speed(this.duration(current, position, speed));\n\t\tthis.current(position);\n\n\t\tif (this.isVisible()) {\n\t\t\tthis.update();\n\t\t}\n\t};\n\n\t/**\n\t * Slides to the next item.\n\t * @public\n\t * @param {Number} [speed] - The time in milliseconds for the transition.\n\t */\n\tOwl.prototype.next = function(speed) {\n\t\tspeed = speed || false;\n\t\tthis.to(this.relative(this.current()) + 1, speed);\n\t};\n\n\t/**\n\t * Slides to the previous item.\n\t * @public\n\t * @param {Number} [speed] - The time in milliseconds for the transition.\n\t */\n\tOwl.prototype.prev = function(speed) {\n\t\tspeed = speed || false;\n\t\tthis.to(this.relative(this.current()) - 1, speed);\n\t};\n\n\t/**\n\t * Handles the end of an animation.\n\t * @protected\n\t * @param {Event} event - The event arguments.\n\t */\n\tOwl.prototype.onTransitionEnd = function(event) {\n\n\t\t// if css2 animation then event object is undefined\n\t\tif (event !== undefined) {\n\t\t\tevent.stopPropagation();\n\n\t\t\t// Catch only owl-stage transitionEnd event\n\t\t\tif ((event.target || event.srcElement || event.originalTarget) !== this.$stage.get(0)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\tthis.leave('animating');\n\t\tthis.trigger('translated');\n\t};\n\n\t/**\n\t * Gets viewport width.\n\t * @protected\n\t * @return {Number} - The width in pixel.\n\t */\n\tOwl.prototype.viewport = function() {\n\t\tvar width;\n\t\tif (this.options.responsiveBaseElement !== window) {\n\t\t\twidth = $(this.options.responsiveBaseElement).width();\n\t\t} else if (window.innerWidth) {\n\t\t\twidth = window.innerWidth;\n\t\t} else if (document.documentElement && document.documentElement.clientWidth) {\n\t\t\twidth = document.documentElement.clientWidth;\n\t\t} else {\n\t\t\tconsole.warn('Can not detect viewport width.');\n\t\t}\n\t\treturn width;\n\t};\n\n\t/**\n\t * Replaces the current content.\n\t * @public\n\t * @param {HTMLElement|jQuery|String} content - The new content.\n\t */\n\tOwl.prototype.replace = function(content) {\n\t\tthis.$stage.empty();\n\t\tthis._items = [];\n\n\t\tif (content) {\n\t\t\tcontent = (content instanceof jQuery) ? content : $(content);\n\t\t}\n\n\t\tif (this.settings.nestedItemSelector) {\n\t\t\tcontent = content.find('.' + this.settings.nestedItemSelector);\n\t\t}\n\n\t\tcontent.filter(function() {\n\t\t\treturn this.nodeType === 1;\n\t\t}).each($.proxy(function(index, item) {\n\t\t\titem = this.prepare(item);\n\t\t\tthis.$stage.append(item);\n\t\t\tthis._items.push(item);\n\t\t\tthis._mergers.push(item.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);\n\t\t}, this));\n\n\t\tthis.reset(this.isNumeric(this.settings.startPosition) ? this.settings.startPosition : 0);\n\n\t\tthis.invalidate('items');\n\t};\n\n\t/**\n\t * Adds an item.\n\t * @todo Use `item` instead of `content` for the event arguments.\n\t * @public\n\t * @param {HTMLElement|jQuery|String} content - The item content to add.\n\t * @param {Number} [position] - The relative position at which to insert the item otherwise the item will be added to the end.\n\t */\n\tOwl.prototype.add = function(content, position) {\n\t\tvar current = this.relative(this._current);\n\n\t\tposition = position === undefined ? this._items.length : this.normalize(position, true);\n\t\tcontent = content instanceof jQuery ? content : $(content);\n\n\t\tthis.trigger('add', { content: content, position: position });\n\n\t\tcontent = this.prepare(content);\n\n\t\tif (this._items.length === 0 || position === this._items.length) {\n\t\t\tthis._items.length === 0 && this.$stage.append(content);\n\t\t\tthis._items.length !== 0 && this._items[position - 1].after(content);\n\t\t\tthis._items.push(content);\n\t\t\tthis._mergers.push(content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);\n\t\t} else {\n\t\t\tthis._items[position].before(content);\n\t\t\tthis._items.splice(position, 0, content);\n\t\t\tthis._mergers.splice(position, 0, content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);\n\t\t}\n\n\t\tthis._items[current] && this.reset(this._items[current].index());\n\n\t\tthis.invalidate('items');\n\n\t\tthis.trigger('added', { content: content, position: position });\n\t};\n\n\t/**\n\t * Removes an item by its position.\n\t * @todo Use `item` instead of `content` for the event arguments.\n\t * @public\n\t * @param {Number} position - The relative position of the item to remove.\n\t */\n\tOwl.prototype.remove = function(position) {\n\t\tposition = this.normalize(position, true);\n\n\t\tif (position === undefined) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.trigger('remove', { content: this._items[position], position: position });\n\n\t\tthis._items[position].remove();\n\t\tthis._items.splice(position, 1);\n\t\tthis._mergers.splice(position, 1);\n\n\t\tthis.invalidate('items');\n\n\t\tthis.trigger('removed', { content: null, position: position });\n\t};\n\n\t/**\n\t * Preloads images with auto width.\n\t * @todo Replace by a more generic approach\n\t * @protected\n\t */\n\tOwl.prototype.preloadAutoWidthImages = function(images) {\n\t\timages.each($.proxy(function(i, element) {\n\t\t\tthis.enter('pre-loading');\n\t\t\telement = $(element);\n\t\t\t$(new Image()).one('load', $.proxy(function(e) {\n\t\t\t\telement.attr('src', e.target.src);\n\t\t\t\telement.css('opacity', 1);\n\t\t\t\tthis.leave('pre-loading');\n\t\t\t\t!this.is('pre-loading') && !this.is('initializing') && this.refresh();\n\t\t\t}, this)).attr('src', element.attr('src') || element.attr('data-src') || element.attr('data-src-retina'));\n\t\t}, this));\n\t};\n\n\t/**\n\t * Destroys the carousel.\n\t * @public\n\t */\n\tOwl.prototype.destroy = function() {\n\n\t\tthis.$element.off('.owl.core');\n\t\tthis.$stage.off('.owl.core');\n\t\t$(document).off('.owl.core');\n\n\t\tif (this.settings.responsive !== false) {\n\t\t\twindow.clearTimeout(this.resizeTimer);\n\t\t\tthis.off(window, 'resize', this._handlers.onThrottledResize);\n\t\t}\n\n\t\tfor (var i in this._plugins) {\n\t\t\tthis._plugins[i].destroy();\n\t\t}\n\n\t\tthis.$stage.children('.cloned').remove();\n\n\t\tthis.$stage.unwrap();\n\t\tthis.$stage.children().contents().unwrap();\n\t\tthis.$stage.children().unwrap();\n\t\tthis.$stage.remove();\n\t\tthis.$element\n\t\t\t.removeClass(this.options.refreshClass)\n\t\t\t.removeClass(this.options.loadingClass)\n\t\t\t.removeClass(this.options.loadedClass)\n\t\t\t.removeClass(this.options.rtlClass)\n\t\t\t.removeClass(this.options.dragClass)\n\t\t\t.removeClass(this.options.grabClass)\n\t\t\t.attr('class', this.$element.attr('class').replace(new RegExp(this.options.responsiveClass + '-\\\\S+\\\\s', 'g'), ''))\n\t\t\t.removeData('owl.carousel');\n\t};\n\n\t/**\n\t * Operators to calculate right-to-left and left-to-right.\n\t * @protected\n\t * @param {Number} [a] - The left side operand.\n\t * @param {String} [o] - The operator.\n\t * @param {Number} [b] - The right side operand.\n\t */\n\tOwl.prototype.op = function(a, o, b) {\n\t\tvar rtl = this.settings.rtl;\n\t\tswitch (o) {\n\t\t\tcase '<':\n\t\t\t\treturn rtl ? a > b : a < b;\n\t\t\tcase '>':\n\t\t\t\treturn rtl ? a < b : a > b;\n\t\t\tcase '>=':\n\t\t\t\treturn rtl ? a <= b : a >= b;\n\t\t\tcase '<=':\n\t\t\t\treturn rtl ? a >= b : a <= b;\n\t\t\tdefault:\n\t\t\t\tbreak;\n\t\t}\n\t};\n\n\t/**\n\t * Attaches to an internal event.\n\t * @protected\n\t * @param {HTMLElement} element - The event source.\n\t * @param {String} event - The event name.\n\t * @param {Function} listener - The event handler to attach.\n\t * @param {Boolean} capture - Wether the event should be handled at the capturing phase or not.\n\t */\n\tOwl.prototype.on = function(element, event, listener, capture) {\n\t\tif (element.addEventListener) {\n\t\t\telement.addEventListener(event, listener, capture);\n\t\t} else if (element.attachEvent) {\n\t\t\telement.attachEvent('on' + event, listener);\n\t\t}\n\t};\n\n\t/**\n\t * Detaches from an internal event.\n\t * @protected\n\t * @param {HTMLElement} element - The event source.\n\t * @param {String} event - The event name.\n\t * @param {Function} listener - The attached event handler to detach.\n\t * @param {Boolean} capture - Wether the attached event handler was registered as a capturing listener or not.\n\t */\n\tOwl.prototype.off = function(element, event, listener, capture) {\n\t\tif (element.removeEventListener) {\n\t\t\telement.removeEventListener(event, listener, capture);\n\t\t} else if (element.detachEvent) {\n\t\t\telement.detachEvent('on' + event, listener);\n\t\t}\n\t};\n\n\t/**\n\t * Triggers a public event.\n\t * @todo Remove `status`, `relatedTarget` should be used instead.\n\t * @protected\n\t * @param {String} name - The event name.\n\t * @param {*} [data=null] - The event data.\n\t * @param {String} [namespace=carousel] - The event namespace.\n\t * @param {String} [state] - The state which is associated with the event.\n\t * @param {Boolean} [enter=false] - Indicates if the call enters the specified state or not.\n\t * @returns {Event} - The event arguments.\n\t */\n\tOwl.prototype.trigger = function(name, data, namespace, state, enter) {\n\t\tvar status = {\n\t\t\titem: { count: this._items.length, index: this.current() }\n\t\t}, handler = $.camelCase(\n\t\t\t$.grep([ 'on', name, namespace ], function(v) { return v })\n\t\t\t\t.join('-').toLowerCase()\n\t\t), event = $.Event(\n\t\t\t[ name, 'owl', namespace || 'carousel' ].join('.').toLowerCase(),\n\t\t\t$.extend({ relatedTarget: this }, status, data)\n\t\t);\n\n\t\tif (!this._supress[name]) {\n\t\t\t$.each(this._plugins, function(name, plugin) {\n\t\t\t\tif (plugin.onTrigger) {\n\t\t\t\t\tplugin.onTrigger(event);\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tthis.register({ type: Owl.Type.Event, name: name });\n\t\t\tthis.$element.trigger(event);\n\n\t\t\tif (this.settings && typeof this.settings[handler] === 'function') {\n\t\t\t\tthis.settings[handler].call(this, event);\n\t\t\t}\n\t\t}\n\n\t\treturn event;\n\t};\n\n\t/**\n\t * Enters a state.\n\t * @param name - The state name.\n\t */\n\tOwl.prototype.enter = function(name) {\n\t\t$.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) {\n\t\t\tif (this._states.current[name] === undefined) {\n\t\t\t\tthis._states.current[name] = 0;\n\t\t\t}\n\n\t\t\tthis._states.current[name]++;\n\t\t}, this));\n\t};\n\n\t/**\n\t * Leaves a state.\n\t * @param name - The state name.\n\t */\n\tOwl.prototype.leave = function(name) {\n\t\t$.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) {\n\t\t\tthis._states.current[name]--;\n\t\t}, this));\n\t};\n\n\t/**\n\t * Registers an event or state.\n\t * @public\n\t * @param {Object} object - The event or state to register.\n\t */\n\tOwl.prototype.register = function(object) {\n\t\tif (object.type === Owl.Type.Event) {\n\t\t\tif (!$.event.special[object.name]) {\n\t\t\t\t$.event.special[object.name] = {};\n\t\t\t}\n\n\t\t\tif (!$.event.special[object.name].owl) {\n\t\t\t\tvar _default = $.event.special[object.name]._default;\n\t\t\t\t$.event.special[object.name]._default = function(e) {\n\t\t\t\t\tif (_default && _default.apply && (!e.namespace || e.namespace.indexOf('owl') === -1)) {\n\t\t\t\t\t\treturn _default.apply(this, arguments);\n\t\t\t\t\t}\n\t\t\t\t\treturn e.namespace && e.namespace.indexOf('owl') > -1;\n\t\t\t\t};\n\t\t\t\t$.event.special[object.name].owl = true;\n\t\t\t}\n\t\t} else if (object.type === Owl.Type.State) {\n\t\t\tif (!this._states.tags[object.name]) {\n\t\t\t\tthis._states.tags[object.name] = object.tags;\n\t\t\t} else {\n\t\t\t\tthis._states.tags[object.name] = this._states.tags[object.name].concat(object.tags);\n\t\t\t}\n\n\t\t\tthis._states.tags[object.name] = $.grep(this._states.tags[object.name], $.proxy(function(tag, i) {\n\t\t\t\treturn $.inArray(tag, this._states.tags[object.name]) === i;\n\t\t\t}, this));\n\t\t}\n\t};\n\n\t/**\n\t * Suppresses events.\n\t * @protected\n\t * @param {Array.<String>} events - The events to suppress.\n\t */\n\tOwl.prototype.suppress = function(events) {\n\t\t$.each(events, $.proxy(function(index, event) {\n\t\t\tthis._supress[event] = true;\n\t\t}, this));\n\t};\n\n\t/**\n\t * Releases suppressed events.\n\t * @protected\n\t * @param {Array.<String>} events - The events to release.\n\t */\n\tOwl.prototype.release = function(events) {\n\t\t$.each(events, $.proxy(function(index, event) {\n\t\t\tdelete this._supress[event];\n\t\t}, this));\n\t};\n\n\t/**\n\t * Gets unified pointer coordinates from event.\n\t * @todo #261\n\t * @protected\n\t * @param {Event} - The `mousedown` or `touchstart` event.\n\t * @returns {Object} - Contains `x` and `y` coordinates of current pointer position.\n\t */\n\tOwl.prototype.pointer = function(event) {\n\t\tvar result = { x: null, y: null };\n\n\t\tevent = event.originalEvent || event || window.event;\n\n\t\tevent = event.touches && event.touches.length ?\n\t\t\tevent.touches[0] : event.changedTouches && event.changedTouches.length ?\n\t\t\t\tevent.changedTouches[0] : event;\n\n\t\tif (event.pageX) {\n\t\t\tresult.x = event.pageX;\n\t\t\tresult.y = event.pageY;\n\t\t} else {\n\t\t\tresult.x = event.clientX;\n\t\t\tresult.y = event.clientY;\n\t\t}\n\n\t\treturn result;\n\t};\n\n\t/**\n\t * Determines if the input is a Number or something that can be coerced to a Number\n\t * @protected\n\t * @param {Number|String|Object|Array|Boolean|RegExp|Function|Symbol} - The input to be tested\n\t * @returns {Boolean} - An indication if the input is a Number or can be coerced to a Number\n\t */\n\tOwl.prototype.isNumeric = function(number) {\n\t\treturn !isNaN(parseFloat(number));\n\t};\n\n\t/**\n\t * Gets the difference of two vectors.\n\t * @todo #261\n\t * @protected\n\t * @param {Object} - The first vector.\n\t * @param {Object} - The second vector.\n\t * @returns {Object} - The difference.\n\t */\n\tOwl.prototype.difference = function(first, second) {\n\t\treturn {\n\t\t\tx: first.x - second.x,\n\t\t\ty: first.y - second.y\n\t\t};\n\t};\n\n\t/**\n\t * The jQuery Plugin for the Owl Carousel\n\t * @todo Navigation plugin `next` and `prev`\n\t * @public\n\t */\n\t$.fn.owlCarousel = function(option) {\n\t\tvar args = Array.prototype.slice.call(arguments, 1);\n\n\t\treturn this.each(function() {\n\t\t\tvar $this = $(this),\n\t\t\t\tdata = $this.data('owl.carousel');\n\n\t\t\tif (!data) {\n\t\t\t\tdata = new Owl(this, typeof option == 'object' && option);\n\t\t\t\t$this.data('owl.carousel', data);\n\n\t\t\t\t$.each([\n\t\t\t\t\t'next', 'prev', 'to', 'destroy', 'refresh', 'replace', 'add', 'remove'\n\t\t\t\t], function(i, event) {\n\t\t\t\t\tdata.register({ type: Owl.Type.Event, name: event });\n\t\t\t\t\tdata.$element.on(event + '.owl.carousel.core', $.proxy(function(e) {\n\t\t\t\t\t\tif (e.namespace && e.relatedTarget !== this) {\n\t\t\t\t\t\t\tthis.suppress([ event ]);\n\t\t\t\t\t\t\tdata[event].apply(this, [].slice.call(arguments, 1));\n\t\t\t\t\t\t\tthis.release([ event ]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, data));\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif (typeof option == 'string' && option.charAt(0) !== '_') {\n\t\t\t\tdata[option].apply(data, args);\n\t\t\t}\n\t\t});\n\t};\n\n\t/**\n\t * The constructor for the jQuery Plugin\n\t * @public\n\t */\n\t$.fn.owlCarousel.Constructor = Owl;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * AutoRefresh Plugin\n * @version 2.3.4\n * @author Artus Kolanowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\n\t/**\n\t * Creates the auto refresh plugin.\n\t * @class The Auto Refresh Plugin\n\t * @param {Owl} carousel - The Owl Carousel\n\t */\n\tvar AutoRefresh = function(carousel) {\n\t\t/**\n\t\t * Reference to the core.\n\t\t * @protected\n\t\t * @type {Owl}\n\t\t */\n\t\tthis._core = carousel;\n\n\t\t/**\n\t\t * Refresh interval.\n\t\t * @protected\n\t\t * @type {number}\n\t\t */\n\t\tthis._interval = null;\n\n\t\t/**\n\t\t * Whether the element is currently visible or not.\n\t\t * @protected\n\t\t * @type {Boolean}\n\t\t */\n\t\tthis._visible = null;\n\n\t\t/**\n\t\t * All event handlers.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._handlers = {\n\t\t\t'initialized.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.autoRefresh) {\n\t\t\t\t\tthis.watch();\n\t\t\t\t}\n\t\t\t}, this)\n\t\t};\n\n\t\t// set default options\n\t\tthis._core.options = $.extend({}, AutoRefresh.Defaults, this._core.options);\n\n\t\t// register event handlers\n\t\tthis._core.$element.on(this._handlers);\n\t};\n\n\t/**\n\t * Default options.\n\t * @public\n\t */\n\tAutoRefresh.Defaults = {\n\t\tautoRefresh: true,\n\t\tautoRefreshInterval: 500\n\t};\n\n\t/**\n\t * Watches the element.\n\t */\n\tAutoRefresh.prototype.watch = function() {\n\t\tif (this._interval) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._visible = this._core.isVisible();\n\t\tthis._interval = window.setInterval($.proxy(this.refresh, this), this._core.settings.autoRefreshInterval);\n\t};\n\n\t/**\n\t * Refreshes the element.\n\t */\n\tAutoRefresh.prototype.refresh = function() {\n\t\tif (this._core.isVisible() === this._visible) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._visible = !this._visible;\n\n\t\tthis._core.$element.toggleClass('owl-hidden', !this._visible);\n\n\t\tthis._visible && (this._core.invalidate('width') && this._core.refresh());\n\t};\n\n\t/**\n\t * Destroys the plugin.\n\t */\n\tAutoRefresh.prototype.destroy = function() {\n\t\tvar handler, property;\n\n\t\twindow.clearInterval(this._interval);\n\n\t\tfor (handler in this._handlers) {\n\t\t\tthis._core.$element.off(handler, this._handlers[handler]);\n\t\t}\n\t\tfor (property in Object.getOwnPropertyNames(this)) {\n\t\t\ttypeof this[property] != 'function' && (this[property] = null);\n\t\t}\n\t};\n\n\t$.fn.owlCarousel.Constructor.Plugins.AutoRefresh = AutoRefresh;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * Lazy Plugin\n * @version 2.3.4\n * @author Bartosz Wojciechowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\n\t/**\n\t * Creates the lazy plugin.\n\t * @class The Lazy Plugin\n\t * @param {Owl} carousel - The Owl Carousel\n\t */\n\tvar Lazy = function(carousel) {\n\n\t\t/**\n\t\t * Reference to the core.\n\t\t * @protected\n\t\t * @type {Owl}\n\t\t */\n\t\tthis._core = carousel;\n\n\t\t/**\n\t\t * Already loaded items.\n\t\t * @protected\n\t\t * @type {Array.<jQuery>}\n\t\t */\n\t\tthis._loaded = [];\n\n\t\t/**\n\t\t * Event handlers.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._handlers = {\n\t\t\t'initialized.owl.carousel change.owl.carousel resized.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (!e.namespace) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (!this._core.settings || !this._core.settings.lazyLoad) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif ((e.property && e.property.name == 'position') || e.type == 'initialized') {\n\t\t\t\t\tvar settings = this._core.settings,\n\t\t\t\t\t\tn = (settings.center && Math.ceil(settings.items / 2) || settings.items),\n\t\t\t\t\t\ti = ((settings.center && n * -1) || 0),\n\t\t\t\t\t\tposition = (e.property && e.property.value !== undefined ? e.property.value : this._core.current()) + i,\n\t\t\t\t\t\tclones = this._core.clones().length,\n\t\t\t\t\t\tload = $.proxy(function(i, v) { this.load(v) }, this);\n\t\t\t\t\t//TODO: Need documentation for this new option\n\t\t\t\t\tif (settings.lazyLoadEager > 0) {\n\t\t\t\t\t\tn += settings.lazyLoadEager;\n\t\t\t\t\t\t// If the carousel is looping also preload images that are to the \"left\"\n\t\t\t\t\t\tif (settings.loop) {\n position -= settings.lazyLoadEager;\n n++;\n }\n\t\t\t\t\t}\n\n\t\t\t\t\twhile (i++ < n) {\n\t\t\t\t\t\tthis.load(clones / 2 + this._core.relative(position));\n\t\t\t\t\t\tclones && $.each(this._core.clones(this._core.relative(position)), load);\n\t\t\t\t\t\tposition++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}, this)\n\t\t};\n\n\t\t// set the default options\n\t\tthis._core.options = $.extend({}, Lazy.Defaults, this._core.options);\n\n\t\t// register event handler\n\t\tthis._core.$element.on(this._handlers);\n\t};\n\n\t/**\n\t * Default options.\n\t * @public\n\t */\n\tLazy.Defaults = {\n\t\tlazyLoad: false,\n\t\tlazyLoadEager: 0\n\t};\n\n\t/**\n\t * Loads all resources of an item at the specified position.\n\t * @param {Number} position - The absolute position of the item.\n\t * @protected\n\t */\n\tLazy.prototype.load = function(position) {\n\t\tvar $item = this._core.$stage.children().eq(position),\n\t\t\t$elements = $item && $item.find('.owl-lazy');\n\n\t\tif (!$elements || $.inArray($item.get(0), this._loaded) > -1) {\n\t\t\treturn;\n\t\t}\n\n\t\t$elements.each($.proxy(function(index, element) {\n\t\t\tvar $element = $(element), image,\n url = (window.devicePixelRatio > 1 && $element.attr('data-src-retina')) || $element.attr('data-src') || $element.attr('data-srcset');\n\n\t\t\tthis._core.trigger('load', { element: $element, url: url }, 'lazy');\n\n\t\t\tif ($element.is('img')) {\n\t\t\t\t$element.one('load.owl.lazy', $.proxy(function() {\n\t\t\t\t\t$element.css('opacity', 1);\n\t\t\t\t\tthis._core.trigger('loaded', { element: $element, url: url }, 'lazy');\n\t\t\t\t}, this)).attr('src', url);\n } else if ($element.is('source')) {\n $element.one('load.owl.lazy', $.proxy(function() {\n this._core.trigger('loaded', { element: $element, url: url }, 'lazy');\n }, this)).attr('srcset', url);\n\t\t\t} else {\n\t\t\t\timage = new Image();\n\t\t\t\timage.onload = $.proxy(function() {\n\t\t\t\t\t$element.css({\n\t\t\t\t\t\t'background-image': 'url(\"' + url + '\")',\n\t\t\t\t\t\t'opacity': '1'\n\t\t\t\t\t});\n\t\t\t\t\tthis._core.trigger('loaded', { element: $element, url: url }, 'lazy');\n\t\t\t\t}, this);\n\t\t\t\timage.src = url;\n\t\t\t}\n\t\t}, this));\n\n\t\tthis._loaded.push($item.get(0));\n\t};\n\n\t/**\n\t * Destroys the plugin.\n\t * @public\n\t */\n\tLazy.prototype.destroy = function() {\n\t\tvar handler, property;\n\n\t\tfor (handler in this.handlers) {\n\t\t\tthis._core.$element.off(handler, this.handlers[handler]);\n\t\t}\n\t\tfor (property in Object.getOwnPropertyNames(this)) {\n\t\t\ttypeof this[property] != 'function' && (this[property] = null);\n\t\t}\n\t};\n\n\t$.fn.owlCarousel.Constructor.Plugins.Lazy = Lazy;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * AutoHeight Plugin\n * @version 2.3.4\n * @author Bartosz Wojciechowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\n\t/**\n\t * Creates the auto height plugin.\n\t * @class The Auto Height Plugin\n\t * @param {Owl} carousel - The Owl Carousel\n\t */\n\tvar AutoHeight = function(carousel) {\n\t\t/**\n\t\t * Reference to the core.\n\t\t * @protected\n\t\t * @type {Owl}\n\t\t */\n\t\tthis._core = carousel;\n\n\t\tthis._previousHeight = null;\n\n\t\t/**\n\t\t * All event handlers.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._handlers = {\n\t\t\t'initialized.owl.carousel refreshed.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.autoHeight) {\n\t\t\t\t\tthis.update();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'changed.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.autoHeight && e.property.name === 'position'){\n\t\t\t\t\tthis.update();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'loaded.owl.lazy': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.autoHeight\n\t\t\t\t\t&& e.element.closest('.' + this._core.settings.itemClass).index() === this._core.current()) {\n\t\t\t\t\tthis.update();\n\t\t\t\t}\n\t\t\t}, this)\n\t\t};\n\n\t\t// set default options\n\t\tthis._core.options = $.extend({}, AutoHeight.Defaults, this._core.options);\n\n\t\t// register event handlers\n\t\tthis._core.$element.on(this._handlers);\n\t\tthis._intervalId = null;\n\t\tvar refThis = this;\n\n\t\t// These changes have been taken from a PR by gavrochelegnou proposed in #1575\n\t\t// and have been made compatible with the latest jQuery version\n\t\t$(window).on('load', function() {\n\t\t\tif (refThis._core.settings.autoHeight) {\n\t\t\t\trefThis.update();\n\t\t\t}\n\t\t});\n\n\t\t// Autoresize the height of the carousel when window is resized\n\t\t// When carousel has images, the height is dependent on the width\n\t\t// and should also change on resize\n\t\t$(window).resize(function() {\n\t\t\tif (refThis._core.settings.autoHeight) {\n\t\t\t\tif (refThis._intervalId != null) {\n\t\t\t\t\tclearTimeout(refThis._intervalId);\n\t\t\t\t}\n\n\t\t\t\trefThis._intervalId = setTimeout(function() {\n\t\t\t\t\trefThis.update();\n\t\t\t\t}, 250);\n\t\t\t}\n\t\t});\n\n\t};\n\n\t/**\n\t * Default options.\n\t * @public\n\t */\n\tAutoHeight.Defaults = {\n\t\tautoHeight: false,\n\t\tautoHeightClass: 'owl-height'\n\t};\n\n\t/**\n\t * Updates the view.\n\t */\n\tAutoHeight.prototype.update = function() {\n\t\tvar start = this._core._current,\n\t\t\tend = start + this._core.settings.items,\n\t\t\tlazyLoadEnabled = this._core.settings.lazyLoad,\n\t\t\tvisible = this._core.$stage.children().toArray().slice(start, end),\n\t\t\theights = [],\n\t\t\tmaxheight = 0;\n\n\t\t$.each(visible, function(index, item) {\n\t\t\theights.push($(item).height());\n\t\t});\n\n\t\tmaxheight = Math.max.apply(null, heights);\n\n\t\tif (maxheight <= 1 && lazyLoadEnabled && this._previousHeight) {\n\t\t\tmaxheight = this._previousHeight;\n\t\t}\n\n\t\tthis._previousHeight = maxheight;\n\n\t\tthis._core.$stage.parent()\n\t\t\t.height(maxheight)\n\t\t\t.addClass(this._core.settings.autoHeightClass);\n\t};\n\n\tAutoHeight.prototype.destroy = function() {\n\t\tvar handler, property;\n\n\t\tfor (handler in this._handlers) {\n\t\t\tthis._core.$element.off(handler, this._handlers[handler]);\n\t\t}\n\t\tfor (property in Object.getOwnPropertyNames(this)) {\n\t\t\ttypeof this[property] !== 'function' && (this[property] = null);\n\t\t}\n\t};\n\n\t$.fn.owlCarousel.Constructor.Plugins.AutoHeight = AutoHeight;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * Video Plugin\n * @version 2.3.4\n * @author Bartosz Wojciechowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\n\t/**\n\t * Creates the video plugin.\n\t * @class The Video Plugin\n\t * @param {Owl} carousel - The Owl Carousel\n\t */\n\tvar Video = function(carousel) {\n\t\t/**\n\t\t * Reference to the core.\n\t\t * @protected\n\t\t * @type {Owl}\n\t\t */\n\t\tthis._core = carousel;\n\n\t\t/**\n\t\t * Cache all video URLs.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._videos = {};\n\n\t\t/**\n\t\t * Current playing item.\n\t\t * @protected\n\t\t * @type {jQuery}\n\t\t */\n\t\tthis._playing = null;\n\n\t\t/**\n\t\t * All event handlers.\n\t\t * @todo The cloned content removale is too late\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._handlers = {\n\t\t\t'initialized.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace) {\n\t\t\t\t\tthis._core.register({ type: 'state', name: 'playing', tags: [ 'interacting' ] });\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'resize.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.video && this.isInFullScreen()) {\n\t\t\t\t\te.preventDefault();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'refreshed.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.is('resizing')) {\n\t\t\t\t\tthis._core.$stage.find('.cloned .owl-video-frame').remove();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'changed.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && e.property.name === 'position' && this._playing) {\n\t\t\t\t\tthis.stop();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'prepared.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (!e.namespace) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tvar $element = $(e.content).find('.owl-video');\n\n\t\t\t\tif ($element.length) {\n\t\t\t\t\t$element.css('display', 'none');\n\t\t\t\t\tthis.fetch($element, $(e.content));\n\t\t\t\t}\n\t\t\t}, this)\n\t\t};\n\n\t\t// set default options\n\t\tthis._core.options = $.extend({}, Video.Defaults, this._core.options);\n\n\t\t// register event handlers\n\t\tthis._core.$element.on(this._handlers);\n\n\t\tthis._core.$element.on('click.owl.video', '.owl-video-play-icon', $.proxy(function(e) {\n\t\t\tthis.play(e);\n\t\t}, this));\n\t};\n\n\t/**\n\t * Default options.\n\t * @public\n\t */\n\tVideo.Defaults = {\n\t\tvideo: false,\n\t\tvideoHeight: false,\n\t\tvideoWidth: false\n\t};\n\n\t/**\n\t * Gets the video ID and the type (YouTube/Vimeo/vzaar only).\n\t * @protected\n\t * @param {jQuery} target - The target containing the video data.\n\t * @param {jQuery} item - The item containing the video.\n\t */\n\tVideo.prototype.fetch = function(target, item) {\n\t\t\tvar type = (function() {\n\t\t\t\t\tif (target.attr('data-vimeo-id')) {\n\t\t\t\t\t\treturn 'vimeo';\n\t\t\t\t\t} else if (target.attr('data-vzaar-id')) {\n\t\t\t\t\t\treturn 'vzaar'\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn 'youtube';\n\t\t\t\t\t}\n\t\t\t\t})(),\n\t\t\t\tid = target.attr('data-vimeo-id') || target.attr('data-youtube-id') || target.attr('data-vzaar-id'),\n\t\t\t\twidth = target.attr('data-width') || this._core.settings.videoWidth,\n\t\t\t\theight = target.attr('data-height') || this._core.settings.videoHeight,\n\t\t\t\turl = target.attr('href');\n\n\t\tif (url) {\n\n\t\t\t/*\n\t\t\t\t\tParses the id's out of the following urls (and probably more):\n\t\t\t\t\thttps://www.youtube.com/watch?v=:id\n\t\t\t\t\thttps://youtu.be/:id\n\t\t\t\t\thttps://vimeo.com/:id\n\t\t\t\t\thttps://vimeo.com/channels/:channel/:id\n\t\t\t\t\thttps://vimeo.com/groups/:group/videos/:id\n\t\t\t\t\thttps://app.vzaar.com/videos/:id\n\n\t\t\t\t\tVisual example: https://regexper.com/#(http%3A%7Chttps%3A%7C)%5C%2F%5C%2F(player.%7Cwww.%7Capp.)%3F(vimeo%5C.com%7Cyoutu(be%5C.com%7C%5C.be%7Cbe%5C.googleapis%5C.com)%7Cvzaar%5C.com)%5C%2F(video%5C%2F%7Cvideos%5C%2F%7Cembed%5C%2F%7Cchannels%5C%2F.%2B%5C%2F%7Cgroups%5C%2F.%2B%5C%2F%7Cwatch%5C%3Fv%3D%7Cv%5C%2F)%3F(%5BA-Za-z0-9._%25-%5D*)(%5C%26%5CS%2B)%3F\n\t\t\t*/\n\n\t\t\tid = url.match(/(http:|https:|)\\/\\/(player.|www.|app.)?(vimeo\\.com|youtu(be\\.com|\\.be|be\\.googleapis\\.com|be\\-nocookie\\.com)|vzaar\\.com)\\/(video\\/|videos\\/|embed\\/|channels\\/.+\\/|groups\\/.+\\/|watch\\?v=|v\\/)?([A-Za-z0-9._%-]*)(\\&\\S+)?/);\n\n\t\t\tif (id[3].indexOf('youtu') > -1) {\n\t\t\t\ttype = 'youtube';\n\t\t\t} else if (id[3].indexOf('vimeo') > -1) {\n\t\t\t\ttype = 'vimeo';\n\t\t\t} else if (id[3].indexOf('vzaar') > -1) {\n\t\t\t\ttype = 'vzaar';\n\t\t\t} else {\n\t\t\t\tthrow new Error('Video URL not supported.');\n\t\t\t}\n\t\t\tid = id[6];\n\t\t} else {\n\t\t\tthrow new Error('Missing video URL.');\n\t\t}\n\n\t\tthis._videos[url] = {\n\t\t\ttype: type,\n\t\t\tid: id,\n\t\t\twidth: width,\n\t\t\theight: height\n\t\t};\n\n\t\titem.attr('data-video', url);\n\n\t\tthis.thumbnail(target, this._videos[url]);\n\t};\n\n\t/**\n\t * Creates video thumbnail.\n\t * @protected\n\t * @param {jQuery} target - The target containing the video data.\n\t * @param {Object} info - The video info object.\n\t * @see `fetch`\n\t */\n\tVideo.prototype.thumbnail = function(target, video) {\n\t\tvar tnLink,\n\t\t\ticon,\n\t\t\tpath,\n\t\t\tdimensions = video.width && video.height ? 'width:' + video.width + 'px;height:' + video.height + 'px;' : '',\n\t\t\tcustomTn = target.find('img'),\n\t\t\tsrcType = 'src',\n\t\t\tlazyClass = '',\n\t\t\tsettings = this._core.settings,\n\t\t\tcreate = function(path) {\n\t\t\t\ticon = '<div class=\"owl-video-play-icon\"></div>';\n\n\t\t\t\tif (settings.lazyLoad) {\n\t\t\t\t\ttnLink = $('<div/>',{\n\t\t\t\t\t\t\"class\": 'owl-video-tn ' + lazyClass,\n\t\t\t\t\t\t\"srcType\": path\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\ttnLink = $( '<div/>', {\n\t\t\t\t\t\t\"class\": \"owl-video-tn\",\n\t\t\t\t\t\t\"style\": 'opacity:1;background-image:url(' + path + ')'\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\ttarget.after(tnLink);\n\t\t\t\ttarget.after(icon);\n\t\t\t};\n\n\t\t// wrap video content into owl-video-wrapper div\n\t\ttarget.wrap( $( '<div/>', {\n\t\t\t\"class\": \"owl-video-wrapper\",\n\t\t\t\"style\": dimensions\n\t\t}));\n\n\t\tif (this._core.settings.lazyLoad) {\n\t\t\tsrcType = 'data-src';\n\t\t\tlazyClass = 'owl-lazy';\n\t\t}\n\n\t\t// custom thumbnail\n\t\tif (customTn.length) {\n\t\t\tcreate(customTn.attr(srcType));\n\t\t\tcustomTn.remove();\n\t\t\treturn false;\n\t\t}\n\n\t\tif (video.type === 'youtube') {\n\t\t\tpath = \"//img.youtube.com/vi/\" + video.id + \"/hqdefault.jpg\";\n\t\t\tcreate(path);\n\t\t} else if (video.type === 'vimeo') {\n\t\t\t$.ajax({\n\t\t\t\ttype: 'GET',\n\t\t\t\turl: '//vimeo.com/api/v2/video/' + video.id + '.json',\n\t\t\t\tjsonp: 'callback',\n\t\t\t\tdataType: 'jsonp',\n\t\t\t\tsuccess: function(data) {\n\t\t\t\t\tpath = data[0].thumbnail_large;\n\t\t\t\t\tcreate(path);\n\t\t\t\t}\n\t\t\t});\n\t\t} else if (video.type === 'vzaar') {\n\t\t\t$.ajax({\n\t\t\t\ttype: 'GET',\n\t\t\t\turl: '//vzaar.com/api/videos/' + video.id + '.json',\n\t\t\t\tjsonp: 'callback',\n\t\t\t\tdataType: 'jsonp',\n\t\t\t\tsuccess: function(data) {\n\t\t\t\t\tpath = data.framegrab_url;\n\t\t\t\t\tcreate(path);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t};\n\n\t/**\n\t * Stops the current video.\n\t * @public\n\t */\n\tVideo.prototype.stop = function() {\n\t\tthis._core.trigger('stop', null, 'video');\n\t\tthis._playing.find('.owl-video-frame').remove();\n\t\tthis._playing.removeClass('owl-video-playing');\n\t\tthis._playing = null;\n\t\tthis._core.leave('playing');\n\t\tthis._core.trigger('stopped', null, 'video');\n\t};\n\n\t/**\n\t * Starts the current video.\n\t * @public\n\t * @param {Event} event - The event arguments.\n\t */\n\tVideo.prototype.play = function(event) {\n\t\tvar target = $(event.target),\n\t\t\titem = target.closest('.' + this._core.settings.itemClass),\n\t\t\tvideo = this._videos[item.attr('data-video')],\n\t\t\twidth = video.width || '100%',\n\t\t\theight = video.height || this._core.$stage.height(),\n\t\t\thtml,\n\t\t\tiframe;\n\n\t\tif (this._playing) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._core.enter('playing');\n\t\tthis._core.trigger('play', null, 'video');\n\n\t\titem = this._core.items(this._core.relative(item.index()));\n\n\t\tthis._core.reset(item.index());\n\n\t\thtml = $( '<iframe frameborder=\"0\" allowfullscreen mozallowfullscreen webkitAllowFullScreen ></iframe>' );\n\t\thtml.attr( 'height', height );\n\t\thtml.attr( 'width', width );\n\t\tif (video.type === 'youtube') {\n\t\t\thtml.attr( 'src', '//www.youtube.com/embed/' + video.id + '?autoplay=1&rel=0&v=' + video.id );\n\t\t} else if (video.type === 'vimeo') {\n\t\t\thtml.attr( 'src', '//player.vimeo.com/video/' + video.id + '?autoplay=1' );\n\t\t} else if (video.type === 'vzaar') {\n\t\t\thtml.attr( 'src', '//view.vzaar.com/' + video.id + '/player?autoplay=true' );\n\t\t}\n\n\t\tiframe = $(html).wrap( '<div class=\"owl-video-frame\" />' ).insertAfter(item.find('.owl-video'));\n\n\t\tthis._playing = item.addClass('owl-video-playing');\n\t};\n\n\t/**\n\t * Checks whether an video is currently in full screen mode or not.\n\t * @todo Bad style because looks like a readonly method but changes members.\n\t * @protected\n\t * @returns {Boolean}\n\t */\n\tVideo.prototype.isInFullScreen = function() {\n\t\tvar element = document.fullscreenElement || document.mozFullScreenElement ||\n\t\t\t\tdocument.webkitFullscreenElement;\n\n\t\treturn element && $(element).parent().hasClass('owl-video-frame');\n\t};\n\n\t/**\n\t * Destroys the plugin.\n\t */\n\tVideo.prototype.destroy = function() {\n\t\tvar handler, property;\n\n\t\tthis._core.$element.off('click.owl.video');\n\n\t\tfor (handler in this._handlers) {\n\t\t\tthis._core.$element.off(handler, this._handlers[handler]);\n\t\t}\n\t\tfor (property in Object.getOwnPropertyNames(this)) {\n\t\t\ttypeof this[property] != 'function' && (this[property] = null);\n\t\t}\n\t};\n\n\t$.fn.owlCarousel.Constructor.Plugins.Video = Video;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * Animate Plugin\n * @version 2.3.4\n * @author Bartosz Wojciechowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\n\t/**\n\t * Creates the animate plugin.\n\t * @class The Navigation Plugin\n\t * @param {Owl} scope - The Owl Carousel\n\t */\n\tvar Animate = function(scope) {\n\t\tthis.core = scope;\n\t\tthis.core.options = $.extend({}, Animate.Defaults, this.core.options);\n\t\tthis.swapping = true;\n\t\tthis.previous = undefined;\n\t\tthis.next = undefined;\n\n\t\tthis.handlers = {\n\t\t\t'change.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && e.property.name == 'position') {\n\t\t\t\t\tthis.previous = this.core.current();\n\t\t\t\t\tthis.next = e.property.value;\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'drag.owl.carousel dragged.owl.carousel translated.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace) {\n\t\t\t\t\tthis.swapping = e.type == 'translated';\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'translate.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this.swapping && (this.core.options.animateOut || this.core.options.animateIn)) {\n\t\t\t\t\tthis.swap();\n\t\t\t\t}\n\t\t\t}, this)\n\t\t};\n\n\t\tthis.core.$element.on(this.handlers);\n\t};\n\n\t/**\n\t * Default options.\n\t * @public\n\t */\n\tAnimate.Defaults = {\n\t\tanimateOut: false,\n\t\tanimateIn: false\n\t};\n\n\t/**\n\t * Toggles the animation classes whenever an translations starts.\n\t * @protected\n\t * @returns {Boolean|undefined}\n\t */\n\tAnimate.prototype.swap = function() {\n\n\t\tif (this.core.settings.items !== 1) {\n\t\t\treturn;\n\t\t}\n\n\t\tif (!$.support.animation || !$.support.transition) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.core.speed(0);\n\n\t\tvar left,\n\t\t\tclear = $.proxy(this.clear, this),\n\t\t\tprevious = this.core.$stage.children().eq(this.previous),\n\t\t\tnext = this.core.$stage.children().eq(this.next),\n\t\t\tincoming = this.core.settings.animateIn,\n\t\t\toutgoing = this.core.settings.animateOut;\n\n\t\tif (this.core.current() === this.previous) {\n\t\t\treturn;\n\t\t}\n\n\t\tif (outgoing) {\n\t\t\tleft = this.core.coordinates(this.previous) - this.core.coordinates(this.next);\n\t\t\tprevious.one($.support.animation.end, clear)\n\t\t\t\t.css( { 'left': left + 'px' } )\n\t\t\t\t.addClass('animated owl-animated-out')\n\t\t\t\t.addClass(outgoing);\n\t\t}\n\n\t\tif (incoming) {\n\t\t\tnext.one($.support.animation.end, clear)\n\t\t\t\t.addClass('animated owl-animated-in')\n\t\t\t\t.addClass(incoming);\n\t\t}\n\t};\n\n\tAnimate.prototype.clear = function(e) {\n\t\t$(e.target).css( { 'left': '' } )\n\t\t\t.removeClass('animated owl-animated-out owl-animated-in')\n\t\t\t.removeClass(this.core.settings.animateIn)\n\t\t\t.removeClass(this.core.settings.animateOut);\n\t\tthis.core.onTransitionEnd();\n\t};\n\n\t/**\n\t * Destroys the plugin.\n\t * @public\n\t */\n\tAnimate.prototype.destroy = function() {\n\t\tvar handler, property;\n\n\t\tfor (handler in this.handlers) {\n\t\t\tthis.core.$element.off(handler, this.handlers[handler]);\n\t\t}\n\t\tfor (property in Object.getOwnPropertyNames(this)) {\n\t\t\ttypeof this[property] != 'function' && (this[property] = null);\n\t\t}\n\t};\n\n\t$.fn.owlCarousel.Constructor.Plugins.Animate = Animate;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * Autoplay Plugin\n * @version 2.3.4\n * @author Bartosz Wojciechowski\n * @author Artus Kolanowski\n * @author David Deutsch\n * @author Tom De Caluwé\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\n\t/**\n\t * Creates the autoplay plugin.\n\t * @class The Autoplay Plugin\n\t * @param {Owl} scope - The Owl Carousel\n\t */\n\tvar Autoplay = function(carousel) {\n\t\t/**\n\t\t * Reference to the core.\n\t\t * @protected\n\t\t * @type {Owl}\n\t\t */\n\t\tthis._core = carousel;\n\n\t\t/**\n\t\t * The autoplay timeout id.\n\t\t * @type {Number}\n\t\t */\n\t\tthis._call = null;\n\n\t\t/**\n\t\t * Depending on the state of the plugin, this variable contains either\n\t\t * the start time of the timer or the current timer value if it's\n\t\t * paused. Since we start in a paused state we initialize the timer\n\t\t * value.\n\t\t * @type {Number}\n\t\t */\n\t\tthis._time = 0;\n\n\t\t/**\n\t\t * Stores the timeout currently used.\n\t\t * @type {Number}\n\t\t */\n\t\tthis._timeout = 0;\n\n\t\t/**\n\t\t * Indicates whenever the autoplay is paused.\n\t\t * @type {Boolean}\n\t\t */\n\t\tthis._paused = true;\n\n\t\t/**\n\t\t * All event handlers.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._handlers = {\n\t\t\t'changed.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && e.property.name === 'settings') {\n\t\t\t\t\tif (this._core.settings.autoplay) {\n\t\t\t\t\t\tthis.play();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.stop();\n\t\t\t\t\t}\n\t\t\t\t} else if (e.namespace && e.property.name === 'position' && this._paused) {\n\t\t\t\t\t// Reset the timer. This code is triggered when the position\n\t\t\t\t\t// of the carousel was changed through user interaction.\n\t\t\t\t\tthis._time = 0;\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'initialized.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.autoplay) {\n\t\t\t\t\tthis.play();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'play.owl.autoplay': $.proxy(function(e, t, s) {\n\t\t\t\tif (e.namespace) {\n\t\t\t\t\tthis.play(t, s);\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'stop.owl.autoplay': $.proxy(function(e) {\n\t\t\t\tif (e.namespace) {\n\t\t\t\t\tthis.stop();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'mouseover.owl.autoplay': $.proxy(function() {\n\t\t\t\tif (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {\n\t\t\t\t\tthis.pause();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'mouseleave.owl.autoplay': $.proxy(function() {\n\t\t\t\tif (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {\n\t\t\t\t\tthis.play();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'touchstart.owl.core': $.proxy(function() {\n\t\t\t\tif (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {\n\t\t\t\t\tthis.pause();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'touchend.owl.core': $.proxy(function() {\n\t\t\t\tif (this._core.settings.autoplayHoverPause) {\n\t\t\t\t\tthis.play();\n\t\t\t\t}\n\t\t\t}, this)\n\t\t};\n\n\t\t// register event handlers\n\t\tthis._core.$element.on(this._handlers);\n\n\t\t// set default options\n\t\tthis._core.options = $.extend({}, Autoplay.Defaults, this._core.options);\n\t};\n\n\t/**\n\t * Default options.\n\t * @public\n\t */\n\tAutoplay.Defaults = {\n\t\tautoplay: false,\n\t\tautoplayTimeout: 5000,\n\t\tautoplayHoverPause: false,\n\t\tautoplaySpeed: false\n\t};\n\n\t/**\n\t * Transition to the next slide and set a timeout for the next transition.\n\t * @private\n\t * @param {Number} [speed] - The animation speed for the animations.\n\t */\n\tAutoplay.prototype._next = function(speed) {\n\t\tthis._call = window.setTimeout(\n\t\t\t$.proxy(this._next, this, speed),\n\t\t\tthis._timeout * (Math.round(this.read() / this._timeout) + 1) - this.read()\n\t\t);\n\n\t\tif (this._core.is('interacting') || document.hidden) {\n\t\t\treturn;\n\t\t}\n\t\tthis._core.next(speed || this._core.settings.autoplaySpeed);\n\t}\n\n\t/**\n\t * Reads the current timer value when the timer is playing.\n\t * @public\n\t */\n\tAutoplay.prototype.read = function() {\n\t\treturn new Date().getTime() - this._time;\n\t};\n\n\t/**\n\t * Starts the autoplay.\n\t * @public\n\t * @param {Number} [timeout] - The interval before the next animation starts.\n\t * @param {Number} [speed] - The animation speed for the animations.\n\t */\n\tAutoplay.prototype.play = function(timeout, speed) {\n\t\tvar elapsed;\n\n\t\tif (!this._core.is('rotating')) {\n\t\t\tthis._core.enter('rotating');\n\t\t}\n\n\t\ttimeout = timeout || this._core.settings.autoplayTimeout;\n\n\t\t// Calculate the elapsed time since the last transition. If the carousel\n\t\t// wasn't playing this calculation will yield zero.\n\t\telapsed = Math.min(this._time % (this._timeout || timeout), timeout);\n\n\t\tif (this._paused) {\n\t\t\t// Start the clock.\n\t\t\tthis._time = this.read();\n\t\t\tthis._paused = false;\n\t\t} else {\n\t\t\t// Clear the active timeout to allow replacement.\n\t\t\twindow.clearTimeout(this._call);\n\t\t}\n\n\t\t// Adjust the origin of the timer to match the new timeout value.\n\t\tthis._time += this.read() % timeout - elapsed;\n\n\t\tthis._timeout = timeout;\n\t\tthis._call = window.setTimeout($.proxy(this._next, this, speed), timeout - elapsed);\n\t};\n\n\t/**\n\t * Stops the autoplay.\n\t * @public\n\t */\n\tAutoplay.prototype.stop = function() {\n\t\tif (this._core.is('rotating')) {\n\t\t\t// Reset the clock.\n\t\t\tthis._time = 0;\n\t\t\tthis._paused = true;\n\n\t\t\twindow.clearTimeout(this._call);\n\t\t\tthis._core.leave('rotating');\n\t\t}\n\t};\n\n\t/**\n\t * Pauses the autoplay.\n\t * @public\n\t */\n\tAutoplay.prototype.pause = function() {\n\t\tif (this._core.is('rotating') && !this._paused) {\n\t\t\t// Pause the clock.\n\t\t\tthis._time = this.read();\n\t\t\tthis._paused = true;\n\n\t\t\twindow.clearTimeout(this._call);\n\t\t}\n\t};\n\n\t/**\n\t * Destroys the plugin.\n\t */\n\tAutoplay.prototype.destroy = function() {\n\t\tvar handler, property;\n\n\t\tthis.stop();\n\n\t\tfor (handler in this._handlers) {\n\t\t\tthis._core.$element.off(handler, this._handlers[handler]);\n\t\t}\n\t\tfor (property in Object.getOwnPropertyNames(this)) {\n\t\t\ttypeof this[property] != 'function' && (this[property] = null);\n\t\t}\n\t};\n\n\t$.fn.owlCarousel.Constructor.Plugins.autoplay = Autoplay;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * Navigation Plugin\n * @version 2.3.4\n * @author Artus Kolanowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\t'use strict';\n\n\t/**\n\t * Creates the navigation plugin.\n\t * @class The Navigation Plugin\n\t * @param {Owl} carousel - The Owl Carousel.\n\t */\n\tvar Navigation = function(carousel) {\n\t\t/**\n\t\t * Reference to the core.\n\t\t * @protected\n\t\t * @type {Owl}\n\t\t */\n\t\tthis._core = carousel;\n\n\t\t/**\n\t\t * Indicates whether the plugin is initialized or not.\n\t\t * @protected\n\t\t * @type {Boolean}\n\t\t */\n\t\tthis._initialized = false;\n\n\t\t/**\n\t\t * The current paging indexes.\n\t\t * @protected\n\t\t * @type {Array}\n\t\t */\n\t\tthis._pages = [];\n\n\t\t/**\n\t\t * All DOM elements of the user interface.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._controls = {};\n\n\t\t/**\n\t\t * Markup for an indicator.\n\t\t * @protected\n\t\t * @type {Array.<String>}\n\t\t */\n\t\tthis._templates = [];\n\n\t\t/**\n\t\t * The carousel element.\n\t\t * @type {jQuery}\n\t\t */\n\t\tthis.$element = this._core.$element;\n\n\t\t/**\n\t\t * Overridden methods of the carousel.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._overrides = {\n\t\t\tnext: this._core.next,\n\t\t\tprev: this._core.prev,\n\t\t\tto: this._core.to\n\t\t};\n\n\t\t/**\n\t\t * All event handlers.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._handlers = {\n\t\t\t'prepared.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.dotsData) {\n\t\t\t\t\tthis._templates.push('<div class=\"' + this._core.settings.dotClass + '\">' +\n\t\t\t\t\t\t$(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '</div>');\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'added.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.dotsData) {\n\t\t\t\t\tthis._templates.splice(e.position, 0, this._templates.pop());\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'remove.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.dotsData) {\n\t\t\t\t\tthis._templates.splice(e.position, 1);\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'changed.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && e.property.name == 'position') {\n\t\t\t\t\tthis.draw();\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'initialized.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && !this._initialized) {\n\t\t\t\t\tthis._core.trigger('initialize', null, 'navigation');\n\t\t\t\t\tthis.initialize();\n\t\t\t\t\tthis.update();\n\t\t\t\t\tthis.draw();\n\t\t\t\t\tthis._initialized = true;\n\t\t\t\t\tthis._core.trigger('initialized', null, 'navigation');\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'refreshed.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._initialized) {\n\t\t\t\t\tthis._core.trigger('refresh', null, 'navigation');\n\t\t\t\t\tthis.update();\n\t\t\t\t\tthis.draw();\n\t\t\t\t\tthis._core.trigger('refreshed', null, 'navigation');\n\t\t\t\t}\n\t\t\t}, this)\n\t\t};\n\n\t\t// set default options\n\t\tthis._core.options = $.extend({}, Navigation.Defaults, this._core.options);\n\n\t\t// register event handlers\n\t\tthis.$element.on(this._handlers);\n\t};\n\n\t/**\n\t * Default options.\n\t * @public\n\t * @todo Rename `slideBy` to `navBy`\n\t */\n\tNavigation.Defaults = {\n\t\tnav: false,\n\t\tnavText: [\n\t\t\t'<span aria-label=\"' + 'Previous' + '\">‹</span>',\n\t\t\t'<span aria-label=\"' + 'Next' + '\">›</span>'\n\t\t],\n\t\tnavSpeed: false,\n\t\tnavElement: 'button type=\"button\" role=\"presentation\"',\n\t\tnavContainer: false,\n\t\tnavContainerClass: 'owl-nav',\n\t\tnavClass: [\n\t\t\t'owl-prev',\n\t\t\t'owl-next'\n\t\t],\n\t\tslideBy: 1,\n\t\tdotClass: 'owl-dot',\n\t\tdotsClass: 'owl-dots',\n\t\tdots: true,\n\t\tdotsEach: false,\n\t\tdotsData: false,\n\t\tdotsSpeed: false,\n\t\tdotsContainer: false\n\t};\n\n\t/**\n\t * Initializes the layout of the plugin and extends the carousel.\n\t * @protected\n\t */\n\tNavigation.prototype.initialize = function() {\n\t\tvar override,\n\t\t\tsettings = this._core.settings;\n\n\t\t// create DOM structure for relative navigation\n\t\tthis._controls.$relative = (settings.navContainer ? $(settings.navContainer)\n\t\t\t: $('<div>').addClass(settings.navContainerClass).appendTo(this.$element)).addClass('disabled');\n\n\t\tthis._controls.$previous = $('<' + settings.navElement + '>')\n\t\t\t.addClass(settings.navClass[0])\n\t\t\t.html(settings.navText[0])\n\t\t\t.prependTo(this._controls.$relative)\n\t\t\t.on('click', $.proxy(function(e) {\n\t\t\t\tthis.prev(settings.navSpeed);\n\t\t\t}, this));\n\t\tthis._controls.$next = $('<' + settings.navElement + '>')\n\t\t\t.addClass(settings.navClass[1])\n\t\t\t.html(settings.navText[1])\n\t\t\t.appendTo(this._controls.$relative)\n\t\t\t.on('click', $.proxy(function(e) {\n\t\t\t\tthis.next(settings.navSpeed);\n\t\t\t}, this));\n\n\t\t// create DOM structure for absolute navigation\n\t\tif (!settings.dotsData) {\n\t\t\tthis._templates = [ $('<button role=\"button\">')\n\t\t\t\t.addClass(settings.dotClass)\n\t\t\t\t.append($('<span>'))\n\t\t\t\t.prop('outerHTML') ];\n\t\t}\n\n\t\tthis._controls.$absolute = (settings.dotsContainer ? $(settings.dotsContainer)\n\t\t\t: $('<div>').addClass(settings.dotsClass).appendTo(this.$element)).addClass('disabled');\n\n\t\tthis._controls.$absolute.on('click', 'button', $.proxy(function(e) {\n\t\t\tvar index = $(e.target).parent().is(this._controls.$absolute)\n\t\t\t\t? $(e.target).index() : $(e.target).parent().index();\n\n\t\t\te.preventDefault();\n\n\t\t\tthis.to(index, settings.dotsSpeed);\n\t\t}, this));\n\n\t\t/*$el.on('focusin', function() {\n\t\t\t$(document).off(\".carousel\");\n\n\t\t\t$(document).on('keydown.carousel', function(e) {\n\t\t\t\tif(e.keyCode == 37) {\n\t\t\t\t\t$el.trigger('prev.owl')\n\t\t\t\t}\n\t\t\t\tif(e.keyCode == 39) {\n\t\t\t\t\t$el.trigger('next.owl')\n\t\t\t\t}\n\t\t\t});\n\t\t});*/\n\n\t\t// override public methods of the carousel\n\t\tfor (override in this._overrides) {\n\t\t\tthis._core[override] = $.proxy(this[override], this);\n\t\t}\n\t};\n\n\t/**\n\t * Destroys the plugin.\n\t * @protected\n\t */\n\tNavigation.prototype.destroy = function() {\n\t\tvar handler, control, property, override, settings;\n\t\tsettings = this._core.settings;\n\n\t\tfor (handler in this._handlers) {\n\t\t\tthis.$element.off(handler, this._handlers[handler]);\n\t\t}\n\t\tfor (control in this._controls) {\n\t\t\tif (control === '$relative' && settings.navContainer) {\n\t\t\t\tthis._controls[control].html('');\n\t\t\t} else {\n\t\t\t\tthis._controls[control].remove();\n\t\t\t}\n\t\t}\n\t\tfor (override in this.overides) {\n\t\t\tthis._core[override] = this._overrides[override];\n\t\t}\n\t\tfor (property in Object.getOwnPropertyNames(this)) {\n\t\t\ttypeof this[property] != 'function' && (this[property] = null);\n\t\t}\n\t};\n\n\t/**\n\t * Updates the internal state.\n\t * @protected\n\t */\n\tNavigation.prototype.update = function() {\n\t\tvar i, j, k,\n\t\t\tlower = this._core.clones().length / 2,\n\t\t\tupper = lower + this._core.items().length,\n\t\t\tmaximum = this._core.maximum(true),\n\t\t\tsettings = this._core.settings,\n\t\t\tsize = settings.center || settings.autoWidth || settings.dotsData\n\t\t\t\t? 1 : settings.dotsEach || settings.items;\n\n\t\tif (settings.slideBy !== 'page') {\n\t\t\tsettings.slideBy = Math.min(settings.slideBy, settings.items);\n\t\t}\n\n\t\tif (settings.dots || settings.slideBy == 'page') {\n\t\t\tthis._pages = [];\n\n\t\t\tfor (i = lower, j = 0, k = 0; i < upper; i++) {\n\t\t\t\tif (j >= size || j === 0) {\n\t\t\t\t\tthis._pages.push({\n\t\t\t\t\t\tstart: Math.min(maximum, i - lower),\n\t\t\t\t\t\tend: i - lower + size - 1\n\t\t\t\t\t});\n\t\t\t\t\tif (Math.min(maximum, i - lower) === maximum) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tj = 0, ++k;\n\t\t\t\t}\n\t\t\t\tj += this._core.mergers(this._core.relative(i));\n\t\t\t}\n\t\t}\n\t};\n\n\t/**\n\t * Draws the user interface.\n\t * @todo The option `dotsData` wont work.\n\t * @protected\n\t */\n\tNavigation.prototype.draw = function() {\n\t\tvar difference,\n\t\t\tsettings = this._core.settings,\n\t\t\tdisabled = this._core.items().length <= settings.items,\n\t\t\tindex = this._core.relative(this._core.current()),\n\t\t\tloop = settings.loop || settings.rewind;\n\n\t\tthis._controls.$relative.toggleClass('disabled', !settings.nav || disabled);\n\n\t\tif (settings.nav) {\n\t\t\tthis._controls.$previous.toggleClass('disabled', !loop && index <= this._core.minimum(true));\n\t\t\tthis._controls.$next.toggleClass('disabled', !loop && index >= this._core.maximum(true));\n\t\t}\n\n\t\tthis._controls.$absolute.toggleClass('disabled', !settings.dots || disabled);\n\n\t\tif (settings.dots) {\n\t\t\tdifference = this._pages.length - this._controls.$absolute.children().length;\n\n\t\t\tif (settings.dotsData && difference !== 0) {\n\t\t\t\tthis._controls.$absolute.html(this._templates.join(''));\n\t\t\t} else if (difference > 0) {\n\t\t\t\tthis._controls.$absolute.append(new Array(difference + 1).join(this._templates[0]));\n\t\t\t} else if (difference < 0) {\n\t\t\t\tthis._controls.$absolute.children().slice(difference).remove();\n\t\t\t}\n\n\t\t\tthis._controls.$absolute.find('.active').removeClass('active');\n\t\t\tthis._controls.$absolute.children().eq($.inArray(this.current(), this._pages)).addClass('active');\n\t\t}\n\t};\n\n\t/**\n\t * Extends event data.\n\t * @protected\n\t * @param {Event} event - The event object which gets thrown.\n\t */\n\tNavigation.prototype.onTrigger = function(event) {\n\t\tvar settings = this._core.settings;\n\n\t\tevent.page = {\n\t\t\tindex: $.inArray(this.current(), this._pages),\n\t\t\tcount: this._pages.length,\n\t\t\tsize: settings && (settings.center || settings.autoWidth || settings.dotsData\n\t\t\t\t? 1 : settings.dotsEach || settings.items)\n\t\t};\n\t};\n\n\t/**\n\t * Gets the current page position of the carousel.\n\t * @protected\n\t * @returns {Number}\n\t */\n\tNavigation.prototype.current = function() {\n\t\tvar current = this._core.relative(this._core.current());\n\t\treturn $.grep(this._pages, $.proxy(function(page, index) {\n\t\t\treturn page.start <= current && page.end >= current;\n\t\t}, this)).pop();\n\t};\n\n\t/**\n\t * Gets the current succesor/predecessor position.\n\t * @protected\n\t * @returns {Number}\n\t */\n\tNavigation.prototype.getPosition = function(successor) {\n\t\tvar position, length,\n\t\t\tsettings = this._core.settings;\n\n\t\tif (settings.slideBy == 'page') {\n\t\t\tposition = $.inArray(this.current(), this._pages);\n\t\t\tlength = this._pages.length;\n\t\t\tsuccessor ? ++position : --position;\n\t\t\tposition = this._pages[((position % length) + length) % length].start;\n\t\t} else {\n\t\t\tposition = this._core.relative(this._core.current());\n\t\t\tlength = this._core.items().length;\n\t\t\tsuccessor ? position += settings.slideBy : position -= settings.slideBy;\n\t\t}\n\n\t\treturn position;\n\t};\n\n\t/**\n\t * Slides to the next item or page.\n\t * @public\n\t * @param {Number} [speed=false] - The time in milliseconds for the transition.\n\t */\n\tNavigation.prototype.next = function(speed) {\n\t\t$.proxy(this._overrides.to, this._core)(this.getPosition(true), speed);\n\t};\n\n\t/**\n\t * Slides to the previous item or page.\n\t * @public\n\t * @param {Number} [speed=false] - The time in milliseconds for the transition.\n\t */\n\tNavigation.prototype.prev = function(speed) {\n\t\t$.proxy(this._overrides.to, this._core)(this.getPosition(false), speed);\n\t};\n\n\t/**\n\t * Slides to the specified item or page.\n\t * @public\n\t * @param {Number} position - The position of the item or page.\n\t * @param {Number} [speed] - The time in milliseconds for the transition.\n\t * @param {Boolean} [standard=false] - Whether to use the standard behaviour or not.\n\t */\n\tNavigation.prototype.to = function(position, speed, standard) {\n\t\tvar length;\n\n\t\tif (!standard && this._pages.length) {\n\t\t\tlength = this._pages.length;\n\t\t\t$.proxy(this._overrides.to, this._core)(this._pages[((position % length) + length) % length].start, speed);\n\t\t} else {\n\t\t\t$.proxy(this._overrides.to, this._core)(position, speed);\n\t\t}\n\t};\n\n\t$.fn.owlCarousel.Constructor.Plugins.Navigation = Navigation;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * Hash Plugin\n * @version 2.3.4\n * @author Artus Kolanowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\t'use strict';\n\n\t/**\n\t * Creates the hash plugin.\n\t * @class The Hash Plugin\n\t * @param {Owl} carousel - The Owl Carousel\n\t */\n\tvar Hash = function(carousel) {\n\t\t/**\n\t\t * Reference to the core.\n\t\t * @protected\n\t\t * @type {Owl}\n\t\t */\n\t\tthis._core = carousel;\n\n\t\t/**\n\t\t * Hash index for the items.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._hashes = {};\n\n\t\t/**\n\t\t * The carousel element.\n\t\t * @type {jQuery}\n\t\t */\n\t\tthis.$element = this._core.$element;\n\n\t\t/**\n\t\t * All event handlers.\n\t\t * @protected\n\t\t * @type {Object}\n\t\t */\n\t\tthis._handlers = {\n\t\t\t'initialized.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && this._core.settings.startPosition === 'URLHash') {\n\t\t\t\t\t$(window).trigger('hashchange.owl.navigation');\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'prepared.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace) {\n\t\t\t\t\tvar hash = $(e.content).find('[data-hash]').addBack('[data-hash]').attr('data-hash');\n\n\t\t\t\t\tif (!hash) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis._hashes[hash] = e.content;\n\t\t\t\t}\n\t\t\t}, this),\n\t\t\t'changed.owl.carousel': $.proxy(function(e) {\n\t\t\t\tif (e.namespace && e.property.name === 'position') {\n\t\t\t\t\tvar current = this._core.items(this._core.relative(this._core.current())),\n\t\t\t\t\t\thash = $.map(this._hashes, function(item, hash) {\n\t\t\t\t\t\t\treturn item === current ? hash : null;\n\t\t\t\t\t\t}).join();\n\n\t\t\t\t\tif (!hash || window.location.hash.slice(1) === hash) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\twindow.location.hash = hash;\n\t\t\t\t}\n\t\t\t}, this)\n\t\t};\n\n\t\t// set default options\n\t\tthis._core.options = $.extend({}, Hash.Defaults, this._core.options);\n\n\t\t// register the event handlers\n\t\tthis.$element.on(this._handlers);\n\n\t\t// register event listener for hash navigation\n\t\t$(window).on('hashchange.owl.navigation', $.proxy(function(e) {\n\t\t\tvar hash = window.location.hash.substring(1),\n\t\t\t\titems = this._core.$stage.children(),\n\t\t\t\tposition = this._hashes[hash] && items.index(this._hashes[hash]);\n\n\t\t\tif (position === undefined || position === this._core.current()) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis._core.to(this._core.relative(position), false, true);\n\t\t}, this));\n\t};\n\n\t/**\n\t * Default options.\n\t * @public\n\t */\n\tHash.Defaults = {\n\t\tURLhashListener: false\n\t};\n\n\t/**\n\t * Destroys the plugin.\n\t * @public\n\t */\n\tHash.prototype.destroy = function() {\n\t\tvar handler, property;\n\n\t\t$(window).off('hashchange.owl.navigation');\n\n\t\tfor (handler in this._handlers) {\n\t\t\tthis._core.$element.off(handler, this._handlers[handler]);\n\t\t}\n\t\tfor (property in Object.getOwnPropertyNames(this)) {\n\t\t\ttypeof this[property] != 'function' && (this[property] = null);\n\t\t}\n\t};\n\n\t$.fn.owlCarousel.Constructor.Plugins.Hash = Hash;\n\n})(window.Zepto || window.jQuery, window, document);\n\n/**\n * Support Plugin\n *\n * @version 2.3.4\n * @author Vivid Planet Software GmbH\n * @author Artus Kolanowski\n * @author David Deutsch\n * @license The MIT License (MIT)\n */\n;(function($, window, document, undefined) {\n\n\tvar style = $('<support>').get(0).style,\n\t\tprefixes = 'Webkit Moz O ms'.split(' '),\n\t\tevents = {\n\t\t\ttransition: {\n\t\t\t\tend: {\n\t\t\t\t\tWebkitTransition: 'webkitTransitionEnd',\n\t\t\t\t\tMozTransition: 'transitionend',\n\t\t\t\t\tOTransition: 'oTransitionEnd',\n\t\t\t\t\ttransition: 'transitionend'\n\t\t\t\t}\n\t\t\t},\n\t\t\tanimation: {\n\t\t\t\tend: {\n\t\t\t\t\tWebkitAnimation: 'webkitAnimationEnd',\n\t\t\t\t\tMozAnimation: 'animationend',\n\t\t\t\t\tOAnimation: 'oAnimationEnd',\n\t\t\t\t\tanimation: 'animationend'\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\ttests = {\n\t\t\tcsstransforms: function() {\n\t\t\t\treturn !!test('transform');\n\t\t\t},\n\t\t\tcsstransforms3d: function() {\n\t\t\t\treturn !!test('perspective');\n\t\t\t},\n\t\t\tcsstransitions: function() {\n\t\t\t\treturn !!test('transition');\n\t\t\t},\n\t\t\tcssanimations: function() {\n\t\t\t\treturn !!test('animation');\n\t\t\t}\n\t\t};\n\n\tfunction test(property, prefixed) {\n\t\tvar result = false,\n\t\t\tupper = property.charAt(0).toUpperCase() + property.slice(1);\n\n\t\t$.each((property + ' ' + prefixes.join(upper + ' ') + upper).split(' '), function(i, property) {\n\t\t\tif (style[property] !== undefined) {\n\t\t\t\tresult = prefixed ? property : true;\n\t\t\t\treturn false;\n\t\t\t}\n\t\t});\n\n\t\treturn result;\n\t}\n\n\tfunction prefixed(property) {\n\t\treturn test(property, true);\n\t}\n\n\tif (tests.csstransitions()) {\n\t\t/* jshint -W053 */\n\t\t$.support.transition = new String(prefixed('transition'))\n\t\t$.support.transition.end = events.transition.end[ $.support.transition ];\n\t}\n\n\tif (tests.cssanimations()) {\n\t\t/* jshint -W053 */\n\t\t$.support.animation = new String(prefixed('animation'))\n\t\t$.support.animation.end = events.animation.end[ $.support.animation ];\n\t}\n\n\tif (tests.csstransforms()) {\n\t\t/* jshint -W053 */\n\t\t$.support.transform = new String(prefixed('transform'));\n\t\t$.support.transform3d = tests.csstransforms3d();\n\t}\n\n})(window.Zepto || window.jQuery, window, document);\n\n},{}],140:[function(require,module,exports){\n// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n\n},{}],141:[function(require,module,exports){\n'use strict';\n\nmodule.exports = require('./lib')\n\n},{\"./lib\":146}],142:[function(require,module,exports){\n'use strict';\n\nvar asap = require('asap/raw');\n\nfunction noop() {}\n\n// States:\n//\n// 0 - pending\n// 1 - fulfilled with _value\n// 2 - rejected with _value\n// 3 - adopted the state of another promise, _value\n//\n// once the state is no longer pending (0) it is immutable\n\n// All `_` prefixed properties will be reduced to `_{random number}`\n// at build time to obfuscate them and discourage their use.\n// We don't use symbols or Object.defineProperty to fully hide them\n// because the performance isn't good enough.\n\n\n// to avoid using try/catch inside critical functions, we\n// extract them to here.\nvar LAST_ERROR = null;\nvar IS_ERROR = {};\nfunction getThen(obj) {\n try {\n return obj.then;\n } catch (ex) {\n LAST_ERROR = ex;\n return IS_ERROR;\n }\n}\n\nfunction tryCallOne(fn, a) {\n try {\n return fn(a);\n } catch (ex) {\n LAST_ERROR = ex;\n return IS_ERROR;\n }\n}\nfunction tryCallTwo(fn, a, b) {\n try {\n fn(a, b);\n } catch (ex) {\n LAST_ERROR = ex;\n return IS_ERROR;\n }\n}\n\nmodule.exports = Promise;\n\nfunction Promise(fn) {\n if (typeof this !== 'object') {\n throw new TypeError('Promises must be constructed via new');\n }\n if (typeof fn !== 'function') {\n throw new TypeError('Promise constructor\\'s argument is not a function');\n }\n this._40 = 0;\n this._65 = 0;\n this._55 = null;\n this._72 = null;\n if (fn === noop) return;\n doResolve(fn, this);\n}\nPromise._37 = null;\nPromise._87 = null;\nPromise._61 = noop;\n\nPromise.prototype.then = function(onFulfilled, onRejected) {\n if (this.constructor !== Promise) {\n return safeThen(this, onFulfilled, onRejected);\n }\n var res = new Promise(noop);\n handle(this, new Handler(onFulfilled, onRejected, res));\n return res;\n};\n\nfunction safeThen(self, onFulfilled, onRejected) {\n return new self.constructor(function (resolve, reject) {\n var res = new Promise(noop);\n res.then(resolve, reject);\n handle(self, new Handler(onFulfilled, onRejected, res));\n });\n}\nfunction handle(self, deferred) {\n while (self._65 === 3) {\n self = self._55;\n }\n if (Promise._37) {\n Promise._37(self);\n }\n if (self._65 === 0) {\n if (self._40 === 0) {\n self._40 = 1;\n self._72 = deferred;\n return;\n }\n if (self._40 === 1) {\n self._40 = 2;\n self._72 = [self._72, deferred];\n return;\n }\n self._72.push(deferred);\n return;\n }\n handleResolved(self, deferred);\n}\n\nfunction handleResolved(self, deferred) {\n asap(function() {\n var cb = self._65 === 1 ? deferred.onFulfilled : deferred.onRejected;\n if (cb === null) {\n if (self._65 === 1) {\n resolve(deferred.promise, self._55);\n } else {\n reject(deferred.promise, self._55);\n }\n return;\n }\n var ret = tryCallOne(cb, self._55);\n if (ret === IS_ERROR) {\n reject(deferred.promise, LAST_ERROR);\n } else {\n resolve(deferred.promise, ret);\n }\n });\n}\nfunction resolve(self, newValue) {\n // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure\n if (newValue === self) {\n return reject(\n self,\n new TypeError('A promise cannot be resolved with itself.')\n );\n }\n if (\n newValue &&\n (typeof newValue === 'object' || typeof newValue === 'function')\n ) {\n var then = getThen(newValue);\n if (then === IS_ERROR) {\n return reject(self, LAST_ERROR);\n }\n if (\n then === self.then &&\n newValue instanceof Promise\n ) {\n self._65 = 3;\n self._55 = newValue;\n finale(self);\n return;\n } else if (typeof then === 'function') {\n doResolve(then.bind(newValue), self);\n return;\n }\n }\n self._65 = 1;\n self._55 = newValue;\n finale(self);\n}\n\nfunction reject(self, newValue) {\n self._65 = 2;\n self._55 = newValue;\n if (Promise._87) {\n Promise._87(self, newValue);\n }\n finale(self);\n}\nfunction finale(self) {\n if (self._40 === 1) {\n handle(self, self._72);\n self._72 = null;\n }\n if (self._40 === 2) {\n for (var i = 0; i < self._72.length; i++) {\n handle(self, self._72[i]);\n }\n self._72 = null;\n }\n}\n\nfunction Handler(onFulfilled, onRejected, promise){\n this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null;\n this.onRejected = typeof onRejected === 'function' ? onRejected : null;\n this.promise = promise;\n}\n\n/**\n * Take a potentially misbehaving resolver function and make sure\n * onFulfilled and onRejected are only called once.\n *\n * Makes no guarantees about asynchrony.\n */\nfunction doResolve(fn, promise) {\n var done = false;\n var res = tryCallTwo(fn, function (value) {\n if (done) return;\n done = true;\n resolve(promise, value);\n }, function (reason) {\n if (done) return;\n done = true;\n reject(promise, reason);\n });\n if (!done && res === IS_ERROR) {\n done = true;\n reject(promise, LAST_ERROR);\n }\n}\n\n},{\"asap/raw\":99}],143:[function(require,module,exports){\n'use strict';\n\nvar Promise = require('./core.js');\n\nmodule.exports = Promise;\nPromise.prototype.done = function (onFulfilled, onRejected) {\n var self = arguments.length ? this.then.apply(this, arguments) : this;\n self.then(null, function (err) {\n setTimeout(function () {\n throw err;\n }, 0);\n });\n};\n\n},{\"./core.js\":142}],144:[function(require,module,exports){\n'use strict';\n\n//This file contains the ES6 extensions to the core Promises/A+ API\n\nvar Promise = require('./core.js');\n\nmodule.exports = Promise;\n\n/* Static Functions */\n\nvar TRUE = valuePromise(true);\nvar FALSE = valuePromise(false);\nvar NULL = valuePromise(null);\nvar UNDEFINED = valuePromise(undefined);\nvar ZERO = valuePromise(0);\nvar EMPTYSTRING = valuePromise('');\n\nfunction valuePromise(value) {\n var p = new Promise(Promise._61);\n p._65 = 1;\n p._55 = value;\n return p;\n}\nPromise.resolve = function (value) {\n if (value instanceof Promise) return value;\n\n if (value === null) return NULL;\n if (value === undefined) return UNDEFINED;\n if (value === true) return TRUE;\n if (value === false) return FALSE;\n if (value === 0) return ZERO;\n if (value === '') return EMPTYSTRING;\n\n if (typeof value === 'object' || typeof value === 'function') {\n try {\n var then = value.then;\n if (typeof then === 'function') {\n return new Promise(then.bind(value));\n }\n } catch (ex) {\n return new Promise(function (resolve, reject) {\n reject(ex);\n });\n }\n }\n return valuePromise(value);\n};\n\nPromise.all = function (arr) {\n var args = Array.prototype.slice.call(arr);\n\n return new Promise(function (resolve, reject) {\n if (args.length === 0) return resolve([]);\n var remaining = args.length;\n function res(i, val) {\n if (val && (typeof val === 'object' || typeof val === 'function')) {\n if (val instanceof Promise && val.then === Promise.prototype.then) {\n while (val._65 === 3) {\n val = val._55;\n }\n if (val._65 === 1) return res(i, val._55);\n if (val._65 === 2) reject(val._55);\n val.then(function (val) {\n res(i, val);\n }, reject);\n return;\n } else {\n var then = val.then;\n if (typeof then === 'function') {\n var p = new Promise(then.bind(val));\n p.then(function (val) {\n res(i, val);\n }, reject);\n return;\n }\n }\n }\n args[i] = val;\n if (--remaining === 0) {\n resolve(args);\n }\n }\n for (var i = 0; i < args.length; i++) {\n res(i, args[i]);\n }\n });\n};\n\nPromise.reject = function (value) {\n return new Promise(function (resolve, reject) {\n reject(value);\n });\n};\n\nPromise.race = function (values) {\n return new Promise(function (resolve, reject) {\n values.forEach(function(value){\n Promise.resolve(value).then(resolve, reject);\n });\n });\n};\n\n/* Prototype Methods */\n\nPromise.prototype['catch'] = function (onRejected) {\n return this.then(null, onRejected);\n};\n\n},{\"./core.js\":142}],145:[function(require,module,exports){\n'use strict';\n\nvar Promise = require('./core.js');\n\nmodule.exports = Promise;\nPromise.prototype['finally'] = function (f) {\n return this.then(function (value) {\n return Promise.resolve(f()).then(function () {\n return value;\n });\n }, function (err) {\n return Promise.resolve(f()).then(function () {\n throw err;\n });\n });\n};\n\n},{\"./core.js\":142}],146:[function(require,module,exports){\n'use strict';\n\nmodule.exports = require('./core.js');\nrequire('./done.js');\nrequire('./finally.js');\nrequire('./es6-extensions.js');\nrequire('./node-extensions.js');\nrequire('./synchronous.js');\n\n},{\"./core.js\":142,\"./done.js\":143,\"./es6-extensions.js\":144,\"./finally.js\":145,\"./node-extensions.js\":147,\"./synchronous.js\":148}],147:[function(require,module,exports){\n'use strict';\n\n// This file contains then/promise specific extensions that are only useful\n// for node.js interop\n\nvar Promise = require('./core.js');\nvar asap = require('asap');\n\nmodule.exports = Promise;\n\n/* Static Functions */\n\nPromise.denodeify = function (fn, argumentCount) {\n if (\n typeof argumentCount === 'number' && argumentCount !== Infinity\n ) {\n return denodeifyWithCount(fn, argumentCount);\n } else {\n return denodeifyWithoutCount(fn);\n }\n};\n\nvar callbackFn = (\n 'function (err, res) {' +\n 'if (err) { rj(err); } else { rs(res); }' +\n '}'\n);\nfunction denodeifyWithCount(fn, argumentCount) {\n var args = [];\n for (var i = 0; i < argumentCount; i++) {\n args.push('a' + i);\n }\n var body = [\n 'return function (' + args.join(',') + ') {',\n 'var self = this;',\n 'return new Promise(function (rs, rj) {',\n 'var res = fn.call(',\n ['self'].concat(args).concat([callbackFn]).join(','),\n ');',\n 'if (res &&',\n '(typeof res === \"object\" || typeof res === \"function\") &&',\n 'typeof res.then === \"function\"',\n ') {rs(res);}',\n '});',\n '};'\n ].join('');\n return Function(['Promise', 'fn'], body)(Promise, fn);\n}\nfunction denodeifyWithoutCount(fn) {\n var fnLength = Math.max(fn.length - 1, 3);\n var args = [];\n for (var i = 0; i < fnLength; i++) {\n args.push('a' + i);\n }\n var body = [\n 'return function (' + args.join(',') + ') {',\n 'var self = this;',\n 'var args;',\n 'var argLength = arguments.length;',\n 'if (arguments.length > ' + fnLength + ') {',\n 'args = new Array(arguments.length + 1);',\n 'for (var i = 0; i < arguments.length; i++) {',\n 'args[i] = arguments[i];',\n '}',\n '}',\n 'return new Promise(function (rs, rj) {',\n 'var cb = ' + callbackFn + ';',\n 'var res;',\n 'switch (argLength) {',\n args.concat(['extra']).map(function (_, index) {\n return (\n 'case ' + (index) + ':' +\n 'res = fn.call(' + ['self'].concat(args.slice(0, index)).concat('cb').join(',') + ');' +\n 'break;'\n );\n }).join(''),\n 'default:',\n 'args[argLength] = cb;',\n 'res = fn.apply(self, args);',\n '}',\n \n 'if (res &&',\n '(typeof res === \"object\" || typeof res === \"function\") &&',\n 'typeof res.then === \"function\"',\n ') {rs(res);}',\n '});',\n '};'\n ].join('');\n\n return Function(\n ['Promise', 'fn'],\n body\n )(Promise, fn);\n}\n\nPromise.nodeify = function (fn) {\n return function () {\n var args = Array.prototype.slice.call(arguments);\n var callback =\n typeof args[args.length - 1] === 'function' ? args.pop() : null;\n var ctx = this;\n try {\n return fn.apply(this, arguments).nodeify(callback, ctx);\n } catch (ex) {\n if (callback === null || typeof callback == 'undefined') {\n return new Promise(function (resolve, reject) {\n reject(ex);\n });\n } else {\n asap(function () {\n callback.call(ctx, ex);\n })\n }\n }\n }\n};\n\nPromise.prototype.nodeify = function (callback, ctx) {\n if (typeof callback != 'function') return this;\n\n this.then(function (value) {\n asap(function () {\n callback.call(ctx, null, value);\n });\n }, function (err) {\n asap(function () {\n callback.call(ctx, err);\n });\n });\n};\n\n},{\"./core.js\":142,\"asap\":98}],148:[function(require,module,exports){\n'use strict';\n\nvar Promise = require('./core.js');\n\nmodule.exports = Promise;\nPromise.enableSynchronous = function () {\n Promise.prototype.isPending = function() {\n return this.getState() == 0;\n };\n\n Promise.prototype.isFulfilled = function() {\n return this.getState() == 1;\n };\n\n Promise.prototype.isRejected = function() {\n return this.getState() == 2;\n };\n\n Promise.prototype.getValue = function () {\n if (this._65 === 3) {\n return this._55.getValue();\n }\n\n if (!this.isFulfilled()) {\n throw new Error('Cannot get a value of an unfulfilled promise.');\n }\n\n return this._55;\n };\n\n Promise.prototype.getReason = function () {\n if (this._65 === 3) {\n return this._55.getReason();\n }\n\n if (!this.isRejected()) {\n throw new Error('Cannot get a rejection reason of a non-rejected promise.');\n }\n\n return this._55;\n };\n\n Promise.prototype.getState = function () {\n if (this._65 === 3) {\n return this._55.getState();\n }\n if (this._65 === -1 || this._65 === -2) {\n return 0;\n }\n\n return this._65;\n };\n};\n\nPromise.disableSynchronous = function() {\n Promise.prototype.isPending = undefined;\n Promise.prototype.isFulfilled = undefined;\n Promise.prototype.isRejected = undefined;\n Promise.prototype.getValue = undefined;\n Promise.prototype.getReason = undefined;\n Promise.prototype.getState = undefined;\n};\n\n},{\"./core.js\":142}],149:[function(require,module,exports){\n'use strict';\n\nvar replace = String.prototype.replace;\nvar percentTwenties = /%20/g;\n\nvar Format = {\n RFC1738: 'RFC1738',\n RFC3986: 'RFC3986'\n};\n\nmodule.exports = {\n 'default': Format.RFC3986,\n formatters: {\n RFC1738: function (value) {\n return replace.call(value, percentTwenties, '+');\n },\n RFC3986: function (value) {\n return String(value);\n }\n },\n RFC1738: Format.RFC1738,\n RFC3986: Format.RFC3986\n};\n\n},{}],150:[function(require,module,exports){\n'use strict';\n\nvar stringify = require('./stringify');\nvar parse = require('./parse');\nvar formats = require('./formats');\n\nmodule.exports = {\n formats: formats,\n parse: parse,\n stringify: stringify\n};\n\n},{\"./formats\":149,\"./parse\":151,\"./stringify\":152}],151:[function(require,module,exports){\n'use strict';\n\nvar utils = require('./utils');\n\nvar has = Object.prototype.hasOwnProperty;\nvar isArray = Array.isArray;\n\nvar defaults = {\n allowDots: false,\n allowEmptyArrays: false,\n allowPrototypes: false,\n allowSparse: false,\n arrayLimit: 20,\n charset: 'utf-8',\n charsetSentinel: false,\n comma: false,\n decodeDotInKeys: false,\n decoder: utils.decode,\n delimiter: '&',\n depth: 5,\n duplicates: 'combine',\n ignoreQueryPrefix: false,\n interpretNumericEntities: false,\n parameterLimit: 1000,\n parseArrays: true,\n plainObjects: false,\n strictDepth: false,\n strictNullHandling: false\n};\n\nvar interpretNumericEntities = function (str) {\n return str.replace(/&#(\\d+);/g, function ($0, numberStr) {\n return String.fromCharCode(parseInt(numberStr, 10));\n });\n};\n\nvar parseArrayValue = function (val, options) {\n if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {\n return val.split(',');\n }\n\n return val;\n};\n\n// This is what browsers will submit when the ✓ character occurs in an\n// application/x-www-form-urlencoded body and the encoding of the page containing\n// the form is iso-8859-1, or when the submitted form has an accept-charset\n// attribute of iso-8859-1. Presumably also with other charsets that do not contain\n// the ✓ character, such as us-ascii.\nvar isoSentinel = 'utf8=%26%2310003%3B'; // encodeURIComponent('✓')\n\n// These are the percent-encoded utf-8 octets representing a checkmark, indicating that the request actually is utf-8 encoded.\nvar charsetSentinel = 'utf8=%E2%9C%93'; // encodeURIComponent('✓')\n\nvar parseValues = function parseQueryStringValues(str, options) {\n var obj = { __proto__: null };\n\n var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\\?/, '') : str;\n cleanStr = cleanStr.replace(/%5B/gi, '[').replace(/%5D/gi, ']');\n var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit;\n var parts = cleanStr.split(options.delimiter, limit);\n var skipIndex = -1; // Keep track of where the utf8 sentinel was found\n var i;\n\n var charset = options.charset;\n if (options.charsetSentinel) {\n for (i = 0; i < parts.length; ++i) {\n if (parts[i].indexOf('utf8=') === 0) {\n if (parts[i] === charsetSentinel) {\n charset = 'utf-8';\n } else if (parts[i] === isoSentinel) {\n charset = 'iso-8859-1';\n }\n skipIndex = i;\n i = parts.length; // The eslint settings do not allow break;\n }\n }\n }\n\n for (i = 0; i < parts.length; ++i) {\n if (i === skipIndex) {\n continue;\n }\n var part = parts[i];\n\n var bracketEqualsPos = part.indexOf(']=');\n var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1;\n\n var key;\n var val;\n if (pos === -1) {\n key = options.decoder(part, defaults.decoder, charset, 'key');\n val = options.strictNullHandling ? null : '';\n } else {\n key = options.decoder(part.slice(0, pos), defaults.decoder, charset, 'key');\n val = utils.maybeMap(\n parseArrayValue(part.slice(pos + 1), options),\n function (encodedVal) {\n return options.decoder(encodedVal, defaults.decoder, charset, 'value');\n }\n );\n }\n\n if (val && options.interpretNumericEntities && charset === 'iso-8859-1') {\n val = interpretNumericEntities(String(val));\n }\n\n if (part.indexOf('[]=') > -1) {\n val = isArray(val) ? [val] : val;\n }\n\n var existing = has.call(obj, key);\n if (existing && options.duplicates === 'combine') {\n obj[key] = utils.combine(obj[key], val);\n } else if (!existing || options.duplicates === 'last') {\n obj[key] = val;\n }\n }\n\n return obj;\n};\n\nvar parseObject = function (chain, val, options, valuesParsed) {\n var leaf = valuesParsed ? val : parseArrayValue(val, options);\n\n for (var i = chain.length - 1; i >= 0; --i) {\n var obj;\n var root = chain[i];\n\n if (root === '[]' && options.parseArrays) {\n obj = options.allowEmptyArrays && (leaf === '' || (options.strictNullHandling && leaf === null))\n ? []\n : [].concat(leaf);\n } else {\n obj = options.plainObjects ? { __proto__: null } : {};\n var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;\n var decodedRoot = options.decodeDotInKeys ? cleanRoot.replace(/%2E/g, '.') : cleanRoot;\n var index = parseInt(decodedRoot, 10);\n if (!options.parseArrays && decodedRoot === '') {\n obj = { 0: leaf };\n } else if (\n !isNaN(index)\n && root !== decodedRoot\n && String(index) === decodedRoot\n && index >= 0\n && (options.parseArrays && index <= options.arrayLimit)\n ) {\n obj = [];\n obj[index] = leaf;\n } else if (decodedRoot !== '__proto__') {\n obj[decodedRoot] = leaf;\n }\n }\n\n leaf = obj;\n }\n\n return leaf;\n};\n\nvar parseKeys = function parseQueryStringKeys(givenKey, val, options, valuesParsed) {\n if (!givenKey) {\n return;\n }\n\n // Transform dot notation to bracket notation\n var key = options.allowDots ? givenKey.replace(/\\.([^.[]+)/g, '[$1]') : givenKey;\n\n // The regex chunks\n\n var brackets = /(\\[[^[\\]]*])/;\n var child = /(\\[[^[\\]]*])/g;\n\n // Get the parent\n\n var segment = options.depth > 0 && brackets.exec(key);\n var parent = segment ? key.slice(0, segment.index) : key;\n\n // Stash the parent if it exists\n\n var keys = [];\n if (parent) {\n // If we aren't using plain objects, optionally prefix keys that would overwrite object prototype properties\n if (!options.plainObjects && has.call(Object.prototype, parent)) {\n if (!options.allowPrototypes) {\n return;\n }\n }\n\n keys.push(parent);\n }\n\n // Loop through children appending to the array until we hit depth\n\n var i = 0;\n while (options.depth > 0 && (segment = child.exec(key)) !== null && i < options.depth) {\n i += 1;\n if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) {\n if (!options.allowPrototypes) {\n return;\n }\n }\n keys.push(segment[1]);\n }\n\n // If there's a remainder, check strictDepth option for throw, else just add whatever is left\n\n if (segment) {\n if (options.strictDepth === true) {\n throw new RangeError('Input depth exceeded depth option of ' + options.depth + ' and strictDepth is true');\n }\n keys.push('[' + key.slice(segment.index) + ']');\n }\n\n return parseObject(keys, val, options, valuesParsed);\n};\n\nvar normalizeParseOptions = function normalizeParseOptions(opts) {\n if (!opts) {\n return defaults;\n }\n\n if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {\n throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');\n }\n\n if (typeof opts.decodeDotInKeys !== 'undefined' && typeof opts.decodeDotInKeys !== 'boolean') {\n throw new TypeError('`decodeDotInKeys` option can only be `true` or `false`, when provided');\n }\n\n if (opts.decoder !== null && typeof opts.decoder !== 'undefined' && typeof opts.decoder !== 'function') {\n throw new TypeError('Decoder has to be a function.');\n }\n\n if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') {\n throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined');\n }\n var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset;\n\n var duplicates = typeof opts.duplicates === 'undefined' ? defaults.duplicates : opts.duplicates;\n\n if (duplicates !== 'combine' && duplicates !== 'first' && duplicates !== 'last') {\n throw new TypeError('The duplicates option must be either combine, first, or last');\n }\n\n var allowDots = typeof opts.allowDots === 'undefined' ? opts.decodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;\n\n return {\n allowDots: allowDots,\n allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,\n allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,\n allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,\n arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,\n charset: charset,\n charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,\n comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma,\n decodeDotInKeys: typeof opts.decodeDotInKeys === 'boolean' ? opts.decodeDotInKeys : defaults.decodeDotInKeys,\n decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder,\n delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,\n // eslint-disable-next-line no-implicit-coercion, no-extra-parens\n depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth,\n duplicates: duplicates,\n ignoreQueryPrefix: opts.ignoreQueryPrefix === true,\n interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities,\n parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit,\n parseArrays: opts.parseArrays !== false,\n plainObjects: typeof opts.plainObjects === 'boolean' ? opts.plainObjects : defaults.plainObjects,\n strictDepth: typeof opts.strictDepth === 'boolean' ? !!opts.strictDepth : defaults.strictDepth,\n strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling\n };\n};\n\nmodule.exports = function (str, opts) {\n var options = normalizeParseOptions(opts);\n\n if (str === '' || str === null || typeof str === 'undefined') {\n return options.plainObjects ? { __proto__: null } : {};\n }\n\n var tempObj = typeof str === 'string' ? parseValues(str, options) : str;\n var obj = options.plainObjects ? { __proto__: null } : {};\n\n // Iterate over the keys and setup the new object\n\n var keys = Object.keys(tempObj);\n for (var i = 0; i < keys.length; ++i) {\n var key = keys[i];\n var newObj = parseKeys(key, tempObj[key], options, typeof str === 'string');\n obj = utils.merge(obj, newObj, options);\n }\n\n if (options.allowSparse === true) {\n return obj;\n }\n\n return utils.compact(obj);\n};\n\n},{\"./utils\":153}],152:[function(require,module,exports){\n'use strict';\n\nvar getSideChannel = require('side-channel');\nvar utils = require('./utils');\nvar formats = require('./formats');\nvar has = Object.prototype.hasOwnProperty;\n\nvar arrayPrefixGenerators = {\n brackets: function brackets(prefix) {\n return prefix + '[]';\n },\n comma: 'comma',\n indices: function indices(prefix, key) {\n return prefix + '[' + key + ']';\n },\n repeat: function repeat(prefix) {\n return prefix;\n }\n};\n\nvar isArray = Array.isArray;\nvar push = Array.prototype.push;\nvar pushToArray = function (arr, valueOrArray) {\n push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);\n};\n\nvar toISO = Date.prototype.toISOString;\n\nvar defaultFormat = formats['default'];\nvar defaults = {\n addQueryPrefix: false,\n allowDots: false,\n allowEmptyArrays: false,\n arrayFormat: 'indices',\n charset: 'utf-8',\n charsetSentinel: false,\n commaRoundTrip: false,\n delimiter: '&',\n encode: true,\n encodeDotInKeys: false,\n encoder: utils.encode,\n encodeValuesOnly: false,\n filter: void undefined,\n format: defaultFormat,\n formatter: formats.formatters[defaultFormat],\n // deprecated\n indices: false,\n serializeDate: function serializeDate(date) {\n return toISO.call(date);\n },\n skipNulls: false,\n strictNullHandling: false\n};\n\nvar isNonNullishPrimitive = function isNonNullishPrimitive(v) {\n return typeof v === 'string'\n || typeof v === 'number'\n || typeof v === 'boolean'\n || typeof v === 'symbol'\n || typeof v === 'bigint';\n};\n\nvar sentinel = {};\n\nvar stringify = function stringify(\n object,\n prefix,\n generateArrayPrefix,\n commaRoundTrip,\n allowEmptyArrays,\n strictNullHandling,\n skipNulls,\n encodeDotInKeys,\n encoder,\n filter,\n sort,\n allowDots,\n serializeDate,\n format,\n formatter,\n encodeValuesOnly,\n charset,\n sideChannel\n) {\n var obj = object;\n\n var tmpSc = sideChannel;\n var step = 0;\n var findFlag = false;\n while ((tmpSc = tmpSc.get(sentinel)) !== void undefined && !findFlag) {\n // Where object last appeared in the ref tree\n var pos = tmpSc.get(object);\n step += 1;\n if (typeof pos !== 'undefined') {\n if (pos === step) {\n throw new RangeError('Cyclic object value');\n } else {\n findFlag = true; // Break while\n }\n }\n if (typeof tmpSc.get(sentinel) === 'undefined') {\n step = 0;\n }\n }\n\n if (typeof filter === 'function') {\n obj = filter(prefix, obj);\n } else if (obj instanceof Date) {\n obj = serializeDate(obj);\n } else if (generateArrayPrefix === 'comma' && isArray(obj)) {\n obj = utils.maybeMap(obj, function (value) {\n if (value instanceof Date) {\n return serializeDate(value);\n }\n return value;\n });\n }\n\n if (obj === null) {\n if (strictNullHandling) {\n return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset, 'key', format) : prefix;\n }\n\n obj = '';\n }\n\n if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) {\n if (encoder) {\n var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format);\n return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))];\n }\n return [formatter(prefix) + '=' + formatter(String(obj))];\n }\n\n var values = [];\n\n if (typeof obj === 'undefined') {\n return values;\n }\n\n var objKeys;\n if (generateArrayPrefix === 'comma' && isArray(obj)) {\n // we need to join elements in\n if (encodeValuesOnly && encoder) {\n obj = utils.maybeMap(obj, encoder);\n }\n objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : void undefined }];\n } else if (isArray(filter)) {\n objKeys = filter;\n } else {\n var keys = Object.keys(obj);\n objKeys = sort ? keys.sort(sort) : keys;\n }\n\n var encodedPrefix = encodeDotInKeys ? String(prefix).replace(/\\./g, '%2E') : String(prefix);\n\n var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? encodedPrefix + '[]' : encodedPrefix;\n\n if (allowEmptyArrays && isArray(obj) && obj.length === 0) {\n return adjustedPrefix + '[]';\n }\n\n for (var j = 0; j < objKeys.length; ++j) {\n var key = objKeys[j];\n var value = typeof key === 'object' && key && typeof key.value !== 'undefined'\n ? key.value\n : obj[key];\n\n if (skipNulls && value === null) {\n continue;\n }\n\n var encodedKey = allowDots && encodeDotInKeys ? String(key).replace(/\\./g, '%2E') : String(key);\n var keyPrefix = isArray(obj)\n ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, encodedKey) : adjustedPrefix\n : adjustedPrefix + (allowDots ? '.' + encodedKey : '[' + encodedKey + ']');\n\n sideChannel.set(object, step);\n var valueSideChannel = getSideChannel();\n valueSideChannel.set(sentinel, sideChannel);\n pushToArray(values, stringify(\n value,\n keyPrefix,\n generateArrayPrefix,\n commaRoundTrip,\n allowEmptyArrays,\n strictNullHandling,\n skipNulls,\n encodeDotInKeys,\n generateArrayPrefix === 'comma' && encodeValuesOnly && isArray(obj) ? null : encoder,\n filter,\n sort,\n allowDots,\n serializeDate,\n format,\n formatter,\n encodeValuesOnly,\n charset,\n valueSideChannel\n ));\n }\n\n return values;\n};\n\nvar normalizeStringifyOptions = function normalizeStringifyOptions(opts) {\n if (!opts) {\n return defaults;\n }\n\n if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {\n throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');\n }\n\n if (typeof opts.encodeDotInKeys !== 'undefined' && typeof opts.encodeDotInKeys !== 'boolean') {\n throw new TypeError('`encodeDotInKeys` option can only be `true` or `false`, when provided');\n }\n\n if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') {\n throw new TypeError('Encoder has to be a function.');\n }\n\n var charset = opts.charset || defaults.charset;\n if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') {\n throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined');\n }\n\n var format = formats['default'];\n if (typeof opts.format !== 'undefined') {\n if (!has.call(formats.formatters, opts.format)) {\n throw new TypeError('Unknown format option provided.');\n }\n format = opts.format;\n }\n var formatter = formats.formatters[format];\n\n var filter = defaults.filter;\n if (typeof opts.filter === 'function' || isArray(opts.filter)) {\n filter = opts.filter;\n }\n\n var arrayFormat;\n if (opts.arrayFormat in arrayPrefixGenerators) {\n arrayFormat = opts.arrayFormat;\n } else if ('indices' in opts) {\n arrayFormat = opts.indices ? 'indices' : 'repeat';\n } else {\n arrayFormat = defaults.arrayFormat;\n }\n\n if ('commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {\n throw new TypeError('`commaRoundTrip` must be a boolean, or absent');\n }\n\n var allowDots = typeof opts.allowDots === 'undefined' ? opts.encodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;\n\n return {\n addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix,\n allowDots: allowDots,\n allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,\n arrayFormat: arrayFormat,\n charset: charset,\n charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,\n commaRoundTrip: !!opts.commaRoundTrip,\n delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter,\n encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode,\n encodeDotInKeys: typeof opts.encodeDotInKeys === 'boolean' ? opts.encodeDotInKeys : defaults.encodeDotInKeys,\n encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder,\n encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly,\n filter: filter,\n format: format,\n formatter: formatter,\n serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate,\n skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls,\n sort: typeof opts.sort === 'function' ? opts.sort : null,\n strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling\n };\n};\n\nmodule.exports = function (object, opts) {\n var obj = object;\n var options = normalizeStringifyOptions(opts);\n\n var objKeys;\n var filter;\n\n if (typeof options.filter === 'function') {\n filter = options.filter;\n obj = filter('', obj);\n } else if (isArray(options.filter)) {\n filter = options.filter;\n objKeys = filter;\n }\n\n var keys = [];\n\n if (typeof obj !== 'object' || obj === null) {\n return '';\n }\n\n var generateArrayPrefix = arrayPrefixGenerators[options.arrayFormat];\n var commaRoundTrip = generateArrayPrefix === 'comma' && options.commaRoundTrip;\n\n if (!objKeys) {\n objKeys = Object.keys(obj);\n }\n\n if (options.sort) {\n objKeys.sort(options.sort);\n }\n\n var sideChannel = getSideChannel();\n for (var i = 0; i < objKeys.length; ++i) {\n var key = objKeys[i];\n var value = obj[key];\n\n if (options.skipNulls && value === null) {\n continue;\n }\n pushToArray(keys, stringify(\n value,\n key,\n generateArrayPrefix,\n commaRoundTrip,\n options.allowEmptyArrays,\n options.strictNullHandling,\n options.skipNulls,\n options.encodeDotInKeys,\n options.encode ? options.encoder : null,\n options.filter,\n options.sort,\n options.allowDots,\n options.serializeDate,\n options.format,\n options.formatter,\n options.encodeValuesOnly,\n options.charset,\n sideChannel\n ));\n }\n\n var joined = keys.join(options.delimiter);\n var prefix = options.addQueryPrefix === true ? '?' : '';\n\n if (options.charsetSentinel) {\n if (options.charset === 'iso-8859-1') {\n // encodeURIComponent('✓'), the \"numeric entity\" representation of a checkmark\n prefix += 'utf8=%26%2310003%3B&';\n } else {\n // encodeURIComponent('✓')\n prefix += 'utf8=%E2%9C%93&';\n }\n }\n\n return joined.length > 0 ? prefix + joined : '';\n};\n\n},{\"./formats\":149,\"./utils\":153,\"side-channel\":156}],153:[function(require,module,exports){\n'use strict';\n\nvar formats = require('./formats');\n\nvar has = Object.prototype.hasOwnProperty;\nvar isArray = Array.isArray;\n\nvar hexTable = (function () {\n var array = [];\n for (var i = 0; i < 256; ++i) {\n array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase());\n }\n\n return array;\n}());\n\nvar compactQueue = function compactQueue(queue) {\n while (queue.length > 1) {\n var item = queue.pop();\n var obj = item.obj[item.prop];\n\n if (isArray(obj)) {\n var compacted = [];\n\n for (var j = 0; j < obj.length; ++j) {\n if (typeof obj[j] !== 'undefined') {\n compacted.push(obj[j]);\n }\n }\n\n item.obj[item.prop] = compacted;\n }\n }\n};\n\nvar arrayToObject = function arrayToObject(source, options) {\n var obj = options && options.plainObjects ? { __proto__: null } : {};\n for (var i = 0; i < source.length; ++i) {\n if (typeof source[i] !== 'undefined') {\n obj[i] = source[i];\n }\n }\n\n return obj;\n};\n\nvar merge = function merge(target, source, options) {\n /* eslint no-param-reassign: 0 */\n if (!source) {\n return target;\n }\n\n if (typeof source !== 'object' && typeof source !== 'function') {\n if (isArray(target)) {\n target.push(source);\n } else if (target && typeof target === 'object') {\n if (\n (options && (options.plainObjects || options.allowPrototypes))\n || !has.call(Object.prototype, source)\n ) {\n target[source] = true;\n }\n } else {\n return [target, source];\n }\n\n return target;\n }\n\n if (!target || typeof target !== 'object') {\n return [target].concat(source);\n }\n\n var mergeTarget = target;\n if (isArray(target) && !isArray(source)) {\n mergeTarget = arrayToObject(target, options);\n }\n\n if (isArray(target) && isArray(source)) {\n source.forEach(function (item, i) {\n if (has.call(target, i)) {\n var targetItem = target[i];\n if (targetItem && typeof targetItem === 'object' && item && typeof item === 'object') {\n target[i] = merge(targetItem, item, options);\n } else {\n target.push(item);\n }\n } else {\n target[i] = item;\n }\n });\n return target;\n }\n\n return Object.keys(source).reduce(function (acc, key) {\n var value = source[key];\n\n if (has.call(acc, key)) {\n acc[key] = merge(acc[key], value, options);\n } else {\n acc[key] = value;\n }\n return acc;\n }, mergeTarget);\n};\n\nvar assign = function assignSingleSource(target, source) {\n return Object.keys(source).reduce(function (acc, key) {\n acc[key] = source[key];\n return acc;\n }, target);\n};\n\nvar decode = function (str, defaultDecoder, charset) {\n var strWithoutPlus = str.replace(/\\+/g, ' ');\n if (charset === 'iso-8859-1') {\n // unescape never throws, no try...catch needed:\n return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape);\n }\n // utf-8\n try {\n return decodeURIComponent(strWithoutPlus);\n } catch (e) {\n return strWithoutPlus;\n }\n};\n\nvar limit = 1024;\n\n/* eslint operator-linebreak: [2, \"before\"] */\n\nvar encode = function encode(str, defaultEncoder, charset, kind, format) {\n // This code was originally written by Brian White (mscdex) for the io.js core querystring library.\n // It has been adapted here for stricter adherence to RFC 3986\n if (str.length === 0) {\n return str;\n }\n\n var string = str;\n if (typeof str === 'symbol') {\n string = Symbol.prototype.toString.call(str);\n } else if (typeof str !== 'string') {\n string = String(str);\n }\n\n if (charset === 'iso-8859-1') {\n return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) {\n return '%26%23' + parseInt($0.slice(2), 16) + '%3B';\n });\n }\n\n var out = '';\n for (var j = 0; j < string.length; j += limit) {\n var segment = string.length >= limit ? string.slice(j, j + limit) : string;\n var arr = [];\n\n for (var i = 0; i < segment.length; ++i) {\n var c = segment.charCodeAt(i);\n if (\n c === 0x2D // -\n || c === 0x2E // .\n || c === 0x5F // _\n || c === 0x7E // ~\n || (c >= 0x30 && c <= 0x39) // 0-9\n || (c >= 0x41 && c <= 0x5A) // a-z\n || (c >= 0x61 && c <= 0x7A) // A-Z\n || (format === formats.RFC1738 && (c === 0x28 || c === 0x29)) // ( )\n ) {\n arr[arr.length] = segment.charAt(i);\n continue;\n }\n\n if (c < 0x80) {\n arr[arr.length] = hexTable[c];\n continue;\n }\n\n if (c < 0x800) {\n arr[arr.length] = hexTable[0xC0 | (c >> 6)]\n + hexTable[0x80 | (c & 0x3F)];\n continue;\n }\n\n if (c < 0xD800 || c >= 0xE000) {\n arr[arr.length] = hexTable[0xE0 | (c >> 12)]\n + hexTable[0x80 | ((c >> 6) & 0x3F)]\n + hexTable[0x80 | (c & 0x3F)];\n continue;\n }\n\n i += 1;\n c = 0x10000 + (((c & 0x3FF) << 10) | (segment.charCodeAt(i) & 0x3FF));\n\n arr[arr.length] = hexTable[0xF0 | (c >> 18)]\n + hexTable[0x80 | ((c >> 12) & 0x3F)]\n + hexTable[0x80 | ((c >> 6) & 0x3F)]\n + hexTable[0x80 | (c & 0x3F)];\n }\n\n out += arr.join('');\n }\n\n return out;\n};\n\nvar compact = function compact(value) {\n var queue = [{ obj: { o: value }, prop: 'o' }];\n var refs = [];\n\n for (var i = 0; i < queue.length; ++i) {\n var item = queue[i];\n var obj = item.obj[item.prop];\n\n var keys = Object.keys(obj);\n for (var j = 0; j < keys.length; ++j) {\n var key = keys[j];\n var val = obj[key];\n if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) {\n queue.push({ obj: obj, prop: key });\n refs.push(val);\n }\n }\n }\n\n compactQueue(queue);\n\n return value;\n};\n\nvar isRegExp = function isRegExp(obj) {\n return Object.prototype.toString.call(obj) === '[object RegExp]';\n};\n\nvar isBuffer = function isBuffer(obj) {\n if (!obj || typeof obj !== 'object') {\n return false;\n }\n\n return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));\n};\n\nvar combine = function combine(a, b) {\n return [].concat(a, b);\n};\n\nvar maybeMap = function maybeMap(val, fn) {\n if (isArray(val)) {\n var mapped = [];\n for (var i = 0; i < val.length; i += 1) {\n mapped.push(fn(val[i]));\n }\n return mapped;\n }\n return fn(val);\n};\n\nmodule.exports = {\n arrayToObject: arrayToObject,\n assign: assign,\n combine: combine,\n compact: compact,\n decode: decode,\n encode: encode,\n isBuffer: isBuffer,\n isRegExp: isRegExp,\n maybeMap: maybeMap,\n merge: merge\n};\n\n},{\"./formats\":149}],154:[function(require,module,exports){\n!function(a,b){\"function\"==typeof define&&define.amd?define([],function(){return a.returnExportsGlobal=b()}):\"object\"==typeof exports?module.exports=b():a.ResizeSensor=b()}(this,function(){var a=function(){\"use strict\";function a(){this.q=[],this.add=function(a){this.q.push(a)};var a,b;this.call=function(){for(a=0,b=this.q.length;b>a;a++)this.q[a].call()}}function b(a,b){return a.currentStyle?a.currentStyle[b]:window.getComputedStyle?window.getComputedStyle(a,null).getPropertyValue(b):a.style[b]}function c(c,e){if(c.resizedAttached){if(c.resizedAttached)return void c.resizedAttached.add(e)}else c.resizedAttached=new a,c.resizedAttached.add(e);c.resizeSensor=document.createElement(\"div\"),c.resizeSensor.className=\"resize-sensor\";var f=\"position: absolute; left: 0; top: 0; right: 0; bottom: 0; overflow: hidden; z-index: -1; visibility: hidden; opacity: 0;\",g=\"position: absolute; left: 0; top: 0; transition: 0s;\";c.resizeSensor.style.cssText=f,c.resizeSensor.innerHTML='<div class=\"resize-sensor-expand\" style=\"'+f+'\"><div style=\"'+g+'\"></div></div><div class=\"resize-sensor-shrink\" style=\"'+f+'\"><div style=\"'+g+' width: 200%; height: 200%\"></div></div>',c.appendChild(c.resizeSensor),\"static\"==b(c,\"position\")&&(c.style.position=\"relative\");var h=c.resizeSensor.childNodes[0],i=h.childNodes[0],j=c.resizeSensor.childNodes[1],k=function(){i.style.width=1e5+\"px\",i.style.height=1e5+\"px\",h.scrollLeft=1e5,h.scrollTop=1e5,j.scrollLeft=1e5,j.scrollTop=1e5};k();var l=!1,m=function(){c.resizedAttached&&(l&&(c.resizedAttached.call(),l=!1),d(m))};d(m);var n,o,p,q,r=function(){((p=c.offsetWidth)!=n||(q=c.offsetHeight)!=o)&&(l=!0,n=p,o=q),k()},s=function(a,b,c){a.attachEvent?a.attachEvent(\"on\"+b,c):a.addEventListener(b,c)};s(h,\"scroll\",r),s(j,\"scroll\",r)}var d=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||function(a){return window.setTimeout(a,20)},e=function(a,b){var d=this,e=Object.prototype.toString.call(a),f=d._isCollectionTyped=\"[object Array]\"===e||\"[object NodeList]\"===e||\"[object HTMLCollection]\"===e||\"undefined\"!=typeof jQuery&&a instanceof window.jQuery||\"undefined\"!=typeof Elements&&a instanceof window.Elements;if(d._element=a,f)for(var g=0,h=a.length;h>g;g++)c(a[g],b);else c(a,b)};return e.prototype.detach=function(){var a=this,b=a._isCollectionTyped,c=a._element;if(b)for(var d=0,f=c.length;f>d;d++)e.detach(c[d]);else e.detach(c)},e.detach=function(a){a.resizeSensor&&(a.removeChild(a.resizeSensor),delete a.resizeSensor,delete a.resizedAttached)},e}();return a});\n},{}],155:[function(require,module,exports){\n'use strict';\n\nvar GetIntrinsic = require('get-intrinsic');\nvar define = require('define-data-property');\nvar hasDescriptors = require('has-property-descriptors')();\nvar gOPD = require('gopd');\n\nvar $TypeError = require('es-errors/type');\nvar $floor = GetIntrinsic('%Math.floor%');\n\n/** @type {import('.')} */\nmodule.exports = function setFunctionLength(fn, length) {\n\tif (typeof fn !== 'function') {\n\t\tthrow new $TypeError('`fn` is not a function');\n\t}\n\tif (typeof length !== 'number' || length < 0 || length > 0xFFFFFFFF || $floor(length) !== length) {\n\t\tthrow new $TypeError('`length` must be a positive 32-bit integer');\n\t}\n\n\tvar loose = arguments.length > 2 && !!arguments[2];\n\n\tvar functionLengthIsConfigurable = true;\n\tvar functionLengthIsWritable = true;\n\tif ('length' in fn && gOPD) {\n\t\tvar desc = gOPD(fn, 'length');\n\t\tif (desc && !desc.configurable) {\n\t\t\tfunctionLengthIsConfigurable = false;\n\t\t}\n\t\tif (desc && !desc.writable) {\n\t\t\tfunctionLengthIsWritable = false;\n\t\t}\n\t}\n\n\tif (functionLengthIsConfigurable || functionLengthIsWritable || !loose) {\n\t\tif (hasDescriptors) {\n\t\t\tdefine(/** @type {Parameters<define>[0]} */ (fn), 'length', length, true, true);\n\t\t} else {\n\t\t\tdefine(/** @type {Parameters<define>[0]} */ (fn), 'length', length);\n\t\t}\n\t}\n\treturn fn;\n};\n\n},{\"define-data-property\":110,\"es-errors/type\":119,\"get-intrinsic\":125,\"gopd\":127,\"has-property-descriptors\":128}],156:[function(require,module,exports){\n'use strict';\n\nvar GetIntrinsic = require('get-intrinsic');\nvar callBound = require('call-bind/callBound');\nvar inspect = require('object-inspect');\n\nvar $TypeError = require('es-errors/type');\nvar $WeakMap = GetIntrinsic('%WeakMap%', true);\nvar $Map = GetIntrinsic('%Map%', true);\n\nvar $weakMapGet = callBound('WeakMap.prototype.get', true);\nvar $weakMapSet = callBound('WeakMap.prototype.set', true);\nvar $weakMapHas = callBound('WeakMap.prototype.has', true);\nvar $mapGet = callBound('Map.prototype.get', true);\nvar $mapSet = callBound('Map.prototype.set', true);\nvar $mapHas = callBound('Map.prototype.has', true);\n\n/*\n* This function traverses the list returning the node corresponding to the given key.\n*\n* That node is also moved to the head of the list, so that if it's accessed again we don't need to traverse the whole list. By doing so, all the recently used nodes can be accessed relatively quickly.\n*/\n/** @type {import('.').listGetNode} */\nvar listGetNode = function (list, key) { // eslint-disable-line consistent-return\n\t/** @type {typeof list | NonNullable<(typeof list)['next']>} */\n\tvar prev = list;\n\t/** @type {(typeof list)['next']} */\n\tvar curr;\n\tfor (; (curr = prev.next) !== null; prev = curr) {\n\t\tif (curr.key === key) {\n\t\t\tprev.next = curr.next;\n\t\t\t// eslint-disable-next-line no-extra-parens\n\t\t\tcurr.next = /** @type {NonNullable<typeof list.next>} */ (list.next);\n\t\t\tlist.next = curr; // eslint-disable-line no-param-reassign\n\t\t\treturn curr;\n\t\t}\n\t}\n};\n\n/** @type {import('.').listGet} */\nvar listGet = function (objects, key) {\n\tvar node = listGetNode(objects, key);\n\treturn node && node.value;\n};\n/** @type {import('.').listSet} */\nvar listSet = function (objects, key, value) {\n\tvar node = listGetNode(objects, key);\n\tif (node) {\n\t\tnode.value = value;\n\t} else {\n\t\t// Prepend the new node to the beginning of the list\n\t\tobjects.next = /** @type {import('.').ListNode<typeof value>} */ ({ // eslint-disable-line no-param-reassign, no-extra-parens\n\t\t\tkey: key,\n\t\t\tnext: objects.next,\n\t\t\tvalue: value\n\t\t});\n\t}\n};\n/** @type {import('.').listHas} */\nvar listHas = function (objects, key) {\n\treturn !!listGetNode(objects, key);\n};\n\n/** @type {import('.')} */\nmodule.exports = function getSideChannel() {\n\t/** @type {WeakMap<object, unknown>} */ var $wm;\n\t/** @type {Map<object, unknown>} */ var $m;\n\t/** @type {import('.').RootNode<unknown>} */ var $o;\n\n\t/** @type {import('.').Channel} */\n\tvar channel = {\n\t\tassert: function (key) {\n\t\t\tif (!channel.has(key)) {\n\t\t\t\tthrow new $TypeError('Side channel does not contain ' + inspect(key));\n\t\t\t}\n\t\t},\n\t\tget: function (key) { // eslint-disable-line consistent-return\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif ($wm) {\n\t\t\t\t\treturn $weakMapGet($wm, key);\n\t\t\t\t}\n\t\t\t} else if ($Map) {\n\t\t\t\tif ($m) {\n\t\t\t\t\treturn $mapGet($m, key);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ($o) { // eslint-disable-line no-lonely-if\n\t\t\t\t\treturn listGet($o, key);\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\thas: function (key) {\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif ($wm) {\n\t\t\t\t\treturn $weakMapHas($wm, key);\n\t\t\t\t}\n\t\t\t} else if ($Map) {\n\t\t\t\tif ($m) {\n\t\t\t\t\treturn $mapHas($m, key);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ($o) { // eslint-disable-line no-lonely-if\n\t\t\t\t\treturn listHas($o, key);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\t\tset: function (key, value) {\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif (!$wm) {\n\t\t\t\t\t$wm = new $WeakMap();\n\t\t\t\t}\n\t\t\t\t$weakMapSet($wm, key, value);\n\t\t\t} else if ($Map) {\n\t\t\t\tif (!$m) {\n\t\t\t\t\t$m = new $Map();\n\t\t\t\t}\n\t\t\t\t$mapSet($m, key, value);\n\t\t\t} else {\n\t\t\t\tif (!$o) {\n\t\t\t\t\t// Initialize the linked list as an empty node, so that we don't have to special-case handling of the first node: we can always refer to it as (previous node).next, instead of something like (list).head\n\t\t\t\t\t$o = { key: {}, next: null };\n\t\t\t\t}\n\t\t\t\tlistSet($o, key, value);\n\t\t\t}\n\t\t}\n\t};\n\treturn channel;\n};\n\n},{\"call-bind/callBound\":107,\"es-errors/type\":119,\"get-intrinsic\":125,\"object-inspect\":138}],157:[function(require,module,exports){\n/*\n _ _ _ _\n ___| (_) ___| | __ (_)___\n/ __| | |/ __| |/ / | / __|\n\\__ \\ | | (__| < _ | \\__ \\\n|___/_|_|\\___|_|\\_(_)/ |___/\n |__/\n\n Version: 1.8.1\n Author: Ken Wheeler\n Website: http://kenwheeler.github.io\n Docs: http://kenwheeler.github.io/slick\n Repo: http://github.com/kenwheeler/slick\n Issues: http://github.com/kenwheeler/slick/issues\n\n */\n/* global window, document, define, jQuery, setInterval, clearInterval */\n;(function(factory) {\n 'use strict';\n if (typeof define === 'function' && define.amd) {\n define(['jquery'], factory);\n } else if (typeof exports !== 'undefined') {\n module.exports = factory(require('jquery'));\n } else {\n factory(jQuery);\n }\n\n}(function($) {\n 'use strict';\n var Slick = window.Slick || {};\n\n Slick = (function() {\n\n var instanceUid = 0;\n\n function Slick(element, settings) {\n\n var _ = this, dataSettings;\n\n _.defaults = {\n accessibility: true,\n adaptiveHeight: false,\n appendArrows: $(element),\n appendDots: $(element),\n arrows: true,\n asNavFor: null,\n prevArrow: '<button class=\"slick-prev\" aria-label=\"Previous\" type=\"button\">Previous</button>',\n nextArrow: '<button class=\"slick-next\" aria-label=\"Next\" type=\"button\">Next</button>',\n autoplay: false,\n autoplaySpeed: 3000,\n centerMode: false,\n centerPadding: '50px',\n cssEase: 'ease',\n customPaging: function(slider, i) {\n return $('<button type=\"button\" />').text(i + 1);\n },\n dots: false,\n dotsClass: 'slick-dots',\n draggable: true,\n easing: 'linear',\n edgeFriction: 0.35,\n fade: false,\n focusOnSelect: false,\n focusOnChange: false,\n infinite: true,\n initialSlide: 0,\n lazyLoad: 'ondemand',\n mobileFirst: false,\n pauseOnHover: true,\n pauseOnFocus: true,\n pauseOnDotsHover: false,\n respondTo: 'window',\n responsive: null,\n rows: 1,\n rtl: false,\n slide: '',\n slidesPerRow: 1,\n slidesToShow: 1,\n slidesToScroll: 1,\n speed: 500,\n swipe: true,\n swipeToSlide: false,\n touchMove: true,\n touchThreshold: 5,\n useCSS: true,\n useTransform: true,\n variableWidth: false,\n vertical: false,\n verticalSwiping: false,\n waitForAnimate: true,\n zIndex: 1000\n };\n\n _.initials = {\n animating: false,\n dragging: false,\n autoPlayTimer: null,\n currentDirection: 0,\n currentLeft: null,\n currentSlide: 0,\n direction: 1,\n $dots: null,\n listWidth: null,\n listHeight: null,\n loadIndex: 0,\n $nextArrow: null,\n $prevArrow: null,\n scrolling: false,\n slideCount: null,\n slideWidth: null,\n $slideTrack: null,\n $slides: null,\n sliding: false,\n slideOffset: 0,\n swipeLeft: null,\n swiping: false,\n $list: null,\n touchObject: {},\n transformsEnabled: false,\n unslicked: false\n };\n\n $.extend(_, _.initials);\n\n _.activeBreakpoint = null;\n _.animType = null;\n _.animProp = null;\n _.breakpoints = [];\n _.breakpointSettings = [];\n _.cssTransitions = false;\n _.focussed = false;\n _.interrupted = false;\n _.hidden = 'hidden';\n _.paused = true;\n _.positionProp = null;\n _.respondTo = null;\n _.rowCount = 1;\n _.shouldClick = true;\n _.$slider = $(element);\n _.$slidesCache = null;\n _.transformType = null;\n _.transitionType = null;\n _.visibilityChange = 'visibilitychange';\n _.windowWidth = 0;\n _.windowTimer = null;\n\n dataSettings = $(element).data('slick') || {};\n\n _.options = $.extend({}, _.defaults, settings, dataSettings);\n\n _.currentSlide = _.options.initialSlide;\n\n _.originalSettings = _.options;\n\n if (typeof document.mozHidden !== 'undefined') {\n _.hidden = 'mozHidden';\n _.visibilityChange = 'mozvisibilitychange';\n } else if (typeof document.webkitHidden !== 'undefined') {\n _.hidden = 'webkitHidden';\n _.visibilityChange = 'webkitvisibilitychange';\n }\n\n _.autoPlay = $.proxy(_.autoPlay, _);\n _.autoPlayClear = $.proxy(_.autoPlayClear, _);\n _.autoPlayIterator = $.proxy(_.autoPlayIterator, _);\n _.changeSlide = $.proxy(_.changeSlide, _);\n _.clickHandler = $.proxy(_.clickHandler, _);\n _.selectHandler = $.proxy(_.selectHandler, _);\n _.setPosition = $.proxy(_.setPosition, _);\n _.swipeHandler = $.proxy(_.swipeHandler, _);\n _.dragHandler = $.proxy(_.dragHandler, _);\n _.keyHandler = $.proxy(_.keyHandler, _);\n\n _.instanceUid = instanceUid++;\n\n // A simple way to check for HTML strings\n // Strict HTML recognition (must start with <)\n // Extracted from jQuery v1.11 source\n _.htmlExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*)$/;\n\n\n _.registerBreakpoints();\n _.init(true);\n\n }\n\n return Slick;\n\n }());\n\n Slick.prototype.activateADA = function() {\n var _ = this;\n\n _.$slideTrack.find('.slick-active').attr({\n 'aria-hidden': 'false'\n }).find('a, input, button, select').attr({\n 'tabindex': '0'\n });\n\n };\n\n Slick.prototype.addSlide = Slick.prototype.slickAdd = function(markup, index, addBefore) {\n\n var _ = this;\n\n if (typeof(index) === 'boolean') {\n addBefore = index;\n index = null;\n } else if (index < 0 || (index >= _.slideCount)) {\n return false;\n }\n\n _.unload();\n\n if (typeof(index) === 'number') {\n if (index === 0 && _.$slides.length === 0) {\n $(markup).appendTo(_.$slideTrack);\n } else if (addBefore) {\n $(markup).insertBefore(_.$slides.eq(index));\n } else {\n $(markup).insertAfter(_.$slides.eq(index));\n }\n } else {\n if (addBefore === true) {\n $(markup).prependTo(_.$slideTrack);\n } else {\n $(markup).appendTo(_.$slideTrack);\n }\n }\n\n _.$slides = _.$slideTrack.children(this.options.slide);\n\n _.$slideTrack.children(this.options.slide).detach();\n\n _.$slideTrack.append(_.$slides);\n\n _.$slides.each(function(index, element) {\n $(element).attr('data-slick-index', index);\n });\n\n _.$slidesCache = _.$slides;\n\n _.reinit();\n\n };\n\n Slick.prototype.animateHeight = function() {\n var _ = this;\n if (_.options.slidesToShow === 1 && _.options.adaptiveHeight === true && _.options.vertical === false) {\n var targetHeight = _.$slides.eq(_.currentSlide).outerHeight(true);\n _.$list.animate({\n height: targetHeight\n }, _.options.speed);\n }\n };\n\n Slick.prototype.animateSlide = function(targetLeft, callback) {\n\n var animProps = {},\n _ = this;\n\n _.animateHeight();\n\n if (_.options.rtl === true && _.options.vertical === false) {\n targetLeft = -targetLeft;\n }\n if (_.transformsEnabled === false) {\n if (_.options.vertical === false) {\n _.$slideTrack.animate({\n left: targetLeft\n }, _.options.speed, _.options.easing, callback);\n } else {\n _.$slideTrack.animate({\n top: targetLeft\n }, _.options.speed, _.options.easing, callback);\n }\n\n } else {\n\n if (_.cssTransitions === false) {\n if (_.options.rtl === true) {\n _.currentLeft = -(_.currentLeft);\n }\n $({\n animStart: _.currentLeft\n }).animate({\n animStart: targetLeft\n }, {\n duration: _.options.speed,\n easing: _.options.easing,\n step: function(now) {\n now = Math.ceil(now);\n if (_.options.vertical === false) {\n animProps[_.animType] = 'translate(' +\n now + 'px, 0px)';\n _.$slideTrack.css(animProps);\n } else {\n animProps[_.animType] = 'translate(0px,' +\n now + 'px)';\n _.$slideTrack.css(animProps);\n }\n },\n complete: function() {\n if (callback) {\n callback.call();\n }\n }\n });\n\n } else {\n\n _.applyTransition();\n targetLeft = Math.ceil(targetLeft);\n\n if (_.options.vertical === false) {\n animProps[_.animType] = 'translate3d(' + targetLeft + 'px, 0px, 0px)';\n } else {\n animProps[_.animType] = 'translate3d(0px,' + targetLeft + 'px, 0px)';\n }\n _.$slideTrack.css(animProps);\n\n if (callback) {\n setTimeout(function() {\n\n _.disableTransition();\n\n callback.call();\n }, _.options.speed);\n }\n\n }\n\n }\n\n };\n\n Slick.prototype.getNavTarget = function() {\n\n var _ = this,\n asNavFor = _.options.asNavFor;\n\n if ( asNavFor && asNavFor !== null ) {\n asNavFor = $(asNavFor).not(_.$slider);\n }\n\n return asNavFor;\n\n };\n\n Slick.prototype.asNavFor = function(index) {\n\n var _ = this,\n asNavFor = _.getNavTarget();\n\n if ( asNavFor !== null && typeof asNavFor === 'object' ) {\n asNavFor.each(function() {\n var target = $(this).slick('getSlick');\n if(!target.unslicked) {\n target.slideHandler(index, true);\n }\n });\n }\n\n };\n\n Slick.prototype.applyTransition = function(slide) {\n\n var _ = this,\n transition = {};\n\n if (_.options.fade === false) {\n transition[_.transitionType] = _.transformType + ' ' + _.options.speed + 'ms ' + _.options.cssEase;\n } else {\n transition[_.transitionType] = 'opacity ' + _.options.speed + 'ms ' + _.options.cssEase;\n }\n\n if (_.options.fade === false) {\n _.$slideTrack.css(transition);\n } else {\n _.$slides.eq(slide).css(transition);\n }\n\n };\n\n Slick.prototype.autoPlay = function() {\n\n var _ = this;\n\n _.autoPlayClear();\n\n if ( _.slideCount > _.options.slidesToShow ) {\n _.autoPlayTimer = setInterval( _.autoPlayIterator, _.options.autoplaySpeed );\n }\n\n };\n\n Slick.prototype.autoPlayClear = function() {\n\n var _ = this;\n\n if (_.autoPlayTimer) {\n clearInterval(_.autoPlayTimer);\n }\n\n };\n\n Slick.prototype.autoPlayIterator = function() {\n\n var _ = this,\n slideTo = _.currentSlide + _.options.slidesToScroll;\n\n if ( !_.paused && !_.interrupted && !_.focussed ) {\n\n if ( _.options.infinite === false ) {\n\n if ( _.direction === 1 && ( _.currentSlide + 1 ) === ( _.slideCount - 1 )) {\n _.direction = 0;\n }\n\n else if ( _.direction === 0 ) {\n\n slideTo = _.currentSlide - _.options.slidesToScroll;\n\n if ( _.currentSlide - 1 === 0 ) {\n _.direction = 1;\n }\n\n }\n\n }\n\n _.slideHandler( slideTo );\n\n }\n\n };\n\n Slick.prototype.buildArrows = function() {\n\n var _ = this;\n\n if (_.options.arrows === true ) {\n\n _.$prevArrow = $(_.options.prevArrow).addClass('slick-arrow');\n _.$nextArrow = $(_.options.nextArrow).addClass('slick-arrow');\n\n if( _.slideCount > _.options.slidesToShow ) {\n\n _.$prevArrow.removeClass('slick-hidden').removeAttr('aria-hidden tabindex');\n _.$nextArrow.removeClass('slick-hidden').removeAttr('aria-hidden tabindex');\n\n if (_.htmlExpr.test(_.options.prevArrow)) {\n _.$prevArrow.prependTo(_.options.appendArrows);\n }\n\n if (_.htmlExpr.test(_.options.nextArrow)) {\n _.$nextArrow.appendTo(_.options.appendArrows);\n }\n\n if (_.options.infinite !== true) {\n _.$prevArrow\n .addClass('slick-disabled')\n .attr('aria-disabled', 'true');\n }\n\n } else {\n\n _.$prevArrow.add( _.$nextArrow )\n\n .addClass('slick-hidden')\n .attr({\n 'aria-disabled': 'true',\n 'tabindex': '-1'\n });\n\n }\n\n }\n\n };\n\n Slick.prototype.buildDots = function() {\n\n var _ = this,\n i, dot;\n\n if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {\n\n _.$slider.addClass('slick-dotted');\n\n dot = $('<ul />').addClass(_.options.dotsClass);\n\n for (i = 0; i <= _.getDotCount(); i += 1) {\n dot.append($('<li />').append(_.options.customPaging.call(this, _, i)));\n }\n\n _.$dots = dot.appendTo(_.options.appendDots);\n\n _.$dots.find('li').first().addClass('slick-active');\n\n }\n\n };\n\n Slick.prototype.buildOut = function() {\n\n var _ = this;\n\n _.$slides =\n _.$slider\n .children( _.options.slide + ':not(.slick-cloned)')\n .addClass('slick-slide');\n\n _.slideCount = _.$slides.length;\n\n _.$slides.each(function(index, element) {\n $(element)\n .attr('data-slick-index', index)\n .data('originalStyling', $(element).attr('style') || '');\n });\n\n _.$slider.addClass('slick-slider');\n\n _.$slideTrack = (_.slideCount === 0) ?\n $('<div class=\"slick-track\"/>').appendTo(_.$slider) :\n _.$slides.wrapAll('<div class=\"slick-track\"/>').parent();\n\n _.$list = _.$slideTrack.wrap(\n '<div class=\"slick-list\"/>').parent();\n _.$slideTrack.css('opacity', 0);\n\n if (_.options.centerMode === true || _.options.swipeToSlide === true) {\n _.options.slidesToScroll = 1;\n }\n\n $('img[data-lazy]', _.$slider).not('[src]').addClass('slick-loading');\n\n _.setupInfinite();\n\n _.buildArrows();\n\n _.buildDots();\n\n _.updateDots();\n\n\n _.setSlideClasses(typeof _.currentSlide === 'number' ? _.currentSlide : 0);\n\n if (_.options.draggable === true) {\n _.$list.addClass('draggable');\n }\n\n };\n\n Slick.prototype.buildRows = function() {\n\n var _ = this, a, b, c, newSlides, numOfSlides, originalSlides,slidesPerSection;\n\n newSlides = document.createDocumentFragment();\n originalSlides = _.$slider.children();\n\n if(_.options.rows > 0) {\n\n slidesPerSection = _.options.slidesPerRow * _.options.rows;\n numOfSlides = Math.ceil(\n originalSlides.length / slidesPerSection\n );\n\n for(a = 0; a < numOfSlides; a++){\n var slide = document.createElement('div');\n for(b = 0; b < _.options.rows; b++) {\n var row = document.createElement('div');\n for(c = 0; c < _.options.slidesPerRow; c++) {\n var target = (a * slidesPerSection + ((b * _.options.slidesPerRow) + c));\n if (originalSlides.get(target)) {\n row.appendChild(originalSlides.get(target));\n }\n }\n slide.appendChild(row);\n }\n newSlides.appendChild(slide);\n }\n\n _.$slider.empty().append(newSlides);\n _.$slider.children().children().children()\n .css({\n 'width':(100 / _.options.slidesPerRow) + '%',\n 'display': 'inline-block'\n });\n\n }\n\n };\n\n Slick.prototype.checkResponsive = function(initial, forceUpdate) {\n\n var _ = this,\n breakpoint, targetBreakpoint, respondToWidth, triggerBreakpoint = false;\n var sliderWidth = _.$slider.width();\n var windowWidth = window.innerWidth || $(window).width();\n\n if (_.respondTo === 'window') {\n respondToWidth = windowWidth;\n } else if (_.respondTo === 'slider') {\n respondToWidth = sliderWidth;\n } else if (_.respondTo === 'min') {\n respondToWidth = Math.min(windowWidth, sliderWidth);\n }\n\n if ( _.options.responsive &&\n _.options.responsive.length &&\n _.options.responsive !== null) {\n\n targetBreakpoint = null;\n\n for (breakpoint in _.breakpoints) {\n if (_.breakpoints.hasOwnProperty(breakpoint)) {\n if (_.originalSettings.mobileFirst === false) {\n if (respondToWidth < _.breakpoints[breakpoint]) {\n targetBreakpoint = _.breakpoints[breakpoint];\n }\n } else {\n if (respondToWidth > _.breakpoints[breakpoint]) {\n targetBreakpoint = _.breakpoints[breakpoint];\n }\n }\n }\n }\n\n if (targetBreakpoint !== null) {\n if (_.activeBreakpoint !== null) {\n if (targetBreakpoint !== _.activeBreakpoint || forceUpdate) {\n _.activeBreakpoint =\n targetBreakpoint;\n if (_.breakpointSettings[targetBreakpoint] === 'unslick') {\n _.unslick(targetBreakpoint);\n } else {\n _.options = $.extend({}, _.originalSettings,\n _.breakpointSettings[\n targetBreakpoint]);\n if (initial === true) {\n _.currentSlide = _.options.initialSlide;\n }\n _.refresh(initial);\n }\n triggerBreakpoint = targetBreakpoint;\n }\n } else {\n _.activeBreakpoint = targetBreakpoint;\n if (_.breakpointSettings[targetBreakpoint] === 'unslick') {\n _.unslick(targetBreakpoint);\n } else {\n _.options = $.extend({}, _.originalSettings,\n _.breakpointSettings[\n targetBreakpoint]);\n if (initial === true) {\n _.currentSlide = _.options.initialSlide;\n }\n _.refresh(initial);\n }\n triggerBreakpoint = targetBreakpoint;\n }\n } else {\n if (_.activeBreakpoint !== null) {\n _.activeBreakpoint = null;\n _.options = _.originalSettings;\n if (initial === true) {\n _.currentSlide = _.options.initialSlide;\n }\n _.refresh(initial);\n triggerBreakpoint = targetBreakpoint;\n }\n }\n\n // only trigger breakpoints during an actual break. not on initialize.\n if( !initial && triggerBreakpoint !== false ) {\n _.$slider.trigger('breakpoint', [_, triggerBreakpoint]);\n }\n }\n\n };\n\n Slick.prototype.changeSlide = function(event, dontAnimate) {\n\n var _ = this,\n $target = $(event.currentTarget),\n indexOffset, slideOffset, unevenOffset;\n\n // If target is a link, prevent default action.\n if($target.is('a')) {\n event.preventDefault();\n }\n\n // If target is not the <li> element (ie: a child), find the <li>.\n if(!$target.is('li')) {\n $target = $target.closest('li');\n }\n\n unevenOffset = (_.slideCount % _.options.slidesToScroll !== 0);\n indexOffset = unevenOffset ? 0 : (_.slideCount - _.currentSlide) % _.options.slidesToScroll;\n\n switch (event.data.message) {\n\n case 'previous':\n slideOffset = indexOffset === 0 ? _.options.slidesToScroll : _.options.slidesToShow - indexOffset;\n if (_.slideCount > _.options.slidesToShow) {\n _.slideHandler(_.currentSlide - slideOffset, false, dontAnimate);\n }\n break;\n\n case 'next':\n slideOffset = indexOffset === 0 ? _.options.slidesToScroll : indexOffset;\n if (_.slideCount > _.options.slidesToShow) {\n _.slideHandler(_.currentSlide + slideOffset, false, dontAnimate);\n }\n break;\n\n case 'index':\n var index = event.data.index === 0 ? 0 :\n event.data.index || $target.index() * _.options.slidesToScroll;\n\n _.slideHandler(_.checkNavigable(index), false, dontAnimate);\n $target.children().trigger('focus');\n break;\n\n default:\n return;\n }\n\n };\n\n Slick.prototype.checkNavigable = function(index) {\n\n var _ = this,\n navigables, prevNavigable;\n\n navigables = _.getNavigableIndexes();\n prevNavigable = 0;\n if (index > navigables[navigables.length - 1]) {\n index = navigables[navigables.length - 1];\n } else {\n for (var n in navigables) {\n if (index < navigables[n]) {\n index = prevNavigable;\n break;\n }\n prevNavigable = navigables[n];\n }\n }\n\n return index;\n };\n\n Slick.prototype.cleanUpEvents = function() {\n\n var _ = this;\n\n if (_.options.dots && _.$dots !== null) {\n\n $('li', _.$dots)\n .off('click.slick', _.changeSlide)\n .off('mouseenter.slick', $.proxy(_.interrupt, _, true))\n .off('mouseleave.slick', $.proxy(_.interrupt, _, false));\n\n if (_.options.accessibility === true) {\n _.$dots.off('keydown.slick', _.keyHandler);\n }\n }\n\n _.$slider.off('focus.slick blur.slick');\n\n if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {\n _.$prevArrow && _.$prevArrow.off('click.slick', _.changeSlide);\n _.$nextArrow && _.$nextArrow.off('click.slick', _.changeSlide);\n\n if (_.options.accessibility === true) {\n _.$prevArrow && _.$prevArrow.off('keydown.slick', _.keyHandler);\n _.$nextArrow && _.$nextArrow.off('keydown.slick', _.keyHandler);\n }\n }\n\n _.$list.off('touchstart.slick mousedown.slick', _.swipeHandler);\n _.$list.off('touchmove.slick mousemove.slick', _.swipeHandler);\n _.$list.off('touchend.slick mouseup.slick', _.swipeHandler);\n _.$list.off('touchcancel.slick mouseleave.slick', _.swipeHandler);\n\n _.$list.off('click.slick', _.clickHandler);\n\n $(document).off(_.visibilityChange, _.visibility);\n\n _.cleanUpSlideEvents();\n\n if (_.options.accessibility === true) {\n _.$list.off('keydown.slick', _.keyHandler);\n }\n\n if (_.options.focusOnSelect === true) {\n $(_.$slideTrack).children().off('click.slick', _.selectHandler);\n }\n\n $(window).off('orientationchange.slick.slick-' + _.instanceUid, _.orientationChange);\n\n $(window).off('resize.slick.slick-' + _.instanceUid, _.resize);\n\n $('[draggable!=true]', _.$slideTrack).off('dragstart', _.preventDefault);\n\n $(window).off('load.slick.slick-' + _.instanceUid, _.setPosition);\n\n };\n\n Slick.prototype.cleanUpSlideEvents = function() {\n\n var _ = this;\n\n _.$list.off('mouseenter.slick', $.proxy(_.interrupt, _, true));\n _.$list.off('mouseleave.slick', $.proxy(_.interrupt, _, false));\n\n };\n\n Slick.prototype.cleanUpRows = function() {\n\n var _ = this, originalSlides;\n\n if(_.options.rows > 0) {\n originalSlides = _.$slides.children().children();\n originalSlides.removeAttr('style');\n _.$slider.empty().append(originalSlides);\n }\n\n };\n\n Slick.prototype.clickHandler = function(event) {\n\n var _ = this;\n\n if (_.shouldClick === false) {\n event.stopImmediatePropagation();\n event.stopPropagation();\n event.preventDefault();\n }\n\n };\n\n Slick.prototype.destroy = function(refresh) {\n\n var _ = this;\n\n _.autoPlayClear();\n\n _.touchObject = {};\n\n _.cleanUpEvents();\n\n $('.slick-cloned', _.$slider).detach();\n\n if (_.$dots) {\n _.$dots.remove();\n }\n\n if ( _.$prevArrow && _.$prevArrow.length ) {\n\n _.$prevArrow\n .removeClass('slick-disabled slick-arrow slick-hidden')\n .removeAttr('aria-hidden aria-disabled tabindex')\n .css('display','');\n\n if ( _.htmlExpr.test( _.options.prevArrow )) {\n _.$prevArrow.remove();\n }\n }\n\n if ( _.$nextArrow && _.$nextArrow.length ) {\n\n _.$nextArrow\n .removeClass('slick-disabled slick-arrow slick-hidden')\n .removeAttr('aria-hidden aria-disabled tabindex')\n .css('display','');\n\n if ( _.htmlExpr.test( _.options.nextArrow )) {\n _.$nextArrow.remove();\n }\n }\n\n\n if (_.$slides) {\n\n _.$slides\n .removeClass('slick-slide slick-active slick-center slick-visible slick-current')\n .removeAttr('aria-hidden')\n .removeAttr('data-slick-index')\n .each(function(){\n $(this).attr('style', $(this).data('originalStyling'));\n });\n\n _.$slideTrack.children(this.options.slide).detach();\n\n _.$slideTrack.detach();\n\n _.$list.detach();\n\n _.$slider.append(_.$slides);\n }\n\n _.cleanUpRows();\n\n _.$slider.removeClass('slick-slider');\n _.$slider.removeClass('slick-initialized');\n _.$slider.removeClass('slick-dotted');\n\n _.unslicked = true;\n\n if(!refresh) {\n _.$slider.trigger('destroy', [_]);\n }\n\n };\n\n Slick.prototype.disableTransition = function(slide) {\n\n var _ = this,\n transition = {};\n\n transition[_.transitionType] = '';\n\n if (_.options.fade === false) {\n _.$slideTrack.css(transition);\n } else {\n _.$slides.eq(slide).css(transition);\n }\n\n };\n\n Slick.prototype.fadeSlide = function(slideIndex, callback) {\n\n var _ = this;\n\n if (_.cssTransitions === false) {\n\n _.$slides.eq(slideIndex).css({\n zIndex: _.options.zIndex\n });\n\n _.$slides.eq(slideIndex).animate({\n opacity: 1\n }, _.options.speed, _.options.easing, callback);\n\n } else {\n\n _.applyTransition(slideIndex);\n\n _.$slides.eq(slideIndex).css({\n opacity: 1,\n zIndex: _.options.zIndex\n });\n\n if (callback) {\n setTimeout(function() {\n\n _.disableTransition(slideIndex);\n\n callback.call();\n }, _.options.speed);\n }\n\n }\n\n };\n\n Slick.prototype.fadeSlideOut = function(slideIndex) {\n\n var _ = this;\n\n if (_.cssTransitions === false) {\n\n _.$slides.eq(slideIndex).animate({\n opacity: 0,\n zIndex: _.options.zIndex - 2\n }, _.options.speed, _.options.easing);\n\n } else {\n\n _.applyTransition(slideIndex);\n\n _.$slides.eq(slideIndex).css({\n opacity: 0,\n zIndex: _.options.zIndex - 2\n });\n\n }\n\n };\n\n Slick.prototype.filterSlides = Slick.prototype.slickFilter = function(filter) {\n\n var _ = this;\n\n if (filter !== null) {\n\n _.$slidesCache = _.$slides;\n\n _.unload();\n\n _.$slideTrack.children(this.options.slide).detach();\n\n _.$slidesCache.filter(filter).appendTo(_.$slideTrack);\n\n _.reinit();\n\n }\n\n };\n\n Slick.prototype.focusHandler = function() {\n\n var _ = this;\n\n _.$slider\n .off('focus.slick blur.slick')\n .on('focus.slick blur.slick', '*', function(event) {\n\n event.stopImmediatePropagation();\n var $sf = $(this);\n\n setTimeout(function() {\n\n if( _.options.pauseOnFocus ) {\n _.focussed = $sf.is(':focus');\n _.autoPlay();\n }\n\n }, 0);\n\n });\n };\n\n Slick.prototype.getCurrent = Slick.prototype.slickCurrentSlide = function() {\n\n var _ = this;\n return _.currentSlide;\n\n };\n\n Slick.prototype.getDotCount = function() {\n\n var _ = this;\n\n var breakPoint = 0;\n var counter = 0;\n var pagerQty = 0;\n\n if (_.options.infinite === true) {\n if (_.slideCount <= _.options.slidesToShow) {\n ++pagerQty;\n } else {\n while (breakPoint < _.slideCount) {\n ++pagerQty;\n breakPoint = counter + _.options.slidesToScroll;\n counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;\n }\n }\n } else if (_.options.centerMode === true) {\n pagerQty = _.slideCount;\n } else if(!_.options.asNavFor) {\n pagerQty = 1 + Math.ceil((_.slideCount - _.options.slidesToShow) / _.options.slidesToScroll);\n }else {\n while (breakPoint < _.slideCount) {\n ++pagerQty;\n breakPoint = counter + _.options.slidesToScroll;\n counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;\n }\n }\n\n return pagerQty - 1;\n\n };\n\n Slick.prototype.getLeft = function(slideIndex) {\n\n var _ = this,\n targetLeft,\n verticalHeight,\n verticalOffset = 0,\n targetSlide,\n coef;\n\n _.slideOffset = 0;\n verticalHeight = _.$slides.first().outerHeight(true);\n\n if (_.options.infinite === true) {\n if (_.slideCount > _.options.slidesToShow) {\n _.slideOffset = (_.slideWidth * _.options.slidesToShow) * -1;\n coef = -1\n\n if (_.options.vertical === true && _.options.centerMode === true) {\n if (_.options.slidesToShow === 2) {\n coef = -1.5;\n } else if (_.options.slidesToShow === 1) {\n coef = -2\n }\n }\n verticalOffset = (verticalHeight * _.options.slidesToShow) * coef;\n }\n if (_.slideCount % _.options.slidesToScroll !== 0) {\n if (slideIndex + _.options.slidesToScroll > _.slideCount && _.slideCount > _.options.slidesToShow) {\n if (slideIndex > _.slideCount) {\n _.slideOffset = ((_.options.slidesToShow - (slideIndex - _.slideCount)) * _.slideWidth) * -1;\n verticalOffset = ((_.options.slidesToShow - (slideIndex - _.slideCount)) * verticalHeight) * -1;\n } else {\n _.slideOffset = ((_.slideCount % _.options.slidesToScroll) * _.slideWidth) * -1;\n verticalOffset = ((_.slideCount % _.options.slidesToScroll) * verticalHeight) * -1;\n }\n }\n }\n } else {\n if (slideIndex + _.options.slidesToShow > _.slideCount) {\n _.slideOffset = ((slideIndex + _.options.slidesToShow) - _.slideCount) * _.slideWidth;\n verticalOffset = ((slideIndex + _.options.slidesToShow) - _.slideCount) * verticalHeight;\n }\n }\n\n if (_.slideCount <= _.options.slidesToShow) {\n _.slideOffset = 0;\n verticalOffset = 0;\n }\n\n if (_.options.centerMode === true && _.slideCount <= _.options.slidesToShow) {\n _.slideOffset = ((_.slideWidth * Math.floor(_.options.slidesToShow)) / 2) - ((_.slideWidth * _.slideCount) / 2);\n } else if (_.options.centerMode === true && _.options.infinite === true) {\n _.slideOffset += _.slideWidth * Math.floor(_.options.slidesToShow / 2) - _.slideWidth;\n } else if (_.options.centerMode === true) {\n _.slideOffset = 0;\n _.slideOffset += _.slideWidth * Math.floor(_.options.slidesToShow / 2);\n }\n\n if (_.options.vertical === false) {\n targetLeft = ((slideIndex * _.slideWidth) * -1) + _.slideOffset;\n } else {\n targetLeft = ((slideIndex * verticalHeight) * -1) + verticalOffset;\n }\n\n if (_.options.variableWidth === true) {\n\n if (_.slideCount <= _.options.slidesToShow || _.options.infinite === false) {\n targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex);\n } else {\n targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex + _.options.slidesToShow);\n }\n\n if (_.options.rtl === true) {\n if (targetSlide[0]) {\n targetLeft = (_.$slideTrack.width() - targetSlide[0].offsetLeft - targetSlide.width()) * -1;\n } else {\n targetLeft = 0;\n }\n } else {\n targetLeft = targetSlide[0] ? targetSlide[0].offsetLeft * -1 : 0;\n }\n\n if (_.options.centerMode === true) {\n if (_.slideCount <= _.options.slidesToShow || _.options.infinite === false) {\n targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex);\n } else {\n targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex + _.options.slidesToShow + 1);\n }\n\n if (_.options.rtl === true) {\n if (targetSlide[0]) {\n targetLeft = (_.$slideTrack.width() - targetSlide[0].offsetLeft - targetSlide.width()) * -1;\n } else {\n targetLeft = 0;\n }\n } else {\n targetLeft = targetSlide[0] ? targetSlide[0].offsetLeft * -1 : 0;\n }\n\n targetLeft += (_.$list.width() - targetSlide.outerWidth()) / 2;\n }\n }\n\n return targetLeft;\n\n };\n\n Slick.prototype.getOption = Slick.prototype.slickGetOption = function(option) {\n\n var _ = this;\n\n return _.options[option];\n\n };\n\n Slick.prototype.getNavigableIndexes = function() {\n\n var _ = this,\n breakPoint = 0,\n counter = 0,\n indexes = [],\n max;\n\n if (_.options.infinite === false) {\n max = _.slideCount;\n } else {\n breakPoint = _.options.slidesToScroll * -1;\n counter = _.options.slidesToScroll * -1;\n max = _.slideCount * 2;\n }\n\n while (breakPoint < max) {\n indexes.push(breakPoint);\n breakPoint = counter + _.options.slidesToScroll;\n counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;\n }\n\n return indexes;\n\n };\n\n Slick.prototype.getSlick = function() {\n\n return this;\n\n };\n\n Slick.prototype.getSlideCount = function() {\n\n var _ = this,\n slidesTraversed, swipedSlide, centerOffset;\n\n centerOffset = _.options.centerMode === true ? _.slideWidth * Math.floor(_.options.slidesToShow / 2) : 0;\n\n if (_.options.swipeToSlide === true) {\n _.$slideTrack.find('.slick-slide').each(function(index, slide) {\n if (slide.offsetLeft - centerOffset + ($(slide).outerWidth() / 2) > (_.swipeLeft * -1)) {\n swipedSlide = slide;\n return false;\n }\n });\n\n slidesTraversed = Math.abs($(swipedSlide).attr('data-slick-index') - _.currentSlide) || 1;\n\n return slidesTraversed;\n\n } else {\n return _.options.slidesToScroll;\n }\n\n };\n\n Slick.prototype.goTo = Slick.prototype.slickGoTo = function(slide, dontAnimate) {\n\n var _ = this;\n\n _.changeSlide({\n data: {\n message: 'index',\n index: parseInt(slide)\n }\n }, dontAnimate);\n\n };\n\n Slick.prototype.init = function(creation) {\n\n var _ = this;\n\n if (!$(_.$slider).hasClass('slick-initialized')) {\n\n $(_.$slider).addClass('slick-initialized');\n\n _.buildRows();\n _.buildOut();\n _.setProps();\n _.startLoad();\n _.loadSlider();\n _.initializeEvents();\n _.updateArrows();\n _.updateDots();\n _.checkResponsive(true);\n _.focusHandler();\n\n }\n\n if (creation) {\n _.$slider.trigger('init', [_]);\n }\n\n if (_.options.accessibility === true) {\n _.initADA();\n }\n\n if ( _.options.autoplay ) {\n\n _.paused = false;\n _.autoPlay();\n\n }\n\n };\n\n Slick.prototype.initADA = function() {\n var _ = this,\n numDotGroups = Math.ceil(_.slideCount / _.options.slidesToShow),\n tabControlIndexes = _.getNavigableIndexes().filter(function(val) {\n return (val >= 0) && (val < _.slideCount);\n });\n\n _.$slides.add(_.$slideTrack.find('.slick-cloned')).attr({\n 'aria-hidden': 'true',\n 'tabindex': '-1'\n }).find('a, input, button, select').attr({\n 'tabindex': '-1'\n });\n\n if (_.$dots !== null) {\n _.$slides.not(_.$slideTrack.find('.slick-cloned')).each(function(i) {\n var slideControlIndex = tabControlIndexes.indexOf(i);\n\n $(this).attr({\n 'role': 'tabpanel',\n 'id': 'slick-slide' + _.instanceUid + i,\n 'tabindex': -1\n });\n\n if (slideControlIndex !== -1) {\n var ariaButtonControl = 'slick-slide-control' + _.instanceUid + slideControlIndex\n if ($('#' + ariaButtonControl).length) {\n $(this).attr({\n 'aria-describedby': ariaButtonControl\n });\n }\n }\n });\n\n _.$dots.attr('role', 'tablist').find('li').each(function(i) {\n var mappedSlideIndex = tabControlIndexes[i];\n\n $(this).attr({\n 'role': 'presentation'\n });\n\n $(this).find('button').first().attr({\n 'role': 'tab',\n 'id': 'slick-slide-control' + _.instanceUid + i,\n 'aria-controls': 'slick-slide' + _.instanceUid + mappedSlideIndex,\n 'aria-label': (i + 1) + ' of ' + numDotGroups,\n 'aria-selected': null,\n 'tabindex': '-1'\n });\n\n }).eq(_.currentSlide).find('button').attr({\n 'aria-selected': 'true',\n 'tabindex': '0'\n }).end();\n }\n\n for (var i=_.currentSlide, max=i+_.options.slidesToShow; i < max; i++) {\n if (_.options.focusOnChange) {\n _.$slides.eq(i).attr({'tabindex': '0'});\n } else {\n _.$slides.eq(i).removeAttr('tabindex');\n }\n }\n\n _.activateADA();\n\n };\n\n Slick.prototype.initArrowEvents = function() {\n\n var _ = this;\n\n if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {\n _.$prevArrow\n .off('click.slick')\n .on('click.slick', {\n message: 'previous'\n }, _.changeSlide);\n _.$nextArrow\n .off('click.slick')\n .on('click.slick', {\n message: 'next'\n }, _.changeSlide);\n\n if (_.options.accessibility === true) {\n _.$prevArrow.on('keydown.slick', _.keyHandler);\n _.$nextArrow.on('keydown.slick', _.keyHandler);\n }\n }\n\n };\n\n Slick.prototype.initDotEvents = function() {\n\n var _ = this;\n\n if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {\n $('li', _.$dots).on('click.slick', {\n message: 'index'\n }, _.changeSlide);\n\n if (_.options.accessibility === true) {\n _.$dots.on('keydown.slick', _.keyHandler);\n }\n }\n\n if (_.options.dots === true && _.options.pauseOnDotsHover === true && _.slideCount > _.options.slidesToShow) {\n\n $('li', _.$dots)\n .on('mouseenter.slick', $.proxy(_.interrupt, _, true))\n .on('mouseleave.slick', $.proxy(_.interrupt, _, false));\n\n }\n\n };\n\n Slick.prototype.initSlideEvents = function() {\n\n var _ = this;\n\n if ( _.options.pauseOnHover ) {\n\n _.$list.on('mouseenter.slick', $.proxy(_.interrupt, _, true));\n _.$list.on('mouseleave.slick', $.proxy(_.interrupt, _, false));\n\n }\n\n };\n\n Slick.prototype.initializeEvents = function() {\n\n var _ = this;\n\n _.initArrowEvents();\n\n _.initDotEvents();\n _.initSlideEvents();\n\n _.$list.on('touchstart.slick mousedown.slick', {\n action: 'start'\n }, _.swipeHandler);\n _.$list.on('touchmove.slick mousemove.slick', {\n action: 'move'\n }, _.swipeHandler);\n _.$list.on('touchend.slick mouseup.slick', {\n action: 'end'\n }, _.swipeHandler);\n _.$list.on('touchcancel.slick mouseleave.slick', {\n action: 'end'\n }, _.swipeHandler);\n\n _.$list.on('click.slick', _.clickHandler);\n\n $(document).on(_.visibilityChange, $.proxy(_.visibility, _));\n\n if (_.options.accessibility === true) {\n _.$list.on('keydown.slick', _.keyHandler);\n }\n\n if (_.options.focusOnSelect === true) {\n $(_.$slideTrack).children().on('click.slick', _.selectHandler);\n }\n\n $(window).on('orientationchange.slick.slick-' + _.instanceUid, $.proxy(_.orientationChange, _));\n\n $(window).on('resize.slick.slick-' + _.instanceUid, $.proxy(_.resize, _));\n\n $('[draggable!=true]', _.$slideTrack).on('dragstart', _.preventDefault);\n\n $(window).on('load.slick.slick-' + _.instanceUid, _.setPosition);\n $(_.setPosition);\n\n };\n\n Slick.prototype.initUI = function() {\n\n var _ = this;\n\n if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {\n\n _.$prevArrow.show();\n _.$nextArrow.show();\n\n }\n\n if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {\n\n _.$dots.show();\n\n }\n\n };\n\n Slick.prototype.keyHandler = function(event) {\n\n var _ = this;\n //Dont slide if the cursor is inside the form fields and arrow keys are pressed\n if(!event.target.tagName.match('TEXTAREA|INPUT|SELECT')) {\n if (event.keyCode === 37 && _.options.accessibility === true) {\n _.changeSlide({\n data: {\n message: _.options.rtl === true ? 'next' : 'previous'\n }\n });\n } else if (event.keyCode === 39 && _.options.accessibility === true) {\n _.changeSlide({\n data: {\n message: _.options.rtl === true ? 'previous' : 'next'\n }\n });\n }\n }\n\n };\n\n Slick.prototype.lazyLoad = function() {\n\n var _ = this,\n loadRange, cloneRange, rangeStart, rangeEnd;\n\n function loadImages(imagesScope) {\n\n $('img[data-lazy]', imagesScope).each(function() {\n\n var image = $(this),\n imageSource = $(this).attr('data-lazy'),\n imageSrcSet = $(this).attr('data-srcset'),\n imageSizes = $(this).attr('data-sizes') || _.$slider.attr('data-sizes'),\n imageToLoad = document.createElement('img');\n\n imageToLoad.onload = function() {\n\n image\n .animate({ opacity: 0 }, 100, function() {\n\n if (imageSrcSet) {\n image\n .attr('srcset', imageSrcSet );\n\n if (imageSizes) {\n image\n .attr('sizes', imageSizes );\n }\n }\n\n image\n .attr('src', imageSource)\n .animate({ opacity: 1 }, 200, function() {\n image\n .removeAttr('data-lazy data-srcset data-sizes')\n .removeClass('slick-loading');\n });\n _.$slider.trigger('lazyLoaded', [_, image, imageSource]);\n });\n\n };\n\n imageToLoad.onerror = function() {\n\n image\n .removeAttr( 'data-lazy' )\n .removeClass( 'slick-loading' )\n .addClass( 'slick-lazyload-error' );\n\n _.$slider.trigger('lazyLoadError', [ _, image, imageSource ]);\n\n };\n\n imageToLoad.src = imageSource;\n\n });\n\n }\n\n if (_.options.centerMode === true) {\n if (_.options.infinite === true) {\n rangeStart = _.currentSlide + (_.options.slidesToShow / 2 + 1);\n rangeEnd = rangeStart + _.options.slidesToShow + 2;\n } else {\n rangeStart = Math.max(0, _.currentSlide - (_.options.slidesToShow / 2 + 1));\n rangeEnd = 2 + (_.options.slidesToShow / 2 + 1) + _.currentSlide;\n }\n } else {\n rangeStart = _.options.infinite ? _.options.slidesToShow + _.currentSlide : _.currentSlide;\n rangeEnd = Math.ceil(rangeStart + _.options.slidesToShow);\n if (_.options.fade === true) {\n if (rangeStart > 0) rangeStart--;\n if (rangeEnd <= _.slideCount) rangeEnd++;\n }\n }\n\n loadRange = _.$slider.find('.slick-slide').slice(rangeStart, rangeEnd);\n\n if (_.options.lazyLoad === 'anticipated') {\n var prevSlide = rangeStart - 1,\n nextSlide = rangeEnd,\n $slides = _.$slider.find('.slick-slide');\n\n for (var i = 0; i < _.options.slidesToScroll; i++) {\n if (prevSlide < 0) prevSlide = _.slideCount - 1;\n loadRange = loadRange.add($slides.eq(prevSlide));\n loadRange = loadRange.add($slides.eq(nextSlide));\n prevSlide--;\n nextSlide++;\n }\n }\n\n loadImages(loadRange);\n\n if (_.slideCount <= _.options.slidesToShow) {\n cloneRange = _.$slider.find('.slick-slide');\n loadImages(cloneRange);\n } else\n if (_.currentSlide >= _.slideCount - _.options.slidesToShow) {\n cloneRange = _.$slider.find('.slick-cloned').slice(0, _.options.slidesToShow);\n loadImages(cloneRange);\n } else if (_.currentSlide === 0) {\n cloneRange = _.$slider.find('.slick-cloned').slice(_.options.slidesToShow * -1);\n loadImages(cloneRange);\n }\n\n };\n\n Slick.prototype.loadSlider = function() {\n\n var _ = this;\n\n _.setPosition();\n\n _.$slideTrack.css({\n opacity: 1\n });\n\n _.$slider.removeClass('slick-loading');\n\n _.initUI();\n\n if (_.options.lazyLoad === 'progressive') {\n _.progressiveLazyLoad();\n }\n\n };\n\n Slick.prototype.next = Slick.prototype.slickNext = function() {\n\n var _ = this;\n\n _.changeSlide({\n data: {\n message: 'next'\n }\n });\n\n };\n\n Slick.prototype.orientationChange = function() {\n\n var _ = this;\n\n _.checkResponsive();\n _.setPosition();\n\n };\n\n Slick.prototype.pause = Slick.prototype.slickPause = function() {\n\n var _ = this;\n\n _.autoPlayClear();\n _.paused = true;\n\n };\n\n Slick.prototype.play = Slick.prototype.slickPlay = function() {\n\n var _ = this;\n\n _.autoPlay();\n _.options.autoplay = true;\n _.paused = false;\n _.focussed = false;\n _.interrupted = false;\n\n };\n\n Slick.prototype.postSlide = function(index) {\n\n var _ = this;\n\n if( !_.unslicked ) {\n\n _.$slider.trigger('afterChange', [_, index]);\n\n _.animating = false;\n\n if (_.slideCount > _.options.slidesToShow) {\n _.setPosition();\n }\n\n _.swipeLeft = null;\n\n if ( _.options.autoplay ) {\n _.autoPlay();\n }\n\n if (_.options.accessibility === true) {\n _.initADA();\n\n if (_.options.focusOnChange) {\n var $currentSlide = $(_.$slides.get(_.currentSlide));\n $currentSlide.attr('tabindex', 0).focus();\n }\n }\n\n }\n\n };\n\n Slick.prototype.prev = Slick.prototype.slickPrev = function() {\n\n var _ = this;\n\n _.changeSlide({\n data: {\n message: 'previous'\n }\n });\n\n };\n\n Slick.prototype.preventDefault = function(event) {\n\n event.preventDefault();\n\n };\n\n Slick.prototype.progressiveLazyLoad = function( tryCount ) {\n\n tryCount = tryCount || 1;\n\n var _ = this,\n $imgsToLoad = $( 'img[data-lazy]', _.$slider ),\n image,\n imageSource,\n imageSrcSet,\n imageSizes,\n imageToLoad;\n\n if ( $imgsToLoad.length ) {\n\n image = $imgsToLoad.first();\n imageSource = image.attr('data-lazy');\n imageSrcSet = image.attr('data-srcset');\n imageSizes = image.attr('data-sizes') || _.$slider.attr('data-sizes');\n imageToLoad = document.createElement('img');\n\n imageToLoad.onload = function() {\n\n if (imageSrcSet) {\n image\n .attr('srcset', imageSrcSet );\n\n if (imageSizes) {\n image\n .attr('sizes', imageSizes );\n }\n }\n\n image\n .attr( 'src', imageSource )\n .removeAttr('data-lazy data-srcset data-sizes')\n .removeClass('slick-loading');\n\n if ( _.options.adaptiveHeight === true ) {\n _.setPosition();\n }\n\n _.$slider.trigger('lazyLoaded', [ _, image, imageSource ]);\n _.progressiveLazyLoad();\n\n };\n\n imageToLoad.onerror = function() {\n\n if ( tryCount < 3 ) {\n\n /**\n * try to load the image 3 times,\n * leave a slight delay so we don't get\n * servers blocking the request.\n */\n setTimeout( function() {\n _.progressiveLazyLoad( tryCount + 1 );\n }, 500 );\n\n } else {\n\n image\n .removeAttr( 'data-lazy' )\n .removeClass( 'slick-loading' )\n .addClass( 'slick-lazyload-error' );\n\n _.$slider.trigger('lazyLoadError', [ _, image, imageSource ]);\n\n _.progressiveLazyLoad();\n\n }\n\n };\n\n imageToLoad.src = imageSource;\n\n } else {\n\n _.$slider.trigger('allImagesLoaded', [ _ ]);\n\n }\n\n };\n\n Slick.prototype.refresh = function( initializing ) {\n\n var _ = this, currentSlide, lastVisibleIndex;\n\n lastVisibleIndex = _.slideCount - _.options.slidesToShow;\n\n // in non-infinite sliders, we don't want to go past the\n // last visible index.\n if( !_.options.infinite && ( _.currentSlide > lastVisibleIndex )) {\n _.currentSlide = lastVisibleIndex;\n }\n\n // if less slides than to show, go to start.\n if ( _.slideCount <= _.options.slidesToShow ) {\n _.currentSlide = 0;\n\n }\n\n currentSlide = _.currentSlide;\n\n _.destroy(true);\n\n $.extend(_, _.initials, { currentSlide: currentSlide });\n\n _.init();\n\n if( !initializing ) {\n\n _.changeSlide({\n data: {\n message: 'index',\n index: currentSlide\n }\n }, false);\n\n }\n\n };\n\n Slick.prototype.registerBreakpoints = function() {\n\n var _ = this, breakpoint, currentBreakpoint, l,\n responsiveSettings = _.options.responsive || null;\n\n if ( $.type(responsiveSettings) === 'array' && responsiveSettings.length ) {\n\n _.respondTo = _.options.respondTo || 'window';\n\n for ( breakpoint in responsiveSettings ) {\n\n l = _.breakpoints.length-1;\n\n if (responsiveSettings.hasOwnProperty(breakpoint)) {\n currentBreakpoint = responsiveSettings[breakpoint].breakpoint;\n\n // loop through the breakpoints and cut out any existing\n // ones with the same breakpoint number, we don't want dupes.\n while( l >= 0 ) {\n if( _.breakpoints[l] && _.breakpoints[l] === currentBreakpoint ) {\n _.breakpoints.splice(l,1);\n }\n l--;\n }\n\n _.breakpoints.push(currentBreakpoint);\n _.breakpointSettings[currentBreakpoint] = responsiveSettings[breakpoint].settings;\n\n }\n\n }\n\n _.breakpoints.sort(function(a, b) {\n return ( _.options.mobileFirst ) ? a-b : b-a;\n });\n\n }\n\n };\n\n Slick.prototype.reinit = function() {\n\n var _ = this;\n\n _.$slides =\n _.$slideTrack\n .children(_.options.slide)\n .addClass('slick-slide');\n\n _.slideCount = _.$slides.length;\n\n if (_.currentSlide >= _.slideCount && _.currentSlide !== 0) {\n _.currentSlide = _.currentSlide - _.options.slidesToScroll;\n }\n\n if (_.slideCount <= _.options.slidesToShow) {\n _.currentSlide = 0;\n }\n\n _.registerBreakpoints();\n\n _.setProps();\n _.setupInfinite();\n _.buildArrows();\n _.updateArrows();\n _.initArrowEvents();\n _.buildDots();\n _.updateDots();\n _.initDotEvents();\n _.cleanUpSlideEvents();\n _.initSlideEvents();\n\n _.checkResponsive(false, true);\n\n if (_.options.focusOnSelect === true) {\n $(_.$slideTrack).children().on('click.slick', _.selectHandler);\n }\n\n _.setSlideClasses(typeof _.currentSlide === 'number' ? _.currentSlide : 0);\n\n _.setPosition();\n _.focusHandler();\n\n _.paused = !_.options.autoplay;\n _.autoPlay();\n\n _.$slider.trigger('reInit', [_]);\n\n };\n\n Slick.prototype.resize = function() {\n\n var _ = this;\n\n if ($(window).width() !== _.windowWidth) {\n clearTimeout(_.windowDelay);\n _.windowDelay = window.setTimeout(function() {\n _.windowWidth = $(window).width();\n _.checkResponsive();\n if( !_.unslicked ) { _.setPosition(); }\n }, 50);\n }\n };\n\n Slick.prototype.removeSlide = Slick.prototype.slickRemove = function(index, removeBefore, removeAll) {\n\n var _ = this;\n\n if (typeof(index) === 'boolean') {\n removeBefore = index;\n index = removeBefore === true ? 0 : _.slideCount - 1;\n } else {\n index = removeBefore === true ? --index : index;\n }\n\n if (_.slideCount < 1 || index < 0 || index > _.slideCount - 1) {\n return false;\n }\n\n _.unload();\n\n if (removeAll === true) {\n _.$slideTrack.children().remove();\n } else {\n _.$slideTrack.children(this.options.slide).eq(index).remove();\n }\n\n _.$slides = _.$slideTrack.children(this.options.slide);\n\n _.$slideTrack.children(this.options.slide).detach();\n\n _.$slideTrack.append(_.$slides);\n\n _.$slidesCache = _.$slides;\n\n _.reinit();\n\n };\n\n Slick.prototype.setCSS = function(position) {\n\n var _ = this,\n positionProps = {},\n x, y;\n\n if (_.options.rtl === true) {\n position = -position;\n }\n x = _.positionProp == 'left' ? Math.ceil(position) + 'px' : '0px';\n y = _.positionProp == 'top' ? Math.ceil(position) + 'px' : '0px';\n\n positionProps[_.positionProp] = position;\n\n if (_.transformsEnabled === false) {\n _.$slideTrack.css(positionProps);\n } else {\n positionProps = {};\n if (_.cssTransitions === false) {\n positionProps[_.animType] = 'translate(' + x + ', ' + y + ')';\n _.$slideTrack.css(positionProps);\n } else {\n positionProps[_.animType] = 'translate3d(' + x + ', ' + y + ', 0px)';\n _.$slideTrack.css(positionProps);\n }\n }\n\n };\n\n Slick.prototype.setDimensions = function() {\n\n var _ = this;\n\n if (_.options.vertical === false) {\n if (_.options.centerMode === true) {\n _.$list.css({\n padding: ('0px ' + _.options.centerPadding)\n });\n }\n } else {\n _.$list.height(_.$slides.first().outerHeight(true) * _.options.slidesToShow);\n if (_.options.centerMode === true) {\n _.$list.css({\n padding: (_.options.centerPadding + ' 0px')\n });\n }\n }\n\n _.listWidth = _.$list.width();\n _.listHeight = _.$list.height();\n\n\n if (_.options.vertical === false && _.options.variableWidth === false) {\n _.slideWidth = _.listWidth / _.options.slidesToShow;\n _.$slideTrack.width(Math.ceil((_.slideWidth * _.$slideTrack.children('.slick-slide').length)));\n\n } else if (_.options.variableWidth === true) {\n _.$slideTrack.width(5000 * _.slideCount);\n } else {\n _.slideWidth = Math.ceil(_.listWidth);\n _.$slideTrack.height(Math.ceil((_.$slides.first().outerHeight(true) * _.$slideTrack.children('.slick-slide').length)));\n }\n\n var offset = _.$slides.first().outerWidth(true) - _.$slides.first().width();\n if (_.options.variableWidth === false) _.$slideTrack.children('.slick-slide').width(_.slideWidth - offset);\n\n };\n\n Slick.prototype.setFade = function() {\n\n var _ = this,\n targetLeft;\n\n _.$slides.each(function(index, element) {\n targetLeft = (_.slideWidth * index) * -1;\n if (_.options.rtl === true) {\n $(element).css({\n position: 'relative',\n right: targetLeft,\n top: 0,\n zIndex: _.options.zIndex - 2,\n opacity: 0\n });\n } else {\n $(element).css({\n position: 'relative',\n left: targetLeft,\n top: 0,\n zIndex: _.options.zIndex - 2,\n opacity: 0\n });\n }\n });\n\n _.$slides.eq(_.currentSlide).css({\n zIndex: _.options.zIndex - 1,\n opacity: 1\n });\n\n };\n\n Slick.prototype.setHeight = function() {\n\n var _ = this;\n\n if (_.options.slidesToShow === 1 && _.options.adaptiveHeight === true && _.options.vertical === false) {\n var targetHeight = _.$slides.eq(_.currentSlide).outerHeight(true);\n _.$list.css('height', targetHeight);\n }\n\n };\n\n Slick.prototype.setOption =\n Slick.prototype.slickSetOption = function() {\n\n /**\n * accepts arguments in format of:\n *\n * - for changing a single option's value:\n * .slick(\"setOption\", option, value, refresh )\n *\n * - for changing a set of responsive options:\n * .slick(\"setOption\", 'responsive', [{}, ...], refresh )\n *\n * - for updating multiple values at once (not responsive)\n * .slick(\"setOption\", { 'option': value, ... }, refresh )\n */\n\n var _ = this, l, item, option, value, refresh = false, type;\n\n if( $.type( arguments[0] ) === 'object' ) {\n\n option = arguments[0];\n refresh = arguments[1];\n type = 'multiple';\n\n } else if ( $.type( arguments[0] ) === 'string' ) {\n\n option = arguments[0];\n value = arguments[1];\n refresh = arguments[2];\n\n if ( arguments[0] === 'responsive' && $.type( arguments[1] ) === 'array' ) {\n\n type = 'responsive';\n\n } else if ( typeof arguments[1] !== 'undefined' ) {\n\n type = 'single';\n\n }\n\n }\n\n if ( type === 'single' ) {\n\n _.options[option] = value;\n\n\n } else if ( type === 'multiple' ) {\n\n $.each( option , function( opt, val ) {\n\n _.options[opt] = val;\n\n });\n\n\n } else if ( type === 'responsive' ) {\n\n for ( item in value ) {\n\n if( $.type( _.options.responsive ) !== 'array' ) {\n\n _.options.responsive = [ value[item] ];\n\n } else {\n\n l = _.options.responsive.length-1;\n\n // loop through the responsive object and splice out duplicates.\n while( l >= 0 ) {\n\n if( _.options.responsive[l].breakpoint === value[item].breakpoint ) {\n\n _.options.responsive.splice(l,1);\n\n }\n\n l--;\n\n }\n\n _.options.responsive.push( value[item] );\n\n }\n\n }\n\n }\n\n if ( refresh ) {\n\n _.unload();\n _.reinit();\n\n }\n\n };\n\n Slick.prototype.setPosition = function() {\n\n var _ = this;\n\n _.setDimensions();\n\n _.setHeight();\n\n if (_.options.fade === false) {\n _.setCSS(_.getLeft(_.currentSlide));\n } else {\n _.setFade();\n }\n\n _.$slider.trigger('setPosition', [_]);\n\n };\n\n Slick.prototype.setProps = function() {\n\n var _ = this,\n bodyStyle = document.body.style;\n\n _.positionProp = _.options.vertical === true ? 'top' : 'left';\n\n if (_.positionProp === 'top') {\n _.$slider.addClass('slick-vertical');\n } else {\n _.$slider.removeClass('slick-vertical');\n }\n\n if (bodyStyle.WebkitTransition !== undefined ||\n bodyStyle.MozTransition !== undefined ||\n bodyStyle.msTransition !== undefined) {\n if (_.options.useCSS === true) {\n _.cssTransitions = true;\n }\n }\n\n if ( _.options.fade ) {\n if ( typeof _.options.zIndex === 'number' ) {\n if( _.options.zIndex < 3 ) {\n _.options.zIndex = 3;\n }\n } else {\n _.options.zIndex = _.defaults.zIndex;\n }\n }\n\n if (bodyStyle.OTransform !== undefined) {\n _.animType = 'OTransform';\n _.transformType = '-o-transform';\n _.transitionType = 'OTransition';\n if (bodyStyle.perspectiveProperty === undefined && bodyStyle.webkitPerspective === undefined) _.animType = false;\n }\n if (bodyStyle.MozTransform !== undefined) {\n _.animType = 'MozTransform';\n _.transformType = '-moz-transform';\n _.transitionType = 'MozTransition';\n if (bodyStyle.perspectiveProperty === undefined && bodyStyle.MozPerspective === undefined) _.animType = false;\n }\n if (bodyStyle.webkitTransform !== undefined) {\n _.animType = 'webkitTransform';\n _.transformType = '-webkit-transform';\n _.transitionType = 'webkitTransition';\n if (bodyStyle.perspectiveProperty === undefined && bodyStyle.webkitPerspective === undefined) _.animType = false;\n }\n if (bodyStyle.msTransform !== undefined) {\n _.animType = 'msTransform';\n _.transformType = '-ms-transform';\n _.transitionType = 'msTransition';\n if (bodyStyle.msTransform === undefined) _.animType = false;\n }\n if (bodyStyle.transform !== undefined && _.animType !== false) {\n _.animType = 'transform';\n _.transformType = 'transform';\n _.transitionType = 'transition';\n }\n _.transformsEnabled = _.options.useTransform && (_.animType !== null && _.animType !== false);\n };\n\n\n Slick.prototype.setSlideClasses = function(index) {\n\n var _ = this,\n centerOffset, allSlides, indexOffset, remainder;\n\n allSlides = _.$slider\n .find('.slick-slide')\n .removeClass('slick-active slick-center slick-current')\n .attr('aria-hidden', 'true');\n\n _.$slides\n .eq(index)\n .addClass('slick-current');\n\n if (_.options.centerMode === true) {\n\n var evenCoef = _.options.slidesToShow % 2 === 0 ? 1 : 0;\n\n centerOffset = Math.floor(_.options.slidesToShow / 2);\n\n if (_.options.infinite === true) {\n\n if (index >= centerOffset && index <= (_.slideCount - 1) - centerOffset) {\n _.$slides\n .slice(index - centerOffset + evenCoef, index + centerOffset + 1)\n .addClass('slick-active')\n .attr('aria-hidden', 'false');\n\n } else {\n\n indexOffset = _.options.slidesToShow + index;\n allSlides\n .slice(indexOffset - centerOffset + 1 + evenCoef, indexOffset + centerOffset + 2)\n .addClass('slick-active')\n .attr('aria-hidden', 'false');\n\n }\n\n if (index === 0) {\n\n allSlides\n .eq(allSlides.length - 1 - _.options.slidesToShow)\n .addClass('slick-center');\n\n } else if (index === _.slideCount - 1) {\n\n allSlides\n .eq(_.options.slidesToShow)\n .addClass('slick-center');\n\n }\n\n }\n\n _.$slides\n .eq(index)\n .addClass('slick-center');\n\n } else {\n\n if (index >= 0 && index <= (_.slideCount - _.options.slidesToShow)) {\n\n _.$slides\n .slice(index, index + _.options.slidesToShow)\n .addClass('slick-active')\n .attr('aria-hidden', 'false');\n\n } else if (allSlides.length <= _.options.slidesToShow) {\n\n allSlides\n .addClass('slick-active')\n .attr('aria-hidden', 'false');\n\n } else {\n\n remainder = _.slideCount % _.options.slidesToShow;\n indexOffset = _.options.infinite === true ? _.options.slidesToShow + index : index;\n\n if (_.options.slidesToShow == _.options.slidesToScroll && (_.slideCount - index) < _.options.slidesToShow) {\n\n allSlides\n .slice(indexOffset - (_.options.slidesToShow - remainder), indexOffset + remainder)\n .addClass('slick-active')\n .attr('aria-hidden', 'false');\n\n } else {\n\n allSlides\n .slice(indexOffset, indexOffset + _.options.slidesToShow)\n .addClass('slick-active')\n .attr('aria-hidden', 'false');\n\n }\n\n }\n\n }\n\n if (_.options.lazyLoad === 'ondemand' || _.options.lazyLoad === 'anticipated') {\n _.lazyLoad();\n }\n };\n\n Slick.prototype.setupInfinite = function() {\n\n var _ = this,\n i, slideIndex, infiniteCount;\n\n if (_.options.fade === true) {\n _.options.centerMode = false;\n }\n\n if (_.options.infinite === true && _.options.fade === false) {\n\n slideIndex = null;\n\n if (_.slideCount > _.options.slidesToShow) {\n\n if (_.options.centerMode === true) {\n infiniteCount = _.options.slidesToShow + 1;\n } else {\n infiniteCount = _.options.slidesToShow;\n }\n\n for (i = _.slideCount; i > (_.slideCount -\n infiniteCount); i -= 1) {\n slideIndex = i - 1;\n $(_.$slides[slideIndex]).clone(true).attr('id', '')\n .attr('data-slick-index', slideIndex - _.slideCount)\n .prependTo(_.$slideTrack).addClass('slick-cloned');\n }\n for (i = 0; i < infiniteCount + _.slideCount; i += 1) {\n slideIndex = i;\n $(_.$slides[slideIndex]).clone(true).attr('id', '')\n .attr('data-slick-index', slideIndex + _.slideCount)\n .appendTo(_.$slideTrack).addClass('slick-cloned');\n }\n _.$slideTrack.find('.slick-cloned').find('[id]').each(function() {\n $(this).attr('id', '');\n });\n\n }\n\n }\n\n };\n\n Slick.prototype.interrupt = function( toggle ) {\n\n var _ = this;\n\n if( !toggle ) {\n _.autoPlay();\n }\n _.interrupted = toggle;\n\n };\n\n Slick.prototype.selectHandler = function(event) {\n\n var _ = this;\n\n var targetElement =\n $(event.target).is('.slick-slide') ?\n $(event.target) :\n $(event.target).parents('.slick-slide');\n\n var index = parseInt(targetElement.attr('data-slick-index'));\n\n if (!index) index = 0;\n\n if (_.slideCount <= _.options.slidesToShow) {\n\n _.slideHandler(index, false, true);\n return;\n\n }\n\n _.slideHandler(index);\n\n };\n\n Slick.prototype.slideHandler = function(index, sync, dontAnimate) {\n\n var targetSlide, animSlide, oldSlide, slideLeft, targetLeft = null,\n _ = this, navTarget;\n\n sync = sync || false;\n\n if (_.animating === true && _.options.waitForAnimate === true) {\n return;\n }\n\n if (_.options.fade === true && _.currentSlide === index) {\n return;\n }\n\n if (sync === false) {\n _.asNavFor(index);\n }\n\n targetSlide = index;\n targetLeft = _.getLeft(targetSlide);\n slideLeft = _.getLeft(_.currentSlide);\n\n _.currentLeft = _.swipeLeft === null ? slideLeft : _.swipeLeft;\n\n if (_.options.infinite === false && _.options.centerMode === false && (index < 0 || index > _.getDotCount() * _.options.slidesToScroll)) {\n if (_.options.fade === false) {\n targetSlide = _.currentSlide;\n if (dontAnimate !== true && _.slideCount > _.options.slidesToShow) {\n _.animateSlide(slideLeft, function() {\n _.postSlide(targetSlide);\n });\n } else {\n _.postSlide(targetSlide);\n }\n }\n return;\n } else if (_.options.infinite === false && _.options.centerMode === true && (index < 0 || index > (_.slideCount - _.options.slidesToScroll))) {\n if (_.options.fade === false) {\n targetSlide = _.currentSlide;\n if (dontAnimate !== true && _.slideCount > _.options.slidesToShow) {\n _.animateSlide(slideLeft, function() {\n _.postSlide(targetSlide);\n });\n } else {\n _.postSlide(targetSlide);\n }\n }\n return;\n }\n\n if ( _.options.autoplay ) {\n clearInterval(_.autoPlayTimer);\n }\n\n if (targetSlide < 0) {\n if (_.slideCount % _.options.slidesToScroll !== 0) {\n animSlide = _.slideCount - (_.slideCount % _.options.slidesToScroll);\n } else {\n animSlide = _.slideCount + targetSlide;\n }\n } else if (targetSlide >= _.slideCount) {\n if (_.slideCount % _.options.slidesToScroll !== 0) {\n animSlide = 0;\n } else {\n animSlide = targetSlide - _.slideCount;\n }\n } else {\n animSlide = targetSlide;\n }\n\n _.animating = true;\n\n _.$slider.trigger('beforeChange', [_, _.currentSlide, animSlide]);\n\n oldSlide = _.currentSlide;\n _.currentSlide = animSlide;\n\n _.setSlideClasses(_.currentSlide);\n\n if ( _.options.asNavFor ) {\n\n navTarget = _.getNavTarget();\n navTarget = navTarget.slick('getSlick');\n\n if ( navTarget.slideCount <= navTarget.options.slidesToShow ) {\n navTarget.setSlideClasses(_.currentSlide);\n }\n\n }\n\n _.updateDots();\n _.updateArrows();\n\n if (_.options.fade === true) {\n if (dontAnimate !== true) {\n\n _.fadeSlideOut(oldSlide);\n\n _.fadeSlide(animSlide, function() {\n _.postSlide(animSlide);\n });\n\n } else {\n _.postSlide(animSlide);\n }\n _.animateHeight();\n return;\n }\n\n if (dontAnimate !== true && _.slideCount > _.options.slidesToShow) {\n _.animateSlide(targetLeft, function() {\n _.postSlide(animSlide);\n });\n } else {\n _.postSlide(animSlide);\n }\n\n };\n\n Slick.prototype.startLoad = function() {\n\n var _ = this;\n\n if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {\n\n _.$prevArrow.hide();\n _.$nextArrow.hide();\n\n }\n\n if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {\n\n _.$dots.hide();\n\n }\n\n _.$slider.addClass('slick-loading');\n\n };\n\n Slick.prototype.swipeDirection = function() {\n\n var xDist, yDist, r, swipeAngle, _ = this;\n\n xDist = _.touchObject.startX - _.touchObject.curX;\n yDist = _.touchObject.startY - _.touchObject.curY;\n r = Math.atan2(yDist, xDist);\n\n swipeAngle = Math.round(r * 180 / Math.PI);\n if (swipeAngle < 0) {\n swipeAngle = 360 - Math.abs(swipeAngle);\n }\n\n if ((swipeAngle <= 45) && (swipeAngle >= 0)) {\n return (_.options.rtl === false ? 'left' : 'right');\n }\n if ((swipeAngle <= 360) && (swipeAngle >= 315)) {\n return (_.options.rtl === false ? 'left' : 'right');\n }\n if ((swipeAngle >= 135) && (swipeAngle <= 225)) {\n return (_.options.rtl === false ? 'right' : 'left');\n }\n if (_.options.verticalSwiping === true) {\n if ((swipeAngle >= 35) && (swipeAngle <= 135)) {\n return 'down';\n } else {\n return 'up';\n }\n }\n\n return 'vertical';\n\n };\n\n Slick.prototype.swipeEnd = function(event) {\n\n var _ = this,\n slideCount,\n direction;\n\n _.dragging = false;\n _.swiping = false;\n\n if (_.scrolling) {\n _.scrolling = false;\n return false;\n }\n\n _.interrupted = false;\n _.shouldClick = ( _.touchObject.swipeLength > 10 ) ? false : true;\n\n if ( _.touchObject.curX === undefined ) {\n return false;\n }\n\n if ( _.touchObject.edgeHit === true ) {\n _.$slider.trigger('edge', [_, _.swipeDirection() ]);\n }\n\n if ( _.touchObject.swipeLength >= _.touchObject.minSwipe ) {\n\n direction = _.swipeDirection();\n\n switch ( direction ) {\n\n case 'left':\n case 'down':\n\n slideCount =\n _.options.swipeToSlide ?\n _.checkNavigable( _.currentSlide + _.getSlideCount() ) :\n _.currentSlide + _.getSlideCount();\n\n _.currentDirection = 0;\n\n break;\n\n case 'right':\n case 'up':\n\n slideCount =\n _.options.swipeToSlide ?\n _.checkNavigable( _.currentSlide - _.getSlideCount() ) :\n _.currentSlide - _.getSlideCount();\n\n _.currentDirection = 1;\n\n break;\n\n default:\n\n\n }\n\n if( direction != 'vertical' ) {\n\n _.slideHandler( slideCount );\n _.touchObject = {};\n _.$slider.trigger('swipe', [_, direction ]);\n\n }\n\n } else {\n\n if ( _.touchObject.startX !== _.touchObject.curX ) {\n\n _.slideHandler( _.currentSlide );\n _.touchObject = {};\n\n }\n\n }\n\n };\n\n Slick.prototype.swipeHandler = function(event) {\n\n var _ = this;\n\n if ((_.options.swipe === false) || ('ontouchend' in document && _.options.swipe === false)) {\n return;\n } else if (_.options.draggable === false && event.type.indexOf('mouse') !== -1) {\n return;\n }\n\n _.touchObject.fingerCount = event.originalEvent && event.originalEvent.touches !== undefined ?\n event.originalEvent.touches.length : 1;\n\n _.touchObject.minSwipe = _.listWidth / _.options\n .touchThreshold;\n\n if (_.options.verticalSwiping === true) {\n _.touchObject.minSwipe = _.listHeight / _.options\n .touchThreshold;\n }\n\n switch (event.data.action) {\n\n case 'start':\n _.swipeStart(event);\n break;\n\n case 'move':\n _.swipeMove(event);\n break;\n\n case 'end':\n _.swipeEnd(event);\n break;\n\n }\n\n };\n\n Slick.prototype.swipeMove = function(event) {\n\n var _ = this,\n edgeWasHit = false,\n curLeft, swipeDirection, swipeLength, positionOffset, touches, verticalSwipeLength;\n\n touches = event.originalEvent !== undefined ? event.originalEvent.touches : null;\n\n if (!_.dragging || _.scrolling || touches && touches.length !== 1) {\n return false;\n }\n\n curLeft = _.getLeft(_.currentSlide);\n\n _.touchObject.curX = touches !== undefined ? touches[0].pageX : event.clientX;\n _.touchObject.curY = touches !== undefined ? touches[0].pageY : event.clientY;\n\n _.touchObject.swipeLength = Math.round(Math.sqrt(\n Math.pow(_.touchObject.curX - _.touchObject.startX, 2)));\n\n verticalSwipeLength = Math.round(Math.sqrt(\n Math.pow(_.touchObject.curY - _.touchObject.startY, 2)));\n\n if (!_.options.verticalSwiping && !_.swiping && verticalSwipeLength > 4) {\n _.scrolling = true;\n return false;\n }\n\n if (_.options.verticalSwiping === true) {\n _.touchObject.swipeLength = verticalSwipeLength;\n }\n\n swipeDirection = _.swipeDirection();\n\n if (event.originalEvent !== undefined && _.touchObject.swipeLength > 4) {\n _.swiping = true;\n event.preventDefault();\n }\n\n positionOffset = (_.options.rtl === false ? 1 : -1) * (_.touchObject.curX > _.touchObject.startX ? 1 : -1);\n if (_.options.verticalSwiping === true) {\n positionOffset = _.touchObject.curY > _.touchObject.startY ? 1 : -1;\n }\n\n\n swipeLength = _.touchObject.swipeLength;\n\n _.touchObject.edgeHit = false;\n\n if (_.options.infinite === false) {\n if ((_.currentSlide === 0 && swipeDirection === 'right') || (_.currentSlide >= _.getDotCount() && swipeDirection === 'left')) {\n swipeLength = _.touchObject.swipeLength * _.options.edgeFriction;\n _.touchObject.edgeHit = true;\n }\n }\n\n if (_.options.vertical === false) {\n _.swipeLeft = curLeft + swipeLength * positionOffset;\n } else {\n _.swipeLeft = curLeft + (swipeLength * (_.$list.height() / _.listWidth)) * positionOffset;\n }\n if (_.options.verticalSwiping === true) {\n _.swipeLeft = curLeft + swipeLength * positionOffset;\n }\n\n if (_.options.fade === true || _.options.touchMove === false) {\n return false;\n }\n\n if (_.animating === true) {\n _.swipeLeft = null;\n return false;\n }\n\n _.setCSS(_.swipeLeft);\n\n };\n\n Slick.prototype.swipeStart = function(event) {\n\n var _ = this,\n touches;\n\n _.interrupted = true;\n\n if (_.touchObject.fingerCount !== 1 || _.slideCount <= _.options.slidesToShow) {\n _.touchObject = {};\n return false;\n }\n\n if (event.originalEvent !== undefined && event.originalEvent.touches !== undefined) {\n touches = event.originalEvent.touches[0];\n }\n\n _.touchObject.startX = _.touchObject.curX = touches !== undefined ? touches.pageX : event.clientX;\n _.touchObject.startY = _.touchObject.curY = touches !== undefined ? touches.pageY : event.clientY;\n\n _.dragging = true;\n\n };\n\n Slick.prototype.unfilterSlides = Slick.prototype.slickUnfilter = function() {\n\n var _ = this;\n\n if (_.$slidesCache !== null) {\n\n _.unload();\n\n _.$slideTrack.children(this.options.slide).detach();\n\n _.$slidesCache.appendTo(_.$slideTrack);\n\n _.reinit();\n\n }\n\n };\n\n Slick.prototype.unload = function() {\n\n var _ = this;\n\n $('.slick-cloned', _.$slider).remove();\n\n if (_.$dots) {\n _.$dots.remove();\n }\n\n if (_.$prevArrow && _.htmlExpr.test(_.options.prevArrow)) {\n _.$prevArrow.remove();\n }\n\n if (_.$nextArrow && _.htmlExpr.test(_.options.nextArrow)) {\n _.$nextArrow.remove();\n }\n\n _.$slides\n .removeClass('slick-slide slick-active slick-visible slick-current')\n .attr('aria-hidden', 'true')\n .css('width', '');\n\n };\n\n Slick.prototype.unslick = function(fromBreakpoint) {\n\n var _ = this;\n _.$slider.trigger('unslick', [_, fromBreakpoint]);\n _.destroy();\n\n };\n\n Slick.prototype.updateArrows = function() {\n\n var _ = this,\n centerOffset;\n\n centerOffset = Math.floor(_.options.slidesToShow / 2);\n\n if ( _.options.arrows === true &&\n _.slideCount > _.options.slidesToShow &&\n !_.options.infinite ) {\n\n _.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n _.$nextArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n\n if (_.currentSlide === 0) {\n\n _.$prevArrow.addClass('slick-disabled').attr('aria-disabled', 'true');\n _.$nextArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n\n } else if (_.currentSlide >= _.slideCount - _.options.slidesToShow && _.options.centerMode === false) {\n\n _.$nextArrow.addClass('slick-disabled').attr('aria-disabled', 'true');\n _.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n\n } else if (_.currentSlide >= _.slideCount - 1 && _.options.centerMode === true) {\n\n _.$nextArrow.addClass('slick-disabled').attr('aria-disabled', 'true');\n _.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n\n }\n\n }\n\n };\n\n Slick.prototype.updateDots = function() {\n\n var _ = this;\n\n if (_.$dots !== null) {\n\n _.$dots\n .find('li')\n .removeClass('slick-active')\n .end();\n\n _.$dots\n .find('li')\n .eq(Math.floor(_.currentSlide / _.options.slidesToScroll))\n .addClass('slick-active');\n\n }\n\n };\n\n Slick.prototype.visibility = function() {\n\n var _ = this;\n\n if ( _.options.autoplay ) {\n\n if ( document[_.hidden] ) {\n\n _.interrupted = true;\n\n } else {\n\n _.interrupted = false;\n\n }\n\n }\n\n };\n\n $.fn.slick = function() {\n var _ = this,\n opt = arguments[0],\n args = Array.prototype.slice.call(arguments, 1),\n l = _.length,\n i,\n ret;\n for (i = 0; i < l; i++) {\n if (typeof opt == 'object' || typeof opt == 'undefined')\n _[i].slick = new Slick(_[i], opt);\n else\n ret = _[i].slick[opt].apply(_[i].slick, args);\n if (typeof ret != 'undefined') return ret;\n }\n return _;\n };\n\n}));\n\n},{\"jquery\":135}],158:[function(require,module,exports){\n(function (global, factory) {\n\ttypeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :\n\ttypeof define === 'function' && define.amd ? define(['exports'], factory) :\n\t(factory((global.SpriteSpin = {})));\n}(this, (function (exports) { 'use strict';\n\n/**\n * @internal\n */\nvar Api = /** @class */ (function () {\n function Api(data) {\n this.data = data;\n }\n return Api;\n}());\n/**\n * Adds methods to the SpriteSpin api\n *\n * @public\n */\nfunction extendApi(methods) {\n var api = Api.prototype;\n for (var key in methods) {\n if (methods.hasOwnProperty(key)) {\n if (api[key]) {\n throw new Error('API method is already defined: ' + key);\n }\n else {\n api[key] = methods[key];\n }\n }\n }\n return api;\n}\n\nvar $$1 = window.jQuery || window.$;\n\nfunction getCursorPosition(event) {\n var touches = event.touches;\n var source = event;\n // jQuery Event normalization does not preserve the 'event.touches'\n // try to grab touches from the original event\n if (event.touches === undefined && event.originalEvent !== undefined) {\n touches = event.originalEvent.touches;\n }\n // get current touch or mouse position\n if (touches !== undefined && touches.length > 0) {\n source = touches[0];\n }\n return {\n x: source.clientX || 0,\n y: source.clientY || 0\n };\n}\n\nvar canvas;\nvar context;\nfunction detectionContext() {\n if (context) {\n return context;\n }\n if (!canvas) {\n canvas = document.createElement('canvas');\n }\n if (!canvas || !canvas.getContext) {\n return null;\n }\n context = canvas.getContext('2d');\n return context;\n}\n/**\n * Idea taken from https://github.com/stomita/ios-imagefile-megapixel\n * Detects whether the image has been sub sampled by the browser and does not have its original dimensions.\n * This method unfortunately does not work for images that have transparent background.\n */\nfunction detectSubsampling(img, width, height) {\n if (!detectionContext()) {\n return false;\n }\n // sub sampling happens on images above 1 megapixel\n if (width * height <= 1024 * 1024) {\n return false;\n }\n // set canvas to 1x1 pixel size and fill it with magenta color\n canvas.width = canvas.height = 1;\n context.fillStyle = '#FF00FF';\n context.fillRect(0, 0, 1, 1);\n // render the image with a negative offset to the left so that it would\n // fill the canvas pixel with the top right pixel of the image.\n context.drawImage(img, -width + 1, 0);\n // check color value to confirm image is covering edge pixel or not.\n // if color still magenta, the image is assumed to be sub sampled.\n try {\n var dat = context.getImageData(0, 0, 1, 1).data;\n return (dat[0] === 255) && (dat[1] === 0) && (dat[2] === 255);\n }\n catch (err) {\n // avoids cross origin exception for chrome when code runs without a server\n return false;\n }\n}\n\n/**\n *\n */\nfunction getOuterSize(data) {\n var width = Math.floor(data.width || data.frameWidth || data.target.innerWidth());\n var height = Math.floor(data.height || data.frameHeight || data.target.innerHeight());\n return {\n aspect: width / height,\n height: height,\n width: width\n };\n}\nfunction getComputedSize(data) {\n var size = getOuterSize(data);\n if (typeof window.getComputedStyle !== 'function') {\n return size;\n }\n var style = window.getComputedStyle(data.target[0]);\n if (!style.width) {\n return size;\n }\n size.width = Math.floor(Number(style.width.replace('px', '')));\n size.height = Math.floor(size.width / size.aspect);\n return size;\n}\n/**\n *\n */\nfunction getInnerSize(data) {\n var width = Math.floor(data.frameWidth || data.width || data.target.innerWidth());\n var height = Math.floor(data.frameHeight || data.height || data.target.innerHeight());\n return {\n aspect: width / height,\n height: height,\n width: width\n };\n}\n/**\n *\n */\nfunction getInnerLayout(mode, inner, outer) {\n // get mode\n var isFit = mode === 'fit';\n var isFill = mode === 'fill';\n var isMatch = mode === 'stretch';\n // resulting layout\n var layout = {\n width: '100%',\n height: '100%',\n top: 0,\n left: 0,\n bottom: 0,\n right: 0,\n position: 'absolute',\n overflow: 'hidden'\n };\n // no calculation here\n if (!mode || isMatch) {\n return layout;\n }\n // get size and aspect\n var aspectIsGreater = inner.aspect >= outer.aspect;\n // mode == original\n var width = inner.width;\n var height = inner.height;\n // keep aspect ratio but fit/fill into container\n if (isFit && aspectIsGreater || isFill && !aspectIsGreater) {\n width = outer.width;\n height = outer.width / inner.aspect;\n }\n if (isFill && aspectIsGreater || isFit && !aspectIsGreater) {\n height = outer.height;\n width = outer.height * inner.aspect;\n }\n // floor the numbers\n width = Math.floor(width);\n height = Math.floor(height);\n // position in center\n layout.width = width;\n layout.height = height;\n layout.top = Math.floor((outer.height - height) / 2);\n layout.left = Math.floor((outer.width - width) / 2);\n layout.right = layout.left;\n layout.bottom = layout.top;\n return layout;\n}\n\nvar img;\n/**\n * gets the original width and height of an image element\n */\nfunction naturalSize(image) {\n // for browsers that support naturalWidth and naturalHeight properties\n if (image.naturalWidth) {\n return {\n height: image.naturalHeight,\n width: image.naturalWidth\n };\n }\n // browsers that do not support naturalWidth and naturalHeight properties have to fall back to the width and\n // height properties. However, the image might have a css style applied so width and height would return the\n // css size. To avoid that create a new Image object that is free of css rules and grab width and height\n // properties\n //\n // assume that the src has already been downloaded, so no onload callback is needed.\n img = img || new Image();\n img.crossOrigin = image.crossOrigin;\n img.src = image.src;\n return {\n height: img.height,\n width: img.width\n };\n}\n\n/**\n * Measures the image frames that are used in the given data object\n */\nfunction measure(images, options) {\n if (images.length === 1) {\n return [measureSheet(images[0], options)];\n }\n else if (options.framesX && options.framesY) {\n return measureMutipleSheets(images, options);\n }\n else {\n return measureFrames(images, options);\n }\n}\nfunction measureSheet(image, options) {\n var result = { id: 0, sprites: [] };\n measureImage(image, options, result);\n var frames = options.frames;\n var framesX = Number(options.framesX) || frames;\n var framesY = Math.ceil(frames / framesX);\n var frameWidth = Math.floor(result.width / framesX);\n var frameHeight = Math.floor(result.height / framesY);\n var divisor = result.isSubsampled ? 2 : 1;\n for (var i = 0; i < frames; i++) {\n var x = (i % framesX) * frameWidth;\n var y = Math.floor(i / framesX) * frameHeight;\n result.sprites.push({\n id: i,\n x: x, y: y,\n width: frameWidth,\n height: frameHeight,\n sampledX: x / divisor,\n sampledY: y / divisor,\n sampledWidth: frameWidth / divisor,\n sampledHeight: frameHeight / divisor\n });\n }\n return result;\n}\nfunction measureFrames(images, options) {\n var result = [];\n for (var id = 0; id < images.length; id++) {\n // TODO: optimize\n // don't measure images with same size twice\n var sheet = measureSheet(images[id], { frames: 1, framesX: 1, detectSubsampling: options.detectSubsampling });\n sheet.id = id;\n result.push(sheet);\n }\n return result;\n}\nfunction measureMutipleSheets(images, options) {\n var result = [];\n for (var id = 0; id < images.length; id++) {\n // TODO: optimize\n // don't measure images with same size twice\n var sheet = measureSheet(images[id], {\n frames: undefined,\n framesX: options.framesX,\n framesY: options.framesY,\n detectSubsampling: options.detectSubsampling\n });\n sheet.id = id;\n result.push(sheet);\n }\n return result;\n}\nfunction measureImage(image, options, result) {\n var size = naturalSize(image);\n result.isSubsampled = options.detectSubsampling && detectSubsampling(image, size.width, size.height);\n result.width = size.width;\n result.height = size.height;\n result.sampledWidth = size.width / (result.isSubsampled ? 2 : 1);\n result.sampledHeight = size.height / (result.isSubsampled ? 2 : 1);\n return result;\n}\nfunction findSpecs(metrics, frames, frame, lane) {\n var spriteId = lane * frames + frame;\n var sheetId = 0;\n var sprite = null;\n var sheet = null;\n while (true) {\n sheet = metrics[sheetId];\n if (!sheet) {\n break;\n }\n if (spriteId >= sheet.sprites.length) {\n spriteId -= sheet.sprites.length;\n sheetId++;\n continue;\n }\n sprite = sheet.sprites[spriteId];\n break;\n }\n return { sprite: sprite, sheet: sheet };\n}\n\nfunction indexOf(element, arr) {\n for (var i = 0; i < arr.length; i++) {\n if (arr[i] === element) {\n return i;\n }\n }\n}\nfunction noop() {\n //\n}\nfunction preload(opts) {\n var src;\n var input = opts.source;\n src = typeof input === 'string' ? [input] : input;\n // const src: string[] = ? [opts.source] : opts.source\n var images = [];\n var targetCount = (opts.preloadCount || src.length);\n var onInitiated = opts.initiated || noop;\n var onProgress = opts.progress || noop;\n var onComplete = opts.complete || noop;\n var count = 0;\n var completed = false;\n var firstLoaded = false;\n var tick = function () {\n count += 1;\n onProgress({\n index: indexOf(this, images),\n loaded: count,\n total: src.length,\n percent: Math.round((count / src.length) * 100)\n });\n firstLoaded = firstLoaded || (this === images[0]);\n if (firstLoaded && !completed && (count >= targetCount)) {\n completed = true;\n onComplete(images);\n }\n };\n for (var _i = 0, src_1 = src; _i < src_1.length; _i++) {\n var url = src_1[_i];\n var img = new Image();\n // push result\n images.push(img);\n // https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image\n img.crossOrigin = opts.crossOrigin;\n // bind logic, don't care about abort/errors\n img.onload = img.onabort = img.onerror = tick;\n // begin load\n img.src = url;\n }\n onInitiated(images);\n}\n\nfunction padNumber(num, length, pad) {\n var result = String(num);\n while (result.length < length) {\n result = String(pad) + result;\n }\n return result;\n}\n/**\n * Generates an array of source strings\n *\n * @remarks\n * Takes a template string and generates an array of strings by interpolating {lane} and {frame} placeholders.\n *\n * ```\n * sourceArray('http://example.com/image_{frame}.jpg, { frame: [1, 3], digits: 2 })\n * // gives:\n * // [ 'http://example.com/image_01.jpg', 'http://example.com/image_02.jpg', 'http://example.com/image_03.jpg' ]\n *\n * sourceArray('http://example.com/image_FRAME.jpg, { frame: [1, 3], digits: 2, framePlacer: 'FRAME' })\n * // gives:\n * // [ 'http://example.com/image_01.jpg', 'http://example.com/image_02.jpg', 'http://example.com/image_03.jpg' ]\n * ```\n *\n * @param template - The template string\n * @param opts - Interpolation options\n *\n * @public\n */\nfunction sourceArray(template, opts) {\n var digits = opts.digits || 2;\n var lPlacer = opts.lanePlacer || '{lane}';\n var fPlacer = opts.framePlacer || '{frame}';\n var fStart = 0;\n var fEnd = 0;\n if (opts.frame) {\n fStart = opts.frame[0];\n fEnd = opts.frame[1];\n }\n var lStart = 0;\n var lEnd = 0;\n if (opts.lane) {\n lStart = opts.lane[0];\n lEnd = opts.lane[1];\n }\n var result = [];\n for (var lane = lStart; lane <= lEnd; lane += 1) {\n for (var frame = fStart; frame <= fEnd; frame += 1) {\n result.push(template\n .replace(lPlacer, padNumber(lane, digits, '0'))\n .replace(fPlacer, padNumber(frame, digits, '0')));\n }\n }\n return result;\n}\n\n/**\n * The namespace that is used to bind functions to DOM events and store the data object\n */\nvar namespace = 'spritespin';\n/**\n * Event names that are recognized by SpriteSpin. A module can implement any of these and they will be bound\n * to the target element on which the plugin is called.\n */\nvar eventNames = [\n 'mousedown',\n 'mousemove',\n 'mouseup',\n 'mouseenter',\n 'mouseover',\n 'mouseleave',\n 'mousewheel',\n 'wheel',\n 'click',\n 'dblclick',\n 'touchstart',\n 'touchmove',\n 'touchend',\n 'touchcancel',\n 'selectstart',\n 'gesturestart',\n 'gesturechange',\n 'gestureend'\n];\n/**\n *\n */\nvar callbackNames = [\n 'onInit',\n 'onProgress',\n 'onLoad',\n 'onFrameChanged',\n 'onFrame',\n 'onDraw',\n 'onComplete',\n 'onDestroy'\n];\n/**\n * Names of events for that the default behavior should be prevented.\n */\nvar eventsToPrevent = [\n 'dragstart'\n];\n/**\n * Default set of SpriteSpin options. This also represents the majority of data attributes that are used during the\n * lifetime of a SpriteSpin instance. The data is stored inside the target DOM element on which the plugin is called.\n */\nvar defaults = {\n source: undefined,\n width: undefined,\n height: undefined,\n frames: undefined,\n framesX: undefined,\n lanes: 1,\n sizeMode: undefined,\n renderer: 'canvas',\n lane: 0,\n frame: 0,\n frameTime: 40,\n animate: true,\n retainAnimate: false,\n reverse: false,\n loop: true,\n stopFrame: 0,\n wrap: true,\n wrapLane: false,\n sense: 1,\n senseLane: undefined,\n orientation: 'horizontal',\n detectSubsampling: true,\n preloadCount: undefined,\n touchScrollTimer: [200, 1500],\n responsive: undefined,\n plugins: undefined\n};\n\nfunction noop$1() {\n // noop\n}\nfunction wrapConsole(type) {\n return console && console[type] ? function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return console.log.apply(console, args);\n } : noop$1;\n}\nvar log = wrapConsole('log');\nvar warn = wrapConsole('warn');\nvar error = wrapConsole('error');\nfunction toArray(value) {\n return Array.isArray(value) ? value : [value];\n}\n/**\n * clamps the given value by the given min and max values\n */\nfunction clamp(value, min, max) {\n return (value > max ? max : (value < min ? min : value));\n}\n/**\n *\n */\nfunction wrap(value, min, max, size) {\n while (value > max) {\n value -= size;\n }\n while (value < min) {\n value += size;\n }\n return value;\n}\n/**\n * prevents default action on the given event\n */\nfunction prevent(e) {\n e.preventDefault();\n return false;\n}\n/**\n * Binds on the given target and event the given function.\n * The SpriteSpin namespace is attached to the event name\n */\nfunction bind(target, event, func) {\n if (func) {\n target.bind(event + '.' + namespace, function (e) {\n func.apply(target, [e, target.spritespin('data')]);\n });\n }\n}\n/**\n * Unbinds all SpriteSpin events from given target element\n */\nfunction unbind(target) {\n target.unbind('.' + namespace);\n}\n/**\n * Checks if given object is a function\n */\nfunction isFunction(fn) {\n return typeof fn === 'function';\n}\nfunction pixelRatio(context) {\n var devicePixelRatio = window.devicePixelRatio || 1;\n var backingStoreRatio = context.webkitBackingStorePixelRatio ||\n context.mozBackingStorePixelRatio ||\n context.msBackingStorePixelRatio ||\n context.oBackingStorePixelRatio ||\n context.backingStorePixelRatio || 1;\n return devicePixelRatio / backingStoreRatio;\n}\n\n/**\n * Applies css attributes to layout the SpriteSpin containers.\n *\n * @internal\n */\nfunction applyLayout(data) {\n // disable selection\n data.target\n .attr('unselectable', 'on')\n .css({\n width: '',\n height: '',\n '-ms-user-select': 'none',\n '-moz-user-select': 'none',\n '-khtml-user-select': 'none',\n '-webkit-user-select': 'none',\n 'user-select': 'none'\n });\n var size = data.responsive ? getComputedSize(data) : getOuterSize(data);\n var layout = getInnerLayout(data.sizeMode, getInnerSize(data), size);\n // apply layout on target\n data.target.css({\n width: size.width,\n height: size.height,\n position: 'relative',\n overflow: 'hidden'\n });\n // apply layout on stage\n data.stage\n .css(layout)\n .hide();\n if (!data.canvas) {\n return;\n }\n // apply layout on canvas\n data.canvas.css(layout).hide();\n // apply pixel ratio on canvas\n data.canvasRatio = data.canvasRatio || pixelRatio(data.context);\n if (typeof layout.width === 'number' && typeof layout.height === 'number') {\n data.canvas[0].width = (layout.width * data.canvasRatio) || size.width;\n data.canvas[0].height = (layout.height * data.canvasRatio) || size.height;\n }\n else {\n data.canvas[0].width = (size.width * data.canvasRatio);\n data.canvas[0].height = (size.height * data.canvasRatio);\n }\n // width and height must be set before calling scale\n data.context.scale(data.canvasRatio, data.canvasRatio);\n}\n\n/**\n * Gets a state object by name.\n * @internal\n * @param data - The SpriteSpin instance data\n * @param name - The name of the state object\n */\nfunction getState(data, name) {\n data.state = data.state || {};\n data.state[name] = data.state[name] || {};\n return data.state[name];\n}\n/**\n * Gets a plugin state object by name.\n *\n * @remarks\n * Plugins should use this method to get or create a state object where they can\n * store any instance variables.\n *\n * @public\n * @param data - The SpriteSpin instance data\n * @param name - The name of the plugin\n */\nfunction getPluginState(data, name) {\n var state = getState(data, 'plugin');\n state[name] = state[name] || {};\n return state[name];\n}\n/**\n * Checks whether a flag is set. See {@link flag}.\n *\n * @public\n * @param data - The SpriteSpin instance data\n * @param key - The name of the flag\n */\nfunction is(data, key) {\n return !!getState(data, 'flags')[key];\n}\n/**\n * Sets a flag value. See {@link is}.\n *\n * @public\n * @param data - The SpriteSpin instance data\n * @param key - The name of the flag\n * @param value - The value to set\n */\nfunction flag(data, key, value) {\n getState(data, 'flags')[key] = !!value;\n}\n\n/**\n * Gets the playback state\n *\n * @public\n * @param data - The SpriteSpin instance data\n */\nfunction getPlaybackState(data) {\n return getState(data, 'playback');\n}\nfunction updateLane(data, lane) {\n data.lane = data.wrapLane\n ? wrap(lane, 0, data.lanes - 1, data.lanes)\n : clamp(lane, 0, data.lanes - 1);\n}\nfunction updateAnimationFrame(data) {\n data.frame += (data.reverse ? -1 : 1);\n // wrap the frame value to fit in range [0, data.frames)\n data.frame = wrap(data.frame, 0, data.frames - 1, data.frames);\n // stop animation if loop is disabled and the stopFrame is reached\n if (!data.loop && (data.frame === data.stopFrame)) {\n stopAnimation(data);\n }\n}\nfunction updateInputFrame(data, frame) {\n data.frame = Number(frame);\n data.frame = data.wrap\n ? wrap(data.frame, 0, data.frames - 1, data.frames)\n : clamp(data.frame, 0, data.frames - 1);\n}\nfunction updateAnimation(data) {\n var state = getPlaybackState(data);\n if (state.handler) {\n updateBefore(data);\n updateAnimationFrame(data);\n updateAfter(data);\n }\n}\nfunction updateBefore(data) {\n var state = getPlaybackState(data);\n state.lastFrame = data.frame;\n state.lastLane = data.lane;\n}\nfunction updateAfter(data) {\n var state = getPlaybackState(data);\n if (state.lastFrame !== data.frame || state.lastLane !== data.lane) {\n data.target.trigger('onFrameChanged.' + namespace, data);\n }\n data.target.trigger('onFrame.' + namespace, data);\n data.target.trigger('onDraw.' + namespace, data);\n}\n/**\n * Updates the frame or lane number of the SpriteSpin data.\n *\n * @public\n * @param data - The SpriteSpin instance data\n * @param frame - The frame number to set\n * @param lane - The lane number to set\n */\nfunction updateFrame(data, frame, lane) {\n updateBefore(data);\n if (frame != null) {\n updateInputFrame(data, frame);\n }\n if (lane != null) {\n updateLane(data, lane);\n }\n updateAfter(data);\n}\n/**\n * Stops the running animation.\n *\n * @public\n * @param data - The SpriteSpin instance data\n */\nfunction stopAnimation(data) {\n data.animate = false;\n var state = getPlaybackState(data);\n if (state.handler != null) {\n window.clearInterval(state.handler);\n state.handler = null;\n }\n}\n/**\n * Starts animation playback if needed.\n *\n * @remarks\n * Starts animation playback if `animate` property is `true` and the animation is not yet running.\n *\n * @public\n * @param data - The SpriteSpin instance data\n */\nfunction applyAnimation(data) {\n var state = getPlaybackState(data);\n if (state.handler && (!data.animate || state.frameTime !== data.frameTime)) {\n stopAnimation(data);\n }\n if (data.animate && !state.handler) {\n state.frameTime = data.frameTime;\n state.handler = window.setInterval(function () { return updateAnimation(data); }, state.frameTime);\n }\n}\n/**\n * Starts the animation playback\n *\n * @remarks\n * Starts the animation playback and also sets the `animate` property to `true`\n *\n * @public\n * @param data - The SpriteSpin instance data\n */\nfunction startAnimation(data) {\n data.animate = true;\n applyAnimation(data);\n}\n\nvar plugins = {};\n/**\n * Registers a plugin.\n *\n * @remarks\n * Use this to add custom Rendering or Updating modules that can be addressed with the 'module' option.\n *\n * @public\n * @param name - The name of the plugin\n * @param plugin - The plugin implementation\n */\nfunction registerPlugin(name, plugin) {\n if (plugins[name]) {\n error(\"Plugin name \\\"\" + name + \"\\\" is already taken\");\n return;\n }\n plugin = plugin || {};\n plugins[name] = plugin;\n return plugin;\n}\n/**\n * Registers a plugin.\n *\n * @public\n * @deprecated Use {@link registerPlugin} instead\n * @param name - The name of the plugin\n * @param plugin - The plugin implementation\n */\nfunction registerModule(name, plugin) {\n warn('\"registerModule\" is deprecated, use \"registerPlugin\" instead');\n registerPlugin(name, plugin);\n}\n/**\n * Gets an active plugin by name\n *\n * @internal\n * @param name - The name of the plugin\n */\nfunction getPlugin(name) {\n return plugins[name];\n}\n/**\n * Replaces module names on given SpriteSpin data and replaces them with actual implementations.\n * @internal\n */\nfunction applyPlugins(data) {\n fixPlugins(data);\n for (var i = 0; i < data.plugins.length; i += 1) {\n var name_1 = data.plugins[i];\n if (typeof name_1 !== 'string') {\n continue;\n }\n var plugin = getPlugin(name_1);\n if (!plugin) {\n error('No plugin found with name ' + name_1);\n continue;\n }\n data.plugins[i] = plugin;\n }\n}\nfunction fixPlugins(data) {\n // tslint:disable no-string-literal\n if (data['mods']) {\n warn('\"mods\" option is deprecated, use \"plugins\" instead');\n data.plugins = data['mods'];\n delete data['mods'];\n }\n if (data['behavior']) {\n warn('\"behavior\" option is deprecated, use \"plugins\" instead');\n data.plugins.push(data['behavior']);\n delete data['behavior'];\n }\n if (data['module']) {\n warn('\"module\" option is deprecated, use \"plugins\" instead');\n data.plugins.push(data['module']);\n delete data['module'];\n }\n}\n\nvar $$2 = $$1;\nvar counter = 0;\n/**\n * Collection of all SpriteSpin instances\n */\nvar instances = {};\nfunction pushInstance(data) {\n counter += 1;\n data.id = String(counter);\n instances[data.id] = data;\n}\nfunction popInstance(data) {\n delete instances[data.id];\n}\nfunction eachInstance(cb) {\n for (var id in instances) {\n if (instances.hasOwnProperty(id)) {\n cb(instances[id]);\n }\n }\n}\nvar lazyinit = function () {\n // replace function with a noop\n // this logic must run only once\n lazyinit = function () { };\n function onEvent(eventName, e) {\n eachInstance(function (data) {\n for (var _i = 0, _a = data.plugins; _i < _a.length; _i++) {\n var module_1 = _a[_i];\n if (typeof module_1[eventName] === 'function') {\n module_1[eventName].apply(data.target, [e, data]);\n }\n }\n });\n }\n function onResize() {\n eachInstance(function (data) {\n if (data.responsive) {\n boot(data);\n }\n });\n }\n var _loop_1 = function (eventName) {\n $$2(window.document).bind(eventName + '.' + namespace, function (e) {\n onEvent('document' + eventName, e);\n });\n };\n for (var _i = 0, eventNames_1 = eventNames; _i < eventNames_1.length; _i++) {\n var eventName = eventNames_1[_i];\n _loop_1(eventName);\n }\n var resizeTimeout = null;\n $$2(window).on('resize', function () {\n window.clearTimeout(resizeTimeout);\n resizeTimeout = window.setTimeout(onResize, 100);\n });\n};\n/**\n * (re)binds all spritespin events on the target element\n *\n * @internal\n */\nfunction applyEvents(data) {\n var target = data.target;\n // Clear all SpriteSpin events on the target element\n unbind(target);\n // disable all default browser behavior on the following events\n // mainly prevents image drag operation\n for (var _i = 0, eventsToPrevent_1 = eventsToPrevent; _i < eventsToPrevent_1.length; _i++) {\n var eName = eventsToPrevent_1[_i];\n bind(target, eName, prevent);\n }\n // Bind module functions to SpriteSpin events\n for (var _a = 0, _b = data.plugins; _a < _b.length; _a++) {\n var plugin = _b[_a];\n for (var _c = 0, eventNames_2 = eventNames; _c < eventNames_2.length; _c++) {\n var eName = eventNames_2[_c];\n bind(target, eName, plugin[eName]);\n }\n for (var _d = 0, callbackNames_1 = callbackNames; _d < callbackNames_1.length; _d++) {\n var eName = callbackNames_1[_d];\n bind(target, eName, plugin[eName]);\n }\n }\n // bind auto start function to load event.\n bind(target, 'onLoad', function (e, d) {\n applyAnimation(d);\n });\n // bind all user events that have been passed on initialization\n for (var _e = 0, callbackNames_2 = callbackNames; _e < callbackNames_2.length; _e++) {\n var eName = callbackNames_2[_e];\n bind(target, eName, data[eName]);\n }\n}\nfunction applyMetrics(data) {\n if (!data.images) {\n data.metrics = [];\n }\n data.metrics = measure(data.images, data);\n var spec = findSpecs(data.metrics, data.frames, 0, 0);\n if (spec.sprite) {\n // TODO: try to remove frameWidth/frameHeight\n data.frameWidth = spec.sprite.width;\n data.frameHeight = spec.sprite.height;\n }\n}\n/**\n * Runs the boot process.\n *\n * @remarks\n * (re)initializes plugins, (re)initializes the layout, (re)binds events and loads source images.\n *\n * @internal\n */\nfunction boot(data) {\n applyPlugins(data);\n applyEvents(data);\n applyLayout(data);\n data.source = toArray(data.source);\n data.loading = true;\n data.target\n .addClass('loading')\n .trigger('onInit.' + namespace, data);\n preload({\n source: data.source,\n crossOrigin: data.crossOrigin,\n preloadCount: data.preloadCount,\n progress: function (progress) {\n data.progress = progress;\n data.target.trigger('onProgress.' + namespace, data);\n },\n complete: function (images) {\n data.images = images;\n data.loading = false;\n data.frames = data.frames || images.length;\n applyMetrics(data);\n applyLayout(data);\n data.stage.show();\n data.target\n .removeClass('loading')\n .trigger('onLoad.' + namespace, data)\n .trigger('onFrame.' + namespace, data)\n .trigger('onDraw.' + namespace, data)\n .trigger('onComplete.' + namespace, data);\n }\n });\n}\n/**\n * Creates a new SpriteSpin instance\n *\n * @public\n */\nfunction create(options) {\n var _this = this;\n var target = options.target;\n // SpriteSpin is not initialized\n // Create default settings object and extend with given options\n var data = $$2.extend(true, {}, defaults, options);\n // ensure source is set\n data.source = data.source || [];\n // ensure plugins are set\n data.plugins = data.plugins || [\n '360',\n 'drag'\n ];\n // if image tags are contained inside this DOM element\n // use these images as the source files\n target.find('img').each(function () {\n if (!Array.isArray(data.source)) {\n data.source = [];\n }\n data.source.push($$2(_this).attr('src'));\n });\n // build inner html\n // <div>\n // <div class='spritespin-stage'></div>\n // <canvas class='spritespin-canvas'></canvas>\n // </div>\n target\n .empty()\n .addClass('spritespin-instance')\n .append(\"<div class='spritespin-stage'></div>\");\n // add the canvas element if canvas rendering is enabled and supported\n if (data.renderer === 'canvas') {\n var canvas = document.createElement('canvas');\n if (!!(canvas.getContext && canvas.getContext('2d'))) {\n data.canvas = $$2(canvas).addClass('spritespin-canvas');\n data.context = canvas.getContext('2d');\n target.append(data.canvas);\n target.addClass('with-canvas');\n }\n else {\n // fallback to image rendering mode\n data.renderer = 'image';\n }\n }\n // setup references to DOM elements\n data.target = target;\n data.stage = target.find('.spritespin-stage');\n // store the data\n target.data(namespace, data);\n pushInstance(data);\n return data;\n}\n/**\n * Creates a new SpriteSpin instance, or updates an existing one\n *\n * @public\n */\nfunction createOrUpdate(options) {\n lazyinit();\n var data = options.target.data(namespace);\n if (!data) {\n data = create(options);\n }\n else {\n $$2.extend(data, options);\n }\n boot(data);\n return data;\n}\n/**\n * Destroys the SpriteSpin instance\n *\n * @remarks\n * - stops running animation\n * - unbinds all events\n * - deletes the data on the target element\n *\n * @public\n */\nfunction destroy(data) {\n popInstance(data);\n stopAnimation(data);\n data.target\n .trigger('onDestroy', data)\n .html(null)\n .attr('style', null)\n .attr('unselectable', null)\n .removeClass(['spritespin-instance', 'with-canvas']);\n unbind(data.target);\n data.target.removeData(namespace);\n}\n\n/**\n * Gets the current input state\n *\n * @public\n * @param data - The SpriteSpin instance data\n */\nfunction getInputState(data) {\n return getState(data, 'input');\n}\n/**\n * Updates the input state using a mouse or touch event.\n *\n * @public\n * @param e - The input event\n * @param data - The SpriteSpin instance data\n */\nfunction updateInput(e, data) {\n var cursor = getCursorPosition(e);\n var state = getInputState(data);\n // cache positions from previous frame\n state.oldX = state.currentX;\n state.oldY = state.currentY;\n state.currentX = cursor.x;\n state.currentY = cursor.y;\n // Fix old position.\n if (state.oldX === undefined || state.oldY === undefined) {\n state.oldX = state.currentX;\n state.oldY = state.currentY;\n }\n // Cache the initial click/touch position and store the frame number at which the click happened.\n // Useful for different behavior implementations. This must be restored when the click/touch is released.\n if (state.startX === undefined || state.startY === undefined) {\n state.startX = state.currentX;\n state.startY = state.currentY;\n state.clickframe = data.frame;\n state.clicklane = data.lane;\n }\n // Calculate the vector from start position to current pointer position.\n state.dX = state.currentX - state.startX;\n state.dY = state.currentY - state.startY;\n // Calculate the vector from last frame position to current pointer position.\n state.ddX = state.currentX - state.oldX;\n state.ddY = state.currentY - state.oldY;\n // Normalize vectors to range [-1:+1]\n state.ndX = state.dX / data.target.innerWidth();\n state.ndY = state.dY / data.target.innerHeight();\n state.nddX = state.ddX / data.target.innerWidth();\n state.nddY = state.ddY / data.target.innerHeight();\n}\n/**\n * Resets the input state.\n *\n * @public\n */\nfunction resetInput(data) {\n var input = getInputState(data);\n input.startX = input.startY = undefined;\n input.currentX = input.currentY = undefined;\n input.oldX = input.oldY = undefined;\n input.dX = input.dY = 0;\n input.ddX = input.ddY = 0;\n input.ndX = input.ndY = 0;\n input.nddX = input.nddY = 0;\n}\n\nfunction extension(option, value) {\n var $target = $$1(this);\n if (option === 'data') {\n return $target.data(namespace);\n }\n if (option === 'api') {\n var data = $target.data(namespace);\n data.api = data.api || new Api(data);\n return data.api;\n }\n if (option === 'destroy') {\n return $target.each(function () {\n var data = $target.data(namespace);\n if (data) {\n destroy(data);\n }\n });\n }\n if (arguments.length === 2 && typeof option === 'string') {\n option = (_a = {}, _a[option] = value, _a);\n }\n if (typeof option === 'object') {\n return createOrUpdate($$1.extend(true, { target: $target }, option)).target;\n }\n throw new Error('Invalid call to spritespin');\n var _a;\n}\n$$1.fn[namespace] = extension;\n\n// tslint:disable:object-literal-shorthand\n// tslint:disable:only-arrow-functions\nextendApi({\n // Gets a value indicating whether the animation is currently running.\n isPlaying: function () {\n return getPlaybackState(this.data).handler != null;\n },\n // Gets a value indicating whether the animation looping is enabled.\n isLooping: function () {\n return this.data.loop;\n },\n // Starts/Stops the animation playback\n toggleAnimation: function () {\n if (this.isPlaying()) {\n this.stopAnimation();\n }\n else {\n this.startAnimation();\n }\n },\n // Stops animation playback\n stopAnimation: function () {\n this.data.animate = false;\n stopAnimation(this.data);\n },\n // Starts animation playback\n startAnimation: function () {\n this.data.animate = true;\n applyAnimation(this.data);\n },\n // Sets a value indicating whether the animation should be looped or not.\n // This might start the animation (if the 'animate' data attribute is set to true)\n loop: function (value) {\n this.data.loop = value;\n applyAnimation(this.data);\n return this;\n },\n // Gets the current frame number\n currentFrame: function () {\n return this.data.frame;\n },\n // Updates SpriteSpin to the specified frame.\n updateFrame: function (frame) {\n updateFrame(this.data, frame);\n return this;\n },\n // Skips the given number of frames\n skipFrames: function (step) {\n var data = this.data;\n updateFrame(data, data.frame + (data.reverse ? -step : +step));\n return this;\n },\n // Updates SpriteSpin so that the next frame is shown\n nextFrame: function () {\n return this.skipFrames(1);\n },\n // Updates SpriteSpin so that the previous frame is shown\n prevFrame: function () {\n return this.skipFrames(-1);\n },\n // Starts the animations that will play until the given frame number is reached\n // options:\n // force [boolean] starts the animation, even if current frame is the target frame\n // nearest [boolean] animates to the direction with minimum distance to the target frame\n playTo: function (frame, options) {\n var data = this.data;\n options = options || {};\n if (!options.force && data.frame === frame) {\n return;\n }\n if (options.nearest) {\n // distance to the target frame\n var a = frame - data.frame;\n // distance to last frame and the to target frame\n var b = frame > data.frame ? a - data.frames : a + data.frames;\n // minimum distance\n var c = Math.abs(a) < Math.abs(b) ? a : b;\n data.reverse = c < 0;\n }\n data.animate = true;\n data.loop = false;\n data.stopFrame = frame;\n applyAnimation(data);\n return this;\n }\n});\n\nfunction pick(target, names) {\n for (var _i = 0, names_1 = names; _i < names_1.length; _i++) {\n var name_1 = names_1[_i];\n if (target[name_1] || name_1 in target) {\n return name_1;\n }\n }\n return names[0];\n}\nvar browser = {\n requestFullscreen: pick(document.documentElement, [\n 'requestFullscreen',\n 'webkitRequestFullScreen',\n 'mozRequestFullScreen',\n 'msRequestFullscreen'\n ]),\n exitFullscreen: pick(document, [\n 'exitFullscreen',\n 'webkitExitFullscreen',\n 'webkitCancelFullScreen',\n 'mozCancelFullScreen',\n 'msExitFullscreen'\n ]),\n fullscreenElement: pick(document, [\n 'fullscreenElement',\n 'webkitFullscreenElement',\n 'webkitCurrentFullScreenElement',\n 'mozFullScreenElement',\n 'msFullscreenElement'\n ]),\n fullscreenEnabled: pick(document, [\n 'fullscreenEnabled',\n 'webkitFullscreenEnabled',\n 'mozFullScreenEnabled',\n 'msFullscreenEnabled'\n ]),\n fullscreenchange: pick(document, [\n 'onfullscreenchange',\n 'onwebkitfullscreenchange',\n 'onmozfullscreenchange',\n 'onMSFullscreenChange'\n ]).replace(/^on/, ''),\n fullscreenerror: pick(document, [\n 'onfullscreenerror',\n 'onwebkitfullscreenerror',\n 'onmozfullscreenerror',\n 'onMSFullscreenError'\n ]).replace(/^on/, '')\n};\nvar changeEvent = browser.fullscreenchange + '.' + namespace + '-fullscreen';\nfunction unbindChangeEvent() {\n $$1(document).unbind(changeEvent);\n}\nfunction bindChangeEvent(callback) {\n unbindChangeEvent();\n $$1(document).bind(changeEvent, callback);\n}\nvar orientationEvent = 'orientationchange.' + namespace + '-fullscreen';\nfunction unbindOrientationEvent() {\n $$1(window).unbind(orientationEvent);\n}\nfunction bindOrientationEvent(callback) {\n unbindOrientationEvent();\n $$1(window).bind(orientationEvent, callback);\n}\nfunction requestFullscreenNative(e) {\n e = e || document.documentElement;\n e[browser.requestFullscreen]();\n}\nfunction exitFullscreen() {\n return document[browser.exitFullscreen]();\n}\nfunction fullscreenEnabled() {\n return document[browser.fullscreenEnabled];\n}\nfunction fullscreenElement() {\n return document[browser.fullscreenElement];\n}\nfunction isFullscreen() {\n return !!fullscreenElement();\n}\nfunction toggleFullscreen(data, opts) {\n if (isFullscreen()) {\n this.apiRequestFullscreen(opts);\n }\n else {\n this.exitFullscreen();\n }\n}\nfunction requestFullscreen(data, opts) {\n opts = opts || {};\n var oWidth = data.width;\n var oHeight = data.height;\n var oSource = data.source;\n var oSize = data.sizeMode;\n var oResponsive = data.responsive;\n var enter = function () {\n data.width = window.screen.width;\n data.height = window.screen.height;\n data.source = (opts.source || oSource);\n data.sizeMode = opts.sizeMode || 'fit';\n data.responsive = false;\n boot(data);\n };\n var exit = function () {\n data.width = oWidth;\n data.height = oHeight;\n data.source = oSource;\n data.sizeMode = oSize;\n data.responsive = oResponsive;\n boot(data);\n };\n bindChangeEvent(function () {\n if (isFullscreen()) {\n enter();\n bindOrientationEvent(enter);\n }\n else {\n unbindChangeEvent();\n unbindOrientationEvent();\n exit();\n }\n });\n requestFullscreenNative(data.target[0]);\n}\nextendApi({\n fullscreenEnabled: fullscreenEnabled,\n fullscreenElement: fullscreenElement,\n exitFullscreen: exitFullscreen,\n toggleFullscreen: function (opts) {\n toggleFullscreen(this.data, opts);\n },\n requestFullscreen: function (opts) {\n requestFullscreen(this.data, opts);\n }\n});\n\n(function () {\n var NAME = 'click';\n function click(e, data) {\n if (data.loading || !data.stage.is(':visible')) {\n return;\n }\n updateInput(e, data);\n var input = getInputState(data);\n var half, pos;\n var target = data.target, offset = target.offset();\n if (data.orientation === 'horizontal') {\n half = target.innerWidth() / 2;\n pos = input.currentX - offset.left;\n }\n else {\n half = target.innerHeight() / 2;\n pos = input.currentY - offset.top;\n }\n updateFrame(data, data.frame + (pos > half ? 1 : -1));\n }\n registerPlugin(NAME, {\n name: NAME,\n mouseup: click,\n touchend: click\n });\n})();\n\n(function () {\n var NAME = 'drag';\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n function getAxis(data) {\n if (typeof data.orientation === 'number') {\n return data.orientation * Math.PI / 180;\n }\n if (data.orientation === 'horizontal') {\n return 0;\n }\n return Math.PI / 2;\n }\n function onInit(e, data) {\n var state = getState$$1(data);\n var d = [200, 1500];\n var t = data.touchScrollTimer || d;\n state.minTime = t[0] || d[0];\n state.maxTime = t[1] || d[1];\n }\n function dragStart(e, data) {\n var state = getState$$1(data);\n if (data.loading || is(data, 'dragging') || data['zoomPinFrame'] && !data.stage.is(':visible')) {\n return;\n }\n // Touch scroll can only be disabled by cancelling the 'touchstart' event.\n // If we would try to cancel the 'touchmove' event during a scroll\n // chrome browser raises an error\n //\n // When a user interacts with sprite spin, we don't know whether the intention\n // is to scroll the page or to roll the spin.\n //\n // On first interaction with SpriteSpin the scroll is not disabled\n // On double tap within 200ms the scroll is not disabled\n // Scroll is only disabled if there was an interaction with SpriteSpin in the past 1500ms\n var now = new Date().getTime();\n if (state.endAt && (now - state.endAt > state.maxTime)) {\n // reset timer if the user has no interaction with spritespin within 1500ms\n state.startAt = null;\n state.endAt = null;\n }\n if (state.startAt && (now - state.startAt > state.minTime)) {\n // disable scroll only if there was already an interaction with spritespin\n // however, allow scrolling on double tab within 200ms\n e.preventDefault();\n }\n state.startAt = now;\n state.wasPlaying = !!getPlaybackState(data).handler;\n state.frame = data.frame || 0;\n state.lane = data.lane || 0;\n flag(data, 'dragging', true);\n updateInput(e, data);\n }\n function dragEnd(e, data) {\n if (is(data, 'dragging')) {\n getState$$1(data).endAt = new Date().getTime();\n flag(data, 'dragging', false);\n resetInput(data);\n if (data.retainAnimate && getState$$1(data).wasPlaying) {\n startAnimation(data);\n }\n }\n }\n function drag(e, data) {\n var state = getState$$1(data);\n var input = getInputState(data);\n if (!is(data, 'dragging')) {\n return;\n }\n updateInput(e, data);\n var rad = getAxis(data);\n var sn = Math.sin(rad);\n var cs = Math.cos(rad);\n var x = ((input.nddX * cs - input.nddY * sn) * data.sense) || 0;\n var y = ((input.nddX * sn + input.nddY * cs) * (data.senseLane || data.sense)) || 0;\n // accumulate\n state.frame += data.frames * x;\n state.lane += data.lanes * y;\n // update spritespin\n var oldFrame = data.frame;\n var oldLane = data.lane;\n updateFrame(data, Math.floor(state.frame), Math.floor(state.lane));\n stopAnimation(data);\n }\n function mousemove(e, data) {\n dragStart(e, data);\n drag(e, data);\n }\n registerPlugin('drag', {\n name: 'drag',\n onInit: onInit,\n mousedown: dragStart,\n mousemove: drag,\n mouseup: dragEnd,\n documentmousemove: drag,\n documentmouseup: dragEnd,\n touchstart: dragStart,\n touchmove: drag,\n touchend: dragEnd,\n touchcancel: dragEnd\n });\n registerPlugin('move', {\n name: 'move',\n onInit: onInit,\n mousemove: mousemove,\n mouseleave: dragEnd,\n touchstart: dragStart,\n touchmove: drag,\n touchend: dragEnd,\n touchcancel: dragEnd\n });\n})();\n\n(function () {\n var NAME = 'hold';\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n function rememberOptions(data) {\n var state = getState$$1(data);\n state.frameTime = data.frameTime;\n state.animate = data.animate;\n state.reverse = data.reverse;\n }\n function restoreOptions(data) {\n var state = getState$$1(data);\n data.frameTime = state.frameTime;\n data.animate = state.animate;\n data.reverse = state.reverse;\n }\n function start(e, data) {\n if (is(data, 'loading') || is(data, 'dragging') || !data.stage.is(':visible')) {\n return;\n }\n rememberOptions(data);\n updateInput(e, data);\n flag(data, 'dragging', true);\n data.animate = true;\n applyAnimation(data);\n }\n function stop(e, data) {\n flag(data, 'dragging', false);\n resetInput(data);\n stopAnimation(data);\n restoreOptions(data);\n applyAnimation(data);\n }\n function update(e, data) {\n if (!is(data, 'dragging')) {\n return;\n }\n updateInput(e, data);\n var input = getInputState(data);\n var half, delta;\n var target = data.target, offset = target.offset();\n if (data.orientation === 'horizontal') {\n half = target.innerWidth() / 2;\n delta = (input.currentX - offset.left - half) / half;\n }\n else {\n half = (data.height / 2);\n delta = (input.currentY - offset.top - half) / half;\n }\n data.reverse = delta < 0;\n delta = delta < 0 ? -delta : delta;\n data.frameTime = 80 * (1 - delta) + 20;\n if (((data.orientation === 'horizontal') && (input.dX < input.dY)) ||\n ((data.orientation === 'vertical') && (input.dX < input.dY))) {\n e.preventDefault();\n }\n }\n function onFrame(e, data) {\n data.animate = true;\n applyAnimation(data);\n }\n registerPlugin(NAME, {\n name: NAME,\n mousedown: start,\n mousemove: update,\n mouseup: stop,\n mouseleave: stop,\n touchstart: start,\n touchmove: update,\n touchend: stop,\n touchcancel: stop,\n onFrame: onFrame\n });\n})();\n\n(function () {\n var NAME = 'swipe';\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n function getOption(data, name, fallback) {\n return data[name] || fallback;\n }\n function init(e, data) {\n var state = getState$$1(data);\n state.fling = getOption(data, 'swipeFling', 10);\n state.snap = getOption(data, 'swipeSnap', 0.50);\n }\n function start(e, data) {\n if (!data.loading && !is(data, 'dragging')) {\n updateInput(e, data);\n flag(data, 'dragging', true);\n }\n }\n function update(e, data) {\n if (!is(data, 'dragging')) {\n return;\n }\n updateInput(e, data);\n var frame = data.frame;\n var lane = data.lane;\n updateFrame(data, frame, lane);\n }\n function end(e, data) {\n if (!is(data, 'dragging')) {\n return;\n }\n flag(data, 'dragging', false);\n var state = getState$$1(data);\n var input = getInputState(data);\n var frame = data.frame;\n var lane = data.lane;\n var snap = state.snap;\n var fling = state.fling;\n var dS, dF;\n if (data.orientation === 'horizontal') {\n dS = input.ndX;\n dF = input.ddX;\n }\n else {\n dS = input.ndY;\n dF = input.ddY;\n }\n if (dS >= snap || dF >= fling) {\n frame = data.frame - 1;\n }\n else if (dS <= -snap || dF <= -fling) {\n frame = data.frame + 1;\n }\n resetInput(data);\n updateFrame(data, frame, lane);\n stopAnimation(data);\n }\n registerPlugin(NAME, {\n name: NAME,\n onLoad: init,\n mousedown: start,\n mousemove: update,\n mouseup: end,\n mouseleave: end,\n touchstart: start,\n touchmove: update,\n touchend: end,\n touchcancel: end\n });\n})();\n\n(function () {\n var NAME = 'wheel';\n function wheel(e, data) {\n if (!data.loading && data.stage.is(':visible')) {\n e.preventDefault();\n var we = e.originalEvent;\n var signX = we.deltaX === 0 ? 0 : we.deltaX > 0 ? 1 : -1;\n var signY = we.deltaY === 0 ? 0 : we.deltaY > 0 ? 1 : -1;\n updateFrame(data, data.frame + signY, data.lane + signX);\n }\n }\n registerPlugin(NAME, {\n name: NAME,\n wheel: wheel\n });\n})();\n\n(function () {\n var template = \"\\n<div class='spritespin-progress'>\\n <div class='spritespin-progress-label'></div>\\n <div class='spritespin-progress-bar'></div>\\n</div>\\n\";\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n var NAME = 'progress';\n function onInit(e, data) {\n var state = getState$$1(data);\n if (!state.stage) {\n state.stage = $$1(template);\n state.stage.appendTo(data.target);\n }\n state.stage.find('.spritespin-progress-label')\n .text(\"0%\")\n .css({ 'text-align': 'center' });\n state.stage.find('.spritespin-progress-bar').css({\n width: \"0%\"\n });\n state.stage.hide().fadeIn();\n }\n function onProgress(e, data) {\n var state = getState$$1(data);\n state.stage.find('.spritespin-progress-label')\n .text(data.progress.percent + \"%\")\n .css({ 'text-align': 'center' });\n state.stage.find('.spritespin-progress-bar').css({\n width: data.progress.percent + \"%\"\n });\n }\n function onLoad(e, data) {\n $$1(getState$$1(data).stage).fadeOut();\n }\n function onDestroy(e, data) {\n $$1(getState$$1(data).stage).remove();\n }\n registerPlugin(NAME, {\n name: NAME,\n onInit: onInit,\n onProgress: onProgress,\n onLoad: onLoad,\n onDestroy: onDestroy\n });\n})();\n\n(function () {\n var NAME = '360';\n function onLoad(e, data) {\n data.stage.find('.spritespin-frames').detach();\n if (data.renderer === 'image') {\n $(data.images).addClass('spritespin-frames').appendTo(data.stage);\n }\n }\n function onDraw(e, data) {\n var specs = findSpecs(data.metrics, data.frames, data.frame, data.lane);\n var sheet = specs.sheet;\n var sprite = specs.sprite;\n if (!sheet || !sprite) {\n return;\n }\n var src = data.source[sheet.id];\n var image = data.images[sheet.id];\n if (data.renderer === 'canvas') {\n data.canvas.show();\n var w = data.canvas[0].width / data.canvasRatio;\n var h = data.canvas[0].height / data.canvasRatio;\n data.context.clearRect(0, 0, w, h);\n data.context.drawImage(image, sprite.sampledX, sprite.sampledY, sprite.sampledWidth, sprite.sampledHeight, 0, 0, w, h);\n return;\n }\n var scaleX = data.stage.innerWidth() / sprite.sampledWidth;\n var scaleY = data.stage.innerHeight() / sprite.sampledHeight;\n var top = Math.floor(-sprite.sampledY * scaleY);\n var left = Math.floor(-sprite.sampledX * scaleX);\n var width = Math.floor(sheet.sampledWidth * scaleX);\n var height = Math.floor(sheet.sampledHeight * scaleY);\n if (data.renderer === 'background') {\n data.stage.css({\n 'background-image': \"url('\" + src + \"')\",\n 'background-position': left + \"px \" + top + \"px\",\n 'background-repeat': 'no-repeat',\n // set custom background size to enable responsive rendering\n '-webkit-background-size': width + \"px \" + height + \"px\",\n '-moz-background-size': width + \"px \" + height + \"px\",\n '-o-background-size': width + \"px \" + height + \"px\",\n 'background-size': width + \"px \" + height + \"px\" /* Chrome, Firefox 4+, IE 9+, Opera, Safari 5+ */\n });\n return;\n }\n $(data.images).hide();\n $(image).show().css({\n position: 'absolute',\n top: top,\n left: left,\n 'max-width': 'initial',\n width: width,\n height: height\n });\n }\n registerPlugin(NAME, {\n name: NAME,\n onLoad: onLoad,\n onDraw: onDraw\n });\n})();\n\n(function () {\n var NAME = 'blur';\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n function getOption(data, name, fallback) {\n return data[name] || fallback;\n }\n function init(e, data) {\n var state = getState$$1(data);\n state.canvas = state.canvas || $$1(\"<canvas class='blur-layer'></canvas>\");\n state.context = state.context || state.canvas[0].getContext('2d');\n state.steps = state.steps || [];\n state.fadeTime = Math.max(getOption(data, 'blurFadeTime', 200), 1);\n state.frameTime = Math.max(getOption(data, 'blurFrameTime', data.frameTime), 16);\n state.trackTime = null;\n state.cssBlur = !!getOption(data, 'blurCss', false);\n var inner = getInnerSize(data);\n var outer = data.responsive ? getComputedSize(data) : getOuterSize(data);\n var css = getInnerLayout(data.sizeMode, inner, outer);\n state.canvas[0].width = data.width * data.canvasRatio;\n state.canvas[0].height = data.height * data.canvasRatio;\n state.canvas.css(css).show();\n state.context.scale(data.canvasRatio, data.canvasRatio);\n data.target.append(state.canvas);\n }\n function onFrame(e, data) {\n var state = getState$$1(data);\n trackFrame(data);\n if (state.timeout == null) {\n loop(data);\n }\n }\n function trackFrame(data) {\n var state = getState$$1(data);\n var ani = getPlaybackState(data);\n // distance between frames\n var d = Math.abs(data.frame - ani.lastFrame);\n // shortest distance\n d = d >= data.frames / 2 ? data.frames - d : d;\n state.steps.unshift({\n frame: data.frame,\n lane: data.lane,\n live: 1,\n step: state.frameTime / state.fadeTime,\n d: d,\n alpha: 0\n });\n }\n var toRemove = [];\n function removeOldFrames(frames) {\n toRemove.length = 0;\n for (var i = 0; i < frames.length; i += 1) {\n if (frames[i].alpha <= 0) {\n toRemove.push(i);\n }\n }\n for (var _i = 0, toRemove_1 = toRemove; _i < toRemove_1.length; _i++) {\n var item = toRemove_1[_i];\n frames.splice(item, 1);\n }\n }\n function loop(data) {\n var state = getState$$1(data);\n state.timeout = window.setTimeout(function () { tick(data); }, state.frameTime);\n }\n function killLoop(data) {\n var state = getState$$1(data);\n window.clearTimeout(state.timeout);\n state.timeout = null;\n }\n function applyCssBlur(canvas, d) {\n var amount = Math.min(Math.max((d / 2) - 4, 0), 2.5);\n var blur = \"blur(\" + amount + \"px)\";\n canvas.css({\n '-webkit-filter': blur,\n filter: blur\n });\n }\n function clearFrame(data, state) {\n state.canvas.show();\n var w = state.canvas[0].width / data.canvasRatio;\n var h = state.canvas[0].height / data.canvasRatio;\n // state.context.clearRect(0, 0, w, h)\n }\n function drawFrame(data, state, step) {\n if (step.alpha <= 0) {\n return;\n }\n var specs = findSpecs(data.metrics, data.frames, step.frame, step.lane);\n var sheet = specs.sheet;\n var sprite = specs.sprite;\n if (!sheet || !sprite) {\n return;\n }\n var src = data.source[sheet.id];\n var image = data.images[sheet.id];\n if (image.complete === false) {\n return;\n }\n state.canvas.show();\n var w = state.canvas[0].width / data.canvasRatio;\n var h = state.canvas[0].height / data.canvasRatio;\n state.context.globalAlpha = step.alpha;\n state.context.drawImage(image, sprite.sampledX, sprite.sampledY, sprite.sampledWidth, sprite.sampledHeight, 0, 0, w, h);\n }\n function tick(data) {\n var state = getState$$1(data);\n killLoop(data);\n if (!state.context) {\n return;\n }\n var d = 0;\n clearFrame(data, state);\n state.context.clearRect(0, 0, data.width, data.height);\n for (var _i = 0, _a = state.steps; _i < _a.length; _i++) {\n var step = _a[_i];\n step.live = Math.max(step.live - step.step, 0);\n step.alpha = Math.max(step.live - 0.25, 0);\n drawFrame(data, state, step);\n d += step.alpha + step.d;\n }\n if (state.cssBlur) {\n applyCssBlur(state.canvas, d);\n }\n removeOldFrames(state.steps);\n if (state.steps.length) {\n loop(data);\n }\n }\n registerPlugin(NAME, {\n name: NAME,\n onLoad: init,\n onFrameChanged: onFrame\n });\n})();\n\n(function () {\n var max = Math.max;\n var min = Math.min;\n var NAME = 'ease';\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n function getOption(data, name, fallback) {\n return data[name] || fallback;\n }\n function init(e, data) {\n var state = getState$$1(data);\n state.maxSamples = max(getOption(data, 'easeMaxSamples', 5), 0);\n state.damping = max(min(getOption(data, 'easeDamping', 0.9), 0.999), 0);\n state.abortTime = max(getOption(data, 'easeAbortTime', 250), 16);\n state.updateTime = max(getOption(data, 'easeUpdateTime', data.frameTime), 16);\n state.samples = [];\n state.steps = [];\n }\n function update(e, data) {\n if (is(data, 'dragging')) {\n killLoop(data);\n sampleInput(data);\n }\n }\n function end(e, data) {\n var state = getState$$1(data);\n var samples = state.samples;\n var last;\n var lanes = 0;\n var frames = 0;\n var time = 0;\n for (var _i = 0, samples_1 = samples; _i < samples_1.length; _i++) {\n var sample = samples_1[_i];\n if (!last) {\n last = sample;\n continue;\n }\n var dt = sample.time - last.time;\n if (dt > state.abortTime) {\n lanes = frames = time = 0;\n return killLoop(data);\n }\n frames += sample.frame - last.frame;\n lanes += sample.lane - last.lane;\n time += dt;\n last = sample;\n }\n samples.length = 0;\n if (!time) {\n return;\n }\n state.lane = data.lane;\n state.lanes = 0;\n state.laneStep = lanes / time * state.updateTime;\n state.frame = data.frame;\n state.frames = 0;\n state.frameStep = frames / time * state.updateTime;\n loop(data);\n }\n function sampleInput(data) {\n var state = getState$$1(data);\n // add a new sample\n state.samples.push({\n time: new Date().getTime(),\n frame: data.frame,\n lane: data.lane\n });\n // drop old samples\n while (state.samples.length > state.maxSamples) {\n state.samples.shift();\n }\n }\n function killLoop(data) {\n var state = getState$$1(data);\n if (state.handler != null) {\n window.clearTimeout(state.handler);\n state.handler = null;\n }\n }\n function loop(data) {\n var state = getState$$1(data);\n state.handler = window.setTimeout(function () { tick(data); }, state.updateTime);\n }\n function tick(data) {\n var state = getState$$1(data);\n state.lanes += state.laneStep;\n state.frames += state.frameStep;\n state.laneStep *= state.damping;\n state.frameStep *= state.damping;\n var frame = Math.floor(state.frame + state.frames);\n var lane = Math.floor(state.lane + state.lanes);\n updateFrame(data, frame, lane);\n if (is(data, 'dragging')) {\n killLoop(data);\n }\n else if (Math.abs(state.frameStep) > 0.005 || Math.abs(state.laneStep) > 0.005) {\n loop(data);\n }\n else {\n killLoop(data);\n }\n }\n registerPlugin(NAME, {\n name: NAME,\n onLoad: init,\n mousemove: update,\n mouseup: end,\n mouseleave: end,\n touchmove: update,\n touchend: end,\n touchcancel: end\n });\n})();\n\n(function () {\n var NAME = 'gallery';\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n function getOption(data, name, fallback) {\n return data[name] || fallback;\n }\n function load(e, data) {\n var state = getState$$1(data);\n state.images = [];\n state.offsets = [];\n state.frame = data.frame;\n state.speed = getOption(data, 'gallerySpeed', 500);\n state.opacity = getOption(data, 'galleryOpacity', 0.25);\n state.stage = getOption(data, 'galleryStage', $$1('<div></div>'));\n state.stage.empty().addClass('gallery-stage').prependTo(data.stage);\n var size = 0;\n for (var _i = 0, _a = data.images; _i < _a.length; _i++) {\n var image = _a[_i];\n var naturalSize$$1 = naturalSize(image);\n var scale = data.height / naturalSize$$1.height;\n var img = $$1(image);\n state.stage.append(img);\n state.images.push(img);\n state.offsets.push(-size + (data.width - image.width * scale) / 2);\n size += data.width;\n img.css({\n 'max-width': 'initial',\n opacity: state.opacity,\n width: data.width,\n height: data.height\n });\n }\n var innerSize = getInnerSize(data);\n var outerSize = data.responsive ? getComputedSize(data) : getOuterSize(data);\n var layout = getInnerLayout(data.sizeMode, innerSize, outerSize);\n state.stage.css(layout).css({ width: size, left: state.offsets[state.frame] });\n state.images[state.frame].animate({ opacity: 1 }, { duration: state.speed });\n }\n function draw(e, data) {\n var state = getState$$1(data);\n var input = getInputState(data);\n var isDragging = is(data, 'dragging');\n if (state.frame !== data.frame && !isDragging) {\n state.stage.stop(true, false).animate({ left: state.offsets[data.frame] }, { duration: state.speed });\n state.images[state.frame].animate({ opacity: state.opacity }, { duration: state.speed });\n state.frame = data.frame;\n state.images[state.frame].animate({ opacity: 1 }, { duration: state.speed });\n state.stage.animate({ left: state.offsets[state.frame] });\n }\n else if (isDragging || state.dX !== input.dX) {\n state.dX = input.dX;\n state.ddX = input.ddX;\n state.stage.stop(true, true).css({ left: state.offsets[state.frame] + state.dX });\n }\n }\n registerPlugin(NAME, {\n name: NAME,\n onLoad: load,\n onDraw: draw\n });\n})();\n\n(function () {\n var NAME = 'panorama';\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n function onLoad(e, data) {\n var state = getState$$1(data);\n var sprite = data.metrics[0];\n if (!sprite) {\n return;\n }\n if (data.orientation === 'horizontal') {\n state.scale = data.target.innerHeight() / sprite.sampledHeight;\n data.frames = sprite.sampledWidth;\n }\n else {\n state.scale = data.target.innerWidth() / sprite.sampledWidth;\n data.frames = sprite.sampledHeight;\n }\n var width = Math.floor(sprite.sampledWidth * state.scale);\n var height = Math.floor(sprite.sampledHeight * state.scale);\n data.stage.css({\n 'background-image': \"url(\" + data.source[sprite.id] + \")\",\n 'background-repeat': 'repeat-both',\n // set custom background size to enable responsive rendering\n '-webkit-background-size': width + \"px \" + height + \"px\",\n '-moz-background-size': width + \"px \" + height + \"px\",\n '-o-background-size': width + \"px \" + height + \"px\",\n 'background-size': width + \"px \" + height + \"px\" /* Chrome, Firefox 4+, IE 9+, Opera, Safari 5+ */\n });\n }\n function onDraw(e, data) {\n var state = getState$$1(data);\n var px = data.orientation === 'horizontal' ? 1 : 0;\n var py = px ? 0 : 1;\n var offset = data.frame % data.frames;\n var left = Math.round(px * offset * state.scale);\n var top = Math.round(py * offset * state.scale);\n data.stage.css({ 'background-position': left + \"px \" + top + \"px\" });\n }\n registerPlugin(NAME, {\n name: NAME,\n onLoad: onLoad,\n onDraw: onDraw\n });\n})();\n\n(function () {\n var NAME = 'zoom';\n function getState$$1(data) {\n return getPluginState(data, NAME);\n }\n function getOption(data, name, fallback) {\n return name in data ? data[name] : fallback;\n }\n function onInit(e, data) {\n var state = getState$$1(data);\n state.source = getOption(data, 'zoomSource', data.source);\n state.useWheel = getOption(data, 'zoomUseWheel', false);\n state.useClick = getOption(data, 'zoomUseClick', true);\n state.pinFrame = getOption(data, 'zoomPinFrame', true);\n state.doubleClickTime = getOption(data, 'zoomDoubleClickTime', 500);\n state.stage = state.stage || $$1(\"<div class='zoom-stage'></div>\");\n state.stage.css({\n width: '100%',\n height: '100%',\n top: 0,\n left: 0,\n bottom: 0,\n right: 0,\n position: 'absolute'\n })\n .appendTo(data.target)\n .hide();\n }\n function onDestroy(e, data) {\n var state = getState$$1(data);\n if (state.stage) {\n state.stage.remove();\n delete state.stage;\n }\n }\n function updateInput$$1(e, data) {\n var state = getState$$1(data);\n if (!state.stage.is(':visible')) {\n return;\n }\n e.preventDefault();\n if (state.pinFrame) {\n // hack into drag/move module and disable dragging\n // prevents frame change during zoom mode\n flag(data, 'dragging', false);\n }\n // grab touch/cursor position\n var cursor = getCursorPosition(e);\n // normalize cursor position into [0:1] range\n var x = cursor.x / data.width;\n var y = cursor.y / data.height;\n if (state.oldX == null) {\n state.oldX = x;\n state.oldY = y;\n }\n if (state.currentX == null) {\n state.currentX = x;\n state.currentY = y;\n }\n // calculate move delta since last frame and remember current position\n var dx = x - state.oldX;\n var dy = y - state.oldY;\n state.oldX = x;\n state.oldY = y;\n // invert drag direction for touch events to enable 'natural' scrolling\n if (e.type.match(/touch/)) {\n dx = -dx;\n dy = -dy;\n }\n // accumulate display coordinates\n state.currentX = clamp(state.currentX + dx, 0, 1);\n state.currentY = clamp(state.currentY + dy, 0, 1);\n updateFrame(data, data.frame, data.lane);\n }\n function onClick(e, data) {\n var state = getState$$1(data);\n if (!state.useClick) {\n return;\n }\n e.preventDefault();\n // simulate double click\n var clickTime = new Date().getTime();\n if (!state.clickTime) {\n // on first click\n state.clickTime = clickTime;\n return;\n }\n // on second click\n var timeDelta = clickTime - state.clickTime;\n if (timeDelta > state.doubleClickTime) {\n // took too long, back to first click\n state.clickTime = clickTime;\n return;\n }\n // on valid double click\n state.clickTime = undefined;\n if (toggleZoom(data)) {\n updateInput$$1(e, data);\n }\n }\n function onMove(e, data) {\n var state = getState$$1(data);\n if (state.stage.is(':visible')) {\n updateInput$$1(e, data);\n }\n }\n function onDraw(e, data) {\n var state = getState$$1(data);\n // calculate the frame index\n var index = data.lane * data.frames + data.frame;\n // get the zoom image. Use original frames as fallback. This won't work for sprite sheets\n var source = state.source[index];\n var spec = findSpecs(data.metrics, data.frames, data.frame, data.lane);\n // get display position\n var x = state.currentX;\n var y = state.currentY;\n // fallback to centered position\n if (x == null) {\n x = state.currentX = 0.5;\n y = state.currentY = 0.5;\n }\n if (source) {\n // scale up from [0:1] to [0:100] range\n x = Math.floor(x * 100);\n y = Math.floor(y * 100);\n // update background image and position\n state.stage.css({\n 'background-repeat': 'no-repeat',\n 'background-image': \"url('\" + source + \"')\",\n 'background-position': x + \"% \" + y + \"%\"\n });\n }\n else if (spec.sheet && spec.sprite) {\n var sprite = spec.sprite;\n var sheet = spec.sheet;\n var src = data.source[sheet.id];\n var left = -Math.floor(sprite.sampledX + x * (sprite.sampledWidth - data.width));\n var top_1 = -Math.floor(sprite.sampledY + y * (sprite.sampledHeight - data.height));\n var width = sheet.sampledWidth;\n var height = sheet.sampledHeight;\n state.stage.css({\n 'background-image': \"url('\" + src + \"')\",\n 'background-position': left + \"px \" + top_1 + \"px\",\n 'background-repeat': 'no-repeat',\n // set custom background size to enable responsive rendering\n '-webkit-background-size': width + \"px \" + height + \"px\",\n '-moz-background-size': width + \"px \" + height + \"px\",\n '-o-background-size': width + \"px \" + height + \"px\",\n 'background-size': width + \"px \" + height + \"px\" /* Chrome, Firefox 4+, IE 9+, Opera, Safari 5+ */\n });\n }\n }\n function toggleZoom(data) {\n var state = getState$$1(data);\n if (!state.stage) {\n throw new Error('zoom module is not initialized or is not available.');\n }\n if (state.stage.is(':visible')) {\n showZoom(data);\n }\n else {\n hideZoom(data);\n return true;\n }\n return false;\n }\n function showZoom(data) {\n var state = getState$$1(data);\n state.stage.fadeOut();\n data.stage.fadeIn();\n }\n function hideZoom(data) {\n var state = getState$$1(data);\n state.stage.fadeIn();\n data.stage.fadeOut();\n }\n function wheel(e, data) {\n var state = getState$$1(data);\n if (!data.loading && state.useWheel) {\n var we = e.originalEvent;\n var signY = we.deltaY === 0 ? 0 : we.deltaY > 0 ? 1 : -1;\n if (typeof state.useWheel === 'number') {\n signY *= state.useWheel;\n }\n if (state.stage.is(':visible') && signY > 0) {\n e.preventDefault();\n showZoom(data);\n }\n if (!state.stage.is(':visible') && signY < 0) {\n e.preventDefault();\n hideZoom(data);\n }\n }\n }\n registerPlugin(NAME, {\n name: NAME,\n mousedown: onClick,\n touchstart: onClick,\n mousemove: onMove,\n touchmove: onMove,\n wheel: wheel,\n onInit: onInit,\n onDestroy: onDestroy,\n onDraw: onDraw\n });\n extendApi({\n toggleZoom: function () { toggleZoom(this.data); } // tslint:disable-line\n });\n})();\n\nvar Utils = {\n $: $$1,\n bind: bind,\n clamp: clamp,\n detectSubsampling: detectSubsampling,\n error: error,\n findSpecs: findSpecs,\n getComputedSize: getComputedSize,\n getCursorPosition: getCursorPosition,\n getInnerLayout: getInnerLayout,\n getInnerSize: getInnerSize,\n getOuterSize: getOuterSize,\n isFunction: isFunction,\n log: log,\n measure: measure,\n naturalSize: naturalSize,\n noop: noop$1,\n pixelRatio: pixelRatio,\n preload: preload,\n prevent: prevent,\n sourceArray: sourceArray,\n toArray: toArray,\n unbind: unbind,\n warn: warn,\n wrap: wrap\n};\n\nexports.Utils = Utils;\nexports.sourceArray = sourceArray;\nexports.Api = Api;\nexports.extendApi = extendApi;\nexports.instances = instances;\nexports.applyEvents = applyEvents;\nexports.boot = boot;\nexports.create = create;\nexports.createOrUpdate = createOrUpdate;\nexports.destroy = destroy;\nexports.namespace = namespace;\nexports.eventNames = eventNames;\nexports.callbackNames = callbackNames;\nexports.eventsToPrevent = eventsToPrevent;\nexports.defaults = defaults;\nexports.getInputState = getInputState;\nexports.updateInput = updateInput;\nexports.resetInput = resetInput;\nexports.applyLayout = applyLayout;\nexports.getPlaybackState = getPlaybackState;\nexports.updateFrame = updateFrame;\nexports.stopAnimation = stopAnimation;\nexports.applyAnimation = applyAnimation;\nexports.startAnimation = startAnimation;\nexports.registerPlugin = registerPlugin;\nexports.registerModule = registerModule;\nexports.getPlugin = getPlugin;\nexports.applyPlugins = applyPlugins;\nexports.getState = getState;\nexports.getPluginState = getPluginState;\nexports.is = is;\nexports.flag = flag;\n\nObject.defineProperty(exports, '__esModule', { value: true });\n\n})));\n\n\n},{}],159:[function(require,module,exports){\n(function (setImmediate,clearImmediate){(function (){\nvar nextTick = require('process/browser.js').nextTick;\nvar apply = Function.prototype.apply;\nvar slice = Array.prototype.slice;\nvar immediateIds = {};\nvar nextImmediateId = 0;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, window, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, window, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) { timeout.close(); };\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(window, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// That's not how node.js implements it but the exposed api is the same.\nexports.setImmediate = typeof setImmediate === \"function\" ? setImmediate : function(fn) {\n var id = nextImmediateId++;\n var args = arguments.length < 2 ? false : slice.call(arguments, 1);\n\n immediateIds[id] = true;\n\n nextTick(function onNextTick() {\n if (immediateIds[id]) {\n // fn.call() is faster so we optimize for the common use-case\n // @see http://jsperf.com/call-apply-segu\n if (args) {\n fn.apply(null, args);\n } else {\n fn.call(null);\n }\n // Prevent ids from leaking\n exports.clearImmediate(id);\n }\n });\n\n return id;\n};\n\nexports.clearImmediate = typeof clearImmediate === \"function\" ? clearImmediate : function(id) {\n delete immediateIds[id];\n};\n}).call(this)}).call(this,require(\"timers\").setImmediate,require(\"timers\").clearImmediate)\n},{\"process/browser.js\":140,\"timers\":159}],160:[function(require,module,exports){\n(function (global){(function (){\n/*! https://mths.be/punycode v1.4.1 by @mathias */\n;(function(root) {\n\n\t/** Detect free variables */\n\tvar freeExports = typeof exports == 'object' && exports &&\n\t\t!exports.nodeType && exports;\n\tvar freeModule = typeof module == 'object' && module &&\n\t\t!module.nodeType && module;\n\tvar freeGlobal = typeof global == 'object' && global;\n\tif (\n\t\tfreeGlobal.global === freeGlobal ||\n\t\tfreeGlobal.window === freeGlobal ||\n\t\tfreeGlobal.self === freeGlobal\n\t) {\n\t\troot = freeGlobal;\n\t}\n\n\t/**\n\t * The `punycode` object.\n\t * @name punycode\n\t * @type Object\n\t */\n\tvar punycode,\n\n\t/** Highest positive signed 32-bit float value */\n\tmaxInt = 2147483647, // aka. 0x7FFFFFFF or 2^31-1\n\n\t/** Bootstring parameters */\n\tbase = 36,\n\ttMin = 1,\n\ttMax = 26,\n\tskew = 38,\n\tdamp = 700,\n\tinitialBias = 72,\n\tinitialN = 128, // 0x80\n\tdelimiter = '-', // '\\x2D'\n\n\t/** Regular expressions */\n\tregexPunycode = /^xn--/,\n\tregexNonASCII = /[^\\x20-\\x7E]/, // unprintable ASCII chars + non-ASCII chars\n\tregexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g, // RFC 3490 separators\n\n\t/** Error messages */\n\terrors = {\n\t\t'overflow': 'Overflow: input needs wider integers to process',\n\t\t'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n\t\t'invalid-input': 'Invalid input'\n\t},\n\n\t/** Convenience shortcuts */\n\tbaseMinusTMin = base - tMin,\n\tfloor = Math.floor,\n\tstringFromCharCode = String.fromCharCode,\n\n\t/** Temporary variable */\n\tkey;\n\n\t/*--------------------------------------------------------------------------*/\n\n\t/**\n\t * A generic error utility function.\n\t * @private\n\t * @param {String} type The error type.\n\t * @returns {Error} Throws a `RangeError` with the applicable error message.\n\t */\n\tfunction error(type) {\n\t\tthrow new RangeError(errors[type]);\n\t}\n\n\t/**\n\t * A generic `Array#map` utility function.\n\t * @private\n\t * @param {Array} array The array to iterate over.\n\t * @param {Function} callback The function that gets called for every array\n\t * item.\n\t * @returns {Array} A new array of values returned by the callback function.\n\t */\n\tfunction map(array, fn) {\n\t\tvar length = array.length;\n\t\tvar result = [];\n\t\twhile (length--) {\n\t\t\tresult[length] = fn(array[length]);\n\t\t}\n\t\treturn result;\n\t}\n\n\t/**\n\t * A simple `Array#map`-like wrapper to work with domain name strings or email\n\t * addresses.\n\t * @private\n\t * @param {String} domain The domain name or email address.\n\t * @param {Function} callback The function that gets called for every\n\t * character.\n\t * @returns {Array} A new string of characters returned by the callback\n\t * function.\n\t */\n\tfunction mapDomain(string, fn) {\n\t\tvar parts = string.split('@');\n\t\tvar result = '';\n\t\tif (parts.length > 1) {\n\t\t\t// In email addresses, only the domain name should be punycoded. Leave\n\t\t\t// the local part (i.e. everything up to `@`) intact.\n\t\t\tresult = parts[0] + '@';\n\t\t\tstring = parts[1];\n\t\t}\n\t\t// Avoid `split(regex)` for IE8 compatibility. See #17.\n\t\tstring = string.replace(regexSeparators, '\\x2E');\n\t\tvar labels = string.split('.');\n\t\tvar encoded = map(labels, fn).join('.');\n\t\treturn result + encoded;\n\t}\n\n\t/**\n\t * Creates an array containing the numeric code points of each Unicode\n\t * character in the string. While JavaScript uses UCS-2 internally,\n\t * this function will convert a pair of surrogate halves (each of which\n\t * UCS-2 exposes as separate characters) into a single code point,\n\t * matching UTF-16.\n\t * @see `punycode.ucs2.encode`\n\t * @see <https://mathiasbynens.be/notes/javascript-encoding>\n\t * @memberOf punycode.ucs2\n\t * @name decode\n\t * @param {String} string The Unicode input string (UCS-2).\n\t * @returns {Array} The new array of code points.\n\t */\n\tfunction ucs2decode(string) {\n\t\tvar output = [],\n\t\t counter = 0,\n\t\t length = string.length,\n\t\t value,\n\t\t extra;\n\t\twhile (counter < length) {\n\t\t\tvalue = string.charCodeAt(counter++);\n\t\t\tif (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n\t\t\t\t// high surrogate, and there is a next character\n\t\t\t\textra = string.charCodeAt(counter++);\n\t\t\t\tif ((extra & 0xFC00) == 0xDC00) { // low surrogate\n\t\t\t\t\toutput.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n\t\t\t\t} else {\n\t\t\t\t\t// unmatched surrogate; only append this code unit, in case the next\n\t\t\t\t\t// code unit is the high surrogate of a surrogate pair\n\t\t\t\t\toutput.push(value);\n\t\t\t\t\tcounter--;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\toutput.push(value);\n\t\t\t}\n\t\t}\n\t\treturn output;\n\t}\n\n\t/**\n\t * Creates a string based on an array of numeric code points.\n\t * @see `punycode.ucs2.decode`\n\t * @memberOf punycode.ucs2\n\t * @name encode\n\t * @param {Array} codePoints The array of numeric code points.\n\t * @returns {String} The new Unicode string (UCS-2).\n\t */\n\tfunction ucs2encode(array) {\n\t\treturn map(array, function(value) {\n\t\t\tvar output = '';\n\t\t\tif (value > 0xFFFF) {\n\t\t\t\tvalue -= 0x10000;\n\t\t\t\toutput += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n\t\t\t\tvalue = 0xDC00 | value & 0x3FF;\n\t\t\t}\n\t\t\toutput += stringFromCharCode(value);\n\t\t\treturn output;\n\t\t}).join('');\n\t}\n\n\t/**\n\t * Converts a basic code point into a digit/integer.\n\t * @see `digitToBasic()`\n\t * @private\n\t * @param {Number} codePoint The basic numeric code point value.\n\t * @returns {Number} The numeric value of a basic code point (for use in\n\t * representing integers) in the range `0` to `base - 1`, or `base` if\n\t * the code point does not represent a value.\n\t */\n\tfunction basicToDigit(codePoint) {\n\t\tif (codePoint - 48 < 10) {\n\t\t\treturn codePoint - 22;\n\t\t}\n\t\tif (codePoint - 65 < 26) {\n\t\t\treturn codePoint - 65;\n\t\t}\n\t\tif (codePoint - 97 < 26) {\n\t\t\treturn codePoint - 97;\n\t\t}\n\t\treturn base;\n\t}\n\n\t/**\n\t * Converts a digit/integer into a basic code point.\n\t * @see `basicToDigit()`\n\t * @private\n\t * @param {Number} digit The numeric value of a basic code point.\n\t * @returns {Number} The basic code point whose value (when used for\n\t * representing integers) is `digit`, which needs to be in the range\n\t * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n\t * used; else, the lowercase form is used. The behavior is undefined\n\t * if `flag` is non-zero and `digit` has no uppercase form.\n\t */\n\tfunction digitToBasic(digit, flag) {\n\t\t// 0..25 map to ASCII a..z or A..Z\n\t\t// 26..35 map to ASCII 0..9\n\t\treturn digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n\t}\n\n\t/**\n\t * Bias adaptation function as per section 3.4 of RFC 3492.\n\t * https://tools.ietf.org/html/rfc3492#section-3.4\n\t * @private\n\t */\n\tfunction adapt(delta, numPoints, firstTime) {\n\t\tvar k = 0;\n\t\tdelta = firstTime ? floor(delta / damp) : delta >> 1;\n\t\tdelta += floor(delta / numPoints);\n\t\tfor (/* no initialization */; delta > baseMinusTMin * tMax >> 1; k += base) {\n\t\t\tdelta = floor(delta / baseMinusTMin);\n\t\t}\n\t\treturn floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n\t}\n\n\t/**\n\t * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n\t * symbols.\n\t * @memberOf punycode\n\t * @param {String} input The Punycode string of ASCII-only symbols.\n\t * @returns {String} The resulting string of Unicode symbols.\n\t */\n\tfunction decode(input) {\n\t\t// Don't use UCS-2\n\t\tvar output = [],\n\t\t inputLength = input.length,\n\t\t out,\n\t\t i = 0,\n\t\t n = initialN,\n\t\t bias = initialBias,\n\t\t basic,\n\t\t j,\n\t\t index,\n\t\t oldi,\n\t\t w,\n\t\t k,\n\t\t digit,\n\t\t t,\n\t\t /** Cached calculation results */\n\t\t baseMinusT;\n\n\t\t// Handle the basic code points: let `basic` be the number of input code\n\t\t// points before the last delimiter, or `0` if there is none, then copy\n\t\t// the first basic code points to the output.\n\n\t\tbasic = input.lastIndexOf(delimiter);\n\t\tif (basic < 0) {\n\t\t\tbasic = 0;\n\t\t}\n\n\t\tfor (j = 0; j < basic; ++j) {\n\t\t\t// if it's not a basic code point\n\t\t\tif (input.charCodeAt(j) >= 0x80) {\n\t\t\t\terror('not-basic');\n\t\t\t}\n\t\t\toutput.push(input.charCodeAt(j));\n\t\t}\n\n\t\t// Main decoding loop: start just after the last delimiter if any basic code\n\t\t// points were copied; start at the beginning otherwise.\n\n\t\tfor (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) {\n\n\t\t\t// `index` is the index of the next character to be consumed.\n\t\t\t// Decode a generalized variable-length integer into `delta`,\n\t\t\t// which gets added to `i`. The overflow checking is easier\n\t\t\t// if we increase `i` as we go, then subtract off its starting\n\t\t\t// value at the end to obtain `delta`.\n\t\t\tfor (oldi = i, w = 1, k = base; /* no condition */; k += base) {\n\n\t\t\t\tif (index >= inputLength) {\n\t\t\t\t\terror('invalid-input');\n\t\t\t\t}\n\n\t\t\t\tdigit = basicToDigit(input.charCodeAt(index++));\n\n\t\t\t\tif (digit >= base || digit > floor((maxInt - i) / w)) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\ti += digit * w;\n\t\t\t\tt = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n\t\t\t\tif (digit < t) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tbaseMinusT = base - t;\n\t\t\t\tif (w > floor(maxInt / baseMinusT)) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\tw *= baseMinusT;\n\n\t\t\t}\n\n\t\t\tout = output.length + 1;\n\t\t\tbias = adapt(i - oldi, out, oldi == 0);\n\n\t\t\t// `i` was supposed to wrap around from `out` to `0`,\n\t\t\t// incrementing `n` each time, so we'll fix that now:\n\t\t\tif (floor(i / out) > maxInt - n) {\n\t\t\t\terror('overflow');\n\t\t\t}\n\n\t\t\tn += floor(i / out);\n\t\t\ti %= out;\n\n\t\t\t// Insert `n` at position `i` of the output\n\t\t\toutput.splice(i++, 0, n);\n\n\t\t}\n\n\t\treturn ucs2encode(output);\n\t}\n\n\t/**\n\t * Converts a string of Unicode symbols (e.g. a domain name label) to a\n\t * Punycode string of ASCII-only symbols.\n\t * @memberOf punycode\n\t * @param {String} input The string of Unicode symbols.\n\t * @returns {String} The resulting Punycode string of ASCII-only symbols.\n\t */\n\tfunction encode(input) {\n\t\tvar n,\n\t\t delta,\n\t\t handledCPCount,\n\t\t basicLength,\n\t\t bias,\n\t\t j,\n\t\t m,\n\t\t q,\n\t\t k,\n\t\t t,\n\t\t currentValue,\n\t\t output = [],\n\t\t /** `inputLength` will hold the number of code points in `input`. */\n\t\t inputLength,\n\t\t /** Cached calculation results */\n\t\t handledCPCountPlusOne,\n\t\t baseMinusT,\n\t\t qMinusT;\n\n\t\t// Convert the input in UCS-2 to Unicode\n\t\tinput = ucs2decode(input);\n\n\t\t// Cache the length\n\t\tinputLength = input.length;\n\n\t\t// Initialize the state\n\t\tn = initialN;\n\t\tdelta = 0;\n\t\tbias = initialBias;\n\n\t\t// Handle the basic code points\n\t\tfor (j = 0; j < inputLength; ++j) {\n\t\t\tcurrentValue = input[j];\n\t\t\tif (currentValue < 0x80) {\n\t\t\t\toutput.push(stringFromCharCode(currentValue));\n\t\t\t}\n\t\t}\n\n\t\thandledCPCount = basicLength = output.length;\n\n\t\t// `handledCPCount` is the number of code points that have been handled;\n\t\t// `basicLength` is the number of basic code points.\n\n\t\t// Finish the basic string - if it is not empty - with a delimiter\n\t\tif (basicLength) {\n\t\t\toutput.push(delimiter);\n\t\t}\n\n\t\t// Main encoding loop:\n\t\twhile (handledCPCount < inputLength) {\n\n\t\t\t// All non-basic code points < n have been handled already. Find the next\n\t\t\t// larger one:\n\t\t\tfor (m = maxInt, j = 0; j < inputLength; ++j) {\n\t\t\t\tcurrentValue = input[j];\n\t\t\t\tif (currentValue >= n && currentValue < m) {\n\t\t\t\t\tm = currentValue;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Increase `delta` enough to advance the decoder's <n,i> state to <m,0>,\n\t\t\t// but guard against overflow\n\t\t\thandledCPCountPlusOne = handledCPCount + 1;\n\t\t\tif (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n\t\t\t\terror('overflow');\n\t\t\t}\n\n\t\t\tdelta += (m - n) * handledCPCountPlusOne;\n\t\t\tn = m;\n\n\t\t\tfor (j = 0; j < inputLength; ++j) {\n\t\t\t\tcurrentValue = input[j];\n\n\t\t\t\tif (currentValue < n && ++delta > maxInt) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\tif (currentValue == n) {\n\t\t\t\t\t// Represent delta as a generalized variable-length integer\n\t\t\t\t\tfor (q = delta, k = base; /* no condition */; k += base) {\n\t\t\t\t\t\tt = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\t\t\t\t\t\tif (q < t) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tqMinusT = q - t;\n\t\t\t\t\t\tbaseMinusT = base - t;\n\t\t\t\t\t\toutput.push(\n\t\t\t\t\t\t\tstringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n\t\t\t\t\t\t);\n\t\t\t\t\t\tq = floor(qMinusT / baseMinusT);\n\t\t\t\t\t}\n\n\t\t\t\t\toutput.push(stringFromCharCode(digitToBasic(q, 0)));\n\t\t\t\t\tbias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n\t\t\t\t\tdelta = 0;\n\t\t\t\t\t++handledCPCount;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t++delta;\n\t\t\t++n;\n\n\t\t}\n\t\treturn output.join('');\n\t}\n\n\t/**\n\t * Converts a Punycode string representing a domain name or an email address\n\t * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n\t * it doesn't matter if you call it on a string that has already been\n\t * converted to Unicode.\n\t * @memberOf punycode\n\t * @param {String} input The Punycoded domain name or email address to\n\t * convert to Unicode.\n\t * @returns {String} The Unicode representation of the given Punycode\n\t * string.\n\t */\n\tfunction toUnicode(input) {\n\t\treturn mapDomain(input, function(string) {\n\t\t\treturn regexPunycode.test(string)\n\t\t\t\t? decode(string.slice(4).toLowerCase())\n\t\t\t\t: string;\n\t\t});\n\t}\n\n\t/**\n\t * Converts a Unicode string representing a domain name or an email address to\n\t * Punycode. Only the non-ASCII parts of the domain name will be converted,\n\t * i.e. it doesn't matter if you call it with a domain that's already in\n\t * ASCII.\n\t * @memberOf punycode\n\t * @param {String} input The domain name or email address to convert, as a\n\t * Unicode string.\n\t * @returns {String} The Punycode representation of the given domain name or\n\t * email address.\n\t */\n\tfunction toASCII(input) {\n\t\treturn mapDomain(input, function(string) {\n\t\t\treturn regexNonASCII.test(string)\n\t\t\t\t? 'xn--' + encode(string)\n\t\t\t\t: string;\n\t\t});\n\t}\n\n\t/*--------------------------------------------------------------------------*/\n\n\t/** Define the public API */\n\tpunycode = {\n\t\t/**\n\t\t * A string representing the current Punycode.js version number.\n\t\t * @memberOf punycode\n\t\t * @type String\n\t\t */\n\t\t'version': '1.4.1',\n\t\t/**\n\t\t * An object of methods to convert from JavaScript's internal character\n\t\t * representation (UCS-2) to Unicode code points, and back.\n\t\t * @see <https://mathiasbynens.be/notes/javascript-encoding>\n\t\t * @memberOf punycode\n\t\t * @type Object\n\t\t */\n\t\t'ucs2': {\n\t\t\t'decode': ucs2decode,\n\t\t\t'encode': ucs2encode\n\t\t},\n\t\t'decode': decode,\n\t\t'encode': encode,\n\t\t'toASCII': toASCII,\n\t\t'toUnicode': toUnicode\n\t};\n\n\t/** Expose `punycode` */\n\t// Some AMD build optimizers, like r.js, check for specific condition patterns\n\t// like the following:\n\tif (\n\t\ttypeof define == 'function' &&\n\t\ttypeof define.amd == 'object' &&\n\t\tdefine.amd\n\t) {\n\t\tdefine('punycode', function() {\n\t\t\treturn punycode;\n\t\t});\n\t} else if (freeExports && freeModule) {\n\t\tif (module.exports == freeExports) {\n\t\t\t// in Node.js, io.js, or RingoJS v0.8.0+\n\t\t\tfreeModule.exports = punycode;\n\t\t} else {\n\t\t\t// in Narwhal or RingoJS v0.7.0-\n\t\t\tfor (key in punycode) {\n\t\t\t\tpunycode.hasOwnProperty(key) && (freeExports[key] = punycode[key]);\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// in Rhino or a web browser\n\t\troot.punycode = punycode;\n\t}\n\n}(this));\n\n}).call(this)}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n},{}],161:[function(require,module,exports){\n/*\n * Copyright Joyent, Inc. and other Node contributors.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to permit\n * persons to whom the Software is furnished to do so, subject to the\n * following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n * NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n * USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n'use strict';\n\nvar punycode = require('punycode/');\n\nfunction Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n/*\n * define these here so at least they only have to be\n * compiled once on the first module load.\n */\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^?\\s]*)(\\?[^\\s]*)?$/,\n\n /*\n * RFC 2396: characters reserved for delimiting URLs.\n * We actually just auto-escape these.\n */\n delims = [\n '<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'\n ],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = [\n '{', '}', '|', '\\\\', '^', '`'\n ].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n /*\n * Characters that are never ever allowed in a hostname.\n * Note that any invalid chars are also handled, but these\n * are the ones that are *expected* to be seen, so we fast-path\n * them.\n */\n nonHostChars = [\n '%', '/', '?', ';', '#'\n ].concat(autoEscape),\n hostEndingChars = [\n '/', '?', '#'\n ],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n javascript: true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n javascript: true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n http: true,\n https: true,\n ftp: true,\n gopher: true,\n file: true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n },\n querystring = require('qs');\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && typeof url === 'object' && url instanceof Url) { return url; }\n\n var u = new Url();\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\n\nUrl.prototype.parse = function (url, parseQueryString, slashesDenoteHost) {\n if (typeof url !== 'string') {\n throw new TypeError(\"Parameter 'url' must be a string, not \" + typeof url);\n }\n\n /*\n * Copy chrome, IE, opera backslash-handling behavior.\n * Back slashes before the query string get converted to forward slashes\n * See: https://code.google.com/p/chromium/issues/detail?id=25916\n */\n var queryIndex = url.indexOf('?'),\n splitter = queryIndex !== -1 && queryIndex < url.indexOf('#') ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n /*\n * trim before proceeding.\n * This is to support parse stuff like \" http://foo.com \\n\"\n */\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n this.path = rest;\n this.href = rest;\n this.pathname = simplePath[1];\n if (simplePath[2]) {\n this.search = simplePath[2];\n if (parseQueryString) {\n this.query = querystring.parse(this.search.substr(1));\n } else {\n this.query = this.search.substr(1);\n }\n } else if (parseQueryString) {\n this.search = '';\n this.query = {};\n }\n return this;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n this.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n /*\n * figure out if it's got a host\n * user@server is *always* interpreted as a hostname, and url\n * resolution will treat //foo/bar as host=foo,path=bar because that's\n * how the browser resolves relative URLs.\n */\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@/]+@[^@/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n this.slashes = true;\n }\n }\n\n if (!hostlessProtocol[proto] && (slashes || (proto && !slashedProtocol[proto]))) {\n\n /*\n * there's a hostname.\n * the first instance of /, ?, ;, or # ends the host.\n *\n * If there is an @ in the hostname, then non-host chars *are* allowed\n * to the left of the last @ sign, unless some host-ending character\n * comes *before* the @-sign.\n * URLs are obnoxious.\n *\n * ex:\n * http://a@b@c/ => user:a@b host:c\n * http://a@b?@c => user:a host:c path:/?@c\n */\n\n /*\n * v0.12 TODO(isaacs): This is not quite how Chrome does things.\n * Review our test case against browsers more comprehensively.\n */\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (var i = 0; i < hostEndingChars.length; i++) {\n var hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) { hostEnd = hec; }\n }\n\n /*\n * at this point, either we have an explicit point where the\n * auth portion cannot go past, or the last @ char is the decider.\n */\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n /*\n * atSign must be in auth portion.\n * http://a@b/c@d => host:b auth:a path:/c@d\n */\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n /*\n * Now we have a portion which is definitely the auth.\n * Pull that off.\n */\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n this.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (var i = 0; i < nonHostChars.length; i++) {\n var hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) { hostEnd = hec; }\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1) { hostEnd = rest.length; }\n\n this.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n this.parseHost();\n\n /*\n * we've indicated that there is a hostname,\n * so even if it's empty, it has to be present.\n */\n this.hostname = this.hostname || '';\n\n /*\n * if hostname begins with [ and ends with ]\n * assume that it's an IPv6 address.\n */\n var ipv6Hostname = this.hostname[0] === '[' && this.hostname[this.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = this.hostname.split(/\\./);\n for (var i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) { continue; }\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n /*\n * we replace non-ASCII char with a temporary placeholder\n * we need this to make sure size of hostname is not\n * broken by replacing non-ASCII by nothing\n */\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n this.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (this.hostname.length > hostnameMaxLen) {\n this.hostname = '';\n } else {\n // hostnames are always lower case.\n this.hostname = this.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n /*\n * IDNA Support: Returns a punycoded representation of \"domain\".\n * It only converts parts of the domain name that\n * have non-ASCII characters, i.e. it doesn't matter if\n * you call it with a domain that already is ASCII-only.\n */\n this.hostname = punycode.toASCII(this.hostname);\n }\n\n var p = this.port ? ':' + this.port : '';\n var h = this.hostname || '';\n this.host = h + p;\n this.href += this.host;\n\n /*\n * strip [ and ] from the hostname\n * the host field still retains them, though\n */\n if (ipv6Hostname) {\n this.hostname = this.hostname.substr(1, this.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n /*\n * now rest is set to the post-host stuff.\n * chop off any delim chars.\n */\n if (!unsafeProtocol[lowerProto]) {\n\n /*\n * First, make 100% sure that any \"autoEscape\" chars get\n * escaped, even if encodeURIComponent doesn't think they\n * need to be.\n */\n for (var i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1) { continue; }\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n this.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n this.search = rest.substr(qm);\n this.query = rest.substr(qm + 1);\n if (parseQueryString) {\n this.query = querystring.parse(this.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n this.search = '';\n this.query = {};\n }\n if (rest) { this.pathname = rest; }\n if (slashedProtocol[lowerProto] && this.hostname && !this.pathname) {\n this.pathname = '/';\n }\n\n // to support http.request\n if (this.pathname || this.search) {\n var p = this.pathname || '';\n var s = this.search || '';\n this.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n this.href = this.format();\n return this;\n};\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n /*\n * ensure it's an object, and not a string url.\n * If it's an obj, this is a no-op.\n * this way, you can call url_format() on strings\n * to clean up potentially wonky urls.\n */\n if (typeof obj === 'string') { obj = urlParse(obj); }\n if (!(obj instanceof Url)) { return Url.prototype.format.call(obj); }\n return obj.format();\n}\n\nUrl.prototype.format = function () {\n var auth = this.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = this.protocol || '',\n pathname = this.pathname || '',\n hash = this.hash || '',\n host = false,\n query = '';\n\n if (this.host) {\n host = auth + this.host;\n } else if (this.hostname) {\n host = auth + (this.hostname.indexOf(':') === -1 ? this.hostname : '[' + this.hostname + ']');\n if (this.port) {\n host += ':' + this.port;\n }\n }\n\n if (this.query && typeof this.query === 'object' && Object.keys(this.query).length) {\n query = querystring.stringify(this.query, {\n arrayFormat: 'repeat',\n addQueryPrefix: false\n });\n }\n\n var search = this.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') { protocol += ':'; }\n\n /*\n * only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n * unless they had them to begin with.\n */\n if (this.slashes || (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') { pathname = '/' + pathname; }\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') { hash = '#' + hash; }\n if (search && search.charAt(0) !== '?') { search = '?' + search; }\n\n pathname = pathname.replace(/[?#]/g, function (match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n};\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function (relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) { return relative; }\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function (relative) {\n if (typeof relative === 'string') {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n /*\n * hash is always overridden, no matter what.\n * even href=\"\" will remove it.\n */\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol') { result[rkey] = relative[rkey]; }\n }\n\n // urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] && result.hostname && !result.pathname) {\n result.pathname = '/';\n result.path = result.pathname;\n }\n\n result.href = result.format();\n return result;\n }\n\n if (relative.protocol && relative.protocol !== result.protocol) {\n /*\n * if it's a known url protocol, then changing\n * the protocol does weird things\n * first, if it's not file:, then we MUST have a host,\n * and if there was a path\n * to begin with, then we MUST have a path.\n * if it is file:, then the host is dropped,\n * because that's known to be hostless.\n * anything else is assumed to be absolute.\n */\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n var relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift())) { }\n if (!relative.host) { relative.host = ''; }\n if (!relative.hostname) { relative.hostname = ''; }\n if (relPath[0] !== '') { relPath.unshift(''); }\n if (relPath.length < 2) { relPath.unshift(''); }\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = result.pathname && result.pathname.charAt(0) === '/',\n isRelAbs = relative.host || relative.pathname && relative.pathname.charAt(0) === '/',\n mustEndAbs = isRelAbs || isSourceAbs || (result.host && relative.pathname),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n relPath = relative.pathname && relative.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n\n /*\n * if the url is a non-slashed url, then relative\n * links like ../.. should be able\n * to crawl up to the hostname, as well. This is strange.\n * result.protocol has already been set by now.\n * Later on, put the first path part into the host field.\n */\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') { srcPath[0] = result.host; } else { srcPath.unshift(result.host); }\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') { relPath[0] = relative.host; } else { relPath.unshift(relative.host); }\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n\n if (isRelAbs) {\n // it's absolute.\n result.host = relative.host || relative.host === '' ? relative.host : result.host;\n result.hostname = relative.hostname || relative.hostname === '' ? relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n /*\n * it's relative\n * throw away the existing file, and take the new path instead.\n */\n if (!srcPath) { srcPath = []; }\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (relative.search != null) {\n /*\n * just pull out the search.\n * like href='?foo'.\n * Put this after the other two cases because it simplifies the booleans\n */\n if (psychotic) {\n result.host = srcPath.shift();\n result.hostname = result.host;\n /*\n * occationaly the auth can get stuck only in host\n * this especially happens in cases like\n * url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n */\n var authInHost = result.host && result.host.indexOf('@') > 0 ? result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.hostname = authInHost.shift();\n result.host = result.hostname;\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n // to support http.request\n if (result.pathname !== null || result.search !== null) {\n result.path = (result.pathname ? result.pathname : '') + (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n /*\n * no path at all. easy.\n * we've already handled the other stuff above.\n */\n result.pathname = null;\n // to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n /*\n * if a url ENDs in . or .., then it must get a trailing slash.\n * however, if it ends in anything else non-slashy,\n * then it must NOT get a trailing slash.\n */\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (result.host || relative.host || srcPath.length > 1) && (last === '.' || last === '..') || last === '';\n\n /*\n * strip single dots, resolve double dots to parent dir\n * if the path tries to go above the root, `up` ends up > 0\n */\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' && (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' || (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = isAbsolute ? '' : srcPath.length ? srcPath.shift() : '';\n result.host = result.hostname;\n /*\n * occationaly the auth can get stuck only in host\n * this especially happens in cases like\n * url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n */\n var authInHost = result.host && result.host.indexOf('@') > 0 ? result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.hostname = authInHost.shift();\n result.host = result.hostname;\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (srcPath.length > 0) {\n result.pathname = srcPath.join('/');\n } else {\n result.pathname = null;\n result.path = null;\n }\n\n // to support request.http\n if (result.pathname !== null || result.search !== null) {\n result.path = (result.pathname ? result.pathname : '') + (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function () {\n var host = this.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n this.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) { this.hostname = host; }\n};\n\nexports.parse = urlParse;\nexports.resolve = urlResolve;\nexports.resolveObject = urlResolveObject;\nexports.format = urlFormat;\n\nexports.Url = Url;\n\n},{\"punycode/\":160,\"qs\":150}],162:[function(require,module,exports){\n/*!\n * EventEmitter v4.2.11 - git.io/ee\n * Unlicense - http://unlicense.org/\n * Oliver Caldwell - http://oli.me.uk/\n * @preserve\n */\n\n;(function () {\n 'use strict';\n\n /**\n * Class for managing events.\n * Can be extended to provide event functionality in other classes.\n *\n * @class EventEmitter Manages event registering and emitting.\n */\n function EventEmitter() {}\n\n // Shortcuts to improve speed and size\n var proto = EventEmitter.prototype;\n var exports = this;\n var originalGlobalValue = exports.EventEmitter;\n\n /**\n * Finds the index of the listener for the event in its storage array.\n *\n * @param {Function[]} listeners Array of listeners to search through.\n * @param {Function} listener Method to look for.\n * @return {Number} Index of the specified listener, -1 if not found\n * @api private\n */\n function indexOfListener(listeners, listener) {\n var i = listeners.length;\n while (i--) {\n if (listeners[i].listener === listener) {\n return i;\n }\n }\n\n return -1;\n }\n\n /**\n * Alias a method while keeping the context correct, to allow for overwriting of target method.\n *\n * @param {String} name The name of the target method.\n * @return {Function} The aliased method\n * @api private\n */\n function alias(name) {\n return function aliasClosure() {\n return this[name].apply(this, arguments);\n };\n }\n\n /**\n * Returns the listener array for the specified event.\n * Will initialise the event object and listener arrays if required.\n * Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them.\n * Each property in the object response is an array of listener functions.\n *\n * @param {String|RegExp} evt Name of the event to return the listeners from.\n * @return {Function[]|Object} All listener functions for the event.\n */\n proto.getListeners = function getListeners(evt) {\n var events = this._getEvents();\n var response;\n var key;\n\n // Return a concatenated array of all matching events if\n // the selector is a regular expression.\n if (evt instanceof RegExp) {\n response = {};\n for (key in events) {\n if (events.hasOwnProperty(key) && evt.test(key)) {\n response[key] = events[key];\n }\n }\n }\n else {\n response = events[evt] || (events[evt] = []);\n }\n\n return response;\n };\n\n /**\n * Takes a list of listener objects and flattens it into a list of listener functions.\n *\n * @param {Object[]} listeners Raw listener objects.\n * @return {Function[]} Just the listener functions.\n */\n proto.flattenListeners = function flattenListeners(listeners) {\n var flatListeners = [];\n var i;\n\n for (i = 0; i < listeners.length; i += 1) {\n flatListeners.push(listeners[i].listener);\n }\n\n return flatListeners;\n };\n\n /**\n * Fetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful.\n *\n * @param {String|RegExp} evt Name of the event to return the listeners from.\n * @return {Object} All listener functions for an event in an object.\n */\n proto.getListenersAsObject = function getListenersAsObject(evt) {\n var listeners = this.getListeners(evt);\n var response;\n\n if (listeners instanceof Array) {\n response = {};\n response[evt] = listeners;\n }\n\n return response || listeners;\n };\n\n /**\n * Adds a listener function to the specified event.\n * The listener will not be added if it is a duplicate.\n * If the listener returns true then it will be removed after it is called.\n * If you pass a regular expression as the event name then the listener will be added to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to attach the listener to.\n * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addListener = function addListener(evt, listener) {\n var listeners = this.getListenersAsObject(evt);\n var listenerIsWrapped = typeof listener === 'object';\n var key;\n\n for (key in listeners) {\n if (listeners.hasOwnProperty(key) && indexOfListener(listeners[key], listener) === -1) {\n listeners[key].push(listenerIsWrapped ? listener : {\n listener: listener,\n once: false\n });\n }\n }\n\n return this;\n };\n\n /**\n * Alias of addListener\n */\n proto.on = alias('addListener');\n\n /**\n * Semi-alias of addListener. It will add a listener that will be\n * automatically removed after its first execution.\n *\n * @param {String|RegExp} evt Name of the event to attach the listener to.\n * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addOnceListener = function addOnceListener(evt, listener) {\n return this.addListener(evt, {\n listener: listener,\n once: true\n });\n };\n\n /**\n * Alias of addOnceListener.\n */\n proto.once = alias('addOnceListener');\n\n /**\n * Defines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad.\n * You need to tell it what event names should be matched by a regex.\n *\n * @param {String} evt Name of the event to create.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.defineEvent = function defineEvent(evt) {\n this.getListeners(evt);\n return this;\n };\n\n /**\n * Uses defineEvent to define multiple events.\n *\n * @param {String[]} evts An array of event names to define.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.defineEvents = function defineEvents(evts) {\n for (var i = 0; i < evts.length; i += 1) {\n this.defineEvent(evts[i]);\n }\n return this;\n };\n\n /**\n * Removes a listener function from the specified event.\n * When passed a regular expression as the event name, it will remove the listener from all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to remove the listener from.\n * @param {Function} listener Method to remove from the event.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeListener = function removeListener(evt, listener) {\n var listeners = this.getListenersAsObject(evt);\n var index;\n var key;\n\n for (key in listeners) {\n if (listeners.hasOwnProperty(key)) {\n index = indexOfListener(listeners[key], listener);\n\n if (index !== -1) {\n listeners[key].splice(index, 1);\n }\n }\n }\n\n return this;\n };\n\n /**\n * Alias of removeListener\n */\n proto.off = alias('removeListener');\n\n /**\n * Adds listeners in bulk using the manipulateListeners method.\n * If you pass an object as the second argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added.\n * You can also pass it a regular expression to add the array of listeners to all events that match it.\n * Yeah, this function does quite a bit. That's probably a bad thing.\n *\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add to multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to add.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addListeners = function addListeners(evt, listeners) {\n // Pass through to manipulateListeners\n return this.manipulateListeners(false, evt, listeners);\n };\n\n /**\n * Removes listeners in bulk using the manipulateListeners method.\n * If you pass an object as the second argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.\n * You can also pass it an event name and an array of listeners to be removed.\n * You can also pass it a regular expression to remove the listeners from all events that match it.\n *\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to remove from multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to remove.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeListeners = function removeListeners(evt, listeners) {\n // Pass through to manipulateListeners\n return this.manipulateListeners(true, evt, listeners);\n };\n\n /**\n * Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level.\n * The first argument will determine if the listeners are removed (true) or added (false).\n * If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.\n * You can also pass it an event name and an array of listeners to be added/removed.\n * You can also pass it a regular expression to manipulate the listeners of all events that match it.\n *\n * @param {Boolean} remove True if you want to remove listeners, false if you want to add.\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add/remove from multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to add/remove.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.manipulateListeners = function manipulateListeners(remove, evt, listeners) {\n var i;\n var value;\n var single = remove ? this.removeListener : this.addListener;\n var multiple = remove ? this.removeListeners : this.addListeners;\n\n // If evt is an object then pass each of its properties to this method\n if (typeof evt === 'object' && !(evt instanceof RegExp)) {\n for (i in evt) {\n if (evt.hasOwnProperty(i) && (value = evt[i])) {\n // Pass the single listener straight through to the singular method\n if (typeof value === 'function') {\n single.call(this, i, value);\n }\n else {\n // Otherwise pass back to the multiple function\n multiple.call(this, i, value);\n }\n }\n }\n }\n else {\n // So evt must be a string\n // And listeners must be an array of listeners\n // Loop over it and pass each one to the multiple method\n i = listeners.length;\n while (i--) {\n single.call(this, evt, listeners[i]);\n }\n }\n\n return this;\n };\n\n /**\n * Removes all listeners from a specified event.\n * If you do not specify an event then all listeners will be removed.\n * That means every event will be emptied.\n * You can also pass a regex to remove all events that match it.\n *\n * @param {String|RegExp} [evt] Optional name of the event to remove all listeners for. Will remove from every event if not passed.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeEvent = function removeEvent(evt) {\n var type = typeof evt;\n var events = this._getEvents();\n var key;\n\n // Remove different things depending on the state of evt\n if (type === 'string') {\n // Remove all listeners for the specified event\n delete events[evt];\n }\n else if (evt instanceof RegExp) {\n // Remove all events matching the regex.\n for (key in events) {\n if (events.hasOwnProperty(key) && evt.test(key)) {\n delete events[key];\n }\n }\n }\n else {\n // Remove all listeners in all events\n delete this._events;\n }\n\n return this;\n };\n\n /**\n * Alias of removeEvent.\n *\n * Added to mirror the node API.\n */\n proto.removeAllListeners = alias('removeEvent');\n\n /**\n * Emits an event of your choice.\n * When emitted, every listener attached to that event will be executed.\n * If you pass the optional argument array then those arguments will be passed to every listener upon execution.\n * Because it uses `apply`, your array of arguments will be passed as if you wrote them out separately.\n * So they will not arrive within the array on the other side, they will be separate.\n * You can also pass a regular expression to emit to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to emit and execute listeners for.\n * @param {Array} [args] Optional array of arguments to be passed to each listener.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.emitEvent = function emitEvent(evt, args) {\n var listenersMap = this.getListenersAsObject(evt);\n var listeners;\n var listener;\n var i;\n var key;\n var response;\n\n for (key in listenersMap) {\n if (listenersMap.hasOwnProperty(key)) {\n listeners = listenersMap[key].slice(0);\n i = listeners.length;\n\n while (i--) {\n // If the listener returns true then it shall be removed from the event\n // The function is executed either with a basic call or an apply if there is an args array\n listener = listeners[i];\n\n if (listener.once === true) {\n this.removeListener(evt, listener.listener);\n }\n\n response = listener.listener.apply(this, args || []);\n\n if (response === this._getOnceReturnValue()) {\n this.removeListener(evt, listener.listener);\n }\n }\n }\n }\n\n return this;\n };\n\n /**\n * Alias of emitEvent\n */\n proto.trigger = alias('emitEvent');\n\n /**\n * Subtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on.\n * As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to emit and execute listeners for.\n * @param {...*} Optional additional arguments to be passed to each listener.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.emit = function emit(evt) {\n var args = Array.prototype.slice.call(arguments, 1);\n return this.emitEvent(evt, args);\n };\n\n /**\n * Sets the current value to check against when executing listeners. If a\n * listeners return value matches the one set here then it will be removed\n * after execution. This value defaults to true.\n *\n * @param {*} value The new value to check for when executing listeners.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.setOnceReturnValue = function setOnceReturnValue(value) {\n this._onceReturnValue = value;\n return this;\n };\n\n /**\n * Fetches the current value to check against when executing listeners. If\n * the listeners return value matches this one then it should be removed\n * automatically. It will return true by default.\n *\n * @return {*|Boolean} The current value to check for or the default, true.\n * @api private\n */\n proto._getOnceReturnValue = function _getOnceReturnValue() {\n if (this.hasOwnProperty('_onceReturnValue')) {\n return this._onceReturnValue;\n }\n else {\n return true;\n }\n };\n\n /**\n * Fetches the events object and creates one if required.\n *\n * @return {Object} The events storage object.\n * @api private\n */\n proto._getEvents = function _getEvents() {\n return this._events || (this._events = {});\n };\n\n /**\n * Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version.\n *\n * @return {Function} Non conflicting EventEmitter class.\n */\n EventEmitter.noConflict = function noConflict() {\n exports.EventEmitter = originalGlobalValue;\n return EventEmitter;\n };\n\n // Expose the class either via AMD, CommonJS or the global object\n if (typeof define === 'function' && define.amd) {\n define(function () {\n return EventEmitter;\n });\n }\n else if (typeof module === 'object' && module.exports){\n module.exports = EventEmitter;\n }\n else {\n exports.EventEmitter = EventEmitter;\n }\n}.call(this));\n\n},{}]},{},[4]);\n"],"file":"app.js"}