{"version":3,"file":"main.min.js","sources":["main.min.js"],"sourcesContent":["/******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId])\n/******/ \t\t\treturn installedModules[moduleId].exports;\n\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\texports: {},\n/******/ \t\t\tid: moduleId,\n/******/ \t\t\tloaded: false\n/******/ \t\t};\n\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.loaded = true;\n\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n\n\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(0);\n/******/ })\n/************************************************************************/\n/******/ ([\n/* 0 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\twindow.jQuery = window.$ = __webpack_require__(108);\n\tvar processInclude = __webpack_require__(3);\n\n\t$(document).ready(function () {\n\t processInclude(__webpack_require__(109));\n\t processInclude(__webpack_require__(112));\n\t processInclude(__webpack_require__(114));\n\t processInclude(__webpack_require__(115));\n\t processInclude(__webpack_require__(136));\n\t processInclude(__webpack_require__(137));\n\t processInclude(__webpack_require__(59));\n\t processInclude(__webpack_require__(139));\n\t processInclude(__webpack_require__(140));\n\t processInclude(__webpack_require__(141));\n\t processInclude(__webpack_require__(142));\n\t});\n\n\t__webpack_require__(143);\n\t__webpack_require__(155);\n\t__webpack_require__(108);\n\t__webpack_require__(156);\n\t__webpack_require__(157);\n\t__webpack_require__(158);\n\t__webpack_require__(159);\n\n/***/ }),\n/* 1 */,\n/* 2 */,\n/* 3 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tmodule.exports = function (include) {\n\t if (typeof include === 'function') {\n\t include();\n\t } else if ((typeof include === 'undefined' ? 'undefined' : _typeof(include)) === 'object') {\n\t Object.keys(include).forEach(function (key) {\n\t if (typeof include[key] === 'function') {\n\t include[key]();\n\t }\n\t });\n\t }\n\t};\n\n/***/ }),\n/* 4 */,\n/* 5 */,\n/* 6 */,\n/* 7 */,\n/* 8 */,\n/* 9 */,\n/* 10 */,\n/* 11 */,\n/* 12 */,\n/* 13 */,\n/* 14 */,\n/* 15 */,\n/* 16 */,\n/* 17 */,\n/* 18 */,\n/* 19 */,\n/* 20 */,\n/* 21 */,\n/* 22 */,\n/* 23 */,\n/* 24 */,\n/* 25 */,\n/* 26 */,\n/* 27 */,\n/* 28 */,\n/* 29 */,\n/* 30 */,\n/* 31 */,\n/* 32 */,\n/* 33 */,\n/* 34 */,\n/* 35 */,\n/* 36 */,\n/* 37 */,\n/* 38 */,\n/* 39 */,\n/* 40 */,\n/* 41 */,\n/* 42 */,\n/* 43 */,\n/* 44 */,\n/* 45 */,\n/* 46 */,\n/* 47 */,\n/* 48 */,\n/* 49 */,\n/* 50 */,\n/* 51 */,\n/* 52 */,\n/* 53 */,\n/* 54 */,\n/* 55 */,\n/* 56 */,\n/* 57 */,\n/* 58 */,\n/* 59 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/**\n\t * Validate whole form. Requires `this` to be set to form object\n\t * @param {jQuery.event} event - Event to be canceled if form is invalid.\n\t * @returns {boolean} - Flag to indicate if form is valid\n\t */\n\n\tfunction _validateForm(event) {\n\t var valid = true;\n\t if (this.checkValidity && !this.checkValidity()) {\n\t // safari\n\t valid = false;\n\t if (event) {\n\t event.preventDefault();\n\t event.stopPropagation();\n\t event.stopImmediatePropagation();\n\t }\n\t $(this).find('input, select, textarea').each(function () {\n\t if (!this.validity.valid) {\n\t $(this).trigger('invalid', this.validity);\n\t }\n\t });\n\t }\n\t return valid;\n\t}\n\n\t/**\n\t * Remove all validation. Should be called every time before revalidating form\n\t * @param {element} form - Form to be cleared\n\t * @returns {void}\n\t */\n\tfunction clearForm(form) {\n\t $(form).find('.form-control.is-invalid').not('.custom-error').removeClass('is-invalid');\n\t $(form).find('.cc-phone-input-box.is-invalid').not('.custom-error').removeClass('is-invalid');\n\t $(form).find('.cc-is-invalid-container').removeClass('cc-is-invalid-container');\n\t}\n\n\t//eslint-disable-next-line complexity\n\tfunction insertInvalid(field) {\n\t var validationMessage;\n\t if (typeof field.validationMessage !== 'undefined') {\n\t validationMessage = field.validationMessage;\n\t } else {\n\t validationMessage = field[0].validationMessage;\n\t field = field[0];\n\t }\n\n\t if ($(field).data('rut-validation-enable')) {\n\t if ($(field).find('.custom-error, .is-invalid').length === 0 && validationMessage.length === 0) {\n\t validationMessage = $(field).data('external-rut-validation-error');\n\t }\n\t }\n\t if ($(field).data('max-acceptable-length')) {\n\t if ($(field).val().length > parseInt($(field).data('max-acceptable-length'))) {\n\t validationMessage = $(field).data('max-acceptable-length-error');\n\t }\n\t }\n\n\t if ($(field).hasClass('js-check-email')) {\n\t if ($(field).find('.custom-error, .is-invalid').length === 0 && validationMessage.length === 0) {\n\t validationMessage = $(field).data('email-exist');\n\t }\n\t }\n\n\t if ($(field).data('max') && $(field).val().length > parseInt($(field).data('max'))) {\n\t validationMessage = $(field).data('maxlength-error');\n\t }\n\n\t if ($(field).attr('minlength') && $(field).val().length < parseInt($(field).attr('minlength'))) {\n\t validationMessage = $(field).data('minlength-error');\n\t }\n\n\t if (!field.validity.valid) {\n\t if ($(field).closest('.js-phone-box-validator').find('.cc-phone-prefix').length) {\n\t $(field).closest('.js-phone-box-validator').addClass('is-invalid');\n\t } else {\n\t $(field).addClass('is-invalid');\n\t }\n\t //$(this).addClass('cc-invalid');\n\t $(field).closest('.cc-content-select').addClass('cc-is-invalid-container');\n\t if (field.validity.patternMismatch && $(field).data('pattern-mismatch')) {\n\t validationMessage = $(field).data('pattern-mismatch');\n\t }\n\t if ($(field).data('max-length-acceptable') !== null && $(field).data('range-error') && $(field).val().length > parseInt($(field).data('max-length-acceptable'))) {\n\t validationMessage = $(field).data('range-error');\n\t }\n\t if ((field.validity.rangeOverflow || field.validity.rangeUnderflow) && $(field).data('range-error')) {\n\t validationMessage = $(field).data('range-error');\n\t }\n\t if (field.validity.tooLong && ($(field).data('maxlength-error') || $(field).data('range-error'))) {\n\t validationMessage = $(field).data('maxlength-error') || $(field).data('range-error');\n\t }\n\t if (field.validity.tooShort && ($(field).data('minlength-error') || $(field).data('range-error'))) {\n\t validationMessage = $(field).data('minlength-error') || $(field).data('range-error');\n\t }\n\t if (field.validity.valueMissing && $(field).data('missing-error')) {\n\t validationMessage = $(field).data('missing-error');\n\t }\n\t if (field.validity.typeMismatch && $(field).data('type-mismatch')) {\n\t validationMessage = $(field).data('type-mismatch');\n\t }\n\n\t if ($(field).hasClass('js-validation-add-tick')) {\n\t if ($(field).is('input')) {\n\t $(field).closest('.cc-content-input').removeClass('cc-tick-ok is-valid');\n\t $('.cc-valid-success').addClass('d-none');\n\t }\n\t if ($(field).is('select')) {\n\t $(field).closest('.cc-content-select').removeClass('cc-tick-ok');\n\t }\n\t }\n\t }\n\t if ($(field).parents('.cc-form-group').find('.cc-text-message').length) {\n\t $(field).parents('.cc-form-group').find('.cc-text-message').text(validationMessage);\n\t } else {\n\t $(field).parents('.cc-form-group').find('.invalid-feedback').text(validationMessage);\n\t }\n\t}\n\n\tfunction removeInvalid(field) {\n\t if (typeof field.setCustomValidity !== 'undefined') {\n\t field.setCustomValidity('');\n\t } else {\n\t field = field[0];\n\t field.setCustomValidity('');\n\t }\n\t if (field.validity.valid) {\n\t $(field).removeClass('is-invalid');\n\t // some fields are inside a container which is marked as invalid -> remove the class in case\n\t var $elementInvalidFormContainer = $(field).closest('.form-control.is-invalid');\n\t if ($elementInvalidFormContainer.length) {\n\t $elementInvalidFormContainer.removeClass('is-invalid');\n\t }\n\t $(field).closest('.cc-content-select').removeClass('cc-is-invalid-container');\n\t $(field).closest('.cc-phone-input-box').removeClass('is-invalid');\n\t $(field).closest('.cc-content-select').find('.cc-select').removeClass('is-invalid');\n\t $('.js-input-title-radio').each(function () {\n\t if ($(this).prop('checked')) {\n\t $('.js-input-title-radio').removeClass('is-invalid');\n\t }\n\t });\n\t $(field).parents('.cc-form-group').find('.cc-text-message').text('');\n\t if ($(field).hasClass('js-validation-add-tick')) {\n\t if ($(field).is('input')) {\n\t $(field).closest('.cc-content-input').addClass('cc-tick-ok');\n\t $(field).closest('.cc-content-input').find('.cc-valid-success').removeClass('d-none');\n\t }\n\t if ($(field).is('select')) {\n\t $(field).closest('.cc-content-select').addClass('cc-tick-ok');\n\t $(field).closest('.cc-content-select').find('.cc-valid-success').addClass('d-none');\n\t }\n\t }\n\t }\n\t}\n\n\tfunction validateMaxAcceptableLength(field) {\n\t if (!$(field).data('max-acceptable-length')) {\n\t return;\n\t }\n\t field.setCustomValidity('');\n\n\t var $field = $(field);\n\t var fieldLength = $field.val().length;\n\t var maxLength = $field.data('max-acceptable-length');\n\t if (fieldLength > maxLength) {\n\t // If blank space is the last character over the limit,\n\t // then it is deleted and the error is not triggered\n\t if ($field.val()[maxLength] === ' ') {\n\t var trimmedAddress = $field.val().trimEnd();\n\t $field.val(trimmedAddress);\n\t $field.parents('.cc-form-group').find('.js-field-length-counter').text($field.val().length);\n\t } else {\n\t field.setCustomValidity($field.data('max-acceptable-length-error'));\n\t $field.siblings('.cc-form-description').addClass('is-invalid');\n\t // For mobile: Address is cut off at the max length + 1\n\t if (fieldLength > maxLength + 1) {\n\t $field.val($field.val().slice(0, maxLength + 1));\n\t }\n\t }\n\t } else if ($field.siblings('.cc-form-description').hasClass('is-invalid')) {\n\t $field.siblings('.cc-form-description').removeClass('is-invalid');\n\t }\n\t}\n\n\tfunction validateField(field) {\n\t validateMaxAcceptableLength(field);\n\t var isValidationSuccessful = true;\n\t if (field.validity) {\n\t if (!field.validity.valid) {\n\t insertInvalid(field);\n\t isValidationSuccessful = false;\n\t } else {\n\t removeInvalid(field);\n\t }\n\t }\n\t $(field).trigger('fieldValidated', {\n\t isValid: isValidationSuccessful\n\t });\n\n\t $(field).trigger('validateRUT', {\n\t isValid: isValidationSuccessful,\n\t insertInvalid: insertInvalid.bind(null, $(field)),\n\t removeInvalid: removeInvalid.bind(null, $(field))\n\t });\n\t}\n\n\tfunction validationForm(element) {\n\t var $form = $(element).closest('form');\n\t clearForm($form);\n\t $form.find('input, select, textarea').each(function () {\n\t insertInvalid(this);\n\t });\n\t var $invalidElements = $('.is-invalid, .custom-error');\n\t if ($invalidElements.length > 0) {\n\t var $formGroup = $invalidElements.first().parents('.cc-form-group');\n\t if ($formGroup.length > 0) {\n\t $formGroup[0].scrollIntoView({ behavior: 'smooth', block: 'center', inline: 'nearest' });\n\t }\n\t }\n\t}\n\n\tfunction validateNoMandatoryField(field) {\n\t validateMaxAcceptableLength(field);\n\t if (field.validity) {\n\t if (!field.validity.valid) {\n\t insertInvalid(field);\n\t } else {\n\t removeInvalid(field);\n\t }\n\t }\n\t var checkIfValueIsEmpty = $(field).val();\n\t if ($(field).hasClass('js-validation-add-tick')) {\n\t if (checkIfValueIsEmpty === \"\") {\n\t $(field).closest('.cc-content-input').removeClass('cc-tick-ok');\n\t }\n\t }\n\t}\n\n\tmodule.exports = {\n\n\t invalid: function invalid() {\n\t $('form input, form select, form textarea').on('invalid', function (e) {\n\t e.preventDefault();\n\t insertInvalid(this);\n\t //$(this).parents('.cc-form-group').find('.cc-error-message').show();\n\t });\n\t },\n\n\t submit: function submit() {\n\t $('form').on('submit', function (e) {\n\t // e.preventDefault();\n\t return _validateForm.call(this, e);\n\t });\n\n\t // validation called in case the submit of the form comes from a button of type 'button'\n\t $('body').on('validateOnSubmit', function (e, form) {\n\t return _validateForm.call(form, e);\n\t });\n\t },\n\n\t buttonClick: function buttonClick() {\n\t $('form button[type=\"submit\"], form input[type=\"submit\"]').on('click', function () {\n\t validationForm(this);\n\t });\n\t },\n\t //Temporary solution\n\t buttonClickAjax: function buttonClickAjax() {\n\t $(document).on('click', 'form.js-ajaxCall button[type=\"submit\"], form.js-ajaxCall input[type=\"submit\"]', function () {\n\t validationForm(this);\n\t });\n\t },\n\n\t validateOnChange: function validateOnChange() {\n\t $('body').on('change', '.js-validate-on-change', function () {\n\t if ($(this).prop('required')) {\n\t validateField(this);\n\t } else {\n\t validateNoMandatoryField(this);\n\t }\n\t });\n\t },\n\n\t avoidLettersOnInput: function avoidLettersOnInput() {\n\t $('body').on('input', '.js-avoid-letter-on-input', function () {\n\t this.value = this.value.replace(/[^0-9]/g, '');\n\t });\n\t },\n\n\t validateOnInput: function validateOnInput() {\n\t $('body').on('input', '.js-validate-on-input', function () {\n\t if ($(this).prop('required')) {\n\t validateField(this);\n\t } else {\n\t validateNoMandatoryField(this);\n\t }\n\t });\n\t },\n\n\t checkRut: function checkRut() {\n\t $('#rut-validation-checkout').on('change', function () {\n\t var $rut = $(this);\n\t validateField($rut);\n\t });\n\t },\n\n\t inputFromDropdownList: function inputFromDropdownList() {\n\t $('[id^=\"dni-validation-\"]').on('change', function () {\n\t var $dni = $(this)[0];\n\t validateField($dni);\n\t });\n\t },\n\n\t validateCheckBoxesOnChange: function validateCheckBoxesOnChange() {\n\t $('.js-validation-checkbox').on('change', function () {\n\t var $checkBox = $(this);\n\t $checkBox.removeClass('is-invalid');\n\t if ($checkBox.prop(\"checked\") === false && $checkBox.closest('.cc-form-group').hasClass('required')) {\n\t $checkBox.addClass('is-invalid');\n\t $checkBox.parents('.cc-form-group').find('.invalid-feedback').text($checkBox.data('missing-error'));\n\t $('body').trigger('FE_validation:fieldValidated', { element: $(this), valid: false });\n\t } else {\n\t $('body').trigger('FE_validation:fieldValidated', { element: $(this), valid: true });\n\t }\n\t });\n\t },\n\n\t dropdownLists: function dropdownLists() {\n\t $('#documentPick').on('change', function () {\n\t $('[id^=\"dni-validation-\"]').val('');\n\t $('.cc-valid-success').addClass('d-none');\n\t var $dni = $('[id^=\"dni-validation-\"]');\n\t $($dni[0]).removeClass('is-invalid');\n\t $($dni[0]).closest('.cc-content-input').removeClass('cc-tick-ok');\n\t });\n\t },\n\n\t functions: {\n\t validateForm: function validateForm(form, event) {\n\t _validateForm.call($(form), event || null);\n\t },\n\t clearForm: clearForm\n\t },\n\n\t validateCedulaForm: function validateCedulaForm($field) {\n\t if ($field && $field[0]) {\n\t return validateField($field[0]);\n\t }\n\t return null;\n\t }\n\t};\n\n/***/ }),\n/* 60 */,\n/* 61 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/**\n\t * Given a list of values and an emptied dropdown element, it populates the dropdown with the values\n\t * @param {*} dropdown - the dropdown to fill\n\t * @param {Array} list - an array of object containing {ID, value} of the address fields\n\t */\n\n\tfunction populateDropdownFromList(dropdown, list) {\n\t // one empty option on top\n\t var option = document.createElement(\"option\");\n\t option.value = '';\n\t option.text = $(dropdown).data('empty-option');\n\t option.selected = true;\n\t option.disabled = true;\n\t dropdown.add(option);\n\n\t // then the options coming from the list\n\t for (var i in list) {\n\t option = document.createElement(\"option\");\n\t option.value = list[i].ID;\n\t option.text = list[i].value;\n\t dropdown.add(option);\n\t }\n\t}\n\n\t/**\n\t * Function used to empty the values assigned to a unique address field (for example, the zipcode w.r.t. the subdistrict in Bata ID)\n\t * @param {String} fieldName - the name of the unique address field to empty\n\t * @param {String} formId - the ID of the form in which such address field is located\n\t */\n\tfunction emptyUniqueField(fieldName, formId) {\n\t var uniqueField = $('#' + formId + '-' + fieldName);\n\t uniqueField.val('');\n\t uniqueField.data('selected-id', '');\n\t if (uniqueField.hasClass('js-calculate-shipping-cost')) {\n\t uniqueField.trigger('change');\n\t }\n\t}\n\n\t/**\n\t * Function used to update or empty an address field in case it is unique w.r.t. the previous one\n\t * @param {Object} backendData - it contains the list of dropdowns to update, to empty and the type of the next field if it's unique\n\t */\n\tfunction manageUniqueField(backendData, section) {\n\t if (backendData.nextFieldUnique.toUpperCase() === backendData.typeToUpdate) {\n\n\t // if the next -unique- field is to update\n\t var valueToAssign = backendData.listToUpdate[0] ? backendData.listToUpdate[0].ID : '';\n\t var textToAssign = backendData.listToUpdate[0] ? backendData.listToUpdate[0].value : '';\n\t // Notice: the ID is saved in the .data('selected-id'), the value in the .val() to make it visible\n\t var uniqueField = $('#' + backendData.formId + '-' + backendData.nextFieldUnique);\n\t // in the checkout there are multiple times the same address element type in the same form, therefore we have to identify the correct section\n\t if (section) {\n\t uniqueField = $('#' + backendData.formId).find('#' + backendData.nextFieldUnique + '-' + section);\n\t }\n\t uniqueField.data('selected-id', valueToAssign);\n\t uniqueField.val(textToAssign);\n\t if (uniqueField.hasClass('js-calculate-shipping-cost')) {\n\t uniqueField.trigger('change');\n\t }\n\t } else if (backendData.typesToEmpty.indexOf(backendData.nextFieldUnique.toUpperCase()) > -1) {\n\n\t // if the next -unique- field is to empty\n\t emptyUniqueField(backendData.nextFieldUnique, backendData.formId);\n\t }\n\t}\n\n\t/**\n\t * Function called externally on submit of a form to substitute the fields having unique values with their related ID\n\t * @param {FormData} formData - the FormData element\n\t */\n\tfunction handleUniqueFieldsFormValues(formData) {\n\t // the unique fields in the forms need to contain the class 'js-change-value-with-id' and the attribute 'data-selected-id' to trigger the following logic\n\t var uniqueFields = $('.js-change-value-with-id');\n\t uniqueFields.each(function (field) {\n\t var fieldName = $(uniqueFields[field]).attr('name');\n\t var fieldID = $(uniqueFields[field]).data('selected-id');\n\t if (fieldID) {\n\t formData.set(fieldName, fieldID);\n\t }\n\t });\n\t}\n\n\t/**\n\t * Function to update the lists of options related to one or many dropdowns\n\t * @param {Object} data - it contains the dropdowns (elements to update) and the valuesLists (Object with the new option values)\n\t */\n\tfunction updateDropdownOptions(data) {\n\t data.dropdowns.each(function (ind) {\n\t // populate the next dropdown with the new values\n\t $(data.dropdowns[ind]).find('option').remove();\n\t var fieldToUpdate = $(data.dropdowns[ind]).closest('.editable-block').data('field-type').toLowerCase();\n\t var listToUpdate = data.valuesLists[fieldToUpdate] ? data.valuesLists[fieldToUpdate] : [];\n\t populateDropdownFromList(data.dropdowns[ind], listToUpdate);\n\t });\n\t var $selectPicker = $('.selectpicker');\n\t if ($selectPicker.length) {\n\t $selectPicker.selectpicker('refresh');\n\t }\n\t}\n\n\t/**\n\t * Function to retrieve from the backend the lists of options related to one or many dropdowns\n\t * @param {Object} data - it contains the formId (telling which form to update) and the address fields' values on the form dropdowns\n\t */\n\tfunction updateDropdownOptionsAjax(data) {\n\t //TODO deprecated at 90%\n\t var url = $('.js-shipping-address-container').data('address-field-autocomplete-url');\n\t if (url.length > 0) {\n\t $.spinner().start();\n\t $.ajax({\n\t url: url,\n\t type: 'POST',\n\t data: {\n\t formId: data.formId,\n\t province: data.attrs.stateCode,\n\t city: data.attrs.city,\n\t district: data.attrs.district,\n\t subdistrict: data.attrs.subdistrict,\n\t postalCode: data.attrs.postalCode\n\t },\n\t success: function success(data) {\n\t $.spinner().stop();\n\t var dropdowns = $('#' + data.formId).find('.js-autofill-address-field select');\n\t updateDropdownOptions({\n\t dropdowns: dropdowns,\n\t valuesLists: data.valuesLists\n\t });\n\t },\n\t error: function error() {\n\t $.spinner().stop();\n\t },\n\t // this is important to prevent the code to move forward (since the next instruction would be the assignment of the variables -> not possible for select elements if the dropdown are not yet populated)\n\t async: false\n\t });\n\t }\n\t}\n\n\tmodule.exports = {\n\n\t // autofill method to populate the dropdown of an address field once the previous field gets selected, and clean the others if necessary (used by Bata ID and Bata TH)\n\t autofillAddressFields: function autofillAddressFields() {\n\t $('body').on('change', '.js-autofill-address-field select', function (e) {\n\t e.preventDefault();\n\t var $addressFieldElement = $(this);\n\t // $addressSectionContainer is checkout-exclusive\n\t var $addressSectionContainer = $addressFieldElement.closest('.addressContainer');\n\t var url = $addressFieldElement.data('url-action'),\n\t formId = $addressFieldElement.parents('form')[0].id,\n\t section = $addressSectionContainer.data('section'),\n\t fieldValue = $addressFieldElement.val(),\n\t fieldType = $addressFieldElement.closest('.editable-block').data('field-type'),\n\t nextFieldUnique = $addressFieldElement.closest('.editable-block').data('next-field-unique');\n\t $.spinner().start();\n\t $.ajax({\n\t url: url,\n\t type: 'POST',\n\t data: {\n\t formId: formId,\n\t fieldValue: fieldValue,\n\t fieldType: fieldType,\n\t nextFieldUnique: nextFieldUnique\n\t },\n\t success: function success(data) {\n\t if (data.success) {\n\t if (data.nextFieldUnique) {\n\t /* in case of unique text field (for example, the zipcode in ID), the previous field (in the example, the subdistrict)\n\t has an attribute 'data-next-field-unique' set, to autocomplete the next one straight away */\n\t manageUniqueField(data, section);\n\t } else {\n\t var addressFields = $addressSectionContainer.length ? $addressSectionContainer.find('.js-autofill-address-field select', '#' + data.formId) : $('.js-autofill-address-field select', '#' + data.formId);\n\t addressFields.each(function (ind) {\n\t var $currentField = $(addressFields[ind]);\n\t if ($currentField.closest('.editable-block').data('field-type') === data.typeToUpdate) {\n\t // populate the next dropdown with the new values\n\t $currentField.find('option').remove();\n\t populateDropdownFromList(addressFields[ind], data.listToUpdate);\n\t } else if (data.typesToEmpty.indexOf($(addressFields[ind]).closest('.editable-block').data('field-type')) > -1) {\n\t // empty the dropdowns after - if necessary\n\t $currentField.find('option').remove();\n\t populateDropdownFromList(addressFields[ind], []);\n\t }\n\t // empty also the other unique fields\n\t var otherUniqueField = $currentField.closest('.editable-block').data('next-field-unique');\n\t if (otherUniqueField) {\n\t emptyUniqueField(otherUniqueField, data.formId);\n\t }\n\t });\n\t }\n\t // update of bootstrap selectpicker - to apply the visualization of the update\n\t var $selectPicker = $('.selectpicker');\n\t if ($selectPicker.length) {\n\t $selectPicker.selectpicker('refresh');\n\t }\n\t }\n\t $.spinner().stop();\n\t },\n\t error: function error() {\n\t $.spinner().stop();\n\t },\n\t async: false\n\t });\n\t });\n\t },\n\n\t methods: {\n\t handleUniqueFieldsFormValues: handleUniqueFieldsFormValues,\n\t updateDropdownOptions: updateDropdownOptions,\n\t updateDropdownOptionsAjax: updateDropdownOptionsAjax\n\t }\n\t};\n\n/***/ }),\n/* 62 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar addressFieldAutocomplete = __webpack_require__(61),\n\t formHelpers = __webpack_require__(63),\n\t addressAttributeList = [];\n\n\t/**\n\t * Given a map of attributes and a target element in the DOM, it updates the data\n\t * @param {Object} attrs - A map which contains all the fields to update\n\t * @param {Element} $form - The element which contains the fields to be updated\n\t * @param {Boolean} triggerAutocomplete - a boolean which eventually triggers autocomplete logics\n\t * @param {Boolean} forceUpdate - a boolean which force the target element update, even if the source data is null\n\t */\n\tfunction populateFieldsWithObject(attrs, $form, triggerAutocomplete, forceUpdate) {\n\t var currentAttribute, currentVal;\n\t for (var i = 0; i < addressAttributeList.length; i++) {\n\t currentAttribute = addressAttributeList[i];\n\t currentVal = attrs[currentAttribute];\n\t if (currentVal || forceUpdate) {\n\t // try to search the input field as a string input\n\t var $radioInput = $('input[name$=_' + currentAttribute + '][type=\"radio\"][value=\"' + currentVal + '\"]', $form),\n\t $standardInput = $('input[name$=_' + currentAttribute + ']:not([type=\"radio\"])', $form),\n\t $selectInput = $('select[name$=_' + currentAttribute + ']', $form),\n\t elementFound = false;\n\n\t if ($radioInput.length) {\n\t $radioInput.prop('checked', true);\n\t elementFound = $radioInput;\n\t } else if ($standardInput.length) {\n\t $standardInput.val(currentVal);\n\t elementFound = $standardInput;\n\t } else if ($selectInput.length) {\n\t // check if the option is already present in the dropdowns\n\t // if so selecte it, otherwhise build a new one and place it into the select element\n\t var $optionPresent = $selectInput.find('option[value=\"' + currentVal + '\"]');\n\t if ($optionPresent.length) {\n\t $optionPresent.prop('selected', true);\n\t } else {\n\t $selectInput.html('');\n\t }\n\t elementFound = $selectInput;\n\t }\n\n\t // if the element we just updated has some autocomplete logic -> trigger it to prefill the next element\n\t if (elementFound && triggerAutocomplete) {\n\t if (elementFound.is('select') && elementFound.closest('.js-autofill-address-field').length) {\n\t elementFound.trigger('change');\n\t } else if (elementFound.is('input') && elementFound.hasClass('js-city-autocomplete')) {\n\t elementFound.trigger('blur');\n\t }\n\t }\n\n\t // if the element doesn't exist (like address2, district, subdistrict in some countries, the element is simply skipped)\n\t }\n\t }\n\t}\n\n\t/**\n\t * Given an custome address element, retrieve the address data\n\t * @param {Element} $address - the element which contains the address data\n\t * @return {Object} - an object with all the address values\n\t */\n\tfunction getAddressObjectFromElement($address) {\n\t // standard attributes\n\t var address = {\n\t 'addressId': $address.data('address-id'),\n\t 'address1': $address.data('address1'),\n\t 'address2': $address.data('address2'),\n\t 'subdistrict': $address.data('subdistrict'),\n\t 'district': $address.data('district'),\n\t 'city': $address.data('city'),\n\t 'stateCode': $address.data('state-code'),\n\t 'countryCode': $address.data('country-code'),\n\t 'postalCode': $address.data('postal-code'),\n\t 'isValidated': $address.data('is-validated') || \"false\"\n\t };\n\n\t // those fields has to be optional, since the argument address could be the result of an address suggestion\n\t // (which doens't provide all the address information)\n\t var optionalAttributesForAddress = [{\n\t key: 'title',\n\t value: $address.data('title')\n\t }, {\n\t key: 'firstName',\n\t value: $address.data('first-name')\n\t }, {\n\t key: 'lastName',\n\t value: $address.data('last-name')\n\t }];\n\n\t var currentAttr = void 0;\n\t for (var i = 0; i < optionalAttributesForAddress.length; i++) {\n\t currentAttr = optionalAttributesForAddress[i];\n\t if (currentAttr.value && currentAttr.value.length >= 1) {\n\t address[currentAttr.key] = currentAttr.value;\n\t }\n\t }\n\t return address;\n\t}\n\n\t/**\n\t * Given an custome address element, it copies all it's data to the target address form\n\t * @param {Element} $customerAddressSelected - Object that contains shipping address\n\t * @param {Element} $formContainer - The element which contains the address form\n\t */\n\tfunction copyCustomerAddressToAddressForm($customerAddressSelected, $formContainer) {\n\t var attrs = getAddressObjectFromElement($customerAddressSelected);\n\t populateFieldsWithObject(attrs, $formContainer, true, true);\n\t}\n\n\t/**\n\t * Verify if the address already exists as a stored user address\n\t * @param {Object} address - Object that contains shipping address\n\t * @param {Object} storedAddresses - List of stored user addresses\n\t * @returns {boolean} - Boolean indicating if the address already exists\n\t */\n\tfunction checkIfAddressStored(address, storedAddresses) {\n\t for (var i = 0, l = storedAddresses.length; i < l; i++) {\n\t if (storedAddresses[i].address1 === address.address1 && storedAddresses[i].postalCode === address.postalCode && storedAddresses[i].firstName === address.firstName && storedAddresses[i].lastName === address.lastName && storedAddresses[i].title === address.title && storedAddresses[i].subdistrict === address.subdistrict && storedAddresses[i].district === address.district && storedAddresses[i].city === address.city && storedAddresses[i].stateCode === address.stateCode) {\n\t return true;\n\t }\n\t }\n\t return false;\n\t}\n\n\t/**\n\t * Substitute the title in the address with its localized version\n\t * @param {Object} address - Object that contains the address\n\t */\n\tfunction setLocalizedTitle(title) {\n\t var femaleTitle = $('.js-container-checkout').data('female-title'),\n\t femaleTitleToUse = $('.js-container-checkout').data('female-title-to-use'),\n\t maleTitleToUse = $('.js-container-checkout').data('male-title-to-use'),\n\t notUseDotForTitle = $('.js-container-checkout').data('no-use-dot-for-title'),\n\t titleToUse;\n\n\t if (title.endsWith(\".\")) {\n\t // first, remove the eventual dot we might have from the title received, to compare it with the data values\n\t title.slice(0, -1);\n\t }\n\t titleToUse = title === femaleTitle ? femaleTitleToUse : maleTitleToUse;\n\t // Finally we make sure that the title forwarded ends with a dot\n\t if (notUseDotForTitle || titleToUse.endsWith('.')) {\n\t return titleToUse;\n\t } else {\n\t return titleToUse + '.';\n\t }\n\t}\n\n\t/**\n\t * Populate the Billing Address Summary View\n\t * @param {string} parentSelector - the top level DOM selector for a unique address summary\n\t * @param {Object} address - the address data\n\t */\n\tfunction populateAddressSummary(parentSelector, address) {\n\t if (address.title) {\n\t address.title = setLocalizedTitle(address.title);\n\t }\n\t $.each(address, function (attr) {\n\t var val = address[attr];\n\t $('.' + attr, parentSelector).text(val ? val.value || val : '');\n\t });\n\t}\n\n\t/**\n\t * returns a formed element\n\t * @param {Object} shipping - the shipping object (shipment model)\n\t * @param {boolean} selected - current shipping is selected (for PLI)\n\t * @param {order} order - the Order model\n\t * @param {Object} [options] - options\n\t * @returns {Object} - the jQuery / DOMElement\n\t */\n\t// eslint-disable-next-line complexity\n\tfunction optionValueForAddress(shipping, selected, order, options) {\n\t var safeOptions = options || {};\n\t var isBilling = safeOptions.type && safeOptions.type === 'billing';\n\t var className = safeOptions.className || 'manual-entry';\n\t var isSelected = selected;\n\t var isNew = !shipping;\n\t var safeShipping = shipping || {};\n\t var shippingAddress = safeShipping.shippingAddress || {};\n\t var shippingMethod = order.shipping[0].selectedShippingMethod.ID;\n\n\t if (isBilling && isNew && !order.billing.matchingAddressId) {\n\t shippingAddress = order.billing.billingAddress.address || {};\n\t if (!shippingAddress) {\n\t isNew = false;\n\t isSelected = true;\n\t safeShipping.UUID = 'manual-entry';\n\t } else {\n\t isSelected = true;\n\t if (shippingMethod === 'STS' || order.isCollectionPoint) {\n\t shippingAddress = {};\n\t }\n\t }\n\t }\n\n\t var uuid = safeShipping.UUID ? safeShipping.UUID : 'new';\n\t var newAddressRadioID = isBilling ? 'newAddressRadio' : 'shipping-newAddressRadio';\n\t var addressRadioName = isBilling ? 'addressSelector' : 'shipping-radio';\n\t var id = isNew ? newAddressRadioID : uuid;\n\t var optionEl = $('
');\n\n\t $(optionEl).find('input').val(uuid);\n\n\t var title;\n\n\t if (isNew) {\n\t title = order.resources.addNewAddress;\n\t } else {\n\t title = [];\n\t if (shippingAddress.title) {\n\t var titleToUse = setLocalizedTitle(shippingAddress.title);\n\t title.push(titleToUse);\n\t }\n\n\t if (shippingAddress.firstName) {\n\t title.push(shippingAddress.firstName);\n\t }\n\t if (shippingAddress.lastName) {\n\t title.push(shippingAddress.lastName + ',');\n\t }\n\t if (shippingAddress.address1) {\n\t title.push(shippingAddress.address1 + ',');\n\t }\n\t if (shippingAddress.address2) {\n\t title.push(shippingAddress.address2 + ',');\n\t }\n\t if (shippingAddress.postalCode) {\n\t title.push(shippingAddress.postalCode.value || shippingAddress.postalCode);\n\t }\n\t if (shippingAddress.subdistrict) {\n\t title.push((shippingAddress.subdistrict.value || shippingAddress.subdistrict) + ',');\n\t }\n\t if (shippingAddress.district) {\n\t title.push((shippingAddress.district.value || shippingAddress.district) + ',');\n\t }\n\t if (shippingAddress.city) {\n\t title.push((shippingAddress.city.value || shippingAddress.city) + ',');\n\t }\n\t if (shippingAddress.stateCode) {\n\t title.push((shippingAddress.stateCode.value || shippingAddress.stateCode) + ',');\n\t }\n\t if (shippingAddress.countryCode) {\n\t title.push(shippingAddress.countryCode.displayValue);\n\t }\n\n\t if (title.length > 2) {\n\t title = title.join(' ');\n\t } else {\n\t title = order.resources.newAddress;\n\t }\n\t }\n\t $(optionEl).find('label').text(title);\n\n\t if (!jQuery.isEmptyObject(shippingAddress)) {\n\t if (shippingAddress.isAddressLengthValid !== null) {\n\t if (shippingAddress.isAddressLengthValid !== null || shippingAddress.address1 !== null) {\n\t if (!shippingAddress.isAddressLengthValid) {\n\t $(optionEl).find('label').append('' + shippingAddress.addressLengthWarning + '');\n\t }\n\t }\n\t }\n\t }\n\n\t var keyMap = {\n\t 'data-title': 'title',\n\t 'data-first-name': 'firstName',\n\t 'data-last-name': 'lastName',\n\t 'data-address1': 'address1',\n\t 'data-address2': 'address2',\n\t 'data-subdistrict': 'subdistrict',\n\t 'data-district': 'district',\n\t 'data-city': 'city',\n\t 'data-state-code': 'stateCode',\n\t 'data-postal-code': 'postalCode',\n\t 'data-country-code': 'countryCode',\n\t 'data-phone': 'phone'\n\t };\n\t $.each(keyMap, function (key) {\n\t var mappedKey = keyMap[key];\n\t var mappedValue = shippingAddress[mappedKey];\n\t // In case of country code\n\t if (mappedValue && (typeof mappedValue === 'undefined' ? 'undefined' : _typeof(mappedValue)) === 'object') {\n\t mappedValue = mappedValue.ID || mappedValue.value;\n\t }\n\n\t $(optionEl).find('input').attr(key, mappedValue || '');\n\t });\n\n\t var giftObj = {\n\t 'data-is-gift': 'isGift',\n\t 'data-gift-message': 'giftMessage'\n\t };\n\n\t $.each(giftObj, function (key) {\n\t var mappedKey = giftObj[key];\n\t var mappedValue = safeShipping[mappedKey];\n\t $(optionEl).find('input').attr(key, mappedValue || '');\n\t });\n\n\t if (isSelected) {\n\t $(optionEl).find('input').attr('selected', true);\n\t $(optionEl).find('input').attr('checked', true);\n\t }\n\n\t return optionEl;\n\t}\n\n\t/**\n\t * returns address properties from a UI form\n\t * @param {Form} form - the Form element\n\t * @returns {Object} - a JSON object with all values\n\t */\n\tfunction getAddressFieldsFromUI(form) {\n\t var address = {\n\t title: $('input[name$=_title]:checked', form).val(),\n\t firstName: $('input[name$=_firstName]', form).val(),\n\t lastName: $('input[name$=_lastName]', form).val(),\n\t address1: $('input[name$=_address1]', form).val(),\n\t address2: $('input[name$=_address2]', form).val(),\n\t subdistrict: $('select[name$=_subdistrict],input[name$=_subdistrict]', form).val(),\n\t district: $('select[name$=_district],input[name$=_district]', form).val(),\n\t city: $('select[name$=_city],input[name$=_city]', form).val(),\n\t postalCode: $('select[name$=_postalCode],input[name$=_postalCode]', form).val(),\n\t stateCode: $('select[name$=_stateCode],input[name$=_stateCode]', form).val(),\n\t countryCode: $('select[name$=_country]', form).val(),\n\t phone: $('input[name$=_phone]', form).val(),\n\t email: $('input[name$=_email]', form).val()\n\t };\n\t return address;\n\t}\n\n\t/**\n\t * Autocomplete city and state field on pincode entered\n\t * @param {*} $pincode - the element containing the pincode inserted\n\t */\n\tfunction cityAutocomplete($pincode, skipChangeTrigger) {\n\t var url = $pincode.data('url'),\n\t zipCode = $pincode.val().trim().replaceAll(/\\s/g, ''),\n\t newZipCode = $pincode.hasClass('js-format-zipCode') ? zipCode.substr(0, 3) + \" \" + zipCode.substr(3) : zipCode,\n\t $form = $pincode.closest('form'),\n\t $addressContext = $pincode.closest('.addressContainer');\n\t var formContext = $form.attr('name');\n\t var data = {\n\t newZipCode: newZipCode,\n\t formContext: formContext,\n\t addressContext: $addressContext.data('section')\n\t };\n\n\t $pincode.val(newZipCode);\n\t if (!skipChangeTrigger) {\n\t $pincode.trigger('change');\n\t }\n\t var $zipCodeElement = $pincode;\n\t $zipCodeElement.removeClass('is-invalid custom-error');\n\t $.spinner().start();\n\t $.ajax({\n\t url: url,\n\t type: 'GET',\n\t data: data,\n\t success: function success(data) {\n\t $addressContext.find('.js-city-container').closest('.editable-block').html(data);\n\t // Set the province (IT scenario)\n\t var $provinceAutocompleteValue = $addressContext.find('.js-province-autocomplete-value');\n\t var $provinceAutocompleteSelect = $addressContext.find('select.js-province-autocomplete');\n\t if ($provinceAutocompleteValue && $provinceAutocompleteValue.length && $provinceAutocompleteSelect && $provinceAutocompleteSelect.length) {\n\t var provinceAutoSelectedId = $provinceAutocompleteValue.data('province');\n\t $provinceAutocompleteSelect.val(provinceAutoSelectedId).data('selected-id', provinceAutoSelectedId);\n\t } else if ($provinceAutocompleteSelect && $provinceAutocompleteSelect.length) {\n\t $provinceAutocompleteSelect.val('').data('selected-id', '');\n\t }\n\t var $autoCompleteElementUpdated = $($addressContext.find('.js-city-container select.js-city-field-autocomplete'));\n\t if ($autoCompleteElementUpdated.data('error')) {\n\t var errorMessage = $autoCompleteElementUpdated.data('error');\n\t $zipCodeElement.addClass('is-invalid custom-error');\n\t $zipCodeElement.parents('.cc-form-group').find('.invalid-feedback').text(errorMessage);\n\t if ($zipCodeElement.hasClass('js-validation-add-tick')) {\n\t $zipCodeElement.closest('.cc-content-input').removeClass('cc-tick-ok');\n\t }\n\t if ($autoCompleteElementUpdated.hasClass('js-validation-add-tick')) {\n\t $autoCompleteElementUpdated.closest('.cc-content-select').removeClass('cc-tick-ok');\n\t }\n\t } else {\n\t $autoCompleteElementUpdated.trigger('change');\n\t }\n\t // refresh the select picker in the dom\n\t $('body').trigger('selectPicker:refresh');\n\t $.spinner().stop();\n\t },\n\t error: function error() {\n\t $.spinner().stop();\n\t },\n\t async: false\n\t });\n\t}\n\n\t/**\n\t * Intermediate method called when uploading the options in an address field dropdown\n\t * @param {Form} form - the Form element\n\t * @param {Array} valuesLists - the list of objects containing the new options for the dropdown\n\t */\n\tfunction updateAddressFieldsDropdowns(form, valuesLists) {\n\t var dropdowns = form.find('.js-autofill-address-field select');\n\t addressFieldAutocomplete.methods.updateDropdownOptions({\n\t dropdowns: dropdowns,\n\t valuesLists: valuesLists\n\t });\n\t}\n\n\t/**\n\t * Method to hide the shipping cost box of the now deselected shipping method radio button\n\t * @param {String} shippingMethodID - the ID of the shipping method selected\n\t */\n\tfunction manageShippingCostBox(shippingMethodID) {\n\t if (shippingMethodID === 'STS') {\n\t // if a STH shipping cost was shown, hide it\n\t if ($('#js-dynamic-shipping-cost-content').html()) {\n\t $('#js-dynamic-shipping-cost').addClass('d-none');\n\t }\n\t // if a STS shipping cost was already present, show it\n\t if ($('#js-click-collect-dynamic-shipping-cost-content').html()) {\n\t $('#js-click-collect-dynamic-shipping-cost').removeClass('d-none');\n\t }\n\t } else {\n\t // if a STS shipping cost was shown, hide it\n\t if ($('#js-click-collect-dynamic-shipping-cost-content').html()) {\n\t $('#js-click-collect-dynamic-shipping-cost').addClass('d-none');\n\t }\n\t // if a STS shipping cost was already present, show it\n\t if ($('#js-dynamic-shipping-cost-content').html()) {\n\t $('#js-dynamic-shipping-cost').removeClass('d-none');\n\t }\n\t }\n\t}\n\n\t/**\n\t * Does Ajax call to update the home delivery time slot isml\n\t * @param {string} pincode - the element containing the pincode inserted\n\t * @param {string} url- the url which will be used to read the controller\n\t * @param {string} shippingMethodId - the id of the shipping method selected\n\t */\n\tfunction homeDeliveryTimeSlotAjax(pincode, url, shippingMethodId) {\n\t var zipCode = pincode.trim().replaceAll(/\\s/g, ''),\n\t updateZipCode = zipCode.substr(0, 3) + \" \" + zipCode.substr(3);\n\t var data = {\n\t updateZipCode: updateZipCode,\n\t shippingId: shippingMethodId\n\t };\n\t $.spinner().start();\n\t $.ajax({\n\t url: url,\n\t type: 'GET',\n\t data: data,\n\t success: function success(data) {\n\n\t var $timeslot = $('.js-timeslot');\n\t $timeslot.empty().html(data.homeDeliveryTemplate);\n\t if ($timeslot.find('input.js-option').length > 0) {\n\t $timeslot.removeClass('d-none');\n\t } else {\n\t $timeslot.addClass('d-none');\n\t }\n\t $.spinner().stop();\n\t },\n\t error: function error() {\n\t $.spinner().stop();\n\t }\n\t });\n\t}\n\n\t/**\n\t * Fetch the address form for the edit address modal\n\t * @param {Element} $addressEelement - the element which triggered the action\n\t * @param {String} mode - the configuration for the new address to load\n\t */\n\tfunction openAddressModal($addressEelement, mode) {\n\t var $addressFormModal = $('#editAddressCheckoutModal');\n\t var addressListContainerSection = $addressEelement.closest('.js-addressListContainerSection').data('section'),\n\t newAddressFormModalTitle = $addressFormModal.data('title-' + mode),\n\t url = $addressFormModal.data('action');\n\t var payload = {};\n\t if (mode === 'edit') {\n\t payload.addressId = $addressEelement.closest('.js-customerAddressElement').find('.js-customerAddress').data('address-id');\n\t }\n\n\t $.spinner().start();\n\t $.ajax({\n\t url: url,\n\t type: 'GET',\n\t data: payload,\n\t success: function success(data) {\n\t if (data.error) {\n\t window.location.href = data.redirectUrl;\n\t } else {\n\t $addressFormModal.find('.js-editAddressCheckoutContainer').empty().html(data);\n\t $('body').trigger('selectPicker:refresh');\n\t $addressFormModal.data('section', addressListContainerSection);\n\t $addressFormModal.find('.js-modal-title').empty().text(newAddressFormModalTitle);\n\t $addressFormModal.modal('show');\n\t $.spinner().stop();\n\t }\n\t },\n\t error: function error() {\n\t $.spinner().stop();\n\t }\n\t });\n\t}\n\n\t/**\n\t * Even which handle the address modal form submit\n\t * @param {Element} $newAddressFormModal - the element containing the modal which is going to show the new/edit address modal\n\t * @param {Element} $addressForm - the address form to submit\n\t * @param {String} url - the url to the pipeline\n\t */\n\tfunction saveAddress($newAddressFormModal, $addressForm, url, params) {\n\t $.spinner().start();\n\t if ($addressForm.find('.js-province-autocomplete').length) {\n\t $addressForm.find('.js-province-autocomplete').prop('disabled', false);\n\t }\n\t var payload = $addressForm ? $addressForm.serialize() : '',\n\t async = params.async;\n\t $.ajax({\n\t url: url,\n\t type: 'POST',\n\t dataType: 'json',\n\t data: payload,\n\t success: function success(data) {\n\t if (data.error && data.fieldErrors.length) {\n\t // errors detected\n\t data.fieldErrors.forEach(function (error) {\n\t if (Object.keys(error).length) {\n\t formHelpers.loadFormErrors($addressForm, error);\n\t }\n\t });\n\n\t if ($addressForm.find('.js-province-autocomplete').length) {\n\t $addressForm.find('.js-province-autocomplete').prop('disabled', true);\n\t }\n\t } else {\n\t // address correctly saved\n\t $('body').trigger('updateView', { sections: data.sectionToReload });\n\t if ($newAddressFormModal) {\n\t $newAddressFormModal.modal('hide');\n\t }\n\t }\n\t $('body').trigger('selectPicker:refresh');\n\t $.spinner().stop();\n\t },\n\t error: function error() {\n\t $.spinner().stop();\n\t },\n\t async: async\n\t });\n\t}\n\n\t$(document).ready(function () {\n\t // fetch the order of address attribute to populate\n\t addressAttributeList = $('#customerForm').data('address-fields-order');\n\t});\n\n\tfunction updateDniInputMaxLength(selectedInput) {\n\t var input = $('#dni-validation-checkout');\n\t if (selectedInput === 'CE') {\n\t input.prop('maxLength', 9);\n\t }\n\t if (selectedInput === 'DNI') {\n\t input.prop('maxLength', 8);\n\t }\n\t}\n\n\t$('#documentPick').on('change', function () {\n\t var $selectedInput = $(this).find('option:selected').val();\n\t updateDniInputMaxLength($selectedInput);\n\t});\n\n\t$('#dni-validation-checkout').on('change', function () {\n\t var $dni = $(this);\n\t // Extra validation for DNI's regex\n\t $dni.trigger('validateDNIPattern', $dni);\n\t});\n\n\t$('#dni-validation-checkout').on('input', function () {\n\t this.value = this.value.replace(/[^0-9]/g, '');\n\t});\n\n\tmodule.exports = {\n\t methods: {\n\t populateFieldsWithObject: populateFieldsWithObject,\n\t getAddressObjectFromElement: getAddressObjectFromElement,\n\t copyCustomerAddressToAddressForm: copyCustomerAddressToAddressForm,\n\t checkIfAddressStored: checkIfAddressStored,\n\t populateAddressSummary: populateAddressSummary,\n\t optionValueForAddress: optionValueForAddress,\n\t getAddressFieldsFromUI: getAddressFieldsFromUI,\n\t updateAddressFieldsDropdowns: updateAddressFieldsDropdowns,\n\t manageShippingCostBox: manageShippingCostBox,\n\t cityAutocomplete: cityAutocomplete,\n\t homeDeliveryTimeSlotAjax: homeDeliveryTimeSlotAjax,\n\t openAddressModal: openAddressModal,\n\t saveAddress: saveAddress\n\t }\n\t};\n\n/***/ }),\n/* 63 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar scrollAnimate = __webpack_require__(64);\n\tvar updateCounters = __webpack_require__(65);\n\n\tfunction insertInvalid(attr, parentSelector, fieldErrors) {\n\t var $inputElement = $('*[name=' + attr + ']', parentSelector);\n\t $inputElement.addClass('is-invalid');\n\n\t if ($inputElement.closest('.cc-form-group').find('.cc-text-message').length) {\n\t $inputElement.closest('.cc-form-group').find('.cc-text-message').html(fieldErrors[attr]);\n\t } else {\n\t $inputElement.closest('.cc-form-group').find('.invalid-feedback').html(fieldErrors[attr]);\n\t // if it is available in the DOM hide the Validado message (Peru DNI/Foreign)\n\t if ($inputElement.closest('.cc-form-group').find('.cc-valid-success').length) {\n\t $inputElement.closest('.cc-form-group').find('.cc-valid-success').addClass('d-none');\n\t }\n\t }\n\t // for certain fields the errors are managed in a custom way\n\t $inputElement.trigger('customValidation:invalid');\n\t}\n\n\t/**\n\t * Display error messages and highlight form fields with errors.\n\t * @param {string} parentSelector - the form which contains the fields\n\t * @param {Object} fieldErrors - the fields with errors\n\t */\n\tfunction loadFormErrors(parentSelector, fieldErrors) {\n\t // eslint-disable-line\n\t // Display error messages and highlight form fields with errors.\n\t $.each(fieldErrors, function (attr) {\n\t if ($('.cc-phone-input-box').length && attr.indexOf('phone') > -1) {\n\t $('*[name=' + attr + ']', parentSelector).closest('.cc-phone-input-box').addClass('is-invalid').closest('.cc-form-group').find('.invalid-feedback').html(fieldErrors[attr]);\n\t } else {\n\t insertInvalid(attr, parentSelector, fieldErrors);\n\t }\n\t });\n\t // Update counter of address length\n\t updateCounters.updateAllAddressLengthCounters();\n\t // refresh selectpicker to show errors also on the dropdowns (if present)\n\t $('body').trigger('selectPicker:refresh');\n\n\t // Animate to top of form that has errors\n\t var $invalidElements = $(parentSelector).find('.is-invalid, .custom-error');\n\t if ($invalidElements.length > 0) {\n\t var $firstElement = $invalidElements.first();\n\t if ($firstElement.length > 0) {\n\t $firstElement[0].scrollIntoView({ behavior: 'smooth', block: 'center', inline: 'nearest' });\n\t }\n\t }\n\t}\n\n\t/**\n\t * Display error messages and highlight field with errors.\n\t * @param {string} parentSelector - the form which contains the fields\n\t * @param {Object} fieldError - the field with errors\n\t */\n\tfunction loadFieldErrors(fieldName, errorToShow) {\n\t // eslint-disable-line\n\t // Display error messages and highlight form field with errors.\n\n\t $('*[name=' + fieldName + ']').addClass('is-invalid').siblings('.invalid-feedback').html(errorToShow);\n\t // Animate to top of form that has errors\n\t scrollAnimate($('*[name=' + fieldName + ']'));\n\t}\n\n\t/**\n\t * Display error messages and highlight field with errors.\n\t * @param {string} parentSelector - the form which contains the fields\n\t * @param {Object} fieldError - the field with errors\n\t */\n\tfunction loadFieldMessage(fieldName, messageToShow) {\n\t // eslint-disable-line\n\t // Display error messages and highlight form field with errors.\n\n\t $('*[name=' + fieldName + ']').addClass('is-valid').siblings('.valid-feedback').html(messageToShow);\n\n\t $('*[name=' + fieldName + ']').siblings('.cc-valid-icon').removeClass('d-none');\n\t // Animate to top of form that has errors\n\t scrollAnimate($('*[name=' + fieldName + ']'));\n\t}\n\n\tfunction loadFieldMessageMultiple(fieldName, messageToShow, classMessage, container, id) {\n\t // eslint-disable-line\n\t // Display error messages and highlight form field with errors.\n\n\t $('*[name=' + fieldName + ']').addClass('is-valid').siblings(classMessage).clone().html(messageToShow).attr('id', id).removeClass('d-none').appendTo(container);\n\t $('*[name=' + fieldName + ']').siblings('.cc-valid-icon').removeClass('d-none');\n\n\t // Animate to top of form that has errors\n\t scrollAnimate($('*[name=' + fieldName + ']'));\n\t}\n\n\t/**\n\t * Clear the field errors.\n\t * @param {string} parentSelector - the parent form selector.\n\t */\n\tfunction clearFieldMessageMultiple(fieldName, classMessage, element) {\n\t $('*[name=' + fieldName + ']').removeClass('is-invalid');\n\t $('*[name=' + fieldName + ']').siblings(classMessage)[element].empty().addClass('d-none');\n\n\t // $('*[name=' + fieldName + ']').siblings('.invalid-feedback').hide();\n\t}\n\n\t/**\n\t * Clear the field errors.\n\t * @param {string} parentSelector - the parent form selector.\n\t */\n\tfunction clearFieldPreviousError(fieldName) {\n\t $('*[name=' + fieldName + ']').removeClass('is-invalid');\n\t // $('*[name=' + fieldName + ']').siblings('.invalid-feedback').hide();\n\t}\n\n\t/**\n\t * Clear the form errors.\n\t * @param {string} parentSelector - the parent form selector.\n\t */\n\tfunction clearPreviousErrors(parentSelector) {\n\t $(parentSelector).find('.form-control.is-invalid').removeClass('is-invalid');\n\t $(parentSelector).find('.cc-phone-input-box.is-invalid').removeClass('is-invalid');\n\t $(parentSelector).find('.cc-counter.is-invalid').removeClass('is-invalid'); // removes class from address length counter\n\n\t // reset counter\n\t $.each($(parentSelector).find('.js-has-length-counter'), function (ind, element) {\n\t $(element).parents('.cc-form-group').find('.js-field-length-counter').text(element.value.length);\n\t // Set counter validity to invalid if the address length exceeds the limit\n\t if ($(element).data('max-acceptable-length') < element.value.length) {\n\t $(element).parents('.cc-form-group').find('.cc-counter').addClass('is-invalid');\n\t }\n\t });\n\t $('.error-message').hide();\n\t}\n\n\t/**\n\t * Clears the errors of the Coupon form\n\t * @param {String} formSelector - The selector of the coupons form\n\t */\n\tfunction clearCouponErrors(formSelector) {\n\t $(formSelector).find('.form-control.is-invalid').not('.custom-error').removeClass('is-invalid');\n\t $(formSelector).find('.coupon-missing-error').removeClass('d-block');\n\t $(formSelector).find('.cc-button-remove-error').removeClass('d-block');\n\t $(formSelector).find('.coupon-error-message').removeClass('d-block');\n\t $(formSelector).find('.coupon-error-message').empty();\n\t}\n\n\tmodule.exports = {\n\t loadFormErrors: loadFormErrors,\n\t loadFieldErrors: loadFieldErrors,\n\t loadFieldMessage: loadFieldMessage,\n\t loadFieldMessageMultiple: loadFieldMessageMultiple,\n\t clearFieldMessageMultiple: clearFieldMessageMultiple,\n\t clearPreviousErrors: clearPreviousErrors,\n\t clearFieldPreviousError: clearFieldPreviousError,\n\t clearCouponErrors: clearCouponErrors\n\t};\n\n/***/ }),\n/* 64 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (element) {\n\t var position = element && element.length ? element.offset().top : 0;\n\t $('html, body').animate({\n\t scrollTop: position\n\t }, 500);\n\t if (!element) {\n\t $('.logo-home').focus();\n\t }\n\t};\n\n/***/ }),\n/* 65 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = {\n\t /**\n\t * Update length displayed by the counter associated with the field itself\n\t */\n\t updateFieldLengthCounter: function updateFieldLengthCounter() {\n\t $('body').on('input', '.js-has-length-counter', function () {\n\t var inputLength = $(this).val().length;\n\t $(this).parents('.cc-form-group').find('.js-field-length-counter').text(inputLength);\n\t });\n\t },\n\n\t updateAllAddressLengthCounters: function updateAllAddressLengthCounters() {\n\t var customElemArray = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n\n\t if (customElemArray === null) {\n\t $.each($('.js-has-length-counter'), function (ind, element) {\n\t $(element).parents('.cc-form-group').find('.js-field-length-counter').text(element.value.length);\n\t if ($(element).data('max-acceptable-length') < element.value.length) {\n\t $(element).parents('.cc-form-group').find('.cc-counter').addClass('is-invalid');\n\t } else {\n\t $(element).parents('.cc-form-group').find('.cc-counter').removeClass('is-invalid');\n\t }\n\t });\n\t }\n\t }\n\t};\n\n/***/ }),\n/* 66 */,\n/* 67 */,\n/* 68 */,\n/* 69 */,\n/* 70 */,\n/* 71 */,\n/* 72 */,\n/* 73 */,\n/* 74 */,\n/* 75 */,\n/* 76 */,\n/* 77 */,\n/* 78 */,\n/* 79 */,\n/* 80 */,\n/* 81 */,\n/* 82 */,\n/* 83 */,\n/* 84 */,\n/* 85 */,\n/* 86 */,\n/* 87 */,\n/* 88 */,\n/* 89 */,\n/* 90 */,\n/* 91 */,\n/* 92 */,\n/* 93 */,\n/* 94 */,\n/* 95 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar addressHelpers = __webpack_require__(62);\n\tvar cleave = __webpack_require__(96);\n\tvar addressFieldAutocomplete = __webpack_require__(61);\n\tvar updateCounters = __webpack_require__(65);\n\n\tfunction updateAddressActiveClass() {\n\t $('#billingAddressSelector input[type=radio]').parent('.cc-content-radio').removeClass('cc-active');\n\t $('#billingAddressSelector input[type=radio]:checked').parent('.cc-content-radio').addClass('cc-active');\n\t}\n\n\t/**\n\t * updates the billing address selector within billing forms\n\t * @param {Object} order - the order model\n\t * @param {Object} customer - the customer model\n\t */\n\tfunction updateBillingAddressSelector(order, customer) {\n\t var shippings = order.shipping;\n\t var form = $('form[name$=billing]')[0];\n\t var shippingForm = $('form[name$=shipping]')[0];\n\t var $billingAddressSelector = $('.addressSelectorDiv', form);\n\t var hasSelectedAddress = false;\n\t var shippingMethod = order.shipping[0].selectedShippingMethod.ID;\n\t var customerType = $('#checkout-main').attr('data-customer-type');\n\n\t if ($billingAddressSelector && $billingAddressSelector.length === 1) {\n\t $billingAddressSelector.empty();\n\t var shippingFormAddressMode = $('form[id=\"shippingForm\"]').attr('data-address-mode');\n\n\t //add billing address only for STH\n\t if (shippingMethod !== 'STS' && !order.isCollectionPoint && (shippingFormAddressMode === 'new' || shippingFormAddressMode === 'details')) {\n\t shippings.forEach(function (aShipping) {\n\t if (aShipping.shippingAddress && customer.addresses && !addressHelpers.methods.checkIfAddressStored(aShipping.shippingAddress, customer.addresses)) {\n\t var isSelected = order.billing.matchingAddressId === aShipping.UUID;\n\t hasSelectedAddress = hasSelectedAddress || isSelected;\n\t // Shipping Address option\n\t var optionAddress = addressHelpers.methods.optionValueForAddress(aShipping, isSelected, order, {\n\t type: 'billing'\n\t });\n\t $billingAddressSelector.append(optionAddress);\n\t }\n\t });\n\t }\n\n\t // Add New Address option\n\t var newOptionAddres = addressHelpers.methods.optionValueForAddress(null, false, order, { type: 'billing' });\n\n\t if (customer.addresses && customer.addresses.length > 0) {\n\t customer.addresses.forEach(function (address) {\n\n\t // eslint-disable-next-line no-extra-boolean-cast\n\t var isSelected = order.billing.matchingAddressId === (!!address ? address.ID : null);\n\t hasSelectedAddress = hasSelectedAddress || isSelected;\n\t // Customer Address option\n\t var optionCustomerAddress = addressHelpers.methods.optionValueForAddress({\n\t // eslint-disable-next-line no-extra-boolean-cast\n\t UUID: 'billing_ab_' + (!!address ? address.ID : ''),\n\t shippingAddress: address\n\t }, isSelected, order, { type: 'billing' });\n\t //append addressbook's addresses radio buttons\n\t $billingAddressSelector.append(optionCustomerAddress);\n\t });\n\t }\n\t //append the 'new address' radio button\n\t $billingAddressSelector.append(newOptionAddres);\n\t updateAddressActiveClass();\n\t }\n\n\t if (hasSelectedAddress || !order.billing.matchingAddressId && order.billing.billingAddress.address && shippingMethod !== 'STS' && !order.isCollectionPoint) {\n\t // show\n\t $(form).attr('data-address-mode', 'edit');\n\t if (customerType === 'guest') {\n\t $(shippingForm).attr('data-address-mode', 'new');\n\t } else if (!customer.addresses.length && customerType === 'registered') {\n\t $(shippingForm).attr('data-address-mode', 'new');\n\t } else {\n\t $(shippingForm).attr('data-address-mode', 'edit');\n\t }\n\t } else {\n\t $(form).attr('data-address-mode', 'new');\n\t $(shippingForm).attr('data-address-mode', 'new');\n\t }\n\n\t $billingAddressSelector.show();\n\t}\n\n\t/**\n\t * Updates the billing address form values within payment forms without any payment instrument validation\n\t * @param {Object} order - the order model\n\t * @param {Object} [dropdownLists] - list of elements to populate the address fields' dropdowns in the form\n\t */\n\t// eslint-disable-next-line complexity\n\tfunction updateBillingAddress(order, dropdownLists) {\n\t var billing = order.billing;\n\t if (!billing.billingAddress || !billing.billingAddress.address) {\n\t return;\n\t }\n\n\t var form = $('form[name=dwfrm_billing]');\n\t if (!form) {\n\t return;\n\t }\n\n\t // if the form has dropdowns, refill them with options (to be done before setting the values)\n\t // the dropdownList could be null, since the coupons application doesn't require a update on addresses\n\t if ($('.js-autofill-address-field', form).length && dropdownLists) {\n\t addressHelpers.methods.updateAddressFieldsDropdowns(form, dropdownLists);\n\t }\n\t //$('input[name$=_title]', form).val(billing.billingAddress.address.title);\n\t if (billing.billingAddress.address.title) {\n\t var genderId = '#billing_' + billing.billingAddress.address.title.toLowerCase().replace(\".\", \"\");\n\t $('input[name$=_title]' + genderId, form).prop('checked', true);\n\t }\n\t $('input[name$=_firstName]', form).val(billing.billingAddress.address.firstName);\n\t $('input[name$=_companyName]', form).val(billing.billingAddress.address.companyName);\n\t $('input[name$=_taxNumber]', form).val(billing.billingAddress.address.taxNumber);\n\t $('input[name$=_lastName]', form).val(billing.billingAddress.address.lastName);\n\t $('input[name$=_address1]', form).val(billing.billingAddress.address.address1);\n\t $('input[name$=_address2]', form).val(billing.billingAddress.address.address2);\n\t $('input[name$=_address3]', form).val(billing.billingAddress.address.address3);\n\t $('select[name$=_district],input[name$=_district]', form).val(billing.billingAddress.address.district ? billing.billingAddress.address.district.ID || billing.billingAddress.address.district : '');\n\t $('select[name$=_subdistrict],input[name$=_subdistrict]', form).val(billing.billingAddress.address.subdistrict ? billing.billingAddress.address.subdistrict.ID || billing.billingAddress.address.subdistrict : '');\n\t $('select[name$=_city],input[name$=_city]', form).val(billing.billingAddress.address.city ? billing.billingAddress.address.city.ID || billing.billingAddress.address.city : '');\n\t $('input[name$=_postalCode]', form).val(billing.billingAddress.address.postalCode ? billing.billingAddress.address.postalCode.value || billing.billingAddress.address.postalCode : '');\n\t $('select[name$=_postalCode]', form).val(billing.billingAddress.address.postalCode ? billing.billingAddress.address.postalCode.ID || billing.billingAddress.address.postalCode : '');\n\t $('select[name$=_stateCode],input[name$=_stateCode]', form).val(billing.billingAddress.address.stateCode ? billing.billingAddress.address.stateCode.ID || billing.billingAddress.address.stateCode : '');\n\t $('select[name$=_country]', form).val(billing.billingAddress.address.countryCode.value);\n\t $('input[name$=_phone]', form).val(billing.billingAddress.address.phone);\n\t $('input[name$=_email]', form).val(order.orderEmail);\n\t}\n\n\t/**\n\t * Validate and update payment instrument form fields\n\t * @param {Object} order - the order model\n\t */\n\tfunction validateAndUpdateBillingPaymentInstrument(order) {\n\t var billing = order.billing,\n\t form = $('form[name=dwfrm_billing]');\n\t if (!billing.payment || !billing.payment.selectedPaymentInstruments || billing.payment.selectedPaymentInstruments.length <= 0 || billing.payment.selectedPaymentInstruments[0].paymentMethod === 'PayPal' || !form) {\n\t return;\n\t }\n\t if (billing.payment && billing.payment.selectedPaymentInstruments && billing.payment.selectedPaymentInstruments.length > 0 && !billing.payment.selectedPaymentInstruments[0].paymentMethod === 'PayPal') {\n\t var instrument = billing.payment.selectedPaymentInstruments[0];\n\t $('select[name$=expirationMonth]', form).val(instrument.expirationMonth);\n\t $('select[name$=expirationYear]', form).val(instrument.expirationYear);\n\t // Force security code and card number clear\n\t $('input[name$=securityCode]', form).val('');\n\t $('input[name$=cardNumber]').data('cleave').setRawValue('');\n\t }\n\t}\n\n\t/**\n\t * Updates the billing address form values within payment forms\n\t * @param {Object} order - the order model\n\t * @param {List} dropdownLists - list of elements to populate the address fields' dropdowns in the form\n\t */\n\tfunction updateBillingAddressFormValues(order, dropdownList) {\n\t module.exports.methods.updateBillingAddress(order, dropdownList);\n\t module.exports.methods.validateAndUpdateBillingPaymentInstrument(order);\n\t}\n\n\t/**\n\t * clears the billing address form values\n\t */\n\tfunction clearBillingAddressFormValues() {\n\t updateBillingAddressFormValues({\n\t billing: {\n\t billingAddress: {\n\t address: {\n\t countryCode: {}\n\t }\n\t }\n\t }\n\t });\n\t}\n\n\t/**\n\t * Updates the billing information in checkout, based on the supplied order model\n\t * @param {Object} order - checkout model to use as basis of new truth\n\t * @param {List} dropdownLists - list of elements to populate the address fields' dropdowns in the form\n\t */\n\tfunction updateBillingAddressSummary(order, dropdownLists) {\n\t // update billing address form\n\t if ($('.new')[0] && $('.new')[0].checked) {\n\t $($('form[name$=billing]')[0]).attr('data-address-mode', 'new');\n\t clearBillingAddressFormValues();\n\t } else {\n\t updateBillingAddressFormValues(order, dropdownLists);\n\t }\n\n\t var address = Object.assign({}, order.billing.billingAddress.address);\n\n\t // update billing address summary\n\t addressHelpers.methods.populateAddressSummary('.billing .address-summary', address);\n\n\t if (address && address.address2) {\n\t $('.billing .address-summary2').text(address.address2);\n\t } else {\n\t $('.billing .address-summary2').empty();\n\t }\n\n\t if (address && address.address3) {\n\t $('.billing .address-summary3').text(address.address3);\n\t } else {\n\t $('.billing .address-summary3').empty();\n\t }\n\t if (address && address.companyName && address.taxNumber) {\n\t $('.billing .companyName').text(address.companyName);\n\t $('.billing .taxNumber').text(address.taxNumber);\n\t } else {\n\t $('.billing .companyName').empty();\n\t $('.billing .taxNumber').empty();\n\t }\n\t var shippingCountry = $('.countryCode', '.billing');\n\n\t if (address && address.countryCode && address.countryCode.displayValue && !order.isCollectionPoint) {\n\t shippingCountry.text(address.countryCode.displayValue);\n\t } else {\n\t shippingCountry.empty();\n\t }\n\n\t // update billing parts of order summary\n\t $('.order-summary-email').text(order.orderEmail);\n\n\t if (order.billing.billingAddress.address) {\n\t $('.order-summary-phone').text(order.billing.billingAddress.address.phone);\n\t }\n\t}\n\n\t/**\n\t * Updates the billing information in checkout, based on the supplied order model\n\t * @param {Object} order - checkout model to use as basis of new truth\n\t * @param {Object} customer - customer model to use as basis of new truth\n\t * @param {List} dropdownLists - list of elements to populate the address fields' dropdowns in the form\n\t * NOTE: PLEASE DO NOT REMOVE options PARAMETER FROM METHOD, OTHERWISE CALLER WILL STOP TO WORK CREATING ISSUE\n\t */\n\tfunction updateBillingInformation(order, customer, options, dropdownLists) {\n\t // Angelos-COMMENT: Do we still need this?\n\t updateBillingAddressSelector(order, customer);\n\n\t // update billing address form\n\t // updateBillingAddressFormValues(order);\n\n\t // update billing address summary and billing parts of order summary\n\t updateBillingAddressSummary(order, dropdownLists);\n\t}\n\n\t/**\n\t * clears the credit card form\n\t */\n\tfunction clearCreditCardForm() {\n\t $('input[name$=\"_cardNumber\"]').data('cleave').setRawValue('');\n\t $('select[name$=\"_expirationMonth\"]').val('');\n\t $('select[name$=\"_expirationYear\"]').val('');\n\t $('input[name$=\"_securityCode\"]').val('');\n\t}\n\n\tfunction refreshBlockPaymentMethod(data) {\n\t var keepOtpButtonDisabled;\n\t if ($('#clubPointsCheckbox').is(':not(:disabled)') && $('#clubPointsOtpbutton').is(':disabled')) {\n\t keepOtpButtonDisabled = true;\n\t }\n\n\t var $radioPaymentMethod = $('.cc-radio-payment-method'),\n\t blockRadioMethods = false;\n\t // eslint-disable-next-line eqeqeq\n\t if (data.blockRadioMethods == true) {\n\t blockRadioMethods = true;\n\t $('#cod-content').addClass('d-none');\n\t $radioPaymentMethod.prop('checked', false);\n\t $('.payment-options .cc-payment-options-item').removeClass('cc-active');\n\t }\n\t $('.cod-content').prop('disabled', blockRadioMethods);\n\t $('.js-cod').prop('disabled', blockRadioMethods);\n\t $radioPaymentMethod.prop('disabled', blockRadioMethods);\n\t $radioPaymentMethod.prop('required', !blockRadioMethods);\n\n\t // eslint-disable-next-line eqeqeq\n\t if (data.blockCreditMethod == true) {\n\t $('.creditNote-js-disable').not(':checked').prop('disabled', true);\n\t // $('.content-paymant-creditNotes').addClass('d-none');\n\t } else {\n\t $('.creditNote-js-disable').prop('disabled', false);\n\t }\n\n\t // eslint-disable-next-line eqeqeq\n\t if (data.blockPointsMethod == true) {\n\t $('.clubPoints-js-disable').not(':checked').prop('disabled', true);\n\t // $('.content-paymant-clubPoints').addClass('d-none');\n\t } else {\n\t $('.clubPoints-js-disable').prop('disabled', false);\n\t }\n\n\t // eslint-disable-next-line eqeqeq\n\t if (data.disableCod == true) {\n\t $('.cod-js-disable').prop('disabled', true);\n\t }\n\n\t // Iterate over disablePaymentMethods\n\t $.each(data.disablePaymentMethods, function (paymentMethod, isEnabled) {\n\t if (!isEnabled) {\n\t // Select the input element by the value of its ID\n\t $('li.js-payment-container[value=\"' + paymentMethod + '\"]').prop('disabled', true);\n\t }\n\t });\n\n\t if (data.blockCodMethod) {\n\t $('.cod-js-disable').prop('disabled', true);\n\t $('.js-cod-option-price').addClass('cc-payment-options__price-disabled');\n\t } else {\n\t if ($('.js-cod-option-price').hasClass('cc-payment-options__price-disabled')) {\n\t $('.js-cod-option-price').removeClass('cc-payment-options__price-disabled');\n\t }\n\t }\n\n\t // eslint-disable-next-line eqeqeq\n\t if (data.checkCreditPlusPointsExceed == true && data.checkCreditFe == true && data.blockCreditMethod != true) {\n\t $('#creditNoteExceed').removeClass('d-none');\n\t } else {\n\t $('#creditNoteExceed').addClass('d-none');\n\t }\n\n\t // eslint-disable-next-line eqeqeq\n\t if (data.checkCreditPlusPointsExceed == true && data.checkPointsFe == true && data.blockPointsMethod != true) {\n\t $('#pointsExceed').removeClass('d-none');\n\t } else {\n\t $('#pointsExceed').addClass('d-none');\n\t }\n\n\t if (keepOtpButtonDisabled) {\n\t $('#clubPointsOtpbutton').prop('disabled', true);\n\t }\n\n\t if (data.disableCoupon) {\n\t $('#couponApplyButton').prop('disabled', true);\n\t $('#couponRemoveButton').prop('disabled', true);\n\t } else {\n\t $('#couponApplyButton').prop('disabled', false);\n\t $('#couponRemoveButton').prop('disabled', false);\n\t }\n\t}\n\n\t/**\n\t * Returns inserted zipCode associated cities list (CZ, SK ajax call)\n\t * @param {jQuery} addressSelector - Address selector\n\t * @param {jQuery} selectedOption - Checked billing address radio button\n\t */\n\tfunction getCitiesListAjax(addressSelector, selectedOption) {\n\t // TODO: to rework entirely\n\t var url = addressSelector.data('cityautocomplete');\n\t var zipCode = selectedOption.data('postal-code').trim().replaceAll(/\\s/g, '');\n\t var newZipCode = zipCode.substr(0, 3) + \" \" + zipCode.substr(3);\n\t var isShippingForm;\n\t var $form = addressSelector.parents('form');\n\n\t if ($form.hasClass('js-shipping-form')) {\n\t isShippingForm = true;\n\t } else {\n\t isShippingForm = false;\n\t }\n\n\t var data = {\n\t newZipCode: newZipCode,\n\t isCheckoutPage: true,\n\t isShippingForm: isShippingForm\n\t };\n\n\t $.spinner().start();\n\t $.ajax({\n\t url: url,\n\t type: 'GET',\n\t data: data,\n\t success: function success(data) {\n\t $('.js-city-container', $form).closest('.editable-block').html(data);\n\t $('select[name$=_city]', $form).val(selectedOption.data('city'));\n\t var $selectPicker = $('.selectpicker');\n\t if ($selectPicker.length) {\n\t $selectPicker.selectpicker('refresh');\n\t }\n\t if ($('#city-field-autocomplete', $form).data('success')) {\n\t $.spinner().stop();\n\t } else {\n\t $.spinner().stop();\n\t }\n\t },\n\t error: function error() {\n\t $.spinner().stop();\n\t }\n\t });\n\t}\n\n\t/**\n\t * Scan the payment section and retrieve the current payment method selected, if there is any\n\t * @return {*} the payment method selected, false otherwhise\n\t */\n\tfunction _checkAtLeastOnePaymentMethodIsSelected() {\n\t var result = false,\n\n\t // better to use $(document) in case of future payment methods which might be injected in the page\n\t $paymentMethods = $(document).find('input[type=radio].js-radio-payment-method:checked');\n\t if ($paymentMethods.length > 0) {\n\t result = $paymentMethods;\n\t }\n\t return result;\n\t}\n\n\tmodule.exports = {\n\t methods: {\n\t updateBillingAddressSelector: updateBillingAddressSelector,\n\t updateBillingAddressFormValues: updateBillingAddressFormValues,\n\t clearBillingAddressFormValues: clearBillingAddressFormValues,\n\t updateBillingInformation: updateBillingInformation,\n\t // updatePaymentInformation: updatePaymentInformation,\n\t clearCreditCardForm: clearCreditCardForm,\n\t refreshBlockPaymentMethod: refreshBlockPaymentMethod,\n\t updateBillingAddress: updateBillingAddress,\n\t validateAndUpdateBillingPaymentInstrument: validateAndUpdateBillingPaymentInstrument\n\t },\n\n\t showBillingDetails: function showBillingDetails() {\n\t $('.btn-show-billing-details').on('click', function () {\n\t $(this).parents('[data-address-mode]').attr('data-address-mode', 'new');\n\t });\n\t },\n\n\t hideBillingDetails: function hideBillingDetails() {\n\t $('.btn-hide-billing-details').on('click', function () {\n\t $(this).parents('[data-address-mode]').attr('data-address-mode', 'shipment');\n\t });\n\t },\n\n\t selectBillingAddress: function selectBillingAddress() {\n\t $('.payment-form .addressSelectorDiv').on('change', function () {\n\t updateAddressActiveClass();\n\t var $addressSelector = $(this);\n\t var form = $addressSelector.parents('form')[0];\n\t var selectedOption = $('input[type=radio]:checked', this);\n\t var optionID = selectedOption[0].value;\n\t // Copy fields\n\t var attrs = selectedOption.data();\n\t var element;\n\n\t if ($('.js-autofill-address-field select', form).length) {\n\t // pre-populate the dropdowns in order to set the values for the address fields\n\t var data = {\n\t formId: form.id,\n\t attrs: attrs\n\t };\n\t addressFieldAutocomplete.methods.updateDropdownOptionsAjax(data);\n\t }\n\n\t if (optionID === 'new') {\n\t // Show Address\n\t $(form).attr('data-address-mode', 'new');\n\t } else {\n\t // Hide Address\n\t $(form).attr('data-address-mode', 'shipment');\n\t }\n\n\t //If checkbox for add to address Book exists, for every occurence of address expect the new one\n\t //set the checkbox false (CE + IT scenario)\n\t var field = $(this).closest('.billing-address-block').find('.billing-address .js-addToAddressBook-checkbox');\n\t if (optionID !== 'new' && field) {\n\t field.prop(\"checked\", false);\n\t } // else if (order.billing.matchingAddressId !== order.shipping[0].matchingAddressId) {\n\t //$('.address-selector-block').removeClass('d-none');}\n\n\t if ($addressSelector.hasClass('js-city-autocomplete-billing')) {\n\t addressHelpers.methods.cityAutocomplete($(this));\n\t getCitiesListAjax($addressSelector, selectedOption);\n\t }\n\n\t Object.keys(attrs).forEach(function (attr) {\n\t element = attr === 'countryCode' ? 'country' : attr;\n\t if (element === 'cardNumber') {\n\t $('.cardNumber').data('cleave').setRawValue(attrs[attr]);\n\t } else if (element === 'title') {\n\t // prefill the 'title' field radio button\n\t var genderId = attrs[attr] ? '#billing_' + attrs[attr].toLowerCase() : '';\n\t if (genderId) {\n\t $('[name$=' + element + ']' + genderId, form).prop('checked', true);\n\t } else {\n\t // clear\n\t $('[name$=' + element + ']', form).prop('checked', false);\n\t }\n\t } else if (element !== 'country') {\n\t // ignore country field since it is not editable\n\t $('[name$=' + element + ']', form).val(attrs[attr]);\n\t // this is the case of the unique values that otherwise would be autofilled, we also need to carry their ID onto the attribute 'data-selected-id'\n\t if ($('[name$=' + element + ']', form).hasClass('js-change-value-with-id')) {\n\t $('[name$=' + element + ']', form).data('selected-id', attrs[attr]);\n\t }\n\t }\n\t });\n\n\t updateCounters.updateAllAddressLengthCounters();\n\t var $selectPicker = $('.selectpicker');\n\t if ($selectPicker.length) {\n\t $selectPicker.selectpicker('refresh');\n\t }\n\t });\n\t },\n\n\t handleCreditCardNumber: function handleCreditCardNumber() {\n\t // cleave.handleCreditCardNumber('.cardNumber', '#cardType');\n\t },\n\n\t santitizeForm: function santitizeForm() {\n\t $('body').on('checkout:serializeBilling', function (e, data) {\n\t var serializedForm = cleave.serializeData(data.form);\n\n\t data.callback(serializedForm);\n\t });\n\t },\n\n\t selectSavedPaymentInstrument: function selectSavedPaymentInstrument() {\n\t $(document).on('click', '.saved-payment-instrument', function (e) {\n\t e.preventDefault();\n\t $('.saved-payment-security-code').val('');\n\t $('.saved-payment-instrument').removeClass('selected-payment');\n\t $(this).addClass('selected-payment');\n\t $('.saved-payment-instrument .card-image').removeClass('checkout-hidden');\n\t $('.saved-payment-instrument .security-code-input').addClass('checkout-hidden');\n\t $('.saved-payment-instrument.selected-payment' + ' .card-image').addClass('checkout-hidden');\n\t $('.saved-payment-instrument.selected-payment ' + '.security-code-input').removeClass('checkout-hidden');\n\t });\n\t },\n\n\t addNewPaymentInstrument: function addNewPaymentInstrument() {\n\t $('.btn.add-payment').on('click', function (e) {\n\t e.preventDefault();\n\t $('.payment-information').data('is-new-payment', true);\n\t clearCreditCardForm();\n\t $('.credit-card-form').removeClass('checkout-hidden');\n\t $('.user-payment-instruments').addClass('checkout-hidden');\n\t });\n\t },\n\n\t cancelNewPayment: function cancelNewPayment() {\n\t $('.cancel-new-payment').on('click', function (e) {\n\t e.preventDefault();\n\t $('.payment-information').data('is-new-payment', false);\n\t clearCreditCardForm();\n\t $('.user-payment-instruments').removeClass('checkout-hidden');\n\t $('.credit-card-form').addClass('checkout-hidden');\n\t });\n\t },\n\n\t clearBillingForm: function clearBillingForm() {\n\t $('body').on('checkout:clearBillingForm', function () {\n\t clearBillingAddressFormValues();\n\t });\n\t },\n\n\t paymentTabs: function paymentTabs() {\n\t $('.payment-options .nav-item').on('click', function (e) {\n\t e.preventDefault();\n\t var methodID = $(this).data('method-id');\n\t $('.payment-information').data('payment-method-id', methodID);\n\t });\n\t },\n\n\t displayNewAddressRadio: function displayNewAddressRadio() {\n\t if ($('form[id=\"shippingForm\"]').attr('data-address-mode') === 'new') {\n\t $('.shippingAddresses').removeClass('d-none');\n\t }\n\t },\n\n\t shippingBillingSame: function shippingBillingSame() {\n\t $('body').on('change', '#shippingBillingSame', function () {\n\t var $billingAddressSameAsShippingElement = $(this);\n\t var $customerForm = $billingAddressSameAsShippingElement.closest('form');\n\t var isShippingBillingSameChecked = $billingAddressSameAsShippingElement.is(':checked'),\n\t $customerBillingAddressList = $customerForm.find('.js-addressListContainerSection[data-section=\"billing\"]'),\n\t $billingAddressSection = $customerForm.find('.addressContainer.billing');\n\t if (isShippingBillingSameChecked) {\n\t if ($customerBillingAddressList.length) {\n\t // logged in customer -> hide the address list\n\t $customerBillingAddressList.addClass('d-none');\n\t } else {\n\t // guest customer -> hide the billing address form\n\t $billingAddressSection.addClass('d-none');\n\t }\n\t $('.js-customer-billing-title').addClass('d-none');\n\t } else {\n\t if ($customerBillingAddressList.length) {\n\t // logged in customer -> show the address list\n\t $customerBillingAddressList.removeClass('d-none');\n\t } else {\n\t // guest customer -> show the billing address form\n\t $billingAddressSection.removeClass('d-none');\n\t }\n\t $('.js-customer-billing-title').removeClass('d-none');\n\t }\n\t });\n\t },\n\t checkAtLeastOnePaymentMethodIsSelected: function checkAtLeastOnePaymentMethodIsSelected() {\n\t $('body').on('checkout:checkAtLeasOnePaymentMethodIsSelected', function (e, data) {\n\t data.result = _checkAtLeastOnePaymentMethodIsSelected();\n\t });\n\t }\n\t};\n\n/***/ }),\n/* 96 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Cleave = __webpack_require__(97);\n\n\tmodule.exports = {\n\t handleCreditCardNumber: function handleCreditCardNumber(cardFieldSelector, cardTypeSelector) {\n\t var cleave = new Cleave(cardFieldSelector, {\n\t creditCard: true,\n\t onCreditCardTypeChanged: function onCreditCardTypeChanged(type) {\n\t var creditCardTypes = {\n\t visa: 'Visa',\n\t mastercard: 'Master Card',\n\t amex: 'Amex',\n\t discover: 'Discover',\n\t unknown: 'Unknown'\n\t };\n\n\t var cardType = creditCardTypes[Object.keys(creditCardTypes).indexOf(type) > -1 ? type : 'unknown'];\n\t $(cardTypeSelector).val(cardType);\n\t $('.card-number-wrapper').attr('data-type', type);\n\t if (type === 'visa' || type === 'mastercard' || type === 'discover') {\n\t $('#securityCode').attr('maxlength', 3);\n\t } else {\n\t $('#securityCode').attr('maxlength', 4);\n\t }\n\t }\n\t });\n\n\t $(cardFieldSelector).data('cleave', cleave);\n\t },\n\n\t serializeData: function serializeData(form) {\n\t var serializedArray = form.serializeArray();\n\n\t serializedArray.forEach(function (item) {\n\t if (item.name.indexOf('cardNumber') > -1) {\n\t var dataCleave = $('#encryptedCardNumber').data('cleave');\n\t if (dataCleave) {\n\t item.value = dataCleave.getRawValue(); // eslint-disable-line\n\t }\n\t }\n\t });\n\n\t return $.param(serializedArray);\n\t }\n\t};\n\n/***/ }),\n/* 97 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t(function webpackUniversalModuleDefinition(root, factory) {\n\t\tif (( false ? 'undefined' : _typeof(exports)) === 'object' && ( false ? 'undefined' : _typeof(module)) === 'object') module.exports = factory();else if (true) !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));else if ((typeof exports === 'undefined' ? 'undefined' : _typeof(exports)) === 'object') exports[\"Cleave\"] = factory();else root[\"Cleave\"] = factory();\n\t})(undefined, function () {\n\t\treturn (/******/function (modules) {\n\t\t\t\t// webpackBootstrap\n\t\t\t\t/******/ // The module cache\n\t\t\t\t/******/var installedModules = {};\n\n\t\t\t\t/******/ // The require function\n\t\t\t\t/******/function __webpack_require__(moduleId) {\n\n\t\t\t\t\t/******/ // Check if module is in cache\n\t\t\t\t\t/******/if (installedModules[moduleId])\n\t\t\t\t\t\t/******/return installedModules[moduleId].exports;\n\n\t\t\t\t\t/******/ // Create a new module (and put it into the cache)\n\t\t\t\t\t/******/var module = installedModules[moduleId] = {\n\t\t\t\t\t\t/******/exports: {},\n\t\t\t\t\t\t/******/id: moduleId,\n\t\t\t\t\t\t/******/loaded: false\n\t\t\t\t\t\t/******/ };\n\n\t\t\t\t\t/******/ // Execute the module function\n\t\t\t\t\t/******/modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t\t\t\t\t/******/ // Flag the module as loaded\n\t\t\t\t\t/******/module.loaded = true;\n\n\t\t\t\t\t/******/ // Return the exports of the module\n\t\t\t\t\t/******/return module.exports;\n\t\t\t\t\t/******/\n\t\t\t\t}\n\n\t\t\t\t/******/ // expose the modules object (__webpack_modules__)\n\t\t\t\t/******/__webpack_require__.m = modules;\n\n\t\t\t\t/******/ // expose the module cache\n\t\t\t\t/******/__webpack_require__.c = installedModules;\n\n\t\t\t\t/******/ // __webpack_public_path__\n\t\t\t\t/******/__webpack_require__.p = \"\";\n\n\t\t\t\t/******/ // Load entry module and return exports\n\t\t\t\t/******/return __webpack_require__(0);\n\t\t\t\t/******/\n\t\t\t}(\n\t\t\t/************************************************************************/\n\t\t\t/******/[\n\t\t\t/* 0 */\n\t\t\t/***/function (module, exports, __webpack_require__) {\n\n\t\t\t\t/* WEBPACK VAR INJECTION */(function (global) {\n\t\t\t\t\t'use strict';\n\n\t\t\t\t\t/**\n\t * Construct a new Cleave instance by passing the configuration object\n\t *\n\t * @param {String | HTMLElement} element\n\t * @param {Object} opts\n\t */\n\n\t\t\t\t\tvar Cleave = function Cleave(element, opts) {\n\t\t\t\t\t\tvar owner = this;\n\t\t\t\t\t\tvar hasMultipleElements = false;\n\n\t\t\t\t\t\tif (typeof element === 'string') {\n\t\t\t\t\t\t\towner.element = document.querySelector(element);\n\t\t\t\t\t\t\thasMultipleElements = document.querySelectorAll(element).length > 1;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif (typeof element.length !== 'undefined' && element.length > 0) {\n\t\t\t\t\t\t\t\towner.element = element[0];\n\t\t\t\t\t\t\t\thasMultipleElements = element.length > 1;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\towner.element = element;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (!owner.element) {\n\t\t\t\t\t\t\tthrow new Error('[cleave.js] Please check the element');\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (hasMultipleElements) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t// eslint-disable-next-line\n\t\t\t\t\t\t\t\tconsole.warn('[cleave.js] Multiple input fields matched, cleave.js will only take the first one.');\n\t\t\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\t\t\t// Old IE\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\topts.initValue = owner.element.value;\n\n\t\t\t\t\t\towner.properties = Cleave.DefaultProperties.assign({}, opts);\n\n\t\t\t\t\t\towner.init();\n\t\t\t\t\t};\n\n\t\t\t\t\tCleave.prototype = {\n\t\t\t\t\t\tinit: function init() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\t// no need to use this lib\n\t\t\t\t\t\t\tif (!pps.numeral && !pps.phone && !pps.creditCard && !pps.time && !pps.date && pps.blocksLength === 0 && !pps.prefix) {\n\t\t\t\t\t\t\t\towner.onInput(pps.initValue);\n\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tpps.maxLength = Cleave.Util.getMaxLength(pps.blocks);\n\n\t\t\t\t\t\t\towner.isAndroid = Cleave.Util.isAndroid();\n\t\t\t\t\t\t\towner.lastInputValue = '';\n\t\t\t\t\t\t\towner.isBackward = '';\n\n\t\t\t\t\t\t\towner.onChangeListener = owner.onChange.bind(owner);\n\t\t\t\t\t\t\towner.onKeyDownListener = owner.onKeyDown.bind(owner);\n\t\t\t\t\t\t\towner.onFocusListener = owner.onFocus.bind(owner);\n\t\t\t\t\t\t\towner.onCutListener = owner.onCut.bind(owner);\n\t\t\t\t\t\t\towner.onCopyListener = owner.onCopy.bind(owner);\n\n\t\t\t\t\t\t\towner.initSwapHiddenInput();\n\n\t\t\t\t\t\t\towner.element.addEventListener('input', owner.onChangeListener);\n\t\t\t\t\t\t\towner.element.addEventListener('keydown', owner.onKeyDownListener);\n\t\t\t\t\t\t\towner.element.addEventListener('focus', owner.onFocusListener);\n\t\t\t\t\t\t\towner.element.addEventListener('cut', owner.onCutListener);\n\t\t\t\t\t\t\towner.element.addEventListener('copy', owner.onCopyListener);\n\n\t\t\t\t\t\t\towner.initPhoneFormatter();\n\t\t\t\t\t\t\towner.initDateFormatter();\n\t\t\t\t\t\t\towner.initTimeFormatter();\n\t\t\t\t\t\t\towner.initNumeralFormatter();\n\n\t\t\t\t\t\t\t// avoid touch input field if value is null\n\t\t\t\t\t\t\t// otherwise Firefox will add red box-shadow for \n\t\t\t\t\t\t\tif (pps.initValue || pps.prefix && !pps.noImmediatePrefix) {\n\t\t\t\t\t\t\t\towner.onInput(pps.initValue);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tinitSwapHiddenInput: function initSwapHiddenInput() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\t\t\t\t\t\t\tif (!pps.swapHiddenInput) return;\n\n\t\t\t\t\t\t\tvar inputFormatter = owner.element.cloneNode(true);\n\t\t\t\t\t\t\towner.element.parentNode.insertBefore(inputFormatter, owner.element);\n\n\t\t\t\t\t\t\towner.elementSwapHidden = owner.element;\n\t\t\t\t\t\t\towner.elementSwapHidden.type = 'hidden';\n\n\t\t\t\t\t\t\towner.element = inputFormatter;\n\t\t\t\t\t\t\towner.element.id = '';\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tinitNumeralFormatter: function initNumeralFormatter() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\tif (!pps.numeral) {\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tpps.numeralFormatter = new Cleave.NumeralFormatter(pps.numeralDecimalMark, pps.numeralIntegerScale, pps.numeralDecimalScale, pps.numeralThousandsGroupStyle, pps.numeralPositiveOnly, pps.stripLeadingZeroes, pps.prefix, pps.signBeforePrefix, pps.tailPrefix, pps.delimiter);\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tinitTimeFormatter: function initTimeFormatter() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\tif (!pps.time) {\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tpps.timeFormatter = new Cleave.TimeFormatter(pps.timePattern, pps.timeFormat);\n\t\t\t\t\t\t\tpps.blocks = pps.timeFormatter.getBlocks();\n\t\t\t\t\t\t\tpps.blocksLength = pps.blocks.length;\n\t\t\t\t\t\t\tpps.maxLength = Cleave.Util.getMaxLength(pps.blocks);\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tinitDateFormatter: function initDateFormatter() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\tif (!pps.date) {\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tpps.dateFormatter = new Cleave.DateFormatter(pps.datePattern, pps.dateMin, pps.dateMax);\n\t\t\t\t\t\t\tpps.blocks = pps.dateFormatter.getBlocks();\n\t\t\t\t\t\t\tpps.blocksLength = pps.blocks.length;\n\t\t\t\t\t\t\tpps.maxLength = Cleave.Util.getMaxLength(pps.blocks);\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tinitPhoneFormatter: function initPhoneFormatter() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\tif (!pps.phone) {\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Cleave.AsYouTypeFormatter should be provided by\n\t\t\t\t\t\t\t// external google closure lib\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tpps.phoneFormatter = new Cleave.PhoneFormatter(new pps.root.Cleave.AsYouTypeFormatter(pps.phoneRegionCode), pps.delimiter);\n\t\t\t\t\t\t\t} catch (ex) {\n\t\t\t\t\t\t\t\tthrow new Error('[cleave.js] Please include phone-type-formatter.{country}.js lib');\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tonKeyDown: function onKeyDown(event) {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t charCode = event.which || event.keyCode;\n\n\t\t\t\t\t\t\towner.lastInputValue = owner.element.value;\n\t\t\t\t\t\t\towner.isBackward = charCode === 8;\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tonChange: function onChange(event) {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties,\n\t\t\t\t\t\t\t Util = Cleave.Util;\n\n\t\t\t\t\t\t\towner.isBackward = owner.isBackward || event.inputType === 'deleteContentBackward';\n\n\t\t\t\t\t\t\tvar postDelimiter = Util.getPostDelimiter(owner.lastInputValue, pps.delimiter, pps.delimiters);\n\n\t\t\t\t\t\t\tif (owner.isBackward && postDelimiter) {\n\t\t\t\t\t\t\t\tpps.postDelimiterBackspace = postDelimiter;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tpps.postDelimiterBackspace = false;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tthis.onInput(this.element.value);\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tonFocus: function onFocus() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\t\t\t\t\t\t\towner.lastInputValue = owner.element.value;\n\n\t\t\t\t\t\t\tif (pps.prefix && pps.noImmediatePrefix && !owner.element.value) {\n\t\t\t\t\t\t\t\tthis.onInput(pps.prefix);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tCleave.Util.fixPrefixCursor(owner.element, pps.prefix, pps.delimiter, pps.delimiters);\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tonCut: function onCut(e) {\n\t\t\t\t\t\t\tif (!Cleave.Util.checkFullSelection(this.element.value)) return;\n\t\t\t\t\t\t\tthis.copyClipboardData(e);\n\t\t\t\t\t\t\tthis.onInput('');\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tonCopy: function onCopy(e) {\n\t\t\t\t\t\t\tif (!Cleave.Util.checkFullSelection(this.element.value)) return;\n\t\t\t\t\t\t\tthis.copyClipboardData(e);\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tcopyClipboardData: function copyClipboardData(e) {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties,\n\t\t\t\t\t\t\t Util = Cleave.Util,\n\t\t\t\t\t\t\t inputValue = owner.element.value,\n\t\t\t\t\t\t\t textToCopy = '';\n\n\t\t\t\t\t\t\tif (!pps.copyDelimiter) {\n\t\t\t\t\t\t\t\ttextToCopy = Util.stripDelimiters(inputValue, pps.delimiter, pps.delimiters);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\ttextToCopy = inputValue;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tif (e.clipboardData) {\n\t\t\t\t\t\t\t\t\te.clipboardData.setData('Text', textToCopy);\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\twindow.clipboardData.setData('Text', textToCopy);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\t\t} catch (ex) {\n\t\t\t\t\t\t\t\t// empty\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tonInput: function onInput(value) {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties,\n\t\t\t\t\t\t\t Util = Cleave.Util;\n\n\t\t\t\t\t\t\t// case 1: delete one more character \"4\"\n\t\t\t\t\t\t\t// 1234*| -> hit backspace -> 123|\n\t\t\t\t\t\t\t// case 2: last character is not delimiter which is:\n\t\t\t\t\t\t\t// 12|34* -> hit backspace -> 1|34*\n\t\t\t\t\t\t\t// note: no need to apply this for numeral mode\n\t\t\t\t\t\t\tvar postDelimiterAfter = Util.getPostDelimiter(value, pps.delimiter, pps.delimiters);\n\t\t\t\t\t\t\tif (!pps.numeral && pps.postDelimiterBackspace && !postDelimiterAfter) {\n\t\t\t\t\t\t\t\tvalue = Util.headStr(value, value.length - pps.postDelimiterBackspace.length);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// phone formatter\n\t\t\t\t\t\t\tif (pps.phone) {\n\t\t\t\t\t\t\t\tif (pps.prefix && (!pps.noImmediatePrefix || value.length)) {\n\t\t\t\t\t\t\t\t\tpps.result = pps.prefix + pps.phoneFormatter.format(value).slice(pps.prefix.length);\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tpps.result = pps.phoneFormatter.format(value);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\towner.updateValueState();\n\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// numeral formatter\n\t\t\t\t\t\t\tif (pps.numeral) {\n\t\t\t\t\t\t\t\t// Do not show prefix when noImmediatePrefix is specified\n\t\t\t\t\t\t\t\t// This mostly because we need to show user the native input placeholder\n\t\t\t\t\t\t\t\tif (pps.prefix && pps.noImmediatePrefix && value.length === 0) {\n\t\t\t\t\t\t\t\t\tpps.result = '';\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tpps.result = pps.numeralFormatter.format(value);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\towner.updateValueState();\n\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// date\n\t\t\t\t\t\t\tif (pps.date) {\n\t\t\t\t\t\t\t\tvalue = pps.dateFormatter.getValidatedDate(value);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// time\n\t\t\t\t\t\t\tif (pps.time) {\n\t\t\t\t\t\t\t\tvalue = pps.timeFormatter.getValidatedTime(value);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// strip delimiters\n\t\t\t\t\t\t\tvalue = Util.stripDelimiters(value, pps.delimiter, pps.delimiters);\n\n\t\t\t\t\t\t\t// strip prefix\n\t\t\t\t\t\t\tvalue = Util.getPrefixStrippedValue(value, pps.prefix, pps.prefixLength, pps.result, pps.delimiter, pps.delimiters, pps.noImmediatePrefix, pps.tailPrefix, pps.signBeforePrefix);\n\n\t\t\t\t\t\t\t// strip non-numeric characters\n\t\t\t\t\t\t\tvalue = pps.numericOnly ? Util.strip(value, /[^\\d]/g) : value;\n\n\t\t\t\t\t\t\t// convert case\n\t\t\t\t\t\t\tvalue = pps.uppercase ? value.toUpperCase() : value;\n\t\t\t\t\t\t\tvalue = pps.lowercase ? value.toLowerCase() : value;\n\n\t\t\t\t\t\t\t// prevent from showing prefix when no immediate option enabled with empty input value\n\t\t\t\t\t\t\tif (pps.prefix) {\n\t\t\t\t\t\t\t\tif (pps.tailPrefix) {\n\t\t\t\t\t\t\t\t\tvalue = value + pps.prefix;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvalue = pps.prefix + value;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// no blocks specified, no need to do formatting\n\t\t\t\t\t\t\t\tif (pps.blocksLength === 0) {\n\t\t\t\t\t\t\t\t\tpps.result = value;\n\t\t\t\t\t\t\t\t\towner.updateValueState();\n\n\t\t\t\t\t\t\t\t\treturn;\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\t// update credit card props\n\t\t\t\t\t\t\tif (pps.creditCard) {\n\t\t\t\t\t\t\t\towner.updateCreditCardPropsByValue(value);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// strip over length characters\n\t\t\t\t\t\t\tvalue = Util.headStr(value, pps.maxLength);\n\n\t\t\t\t\t\t\t// apply blocks\n\t\t\t\t\t\t\tpps.result = Util.getFormattedValue(value, pps.blocks, pps.blocksLength, pps.delimiter, pps.delimiters, pps.delimiterLazyShow);\n\n\t\t\t\t\t\t\towner.updateValueState();\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tupdateCreditCardPropsByValue: function updateCreditCardPropsByValue(value) {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties,\n\t\t\t\t\t\t\t Util = Cleave.Util,\n\t\t\t\t\t\t\t creditCardInfo;\n\n\t\t\t\t\t\t\t// At least one of the first 4 characters has changed\n\t\t\t\t\t\t\tif (Util.headStr(pps.result, 4) === Util.headStr(value, 4)) {\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tcreditCardInfo = Cleave.CreditCardDetector.getInfo(value, pps.creditCardStrictMode);\n\n\t\t\t\t\t\t\tpps.blocks = creditCardInfo.blocks;\n\t\t\t\t\t\t\tpps.blocksLength = pps.blocks.length;\n\t\t\t\t\t\t\tpps.maxLength = Util.getMaxLength(pps.blocks);\n\n\t\t\t\t\t\t\t// credit card type changed\n\t\t\t\t\t\t\tif (pps.creditCardType !== creditCardInfo.type) {\n\t\t\t\t\t\t\t\tpps.creditCardType = creditCardInfo.type;\n\n\t\t\t\t\t\t\t\tpps.onCreditCardTypeChanged.call(owner, pps.creditCardType);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tupdateValueState: function updateValueState() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t Util = Cleave.Util,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\tif (!owner.element) {\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tvar endPos = owner.element.selectionEnd;\n\t\t\t\t\t\t\tvar oldValue = owner.element.value;\n\t\t\t\t\t\t\tvar newValue = pps.result;\n\n\t\t\t\t\t\t\tendPos = Util.getNextCursorPosition(endPos, oldValue, newValue, pps.delimiter, pps.delimiters);\n\n\t\t\t\t\t\t\t// fix Android browser type=\"text\" input field\n\t\t\t\t\t\t\t// cursor not jumping issue\n\t\t\t\t\t\t\tif (owner.isAndroid) {\n\t\t\t\t\t\t\t\twindow.setTimeout(function () {\n\t\t\t\t\t\t\t\t\towner.element.value = newValue;\n\t\t\t\t\t\t\t\t\tUtil.setSelection(owner.element, endPos, pps.document, false);\n\t\t\t\t\t\t\t\t\towner.callOnValueChanged();\n\t\t\t\t\t\t\t\t}, 1);\n\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\towner.element.value = newValue;\n\t\t\t\t\t\t\tif (pps.swapHiddenInput) owner.elementSwapHidden.value = owner.getRawValue();\n\n\t\t\t\t\t\t\tUtil.setSelection(owner.element, endPos, pps.document, false);\n\t\t\t\t\t\t\towner.callOnValueChanged();\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tcallOnValueChanged: function callOnValueChanged() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\tpps.onValueChanged.call(owner, {\n\t\t\t\t\t\t\t\ttarget: {\n\t\t\t\t\t\t\t\t\tname: owner.element.name,\n\t\t\t\t\t\t\t\t\tvalue: pps.result,\n\t\t\t\t\t\t\t\t\trawValue: owner.getRawValue()\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\tsetPhoneRegionCode: function setPhoneRegionCode(phoneRegionCode) {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\tpps.phoneRegionCode = phoneRegionCode;\n\t\t\t\t\t\t\towner.initPhoneFormatter();\n\t\t\t\t\t\t\towner.onChange();\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tsetRawValue: function setRawValue(value) {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\tvalue = value !== undefined && value !== null ? value.toString() : '';\n\n\t\t\t\t\t\t\tif (pps.numeral) {\n\t\t\t\t\t\t\t\tvalue = value.replace('.', pps.numeralDecimalMark);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tpps.postDelimiterBackspace = false;\n\n\t\t\t\t\t\t\towner.element.value = value;\n\t\t\t\t\t\t\towner.onInput(value);\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tgetRawValue: function getRawValue() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties,\n\t\t\t\t\t\t\t Util = Cleave.Util,\n\t\t\t\t\t\t\t rawValue = owner.element.value;\n\n\t\t\t\t\t\t\tif (pps.rawValueTrimPrefix) {\n\t\t\t\t\t\t\t\trawValue = Util.getPrefixStrippedValue(rawValue, pps.prefix, pps.prefixLength, pps.result, pps.delimiter, pps.delimiters, pps.noImmediatePrefix, pps.tailPrefix, pps.signBeforePrefix);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tif (pps.numeral) {\n\t\t\t\t\t\t\t\trawValue = pps.numeralFormatter.getRawValue(rawValue);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\trawValue = Util.stripDelimiters(rawValue, pps.delimiter, pps.delimiters);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\treturn rawValue;\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tgetISOFormatDate: function getISOFormatDate() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\treturn pps.date ? pps.dateFormatter.getISOFormatDate() : '';\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tgetISOFormatTime: function getISOFormatTime() {\n\t\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t\t pps = owner.properties;\n\n\t\t\t\t\t\t\treturn pps.time ? pps.timeFormatter.getISOFormatTime() : '';\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tgetFormattedValue: function getFormattedValue() {\n\t\t\t\t\t\t\treturn this.element.value;\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\tdestroy: function destroy() {\n\t\t\t\t\t\t\tvar owner = this;\n\n\t\t\t\t\t\t\towner.element.removeEventListener('input', owner.onChangeListener);\n\t\t\t\t\t\t\towner.element.removeEventListener('keydown', owner.onKeyDownListener);\n\t\t\t\t\t\t\towner.element.removeEventListener('focus', owner.onFocusListener);\n\t\t\t\t\t\t\towner.element.removeEventListener('cut', owner.onCutListener);\n\t\t\t\t\t\t\towner.element.removeEventListener('copy', owner.onCopyListener);\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\ttoString: function toString() {\n\t\t\t\t\t\t\treturn '[Cleave Object]';\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tCleave.NumeralFormatter = __webpack_require__(1);\n\t\t\t\t\tCleave.DateFormatter = __webpack_require__(2);\n\t\t\t\t\tCleave.TimeFormatter = __webpack_require__(3);\n\t\t\t\t\tCleave.PhoneFormatter = __webpack_require__(4);\n\t\t\t\t\tCleave.CreditCardDetector = __webpack_require__(5);\n\t\t\t\t\tCleave.Util = __webpack_require__(6);\n\t\t\t\t\tCleave.DefaultProperties = __webpack_require__(7);\n\n\t\t\t\t\t// for angular directive\n\t\t\t\t\t((typeof global === 'undefined' ? 'undefined' : _typeof(global)) === 'object' && global ? global : window)['Cleave'] = Cleave;\n\n\t\t\t\t\t// CommonJS\n\t\t\t\t\tmodule.exports = Cleave;\n\n\t\t\t\t\t/* WEBPACK VAR INJECTION */\n\t\t\t\t}).call(exports, function () {\n\t\t\t\t\treturn this;\n\t\t\t\t}());\n\n\t\t\t\t/***/\n\t\t\t},\n\t\t\t/* 1 */\n\t\t\t/***/function (module, exports) {\n\n\t\t\t\t'use strict';\n\n\t\t\t\tvar NumeralFormatter = function NumeralFormatter(numeralDecimalMark, numeralIntegerScale, numeralDecimalScale, numeralThousandsGroupStyle, numeralPositiveOnly, stripLeadingZeroes, prefix, signBeforePrefix, tailPrefix, delimiter) {\n\t\t\t\t\tvar owner = this;\n\n\t\t\t\t\towner.numeralDecimalMark = numeralDecimalMark || '.';\n\t\t\t\t\towner.numeralIntegerScale = numeralIntegerScale > 0 ? numeralIntegerScale : 0;\n\t\t\t\t\towner.numeralDecimalScale = numeralDecimalScale >= 0 ? numeralDecimalScale : 2;\n\t\t\t\t\towner.numeralThousandsGroupStyle = numeralThousandsGroupStyle || NumeralFormatter.groupStyle.thousand;\n\t\t\t\t\towner.numeralPositiveOnly = !!numeralPositiveOnly;\n\t\t\t\t\towner.stripLeadingZeroes = stripLeadingZeroes !== false;\n\t\t\t\t\towner.prefix = prefix || prefix === '' ? prefix : '';\n\t\t\t\t\towner.signBeforePrefix = !!signBeforePrefix;\n\t\t\t\t\towner.tailPrefix = !!tailPrefix;\n\t\t\t\t\towner.delimiter = delimiter || delimiter === '' ? delimiter : ',';\n\t\t\t\t\towner.delimiterRE = delimiter ? new RegExp('\\\\' + delimiter, 'g') : '';\n\t\t\t\t};\n\n\t\t\t\tNumeralFormatter.groupStyle = {\n\t\t\t\t\tthousand: 'thousand',\n\t\t\t\t\tlakh: 'lakh',\n\t\t\t\t\twan: 'wan',\n\t\t\t\t\tnone: 'none'\n\t\t\t\t};\n\n\t\t\t\tNumeralFormatter.prototype = {\n\t\t\t\t\tgetRawValue: function getRawValue(value) {\n\t\t\t\t\t\treturn value.replace(this.delimiterRE, '').replace(this.numeralDecimalMark, '.');\n\t\t\t\t\t},\n\n\t\t\t\t\tformat: function format(value) {\n\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t parts,\n\t\t\t\t\t\t partSign,\n\t\t\t\t\t\t partSignAndPrefix,\n\t\t\t\t\t\t partInteger,\n\t\t\t\t\t\t partDecimal = '';\n\n\t\t\t\t\t\t// strip alphabet letters\n\t\t\t\t\t\tvalue = value.replace(/[A-Za-z]/g, '')\n\t\t\t\t\t\t// replace the first decimal mark with reserved placeholder\n\t\t\t\t\t\t.replace(owner.numeralDecimalMark, 'M')\n\n\t\t\t\t\t\t// strip non numeric letters except minus and \"M\"\n\t\t\t\t\t\t// this is to ensure prefix has been stripped\n\t\t\t\t\t\t.replace(/[^\\dM-]/g, '')\n\n\t\t\t\t\t\t// replace the leading minus with reserved placeholder\n\t\t\t\t\t\t.replace(/^\\-/, 'N')\n\n\t\t\t\t\t\t// strip the other minus sign (if present)\n\t\t\t\t\t\t.replace(/\\-/g, '')\n\n\t\t\t\t\t\t// replace the minus sign (if present)\n\t\t\t\t\t\t.replace('N', owner.numeralPositiveOnly ? '' : '-')\n\n\t\t\t\t\t\t// replace decimal mark\n\t\t\t\t\t\t.replace('M', owner.numeralDecimalMark);\n\n\t\t\t\t\t\t// strip any leading zeros\n\t\t\t\t\t\tif (owner.stripLeadingZeroes) {\n\t\t\t\t\t\t\tvalue = value.replace(/^(-)?0+(?=\\d)/, '$1');\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tpartSign = value.slice(0, 1) === '-' ? '-' : '';\n\t\t\t\t\t\tif (typeof owner.prefix != 'undefined') {\n\t\t\t\t\t\t\tif (owner.signBeforePrefix) {\n\t\t\t\t\t\t\t\tpartSignAndPrefix = partSign + owner.prefix;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tpartSignAndPrefix = owner.prefix + partSign;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tpartSignAndPrefix = partSign;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tpartInteger = value;\n\n\t\t\t\t\t\tif (value.indexOf(owner.numeralDecimalMark) >= 0) {\n\t\t\t\t\t\t\tparts = value.split(owner.numeralDecimalMark);\n\t\t\t\t\t\t\tpartInteger = parts[0];\n\t\t\t\t\t\t\tpartDecimal = owner.numeralDecimalMark + parts[1].slice(0, owner.numeralDecimalScale);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (partSign === '-') {\n\t\t\t\t\t\t\tpartInteger = partInteger.slice(1);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (owner.numeralIntegerScale > 0) {\n\t\t\t\t\t\t\tpartInteger = partInteger.slice(0, owner.numeralIntegerScale);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tswitch (owner.numeralThousandsGroupStyle) {\n\t\t\t\t\t\t\tcase NumeralFormatter.groupStyle.lakh:\n\t\t\t\t\t\t\t\tpartInteger = partInteger.replace(/(\\d)(?=(\\d\\d)+\\d$)/g, '$1' + owner.delimiter);\n\n\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase NumeralFormatter.groupStyle.wan:\n\t\t\t\t\t\t\t\tpartInteger = partInteger.replace(/(\\d)(?=(\\d{4})+$)/g, '$1' + owner.delimiter);\n\n\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase NumeralFormatter.groupStyle.thousand:\n\t\t\t\t\t\t\t\tpartInteger = partInteger.replace(/(\\d)(?=(\\d{3})+$)/g, '$1' + owner.delimiter);\n\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (owner.tailPrefix) {\n\t\t\t\t\t\t\treturn partSign + partInteger.toString() + (owner.numeralDecimalScale > 0 ? partDecimal.toString() : '') + owner.prefix;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn partSignAndPrefix + partInteger.toString() + (owner.numeralDecimalScale > 0 ? partDecimal.toString() : '');\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tmodule.exports = NumeralFormatter;\n\n\t\t\t\t/***/\n\t\t\t},\n\t\t\t/* 2 */\n\t\t\t/***/function (module, exports) {\n\n\t\t\t\t'use strict';\n\n\t\t\t\tvar DateFormatter = function DateFormatter(datePattern, dateMin, dateMax) {\n\t\t\t\t\tvar owner = this;\n\n\t\t\t\t\towner.date = [];\n\t\t\t\t\towner.blocks = [];\n\t\t\t\t\towner.datePattern = datePattern;\n\t\t\t\t\towner.dateMin = dateMin.split('-').reverse().map(function (x) {\n\t\t\t\t\t\treturn parseInt(x, 10);\n\t\t\t\t\t});\n\t\t\t\t\tif (owner.dateMin.length === 2) owner.dateMin.unshift(0);\n\n\t\t\t\t\towner.dateMax = dateMax.split('-').reverse().map(function (x) {\n\t\t\t\t\t\treturn parseInt(x, 10);\n\t\t\t\t\t});\n\t\t\t\t\tif (owner.dateMax.length === 2) owner.dateMax.unshift(0);\n\n\t\t\t\t\towner.initBlocks();\n\t\t\t\t};\n\n\t\t\t\tDateFormatter.prototype = {\n\t\t\t\t\tinitBlocks: function initBlocks() {\n\t\t\t\t\t\tvar owner = this;\n\t\t\t\t\t\towner.datePattern.forEach(function (value) {\n\t\t\t\t\t\t\tif (value === 'Y') {\n\t\t\t\t\t\t\t\towner.blocks.push(4);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\towner.blocks.push(2);\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\tgetISOFormatDate: function getISOFormatDate() {\n\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t date = owner.date;\n\n\t\t\t\t\t\treturn date[2] ? date[2] + '-' + owner.addLeadingZero(date[1]) + '-' + owner.addLeadingZero(date[0]) : '';\n\t\t\t\t\t},\n\n\t\t\t\t\tgetBlocks: function getBlocks() {\n\t\t\t\t\t\treturn this.blocks;\n\t\t\t\t\t},\n\n\t\t\t\t\tgetValidatedDate: function getValidatedDate(value) {\n\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t result = '';\n\n\t\t\t\t\t\tvalue = value.replace(/[^\\d]/g, '');\n\n\t\t\t\t\t\towner.blocks.forEach(function (length, index) {\n\t\t\t\t\t\t\tif (value.length > 0) {\n\t\t\t\t\t\t\t\tvar sub = value.slice(0, length),\n\t\t\t\t\t\t\t\t sub0 = sub.slice(0, 1),\n\t\t\t\t\t\t\t\t rest = value.slice(length);\n\n\t\t\t\t\t\t\t\tswitch (owner.datePattern[index]) {\n\t\t\t\t\t\t\t\t\tcase 'd':\n\t\t\t\t\t\t\t\t\t\tif (sub === '00') {\n\t\t\t\t\t\t\t\t\t\t\tsub = '01';\n\t\t\t\t\t\t\t\t\t\t} else if (parseInt(sub0, 10) > 3) {\n\t\t\t\t\t\t\t\t\t\t\tsub = '0' + sub0;\n\t\t\t\t\t\t\t\t\t\t} else if (parseInt(sub, 10) > 31) {\n\t\t\t\t\t\t\t\t\t\t\tsub = '31';\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\t\t\tcase 'm':\n\t\t\t\t\t\t\t\t\t\tif (sub === '00') {\n\t\t\t\t\t\t\t\t\t\t\tsub = '01';\n\t\t\t\t\t\t\t\t\t\t} else if (parseInt(sub0, 10) > 1) {\n\t\t\t\t\t\t\t\t\t\t\tsub = '0' + sub0;\n\t\t\t\t\t\t\t\t\t\t} else if (parseInt(sub, 10) > 12) {\n\t\t\t\t\t\t\t\t\t\t\tsub = '12';\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tresult += sub;\n\n\t\t\t\t\t\t\t\t// update remaining string\n\t\t\t\t\t\t\t\tvalue = rest;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\treturn this.getFixedDateString(result);\n\t\t\t\t\t},\n\n\t\t\t\t\tgetFixedDateString: function getFixedDateString(value) {\n\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t datePattern = owner.datePattern,\n\t\t\t\t\t\t date = [],\n\t\t\t\t\t\t dayIndex = 0,\n\t\t\t\t\t\t monthIndex = 0,\n\t\t\t\t\t\t yearIndex = 0,\n\t\t\t\t\t\t dayStartIndex = 0,\n\t\t\t\t\t\t monthStartIndex = 0,\n\t\t\t\t\t\t yearStartIndex = 0,\n\t\t\t\t\t\t day,\n\t\t\t\t\t\t month,\n\t\t\t\t\t\t year,\n\t\t\t\t\t\t fullYearDone = false;\n\n\t\t\t\t\t\t// mm-dd || dd-mm\n\t\t\t\t\t\tif (value.length === 4 && datePattern[0].toLowerCase() !== 'y' && datePattern[1].toLowerCase() !== 'y') {\n\t\t\t\t\t\t\tdayStartIndex = datePattern[0] === 'd' ? 0 : 2;\n\t\t\t\t\t\t\tmonthStartIndex = 2 - dayStartIndex;\n\t\t\t\t\t\t\tday = parseInt(value.slice(dayStartIndex, dayStartIndex + 2), 10);\n\t\t\t\t\t\t\tmonth = parseInt(value.slice(monthStartIndex, monthStartIndex + 2), 10);\n\n\t\t\t\t\t\t\tdate = this.getFixedDate(day, month, 0);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// yyyy-mm-dd || yyyy-dd-mm || mm-dd-yyyy || dd-mm-yyyy || dd-yyyy-mm || mm-yyyy-dd\n\t\t\t\t\t\tif (value.length === 8) {\n\t\t\t\t\t\t\tdatePattern.forEach(function (type, index) {\n\t\t\t\t\t\t\t\tswitch (type) {\n\t\t\t\t\t\t\t\t\tcase 'd':\n\t\t\t\t\t\t\t\t\t\tdayIndex = index;\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\tcase 'm':\n\t\t\t\t\t\t\t\t\t\tmonthIndex = index;\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\t\t\tyearIndex = index;\n\t\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\tyearStartIndex = yearIndex * 2;\n\t\t\t\t\t\t\tdayStartIndex = dayIndex <= yearIndex ? dayIndex * 2 : dayIndex * 2 + 2;\n\t\t\t\t\t\t\tmonthStartIndex = monthIndex <= yearIndex ? monthIndex * 2 : monthIndex * 2 + 2;\n\n\t\t\t\t\t\t\tday = parseInt(value.slice(dayStartIndex, dayStartIndex + 2), 10);\n\t\t\t\t\t\t\tmonth = parseInt(value.slice(monthStartIndex, monthStartIndex + 2), 10);\n\t\t\t\t\t\t\tyear = parseInt(value.slice(yearStartIndex, yearStartIndex + 4), 10);\n\n\t\t\t\t\t\t\tfullYearDone = value.slice(yearStartIndex, yearStartIndex + 4).length === 4;\n\n\t\t\t\t\t\t\tdate = this.getFixedDate(day, month, year);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// mm-yy || yy-mm\n\t\t\t\t\t\tif (value.length === 4 && (datePattern[0] === 'y' || datePattern[1] === 'y')) {\n\t\t\t\t\t\t\tmonthStartIndex = datePattern[0] === 'm' ? 0 : 2;\n\t\t\t\t\t\t\tyearStartIndex = 2 - monthStartIndex;\n\t\t\t\t\t\t\tmonth = parseInt(value.slice(monthStartIndex, monthStartIndex + 2), 10);\n\t\t\t\t\t\t\tyear = parseInt(value.slice(yearStartIndex, yearStartIndex + 2), 10);\n\n\t\t\t\t\t\t\tfullYearDone = value.slice(yearStartIndex, yearStartIndex + 2).length === 2;\n\n\t\t\t\t\t\t\tdate = [0, month, year];\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// mm-yyyy || yyyy-mm\n\t\t\t\t\t\tif (value.length === 6 && (datePattern[0] === 'Y' || datePattern[1] === 'Y')) {\n\t\t\t\t\t\t\tmonthStartIndex = datePattern[0] === 'm' ? 0 : 4;\n\t\t\t\t\t\t\tyearStartIndex = 2 - 0.5 * monthStartIndex;\n\t\t\t\t\t\t\tmonth = parseInt(value.slice(monthStartIndex, monthStartIndex + 2), 10);\n\t\t\t\t\t\t\tyear = parseInt(value.slice(yearStartIndex, yearStartIndex + 4), 10);\n\n\t\t\t\t\t\t\tfullYearDone = value.slice(yearStartIndex, yearStartIndex + 4).length === 4;\n\n\t\t\t\t\t\t\tdate = [0, month, year];\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdate = owner.getRangeFixedDate(date);\n\t\t\t\t\t\towner.date = date;\n\n\t\t\t\t\t\tvar result = date.length === 0 ? value : datePattern.reduce(function (previous, current) {\n\t\t\t\t\t\t\tswitch (current) {\n\t\t\t\t\t\t\t\tcase 'd':\n\t\t\t\t\t\t\t\t\treturn previous + (date[0] === 0 ? '' : owner.addLeadingZero(date[0]));\n\t\t\t\t\t\t\t\tcase 'm':\n\t\t\t\t\t\t\t\t\treturn previous + (date[1] === 0 ? '' : owner.addLeadingZero(date[1]));\n\t\t\t\t\t\t\t\tcase 'y':\n\t\t\t\t\t\t\t\t\treturn previous + (fullYearDone ? owner.addLeadingZeroForYear(date[2], false) : '');\n\t\t\t\t\t\t\t\tcase 'Y':\n\t\t\t\t\t\t\t\t\treturn previous + (fullYearDone ? owner.addLeadingZeroForYear(date[2], true) : '');\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, '');\n\n\t\t\t\t\t\treturn result;\n\t\t\t\t\t},\n\n\t\t\t\t\tgetRangeFixedDate: function getRangeFixedDate(date) {\n\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t datePattern = owner.datePattern,\n\t\t\t\t\t\t dateMin = owner.dateMin || [],\n\t\t\t\t\t\t dateMax = owner.dateMax || [];\n\n\t\t\t\t\t\tif (!date.length || dateMin.length < 3 && dateMax.length < 3) return date;\n\n\t\t\t\t\t\tif (datePattern.find(function (x) {\n\t\t\t\t\t\t\treturn x.toLowerCase() === 'y';\n\t\t\t\t\t\t}) && date[2] === 0) return date;\n\n\t\t\t\t\t\tif (dateMax.length && (dateMax[2] < date[2] || dateMax[2] === date[2] && (dateMax[1] < date[1] || dateMax[1] === date[1] && dateMax[0] < date[0]))) return dateMax;\n\n\t\t\t\t\t\tif (dateMin.length && (dateMin[2] > date[2] || dateMin[2] === date[2] && (dateMin[1] > date[1] || dateMin[1] === date[1] && dateMin[0] > date[0]))) return dateMin;\n\n\t\t\t\t\t\treturn date;\n\t\t\t\t\t},\n\n\t\t\t\t\tgetFixedDate: function getFixedDate(day, month, year) {\n\t\t\t\t\t\tday = Math.min(day, 31);\n\t\t\t\t\t\tmonth = Math.min(month, 12);\n\t\t\t\t\t\tyear = parseInt(year || 0, 10);\n\n\t\t\t\t\t\tif (month < 7 && month % 2 === 0 || month > 8 && month % 2 === 1) {\n\t\t\t\t\t\t\tday = Math.min(day, month === 2 ? this.isLeapYear(year) ? 29 : 28 : 30);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn [day, month, year];\n\t\t\t\t\t},\n\n\t\t\t\t\tisLeapYear: function isLeapYear(year) {\n\t\t\t\t\t\treturn year % 4 === 0 && year % 100 !== 0 || year % 400 === 0;\n\t\t\t\t\t},\n\n\t\t\t\t\taddLeadingZero: function addLeadingZero(number) {\n\t\t\t\t\t\treturn (number < 10 ? '0' : '') + number;\n\t\t\t\t\t},\n\n\t\t\t\t\taddLeadingZeroForYear: function addLeadingZeroForYear(number, fullYearMode) {\n\t\t\t\t\t\tif (fullYearMode) {\n\t\t\t\t\t\t\treturn (number < 10 ? '000' : number < 100 ? '00' : number < 1000 ? '0' : '') + number;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn (number < 10 ? '0' : '') + number;\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tmodule.exports = DateFormatter;\n\n\t\t\t\t/***/\n\t\t\t},\n\t\t\t/* 3 */\n\t\t\t/***/function (module, exports) {\n\n\t\t\t\t'use strict';\n\n\t\t\t\tvar TimeFormatter = function TimeFormatter(timePattern, timeFormat) {\n\t\t\t\t\tvar owner = this;\n\n\t\t\t\t\towner.time = [];\n\t\t\t\t\towner.blocks = [];\n\t\t\t\t\towner.timePattern = timePattern;\n\t\t\t\t\towner.timeFormat = timeFormat;\n\t\t\t\t\towner.initBlocks();\n\t\t\t\t};\n\n\t\t\t\tTimeFormatter.prototype = {\n\t\t\t\t\tinitBlocks: function initBlocks() {\n\t\t\t\t\t\tvar owner = this;\n\t\t\t\t\t\towner.timePattern.forEach(function () {\n\t\t\t\t\t\t\towner.blocks.push(2);\n\t\t\t\t\t\t});\n\t\t\t\t\t},\n\n\t\t\t\t\tgetISOFormatTime: function getISOFormatTime() {\n\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t time = owner.time;\n\n\t\t\t\t\t\treturn time[2] ? owner.addLeadingZero(time[0]) + ':' + owner.addLeadingZero(time[1]) + ':' + owner.addLeadingZero(time[2]) : '';\n\t\t\t\t\t},\n\n\t\t\t\t\tgetBlocks: function getBlocks() {\n\t\t\t\t\t\treturn this.blocks;\n\t\t\t\t\t},\n\n\t\t\t\t\tgetTimeFormatOptions: function getTimeFormatOptions() {\n\t\t\t\t\t\tvar owner = this;\n\t\t\t\t\t\tif (String(owner.timeFormat) === '12') {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tmaxHourFirstDigit: 1,\n\t\t\t\t\t\t\t\tmaxHours: 12,\n\t\t\t\t\t\t\t\tmaxMinutesFirstDigit: 5,\n\t\t\t\t\t\t\t\tmaxMinutes: 60\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tmaxHourFirstDigit: 2,\n\t\t\t\t\t\t\tmaxHours: 23,\n\t\t\t\t\t\t\tmaxMinutesFirstDigit: 5,\n\t\t\t\t\t\t\tmaxMinutes: 60\n\t\t\t\t\t\t};\n\t\t\t\t\t},\n\n\t\t\t\t\tgetValidatedTime: function getValidatedTime(value) {\n\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t result = '';\n\n\t\t\t\t\t\tvalue = value.replace(/[^\\d]/g, '');\n\n\t\t\t\t\t\tvar timeFormatOptions = owner.getTimeFormatOptions();\n\n\t\t\t\t\t\towner.blocks.forEach(function (length, index) {\n\t\t\t\t\t\t\tif (value.length > 0) {\n\t\t\t\t\t\t\t\tvar sub = value.slice(0, length),\n\t\t\t\t\t\t\t\t sub0 = sub.slice(0, 1),\n\t\t\t\t\t\t\t\t rest = value.slice(length);\n\n\t\t\t\t\t\t\t\tswitch (owner.timePattern[index]) {\n\n\t\t\t\t\t\t\t\t\tcase 'h':\n\t\t\t\t\t\t\t\t\t\tif (parseInt(sub0, 10) > timeFormatOptions.maxHourFirstDigit) {\n\t\t\t\t\t\t\t\t\t\t\tsub = '0' + sub0;\n\t\t\t\t\t\t\t\t\t\t} else if (parseInt(sub, 10) > timeFormatOptions.maxHours) {\n\t\t\t\t\t\t\t\t\t\t\tsub = timeFormatOptions.maxHours + '';\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\t\t\tcase 'm':\n\t\t\t\t\t\t\t\t\tcase 's':\n\t\t\t\t\t\t\t\t\t\tif (parseInt(sub0, 10) > timeFormatOptions.maxMinutesFirstDigit) {\n\t\t\t\t\t\t\t\t\t\t\tsub = '0' + sub0;\n\t\t\t\t\t\t\t\t\t\t} else if (parseInt(sub, 10) > timeFormatOptions.maxMinutes) {\n\t\t\t\t\t\t\t\t\t\t\tsub = timeFormatOptions.maxMinutes + '';\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tresult += sub;\n\n\t\t\t\t\t\t\t\t// update remaining string\n\t\t\t\t\t\t\t\tvalue = rest;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\treturn this.getFixedTimeString(result);\n\t\t\t\t\t},\n\n\t\t\t\t\tgetFixedTimeString: function getFixedTimeString(value) {\n\t\t\t\t\t\tvar owner = this,\n\t\t\t\t\t\t timePattern = owner.timePattern,\n\t\t\t\t\t\t time = [],\n\t\t\t\t\t\t secondIndex = 0,\n\t\t\t\t\t\t minuteIndex = 0,\n\t\t\t\t\t\t hourIndex = 0,\n\t\t\t\t\t\t secondStartIndex = 0,\n\t\t\t\t\t\t minuteStartIndex = 0,\n\t\t\t\t\t\t hourStartIndex = 0,\n\t\t\t\t\t\t second,\n\t\t\t\t\t\t minute,\n\t\t\t\t\t\t hour;\n\n\t\t\t\t\t\tif (value.length === 6) {\n\t\t\t\t\t\t\ttimePattern.forEach(function (type, index) {\n\t\t\t\t\t\t\t\tswitch (type) {\n\t\t\t\t\t\t\t\t\tcase 's':\n\t\t\t\t\t\t\t\t\t\tsecondIndex = index * 2;\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\tcase 'm':\n\t\t\t\t\t\t\t\t\t\tminuteIndex = index * 2;\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\tcase 'h':\n\t\t\t\t\t\t\t\t\t\thourIndex = index * 2;\n\t\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\thourStartIndex = hourIndex;\n\t\t\t\t\t\t\tminuteStartIndex = minuteIndex;\n\t\t\t\t\t\t\tsecondStartIndex = secondIndex;\n\n\t\t\t\t\t\t\tsecond = parseInt(value.slice(secondStartIndex, secondStartIndex + 2), 10);\n\t\t\t\t\t\t\tminute = parseInt(value.slice(minuteStartIndex, minuteStartIndex + 2), 10);\n\t\t\t\t\t\t\thour = parseInt(value.slice(hourStartIndex, hourStartIndex + 2), 10);\n\n\t\t\t\t\t\t\ttime = this.getFixedTime(hour, minute, second);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (value.length === 4 && owner.timePattern.indexOf('s') < 0) {\n\t\t\t\t\t\t\ttimePattern.forEach(function (type, index) {\n\t\t\t\t\t\t\t\tswitch (type) {\n\t\t\t\t\t\t\t\t\tcase 'm':\n\t\t\t\t\t\t\t\t\t\tminuteIndex = index * 2;\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\tcase 'h':\n\t\t\t\t\t\t\t\t\t\thourIndex = index * 2;\n\t\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\thourStartIndex = hourIndex;\n\t\t\t\t\t\t\tminuteStartIndex = minuteIndex;\n\n\t\t\t\t\t\t\tsecond = 0;\n\t\t\t\t\t\t\tminute = parseInt(value.slice(minuteStartIndex, minuteStartIndex + 2), 10);\n\t\t\t\t\t\t\thour = parseInt(value.slice(hourStartIndex, hourStartIndex + 2), 10);\n\n\t\t\t\t\t\t\ttime = this.getFixedTime(hour, minute, second);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\towner.time = time;\n\n\t\t\t\t\t\treturn time.length === 0 ? value : timePattern.reduce(function (previous, current) {\n\t\t\t\t\t\t\tswitch (current) {\n\t\t\t\t\t\t\t\tcase 's':\n\t\t\t\t\t\t\t\t\treturn previous + owner.addLeadingZero(time[2]);\n\t\t\t\t\t\t\t\tcase 'm':\n\t\t\t\t\t\t\t\t\treturn previous + owner.addLeadingZero(time[1]);\n\t\t\t\t\t\t\t\tcase 'h':\n\t\t\t\t\t\t\t\t\treturn previous + owner.addLeadingZero(time[0]);\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\tgetFixedTime: function getFixedTime(hour, minute, second) {\n\t\t\t\t\t\tsecond = Math.min(parseInt(second || 0, 10), 60);\n\t\t\t\t\t\tminute = Math.min(minute, 60);\n\t\t\t\t\t\thour = Math.min(hour, 60);\n\n\t\t\t\t\t\treturn [hour, minute, second];\n\t\t\t\t\t},\n\n\t\t\t\t\taddLeadingZero: function addLeadingZero(number) {\n\t\t\t\t\t\treturn (number < 10 ? '0' : '') + number;\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tmodule.exports = TimeFormatter;\n\n\t\t\t\t/***/\n\t\t\t},\n\t\t\t/* 4 */\n\t\t\t/***/function (module, exports) {\n\n\t\t\t\t'use strict';\n\n\t\t\t\tvar PhoneFormatter = function PhoneFormatter(formatter, delimiter) {\n\t\t\t\t\tvar owner = this;\n\n\t\t\t\t\towner.delimiter = delimiter || delimiter === '' ? delimiter : ' ';\n\t\t\t\t\towner.delimiterRE = delimiter ? new RegExp('\\\\' + delimiter, 'g') : '';\n\n\t\t\t\t\towner.formatter = formatter;\n\t\t\t\t};\n\n\t\t\t\tPhoneFormatter.prototype = {\n\t\t\t\t\tsetFormatter: function setFormatter(formatter) {\n\t\t\t\t\t\tthis.formatter = formatter;\n\t\t\t\t\t},\n\n\t\t\t\t\tformat: function format(phoneNumber) {\n\t\t\t\t\t\tvar owner = this;\n\n\t\t\t\t\t\towner.formatter.clear();\n\n\t\t\t\t\t\t// only keep number and +\n\t\t\t\t\t\tphoneNumber = phoneNumber.replace(/[^\\d+]/g, '');\n\n\t\t\t\t\t\t// strip non-leading +\n\t\t\t\t\t\tphoneNumber = phoneNumber.replace(/^\\+/, 'B').replace(/\\+/g, '').replace('B', '+');\n\n\t\t\t\t\t\t// strip delimiter\n\t\t\t\t\t\tphoneNumber = phoneNumber.replace(owner.delimiterRE, '');\n\n\t\t\t\t\t\tvar result = '',\n\t\t\t\t\t\t current,\n\t\t\t\t\t\t validated = false;\n\n\t\t\t\t\t\tfor (var i = 0, iMax = phoneNumber.length; i < iMax; i++) {\n\t\t\t\t\t\t\tcurrent = owner.formatter.inputDigit(phoneNumber.charAt(i));\n\n\t\t\t\t\t\t\t// has ()- or space inside\n\t\t\t\t\t\t\tif (/[\\s()-]/g.test(current)) {\n\t\t\t\t\t\t\t\tresult = current;\n\n\t\t\t\t\t\t\t\tvalidated = true;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tif (!validated) {\n\t\t\t\t\t\t\t\t\tresult = current;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// else: over length input\n\t\t\t\t\t\t\t\t// it turns to invalid number again\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// strip ()\n\t\t\t\t\t\t// e.g. US: 7161234567 returns (716) 123-4567\n\t\t\t\t\t\tresult = result.replace(/[()]/g, '');\n\t\t\t\t\t\t// replace library delimiter with user customized delimiter\n\t\t\t\t\t\tresult = result.replace(/[\\s-]/g, owner.delimiter);\n\n\t\t\t\t\t\treturn result;\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tmodule.exports = PhoneFormatter;\n\n\t\t\t\t/***/\n\t\t\t},\n\t\t\t/* 5 */\n\t\t\t/***/function (module, exports) {\n\n\t\t\t\t'use strict';\n\n\t\t\t\tvar CreditCardDetector = {\n\t\t\t\t\tblocks: {\n\t\t\t\t\t\tuatp: [4, 5, 6],\n\t\t\t\t\t\tamex: [4, 6, 5],\n\t\t\t\t\t\tdiners: [4, 6, 4],\n\t\t\t\t\t\tdiscover: [4, 4, 4, 4],\n\t\t\t\t\t\tmastercard: [4, 4, 4, 4],\n\t\t\t\t\t\tdankort: [4, 4, 4, 4],\n\t\t\t\t\t\tinstapayment: [4, 4, 4, 4],\n\t\t\t\t\t\tjcb15: [4, 6, 5],\n\t\t\t\t\t\tjcb: [4, 4, 4, 4],\n\t\t\t\t\t\tmaestro: [4, 4, 4, 4],\n\t\t\t\t\t\tvisa: [4, 4, 4, 4],\n\t\t\t\t\t\tmir: [4, 4, 4, 4],\n\t\t\t\t\t\tunionPay: [4, 4, 4, 4],\n\t\t\t\t\t\tgeneral: [4, 4, 4, 4]\n\t\t\t\t\t},\n\n\t\t\t\t\tre: {\n\t\t\t\t\t\t// starts with 1; 15 digits, not starts with 1800 (jcb card)\n\t\t\t\t\t\tuatp: /^(?!1800)1\\d{0,14}/,\n\n\t\t\t\t\t\t// starts with 34/37; 15 digits\n\t\t\t\t\t\tamex: /^3[47]\\d{0,13}/,\n\n\t\t\t\t\t\t// starts with 6011/65/644-649; 16 digits\n\t\t\t\t\t\tdiscover: /^(?:6011|65\\d{0,2}|64[4-9]\\d?)\\d{0,12}/,\n\n\t\t\t\t\t\t// starts with 300-305/309 or 36/38/39; 14 digits\n\t\t\t\t\t\tdiners: /^3(?:0([0-5]|9)|[689]\\d?)\\d{0,11}/,\n\n\t\t\t\t\t\t// starts with 51-55/2221–2720; 16 digits\n\t\t\t\t\t\tmastercard: /^(5[1-5]\\d{0,2}|22[2-9]\\d{0,1}|2[3-7]\\d{0,2})\\d{0,12}/,\n\n\t\t\t\t\t\t// starts with 5019/4175/4571; 16 digits\n\t\t\t\t\t\tdankort: /^(5019|4175|4571)\\d{0,12}/,\n\n\t\t\t\t\t\t// starts with 637-639; 16 digits\n\t\t\t\t\t\tinstapayment: /^63[7-9]\\d{0,13}/,\n\n\t\t\t\t\t\t// starts with 2131/1800; 15 digits\n\t\t\t\t\t\tjcb15: /^(?:2131|1800)\\d{0,11}/,\n\n\t\t\t\t\t\t// starts with 2131/1800/35; 16 digits\n\t\t\t\t\t\tjcb: /^(?:35\\d{0,2})\\d{0,12}/,\n\n\t\t\t\t\t\t// starts with 50/56-58/6304/67; 16 digits\n\t\t\t\t\t\tmaestro: /^(?:5[0678]\\d{0,2}|6304|67\\d{0,2})\\d{0,12}/,\n\n\t\t\t\t\t\t// starts with 22; 16 digits\n\t\t\t\t\t\tmir: /^220[0-4]\\d{0,12}/,\n\n\t\t\t\t\t\t// starts with 4; 16 digits\n\t\t\t\t\t\tvisa: /^4\\d{0,15}/,\n\n\t\t\t\t\t\t// starts with 62/81; 16 digits\n\t\t\t\t\t\tunionPay: /^(62|81)\\d{0,14}/\n\t\t\t\t\t},\n\n\t\t\t\t\tgetStrictBlocks: function getStrictBlocks(block) {\n\t\t\t\t\t\tvar total = block.reduce(function (prev, current) {\n\t\t\t\t\t\t\treturn prev + current;\n\t\t\t\t\t\t}, 0);\n\n\t\t\t\t\t\treturn block.concat(19 - total);\n\t\t\t\t\t},\n\n\t\t\t\t\tgetInfo: function getInfo(value, strictMode) {\n\t\t\t\t\t\tvar blocks = CreditCardDetector.blocks,\n\t\t\t\t\t\t re = CreditCardDetector.re;\n\n\t\t\t\t\t\t// Some credit card can have up to 19 digits number.\n\t\t\t\t\t\t// Set strictMode to true will remove the 16 max-length restrain,\n\t\t\t\t\t\t// however, I never found any website validate card number like\n\t\t\t\t\t\t// this, hence probably you don't want to enable this option.\n\t\t\t\t\t\tstrictMode = !!strictMode;\n\n\t\t\t\t\t\tfor (var key in re) {\n\t\t\t\t\t\t\tif (re[key].test(value)) {\n\t\t\t\t\t\t\t\tvar matchedBlocks = blocks[key];\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\ttype: key,\n\t\t\t\t\t\t\t\t\tblocks: strictMode ? this.getStrictBlocks(matchedBlocks) : matchedBlocks\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\treturn {\n\t\t\t\t\t\t\ttype: 'unknown',\n\t\t\t\t\t\t\tblocks: strictMode ? this.getStrictBlocks(blocks.general) : blocks.general\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tmodule.exports = CreditCardDetector;\n\n\t\t\t\t/***/\n\t\t\t},\n\t\t\t/* 6 */\n\t\t\t/***/function (module, exports) {\n\n\t\t\t\t'use strict';\n\n\t\t\t\tvar Util = {\n\t\t\t\t\tnoop: function noop() {},\n\n\t\t\t\t\tstrip: function strip(value, re) {\n\t\t\t\t\t\treturn value.replace(re, '');\n\t\t\t\t\t},\n\n\t\t\t\t\tgetPostDelimiter: function getPostDelimiter(value, delimiter, delimiters) {\n\t\t\t\t\t\t// single delimiter\n\t\t\t\t\t\tif (delimiters.length === 0) {\n\t\t\t\t\t\t\treturn value.slice(-delimiter.length) === delimiter ? delimiter : '';\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// multiple delimiters\n\t\t\t\t\t\tvar matchedDelimiter = '';\n\t\t\t\t\t\tdelimiters.forEach(function (current) {\n\t\t\t\t\t\t\tif (value.slice(-current.length) === current) {\n\t\t\t\t\t\t\t\tmatchedDelimiter = current;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\treturn matchedDelimiter;\n\t\t\t\t\t},\n\n\t\t\t\t\tgetDelimiterREByDelimiter: function getDelimiterREByDelimiter(delimiter) {\n\t\t\t\t\t\treturn new RegExp(delimiter.replace(/([.?*+^$[\\]\\\\(){}|-])/g, '\\\\$1'), 'g');\n\t\t\t\t\t},\n\n\t\t\t\t\tgetNextCursorPosition: function getNextCursorPosition(prevPos, oldValue, newValue, delimiter, delimiters) {\n\t\t\t\t\t\t// If cursor was at the end of value, just place it back.\n\t\t\t\t\t\t// Because new value could contain additional chars.\n\t\t\t\t\t\tif (oldValue.length === prevPos) {\n\t\t\t\t\t\t\treturn newValue.length;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn prevPos + this.getPositionOffset(prevPos, oldValue, newValue, delimiter, delimiters);\n\t\t\t\t\t},\n\n\t\t\t\t\tgetPositionOffset: function getPositionOffset(prevPos, oldValue, newValue, delimiter, delimiters) {\n\t\t\t\t\t\tvar oldRawValue, newRawValue, lengthOffset;\n\n\t\t\t\t\t\toldRawValue = this.stripDelimiters(oldValue.slice(0, prevPos), delimiter, delimiters);\n\t\t\t\t\t\tnewRawValue = this.stripDelimiters(newValue.slice(0, prevPos), delimiter, delimiters);\n\t\t\t\t\t\tlengthOffset = oldRawValue.length - newRawValue.length;\n\n\t\t\t\t\t\treturn lengthOffset !== 0 ? lengthOffset / Math.abs(lengthOffset) : 0;\n\t\t\t\t\t},\n\n\t\t\t\t\tstripDelimiters: function stripDelimiters(value, delimiter, delimiters) {\n\t\t\t\t\t\tvar owner = this;\n\n\t\t\t\t\t\t// single delimiter\n\t\t\t\t\t\tif (delimiters.length === 0) {\n\t\t\t\t\t\t\tvar delimiterRE = delimiter ? owner.getDelimiterREByDelimiter(delimiter) : '';\n\n\t\t\t\t\t\t\treturn value.replace(delimiterRE, '');\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// multiple delimiters\n\t\t\t\t\t\tdelimiters.forEach(function (current) {\n\t\t\t\t\t\t\tcurrent.split('').forEach(function (letter) {\n\t\t\t\t\t\t\t\tvalue = value.replace(owner.getDelimiterREByDelimiter(letter), '');\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\treturn value;\n\t\t\t\t\t},\n\n\t\t\t\t\theadStr: function headStr(str, length) {\n\t\t\t\t\t\treturn str.slice(0, length);\n\t\t\t\t\t},\n\n\t\t\t\t\tgetMaxLength: function getMaxLength(blocks) {\n\t\t\t\t\t\treturn blocks.reduce(function (previous, current) {\n\t\t\t\t\t\t\treturn previous + current;\n\t\t\t\t\t\t}, 0);\n\t\t\t\t\t},\n\n\t\t\t\t\t// strip prefix\n\t\t\t\t\t// Before type | After type | Return value\n\t\t\t\t\t// PEFIX-... | PEFIX-... | ''\n\t\t\t\t\t// PREFIX-123 | PEFIX-123 | 123\n\t\t\t\t\t// PREFIX-123 | PREFIX-23 | 23\n\t\t\t\t\t// PREFIX-123 | PREFIX-1234 | 1234\n\t\t\t\t\tgetPrefixStrippedValue: function getPrefixStrippedValue(value, prefix, prefixLength, prevResult, delimiter, delimiters, noImmediatePrefix, tailPrefix, signBeforePrefix) {\n\t\t\t\t\t\t// No prefix\n\t\t\t\t\t\tif (prefixLength === 0) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Value is prefix\n\t\t\t\t\t\tif (value === prefix && value !== '') {\n\t\t\t\t\t\t\treturn '';\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (signBeforePrefix && value.slice(0, 1) == '-') {\n\t\t\t\t\t\t\tvar prev = prevResult.slice(0, 1) == '-' ? prevResult.slice(1) : prevResult;\n\t\t\t\t\t\t\treturn '-' + this.getPrefixStrippedValue(value.slice(1), prefix, prefixLength, prev, delimiter, delimiters, noImmediatePrefix, tailPrefix, signBeforePrefix);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Pre result prefix string does not match pre-defined prefix\n\t\t\t\t\t\tif (prevResult.slice(0, prefixLength) !== prefix && !tailPrefix) {\n\t\t\t\t\t\t\t// Check if the first time user entered something\n\t\t\t\t\t\t\tif (noImmediatePrefix && !prevResult && value) return value;\n\t\t\t\t\t\t\treturn '';\n\t\t\t\t\t\t} else if (prevResult.slice(-prefixLength) !== prefix && tailPrefix) {\n\t\t\t\t\t\t\t// Check if the first time user entered something\n\t\t\t\t\t\t\tif (noImmediatePrefix && !prevResult && value) return value;\n\t\t\t\t\t\t\treturn '';\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvar prevValue = this.stripDelimiters(prevResult, delimiter, delimiters);\n\n\t\t\t\t\t\t// New value has issue, someone typed in between prefix letters\n\t\t\t\t\t\t// Revert to pre value\n\t\t\t\t\t\tif (value.slice(0, prefixLength) !== prefix && !tailPrefix) {\n\t\t\t\t\t\t\treturn prevValue.slice(prefixLength);\n\t\t\t\t\t\t} else if (value.slice(-prefixLength) !== prefix && tailPrefix) {\n\t\t\t\t\t\t\treturn prevValue.slice(0, -prefixLength - 1);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// No issue, strip prefix for new value\n\t\t\t\t\t\treturn tailPrefix ? value.slice(0, -prefixLength) : value.slice(prefixLength);\n\t\t\t\t\t},\n\n\t\t\t\t\tgetFirstDiffIndex: function getFirstDiffIndex(prev, current) {\n\t\t\t\t\t\tvar index = 0;\n\n\t\t\t\t\t\twhile (prev.charAt(index) === current.charAt(index)) {\n\t\t\t\t\t\t\tif (prev.charAt(index++) === '') {\n\t\t\t\t\t\t\t\treturn -1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn index;\n\t\t\t\t\t},\n\n\t\t\t\t\tgetFormattedValue: function getFormattedValue(value, blocks, blocksLength, delimiter, delimiters, delimiterLazyShow) {\n\t\t\t\t\t\tvar result = '',\n\t\t\t\t\t\t multipleDelimiters = delimiters.length > 0,\n\t\t\t\t\t\t currentDelimiter = '';\n\n\t\t\t\t\t\t// no options, normal input\n\t\t\t\t\t\tif (blocksLength === 0) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tblocks.forEach(function (length, index) {\n\t\t\t\t\t\t\tif (value.length > 0) {\n\t\t\t\t\t\t\t\tvar sub = value.slice(0, length),\n\t\t\t\t\t\t\t\t rest = value.slice(length);\n\n\t\t\t\t\t\t\t\tif (multipleDelimiters) {\n\t\t\t\t\t\t\t\t\tcurrentDelimiter = delimiters[delimiterLazyShow ? index - 1 : index] || currentDelimiter;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcurrentDelimiter = delimiter;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (delimiterLazyShow) {\n\t\t\t\t\t\t\t\t\tif (index > 0) {\n\t\t\t\t\t\t\t\t\t\tresult += currentDelimiter;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tresult += sub;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tresult += sub;\n\n\t\t\t\t\t\t\t\t\tif (sub.length === length && index < blocksLength - 1) {\n\t\t\t\t\t\t\t\t\t\tresult += currentDelimiter;\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// update remaining string\n\t\t\t\t\t\t\t\tvalue = rest;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\treturn result;\n\t\t\t\t\t},\n\n\t\t\t\t\t// move cursor to the end\n\t\t\t\t\t// the first time user focuses on an input with prefix\n\t\t\t\t\tfixPrefixCursor: function fixPrefixCursor(el, prefix, delimiter, delimiters) {\n\t\t\t\t\t\tif (!el) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvar val = el.value,\n\t\t\t\t\t\t appendix = delimiter || delimiters[0] || ' ';\n\n\t\t\t\t\t\tif (!el.setSelectionRange || !prefix || prefix.length + appendix.length <= val.length) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvar len = val.length * 2;\n\n\t\t\t\t\t\t// set timeout to avoid blink\n\t\t\t\t\t\tsetTimeout(function () {\n\t\t\t\t\t\t\tel.setSelectionRange(len, len);\n\t\t\t\t\t\t}, 1);\n\t\t\t\t\t},\n\n\t\t\t\t\t// Check if input field is fully selected\n\t\t\t\t\tcheckFullSelection: function checkFullSelection(value) {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tvar selection = window.getSelection() || document.getSelection() || {};\n\t\t\t\t\t\t\treturn selection.toString().length === value.length;\n\t\t\t\t\t\t} catch (ex) {\n\t\t\t\t\t\t\t// Ignore\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t},\n\n\t\t\t\t\tsetSelection: function setSelection(element, position, doc) {\n\t\t\t\t\t\tif (element !== this.getActiveElement(doc)) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// cursor is already in the end\n\t\t\t\t\t\tif (element && element.value.length <= position) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (element.createTextRange) {\n\t\t\t\t\t\t\tvar range = element.createTextRange();\n\n\t\t\t\t\t\t\trange.move('character', position);\n\t\t\t\t\t\t\trange.select();\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\telement.setSelectionRange(position, position);\n\t\t\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\t\t\t// eslint-disable-next-line\n\t\t\t\t\t\t\t\tconsole.warn('The input element type does not support selection');\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\tgetActiveElement: function getActiveElement(parent) {\n\t\t\t\t\t\tvar activeElement = parent.activeElement;\n\t\t\t\t\t\tif (activeElement && activeElement.shadowRoot) {\n\t\t\t\t\t\t\treturn this.getActiveElement(activeElement.shadowRoot);\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn activeElement;\n\t\t\t\t\t},\n\n\t\t\t\t\tisAndroid: function isAndroid() {\n\t\t\t\t\t\treturn navigator && /android/i.test(navigator.userAgent);\n\t\t\t\t\t},\n\n\t\t\t\t\t// On Android chrome, the keyup and keydown events\n\t\t\t\t\t// always return key code 229 as a composition that\n\t\t\t\t\t// buffers the user’s keystrokes\n\t\t\t\t\t// see https://github.com/nosir/cleave.js/issues/147\n\t\t\t\t\tisAndroidBackspaceKeydown: function isAndroidBackspaceKeydown(lastInputValue, currentInputValue) {\n\t\t\t\t\t\tif (!this.isAndroid() || !lastInputValue || !currentInputValue) {\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn currentInputValue === lastInputValue.slice(0, -1);\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tmodule.exports = Util;\n\n\t\t\t\t/***/\n\t\t\t},\n\t\t\t/* 7 */\n\t\t\t/***/function (module, exports) {\n\n\t\t\t\t/* WEBPACK VAR INJECTION */(function (global) {\n\t\t\t\t\t'use strict';\n\n\t\t\t\t\t/**\n\t * Props Assignment\n\t *\n\t * Separate this, so react module can share the usage\n\t */\n\n\t\t\t\t\tvar DefaultProperties = {\n\t\t\t\t\t\t// Maybe change to object-assign\n\t\t\t\t\t\t// for now just keep it as simple\n\t\t\t\t\t\tassign: function assign(target, opts) {\n\t\t\t\t\t\t\ttarget = target || {};\n\t\t\t\t\t\t\topts = opts || {};\n\n\t\t\t\t\t\t\t// credit card\n\t\t\t\t\t\t\ttarget.creditCard = !!opts.creditCard;\n\t\t\t\t\t\t\ttarget.creditCardStrictMode = !!opts.creditCardStrictMode;\n\t\t\t\t\t\t\ttarget.creditCardType = '';\n\t\t\t\t\t\t\ttarget.onCreditCardTypeChanged = opts.onCreditCardTypeChanged || function () {};\n\n\t\t\t\t\t\t\t// phone\n\t\t\t\t\t\t\ttarget.phone = !!opts.phone;\n\t\t\t\t\t\t\ttarget.phoneRegionCode = opts.phoneRegionCode || 'AU';\n\t\t\t\t\t\t\ttarget.phoneFormatter = {};\n\n\t\t\t\t\t\t\t// time\n\t\t\t\t\t\t\ttarget.time = !!opts.time;\n\t\t\t\t\t\t\ttarget.timePattern = opts.timePattern || ['h', 'm', 's'];\n\t\t\t\t\t\t\ttarget.timeFormat = opts.timeFormat || '24';\n\t\t\t\t\t\t\ttarget.timeFormatter = {};\n\n\t\t\t\t\t\t\t// date\n\t\t\t\t\t\t\ttarget.date = !!opts.date;\n\t\t\t\t\t\t\ttarget.datePattern = opts.datePattern || ['d', 'm', 'Y'];\n\t\t\t\t\t\t\ttarget.dateMin = opts.dateMin || '';\n\t\t\t\t\t\t\ttarget.dateMax = opts.dateMax || '';\n\t\t\t\t\t\t\ttarget.dateFormatter = {};\n\n\t\t\t\t\t\t\t// numeral\n\t\t\t\t\t\t\ttarget.numeral = !!opts.numeral;\n\t\t\t\t\t\t\ttarget.numeralIntegerScale = opts.numeralIntegerScale > 0 ? opts.numeralIntegerScale : 0;\n\t\t\t\t\t\t\ttarget.numeralDecimalScale = opts.numeralDecimalScale >= 0 ? opts.numeralDecimalScale : 2;\n\t\t\t\t\t\t\ttarget.numeralDecimalMark = opts.numeralDecimalMark || '.';\n\t\t\t\t\t\t\ttarget.numeralThousandsGroupStyle = opts.numeralThousandsGroupStyle || 'thousand';\n\t\t\t\t\t\t\ttarget.numeralPositiveOnly = !!opts.numeralPositiveOnly;\n\t\t\t\t\t\t\ttarget.stripLeadingZeroes = opts.stripLeadingZeroes !== false;\n\t\t\t\t\t\t\ttarget.signBeforePrefix = !!opts.signBeforePrefix;\n\t\t\t\t\t\t\ttarget.tailPrefix = !!opts.tailPrefix;\n\n\t\t\t\t\t\t\t// others\n\t\t\t\t\t\t\ttarget.swapHiddenInput = !!opts.swapHiddenInput;\n\n\t\t\t\t\t\t\ttarget.numericOnly = target.creditCard || target.date || !!opts.numericOnly;\n\n\t\t\t\t\t\t\ttarget.uppercase = !!opts.uppercase;\n\t\t\t\t\t\t\ttarget.lowercase = !!opts.lowercase;\n\n\t\t\t\t\t\t\ttarget.prefix = target.creditCard || target.date ? '' : opts.prefix || '';\n\t\t\t\t\t\t\ttarget.noImmediatePrefix = !!opts.noImmediatePrefix;\n\t\t\t\t\t\t\ttarget.prefixLength = target.prefix.length;\n\t\t\t\t\t\t\ttarget.rawValueTrimPrefix = !!opts.rawValueTrimPrefix;\n\t\t\t\t\t\t\ttarget.copyDelimiter = !!opts.copyDelimiter;\n\n\t\t\t\t\t\t\ttarget.initValue = opts.initValue !== undefined && opts.initValue !== null ? opts.initValue.toString() : '';\n\n\t\t\t\t\t\t\ttarget.delimiter = opts.delimiter || opts.delimiter === '' ? opts.delimiter : opts.date ? '/' : opts.time ? ':' : opts.numeral ? ',' : opts.phone ? ' ' : ' ';\n\t\t\t\t\t\t\ttarget.delimiterLength = target.delimiter.length;\n\t\t\t\t\t\t\ttarget.delimiterLazyShow = !!opts.delimiterLazyShow;\n\t\t\t\t\t\t\ttarget.delimiters = opts.delimiters || [];\n\n\t\t\t\t\t\t\ttarget.blocks = opts.blocks || [];\n\t\t\t\t\t\t\ttarget.blocksLength = target.blocks.length;\n\n\t\t\t\t\t\t\ttarget.root = (typeof global === 'undefined' ? 'undefined' : _typeof(global)) === 'object' && global ? global : window;\n\t\t\t\t\t\t\ttarget.document = opts.document || target.root.document;\n\n\t\t\t\t\t\t\ttarget.maxLength = 0;\n\n\t\t\t\t\t\t\ttarget.backspace = false;\n\t\t\t\t\t\t\ttarget.result = '';\n\n\t\t\t\t\t\t\ttarget.onValueChanged = opts.onValueChanged || function () {};\n\n\t\t\t\t\t\t\treturn target;\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tmodule.exports = DefaultProperties;\n\n\t\t\t\t\t/* WEBPACK VAR INJECTION */\n\t\t\t\t}).call(exports, function () {\n\t\t\t\t\treturn this;\n\t\t\t\t}());\n\n\t\t\t\t/***/\n\t\t\t}]\n\t\t\t/******/)\n\t\t);\n\t});\n\t;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(98)(module)))\n\n/***/ }),\n/* 98 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (module) {\n\t\tif (!module.webpackPolyfill) {\n\t\t\tmodule.deprecate = function () {};\n\t\t\tmodule.paths = [];\n\t\t\t// module.parent = undefined by default\n\t\t\tmodule.children = [];\n\t\t\tmodule.webpackPolyfill = 1;\n\t\t}\n\t\treturn module;\n\t};\n\n/***/ }),\n/* 99 */,\n/* 100 */,\n/* 101 */,\n/* 102 */,\n/* 103 */,\n/* 104 */,\n/* 105 */,\n/* 106 */,\n/* 107 */,\n/* 108 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module) {\"use strict\";\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/*!\n\t * jQuery JavaScript Library v3.7.1\n\t * https://jquery.com/\n\t *\n\t * Copyright OpenJS Foundation and other contributors\n\t * Released under the MIT license\n\t * https://jquery.org/license\n\t *\n\t * Date: 2023-08-28T13:37Z\n\t */\n\t(function (global, factory) {\n\n\t\t\"use strict\";\n\n\t\tif (( false ? \"undefined\" : _typeof(module)) === \"object\" && _typeof(module.exports) === \"object\") {\n\n\t\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t\t// is present, execute the factory and get jQuery.\n\t\t\t// For environments that do not have a `window` with a `document`\n\t\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t\t// This accentuates the need for the creation of a real `window`.\n\t\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t\t// See ticket trac-14549 for more info.\n\t\t\tmodule.exports = global.document ? factory(global, true) : function (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\t} else {\n\t\t\tfactory(global);\n\t\t}\n\n\t\t// Pass this if window is not defined yet\n\t})(typeof window !== \"undefined\" ? window : undefined, function (window, noGlobal) {\n\n\t\t// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n\t\t// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n\t\t// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n\t\t// enough that all such attempts are guarded in a try block.\n\t\t\"use strict\";\n\n\t\tvar arr = [];\n\n\t\tvar getProto = Object.getPrototypeOf;\n\n\t\tvar _slice = arr.slice;\n\n\t\tvar flat = arr.flat ? function (array) {\n\t\t\treturn arr.flat.call(array);\n\t\t} : function (array) {\n\t\t\treturn arr.concat.apply([], array);\n\t\t};\n\n\t\tvar push = arr.push;\n\n\t\tvar indexOf = arr.indexOf;\n\n\t\tvar class2type = {};\n\n\t\tvar toString = class2type.toString;\n\n\t\tvar hasOwn = class2type.hasOwnProperty;\n\n\t\tvar fnToString = hasOwn.toString;\n\n\t\tvar ObjectFunctionString = fnToString.call(Object);\n\n\t\tvar support = {};\n\n\t\tvar isFunction = function isFunction(obj) {\n\n\t\t\t// Support: Chrome <=57, Firefox <=52\n\t\t\t// In some browsers, typeof returns \"function\" for HTML elements\n\t\t\t// (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n\t\t\t// We don't want to classify *any* DOM node as a function.\n\t\t\t// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5\n\t\t\t// Plus for old WebKit, typeof returns \"function\" for HTML collections\n\t\t\t// (e.g., `typeof document.getElementsByTagName(\"div\") === \"function\"`). (gh-4756)\n\t\t\treturn typeof obj === \"function\" && typeof obj.nodeType !== \"number\" && typeof obj.item !== \"function\";\n\t\t};\n\n\t\tvar isWindow = function isWindow(obj) {\n\t\t\treturn obj != null && obj === obj.window;\n\t\t};\n\n\t\tvar document = window.document;\n\n\t\tvar preservedScriptAttributes = {\n\t\t\ttype: true,\n\t\t\tsrc: true,\n\t\t\tnonce: true,\n\t\t\tnoModule: true\n\t\t};\n\n\t\tfunction DOMEval(code, node, doc) {\n\t\t\tdoc = doc || document;\n\n\t\t\tvar i,\n\t\t\t val,\n\t\t\t script = doc.createElement(\"script\");\n\n\t\t\tscript.text = code;\n\t\t\tif (node) {\n\t\t\t\tfor (i in preservedScriptAttributes) {\n\n\t\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t\t// via an object.\n\t\t\t\t\tval = node[i] || node.getAttribute && node.getAttribute(i);\n\t\t\t\t\tif (val) {\n\t\t\t\t\t\tscript.setAttribute(i, val);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tdoc.head.appendChild(script).parentNode.removeChild(script);\n\t\t}\n\n\t\tfunction toType(obj) {\n\t\t\tif (obj == null) {\n\t\t\t\treturn obj + \"\";\n\t\t\t}\n\n\t\t\t// Support: Android <=2.3 only (functionish RegExp)\n\t\t\treturn (typeof obj === \"undefined\" ? \"undefined\" : _typeof(obj)) === \"object\" || typeof obj === \"function\" ? class2type[toString.call(obj)] || \"object\" : typeof obj === \"undefined\" ? \"undefined\" : _typeof(obj);\n\t\t}\n\t\t/* global Symbol */\n\t\t// Defining this global in .eslintrc.json would create a danger of using the global\n\t\t// unguarded in another place, it seems safer to define global only for this module\n\n\n\t\tvar version = \"3.7.1\",\n\t\t rhtmlSuffix = /HTML$/i,\n\n\n\t\t// Define a local copy of jQuery\n\t\tjQuery = function jQuery(selector, context) {\n\n\t\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\t\treturn new jQuery.fn.init(selector, context);\n\t\t};\n\n\t\tjQuery.fn = jQuery.prototype = {\n\n\t\t\t// The current version of jQuery being used\n\t\t\tjquery: version,\n\n\t\t\tconstructor: jQuery,\n\n\t\t\t// The default length of a jQuery object is 0\n\t\t\tlength: 0,\n\n\t\t\ttoArray: function toArray() {\n\t\t\t\treturn _slice.call(this);\n\t\t\t},\n\n\t\t\t// Get the Nth element in the matched element set OR\n\t\t\t// Get the whole matched element set as a clean array\n\t\t\tget: function get(num) {\n\n\t\t\t\t// Return all the elements in a clean array\n\t\t\t\tif (num == null) {\n\t\t\t\t\treturn _slice.call(this);\n\t\t\t\t}\n\n\t\t\t\t// Return just the one element from the set\n\t\t\t\treturn num < 0 ? this[num + this.length] : this[num];\n\t\t\t},\n\n\t\t\t// Take an array of elements and push it onto the stack\n\t\t\t// (returning the new matched element set)\n\t\t\tpushStack: function pushStack(elems) {\n\n\t\t\t\t// Build a new jQuery matched element set\n\t\t\t\tvar ret = jQuery.merge(this.constructor(), elems);\n\n\t\t\t\t// Add the old object onto the stack (as a reference)\n\t\t\t\tret.prevObject = this;\n\n\t\t\t\t// Return the newly-formed element set\n\t\t\t\treturn ret;\n\t\t\t},\n\n\t\t\t// Execute a callback for every element in the matched set.\n\t\t\teach: function each(callback) {\n\t\t\t\treturn jQuery.each(this, callback);\n\t\t\t},\n\n\t\t\tmap: function map(callback) {\n\t\t\t\treturn this.pushStack(jQuery.map(this, function (elem, i) {\n\t\t\t\t\treturn callback.call(elem, i, elem);\n\t\t\t\t}));\n\t\t\t},\n\n\t\t\tslice: function slice() {\n\t\t\t\treturn this.pushStack(_slice.apply(this, arguments));\n\t\t\t},\n\n\t\t\tfirst: function first() {\n\t\t\t\treturn this.eq(0);\n\t\t\t},\n\n\t\t\tlast: function last() {\n\t\t\t\treturn this.eq(-1);\n\t\t\t},\n\n\t\t\teven: function even() {\n\t\t\t\treturn this.pushStack(jQuery.grep(this, function (_elem, i) {\n\t\t\t\t\treturn (i + 1) % 2;\n\t\t\t\t}));\n\t\t\t},\n\n\t\t\todd: function odd() {\n\t\t\t\treturn this.pushStack(jQuery.grep(this, function (_elem, i) {\n\t\t\t\t\treturn i % 2;\n\t\t\t\t}));\n\t\t\t},\n\n\t\t\teq: function eq(i) {\n\t\t\t\tvar len = this.length,\n\t\t\t\t j = +i + (i < 0 ? len : 0);\n\t\t\t\treturn this.pushStack(j >= 0 && j < len ? [this[j]] : []);\n\t\t\t},\n\n\t\t\tend: function end() {\n\t\t\t\treturn this.prevObject || this.constructor();\n\t\t\t},\n\n\t\t\t// For internal use only.\n\t\t\t// Behaves like an Array's method, not like a jQuery method.\n\t\t\tpush: push,\n\t\t\tsort: arr.sort,\n\t\t\tsplice: arr.splice\n\t\t};\n\n\t\tjQuery.extend = jQuery.fn.extend = function () {\n\t\t\tvar options,\n\t\t\t name,\n\t\t\t src,\n\t\t\t copy,\n\t\t\t copyIsArray,\n\t\t\t clone,\n\t\t\t target = arguments[0] || {},\n\t\t\t i = 1,\n\t\t\t length = arguments.length,\n\t\t\t deep = false;\n\n\t\t\t// Handle a deep copy situation\n\t\t\tif (typeof target === \"boolean\") {\n\t\t\t\tdeep = target;\n\n\t\t\t\t// Skip the boolean and the target\n\t\t\t\ttarget = arguments[i] || {};\n\t\t\t\ti++;\n\t\t\t}\n\n\t\t\t// Handle case when target is a string or something (possible in deep copy)\n\t\t\tif ((typeof target === \"undefined\" ? \"undefined\" : _typeof(target)) !== \"object\" && !isFunction(target)) {\n\t\t\t\ttarget = {};\n\t\t\t}\n\n\t\t\t// Extend jQuery itself if only one argument is passed\n\t\t\tif (i === length) {\n\t\t\t\ttarget = this;\n\t\t\t\ti--;\n\t\t\t}\n\n\t\t\tfor (; i < length; i++) {\n\n\t\t\t\t// Only deal with non-null/undefined values\n\t\t\t\tif ((options = arguments[i]) != null) {\n\n\t\t\t\t\t// Extend the base object\n\t\t\t\t\tfor (name in options) {\n\t\t\t\t\t\tcopy = options[name];\n\n\t\t\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t\t\t// Prevent never-ending loop\n\t\t\t\t\t\tif (name === \"__proto__\" || target === copy) {\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\t\t\tif (deep && copy && (jQuery.isPlainObject(copy) || (copyIsArray = Array.isArray(copy)))) {\n\t\t\t\t\t\t\tsrc = target[name];\n\n\t\t\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\t\t\tif (copyIsArray && !Array.isArray(src)) {\n\t\t\t\t\t\t\t\tclone = [];\n\t\t\t\t\t\t\t} else if (!copyIsArray && !jQuery.isPlainObject(src)) {\n\t\t\t\t\t\t\t\tclone = {};\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tclone = src;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\t\t\ttarget[name] = jQuery.extend(deep, clone, copy);\n\n\t\t\t\t\t\t\t// Don't bring in undefined values\n\t\t\t\t\t\t} else if (copy !== undefined) {\n\t\t\t\t\t\t\ttarget[name] = copy;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Return the modified object\n\t\t\treturn target;\n\t\t};\n\n\t\tjQuery.extend({\n\n\t\t\t// Unique for each copy of jQuery on the page\n\t\t\texpando: \"jQuery\" + (version + Math.random()).replace(/\\D/g, \"\"),\n\n\t\t\t// Assume jQuery is ready without the ready module\n\t\t\tisReady: true,\n\n\t\t\terror: function error(msg) {\n\t\t\t\tthrow new Error(msg);\n\t\t\t},\n\n\t\t\tnoop: function noop() {},\n\n\t\t\tisPlainObject: function isPlainObject(obj) {\n\t\t\t\tvar proto, Ctor;\n\n\t\t\t\t// Detect obvious negatives\n\t\t\t\t// Use toString instead of jQuery.type to catch host objects\n\t\t\t\tif (!obj || toString.call(obj) !== \"[object Object]\") {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\tproto = getProto(obj);\n\n\t\t\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\t\t\tif (!proto) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\t\t\tCtor = hasOwn.call(proto, \"constructor\") && proto.constructor;\n\t\t\t\treturn typeof Ctor === \"function\" && fnToString.call(Ctor) === ObjectFunctionString;\n\t\t\t},\n\n\t\t\tisEmptyObject: function isEmptyObject(obj) {\n\t\t\t\tvar name;\n\n\t\t\t\tfor (name in obj) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// Evaluates a script in a provided context; falls back to the global one\n\t\t\t// if not specified.\n\t\t\tglobalEval: function globalEval(code, options, doc) {\n\t\t\t\tDOMEval(code, { nonce: options && options.nonce }, doc);\n\t\t\t},\n\n\t\t\teach: function each(obj, callback) {\n\t\t\t\tvar length,\n\t\t\t\t i = 0;\n\n\t\t\t\tif (isArrayLike(obj)) {\n\t\t\t\t\tlength = obj.length;\n\t\t\t\t\tfor (; i < length; i++) {\n\t\t\t\t\t\tif (callback.call(obj[i], i, obj[i]) === false) {\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} else {\n\t\t\t\t\tfor (i in obj) {\n\t\t\t\t\t\tif (callback.call(obj[i], i, obj[i]) === false) {\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}\n\n\t\t\t\treturn obj;\n\t\t\t},\n\n\t\t\t// Retrieve the text value of an array of DOM nodes\n\t\t\ttext: function text(elem) {\n\t\t\t\tvar node,\n\t\t\t\t ret = \"\",\n\t\t\t\t i = 0,\n\t\t\t\t nodeType = elem.nodeType;\n\n\t\t\t\tif (!nodeType) {\n\n\t\t\t\t\t// If no nodeType, this is expected to be an array\n\t\t\t\t\twhile (node = elem[i++]) {\n\n\t\t\t\t\t\t// Do not traverse comment nodes\n\t\t\t\t\t\tret += jQuery.text(node);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (nodeType === 1 || nodeType === 11) {\n\t\t\t\t\treturn elem.textContent;\n\t\t\t\t}\n\t\t\t\tif (nodeType === 9) {\n\t\t\t\t\treturn elem.documentElement.textContent;\n\t\t\t\t}\n\t\t\t\tif (nodeType === 3 || nodeType === 4) {\n\t\t\t\t\treturn elem.nodeValue;\n\t\t\t\t}\n\n\t\t\t\t// Do not include comment or processing instruction nodes\n\n\t\t\t\treturn ret;\n\t\t\t},\n\n\t\t\t// results is for internal usage only\n\t\t\tmakeArray: function makeArray(arr, results) {\n\t\t\t\tvar ret = results || [];\n\n\t\t\t\tif (arr != null) {\n\t\t\t\t\tif (isArrayLike(Object(arr))) {\n\t\t\t\t\t\tjQuery.merge(ret, typeof arr === \"string\" ? [arr] : arr);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tpush.call(ret, arr);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn ret;\n\t\t\t},\n\n\t\t\tinArray: function inArray(elem, arr, i) {\n\t\t\t\treturn arr == null ? -1 : indexOf.call(arr, elem, i);\n\t\t\t},\n\n\t\t\tisXMLDoc: function isXMLDoc(elem) {\n\t\t\t\tvar namespace = elem && elem.namespaceURI,\n\t\t\t\t docElem = elem && (elem.ownerDocument || elem).documentElement;\n\n\t\t\t\t// Assume HTML when documentElement doesn't yet exist, such as inside\n\t\t\t\t// document fragments.\n\t\t\t\treturn !rhtmlSuffix.test(namespace || docElem && docElem.nodeName || \"HTML\");\n\t\t\t},\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tmerge: function merge(first, second) {\n\t\t\t\tvar len = +second.length,\n\t\t\t\t j = 0,\n\t\t\t\t i = first.length;\n\n\t\t\t\tfor (; j < len; j++) {\n\t\t\t\t\tfirst[i++] = second[j];\n\t\t\t\t}\n\n\t\t\t\tfirst.length = i;\n\n\t\t\t\treturn first;\n\t\t\t},\n\n\t\t\tgrep: function grep(elems, callback, invert) {\n\t\t\t\tvar callbackInverse,\n\t\t\t\t matches = [],\n\t\t\t\t i = 0,\n\t\t\t\t length = elems.length,\n\t\t\t\t callbackExpect = !invert;\n\n\t\t\t\t// Go through the array, only saving the items\n\t\t\t\t// that pass the validator function\n\t\t\t\tfor (; i < length; i++) {\n\t\t\t\t\tcallbackInverse = !callback(elems[i], i);\n\t\t\t\t\tif (callbackInverse !== callbackExpect) {\n\t\t\t\t\t\tmatches.push(elems[i]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn matches;\n\t\t\t},\n\n\t\t\t// arg is for internal usage only\n\t\t\tmap: function map(elems, callback, arg) {\n\t\t\t\tvar length,\n\t\t\t\t value,\n\t\t\t\t i = 0,\n\t\t\t\t ret = [];\n\n\t\t\t\t// Go through the array, translating each of the items to their new values\n\t\t\t\tif (isArrayLike(elems)) {\n\t\t\t\t\tlength = elems.length;\n\t\t\t\t\tfor (; i < length; i++) {\n\t\t\t\t\t\tvalue = callback(elems[i], i, arg);\n\n\t\t\t\t\t\tif (value != null) {\n\t\t\t\t\t\t\tret.push(value);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Go through every key on the object,\n\t\t\t\t} else {\n\t\t\t\t\tfor (i in elems) {\n\t\t\t\t\t\tvalue = callback(elems[i], i, arg);\n\n\t\t\t\t\t\tif (value != null) {\n\t\t\t\t\t\t\tret.push(value);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Flatten any nested arrays\n\t\t\t\treturn flat(ret);\n\t\t\t},\n\n\t\t\t// A global GUID counter for objects\n\t\t\tguid: 1,\n\n\t\t\t// jQuery.support is not used in Core but other projects attach their\n\t\t\t// properties to it so it needs to exist.\n\t\t\tsupport: support\n\t\t});\n\n\t\tif (typeof Symbol === \"function\") {\n\t\t\tjQuery.fn[Symbol.iterator] = arr[Symbol.iterator];\n\t\t}\n\n\t\t// Populate the class2type map\n\t\tjQuery.each(\"Boolean Number String Function Array Date RegExp Object Error Symbol\".split(\" \"), function (_i, name) {\n\t\t\tclass2type[\"[object \" + name + \"]\"] = name.toLowerCase();\n\t\t});\n\n\t\tfunction isArrayLike(obj) {\n\n\t\t\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t\t\t// `in` check used to prevent JIT error (gh-2145)\n\t\t\t// hasOwn isn't used here due to false negatives\n\t\t\t// regarding Nodelist length in IE\n\t\t\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\t\t type = toType(obj);\n\n\t\t\tif (isFunction(obj) || isWindow(obj)) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\treturn type === \"array\" || length === 0 || typeof length === \"number\" && length > 0 && length - 1 in obj;\n\t\t}\n\n\t\tfunction nodeName(elem, name) {\n\n\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t\t}\n\t\tvar pop = arr.pop;\n\n\t\tvar sort = arr.sort;\n\n\t\tvar splice = arr.splice;\n\n\t\tvar whitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\";\n\n\t\tvar rtrimCSS = new RegExp(\"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\");\n\n\t\t// Note: an element does not contain itself\n\t\tjQuery.contains = function (a, b) {\n\t\t\tvar bup = b && b.parentNode;\n\n\t\t\treturn a === bup || !!(bup && bup.nodeType === 1 && (\n\n\t\t\t// Support: IE 9 - 11+\n\t\t\t// IE doesn't have `contains` on SVG.\n\t\t\ta.contains ? a.contains(bup) : a.compareDocumentPosition && a.compareDocumentPosition(bup) & 16));\n\t\t};\n\n\t\t// CSS string/identifier serialization\n\t\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\t\tvar rcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\x80-\\uFFFF\\w-]/g;\n\n\t\tfunction fcssescape(ch, asCodePoint) {\n\t\t\tif (asCodePoint) {\n\n\t\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\t\tif (ch === \"\\0\") {\n\t\t\t\t\treturn \"\\uFFFD\";\n\t\t\t\t}\n\n\t\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\t\treturn ch.slice(0, -1) + \"\\\\\" + ch.charCodeAt(ch.length - 1).toString(16) + \" \";\n\t\t\t}\n\n\t\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\t\treturn \"\\\\\" + ch;\n\t\t}\n\n\t\tjQuery.escapeSelector = function (sel) {\n\t\t\treturn (sel + \"\").replace(rcssescape, fcssescape);\n\t\t};\n\n\t\tvar preferredDoc = document,\n\t\t pushNative = push;\n\n\t\t(function () {\n\n\t\t\tvar i,\n\t\t\t Expr,\n\t\t\t outermostContext,\n\t\t\t sortInput,\n\t\t\t hasDuplicate,\n\t\t\t push = pushNative,\n\n\n\t\t\t// Local document vars\n\t\t\tdocument,\n\t\t\t documentElement,\n\t\t\t documentIsHTML,\n\t\t\t rbuggyQSA,\n\t\t\t matches,\n\n\n\t\t\t// Instance-specific data\n\t\t\texpando = jQuery.expando,\n\t\t\t dirruns = 0,\n\t\t\t done = 0,\n\t\t\t classCache = createCache(),\n\t\t\t tokenCache = createCache(),\n\t\t\t compilerCache = createCache(),\n\t\t\t nonnativeSelectorCache = createCache(),\n\t\t\t sortOrder = function sortOrder(a, b) {\n\t\t\t\tif (a === b) {\n\t\t\t\t\thasDuplicate = true;\n\t\t\t\t}\n\t\t\t\treturn 0;\n\t\t\t},\n\t\t\t booleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|\" + \"loop|multiple|open|readonly|required|scoped\",\n\n\n\t\t\t// Regular expressions\n\n\t\t\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\t\t\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\n\t\t\t// Attribute selectors: https://www.w3.org/TR/selectors/#attribute-selectors\n\t\t\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t\t// Operator (capture 2)\n\t\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace + \"*\\\\]\",\n\t\t\t pseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t\t// 2. simple (capture 6)\n\t\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t\t// 3. anything else (capture 2)\n\t\t\t\".*\" + \")\\\\)|)\",\n\n\n\t\t\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\t\t\trwhitespace = new RegExp(whitespace + \"+\", \"g\"),\n\t\t\t rcomma = new RegExp(\"^\" + whitespace + \"*,\" + whitespace + \"*\"),\n\t\t\t rleadingCombinator = new RegExp(\"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\"),\n\t\t\t rdescend = new RegExp(whitespace + \"|>\"),\n\t\t\t rpseudo = new RegExp(pseudos),\n\t\t\t ridentifier = new RegExp(\"^\" + identifier + \"$\"),\n\t\t\t matchExpr = {\n\t\t\t\tID: new RegExp(\"^#(\" + identifier + \")\"),\n\t\t\t\tCLASS: new RegExp(\"^\\\\.(\" + identifier + \")\"),\n\t\t\t\tTAG: new RegExp(\"^(\" + identifier + \"|[*])\"),\n\t\t\t\tATTR: new RegExp(\"^\" + attributes),\n\t\t\t\tPSEUDO: new RegExp(\"^\" + pseudos),\n\t\t\t\tCHILD: new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\"),\n\t\t\t\tbool: new RegExp(\"^(?:\" + booleans + \")$\", \"i\"),\n\n\t\t\t\t// For use in libraries implementing .is()\n\t\t\t\t// We use this for POS matching in `select`\n\t\t\t\tneedsContext: new RegExp(\"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\")\n\t\t\t},\n\t\t\t rinputs = /^(?:input|select|textarea|button)$/i,\n\t\t\t rheader = /^h\\d$/i,\n\n\n\t\t\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\t\t\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\t\t\t rsibling = /[+~]/,\n\n\n\t\t\t// CSS escapes\n\t\t\t// https://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\t\t\trunescape = new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\"),\n\t\t\t funescape = function funescape(escape, nonHex) {\n\t\t\t\tvar high = \"0x\" + escape.slice(1) - 0x10000;\n\n\t\t\t\tif (nonHex) {\n\n\t\t\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\t\t\treturn nonHex;\n\t\t\t\t}\n\n\t\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t\t// Support: IE <=11+\n\t\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t\t// surrogate pair\n\t\t\t\treturn high < 0 ? String.fromCharCode(high + 0x10000) : String.fromCharCode(high >> 10 | 0xD800, high & 0x3FF | 0xDC00);\n\t\t\t},\n\n\n\t\t\t// Used for iframes; see `setDocument`.\n\t\t\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t\t\t// Removing the function wrapper causes a \"Permission Denied\"\n\t\t\t// error in IE/Edge.\n\t\t\tunloadHandler = function unloadHandler() {\n\t\t\t\tsetDocument();\n\t\t\t},\n\t\t\t inDisabledFieldset = addCombinator(function (elem) {\n\t\t\t\treturn elem.disabled === true && nodeName(elem, \"fieldset\");\n\t\t\t}, { dir: \"parentNode\", next: \"legend\" });\n\n\t\t\t// Support: IE <=9 only\n\t\t\t// Accessing document.activeElement can throw unexpectedly\n\t\t\t// https://bugs.jquery.com/ticket/13393\n\t\t\tfunction safeActiveElement() {\n\t\t\t\ttry {\n\t\t\t\t\treturn document.activeElement;\n\t\t\t\t} catch (err) {}\n\t\t\t}\n\n\t\t\t// Optimize for push.apply( _, NodeList )\n\t\t\ttry {\n\t\t\t\tpush.apply(arr = _slice.call(preferredDoc.childNodes), preferredDoc.childNodes);\n\n\t\t\t\t// Support: Android <=4.0\n\t\t\t\t// Detect silently failing push.apply\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\tarr[preferredDoc.childNodes.length].nodeType;\n\t\t\t} catch (e) {\n\t\t\t\tpush = {\n\t\t\t\t\tapply: function apply(target, els) {\n\t\t\t\t\t\tpushNative.apply(target, _slice.call(els));\n\t\t\t\t\t},\n\t\t\t\t\tcall: function call(target) {\n\t\t\t\t\t\tpushNative.apply(target, _slice.call(arguments, 1));\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tfunction find(selector, context, results, seed) {\n\t\t\t\tvar m,\n\t\t\t\t i,\n\t\t\t\t elem,\n\t\t\t\t nid,\n\t\t\t\t match,\n\t\t\t\t groups,\n\t\t\t\t newSelector,\n\t\t\t\t newContext = context && context.ownerDocument,\n\n\n\t\t\t\t// nodeType defaults to 9, since context defaults to document\n\t\t\t\tnodeType = context ? context.nodeType : 9;\n\n\t\t\t\tresults = results || [];\n\n\t\t\t\t// Return early from calls with invalid selector or context\n\t\t\t\tif (typeof selector !== \"string\" || !selector || nodeType !== 1 && nodeType !== 9 && nodeType !== 11) {\n\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\n\t\t\t\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\t\t\t\tif (!seed) {\n\t\t\t\t\tsetDocument(context);\n\t\t\t\t\tcontext = context || document;\n\n\t\t\t\t\tif (documentIsHTML) {\n\n\t\t\t\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\t\t\t\tif (nodeType !== 11 && (match = rquickExpr.exec(selector))) {\n\n\t\t\t\t\t\t\t// ID selector\n\t\t\t\t\t\t\tif (m = match[1]) {\n\n\t\t\t\t\t\t\t\t// Document context\n\t\t\t\t\t\t\t\tif (nodeType === 9) {\n\t\t\t\t\t\t\t\t\tif (elem = context.getElementById(m)) {\n\n\t\t\t\t\t\t\t\t\t\t// Support: IE 9 only\n\t\t\t\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\t\t\t\tif (elem.id === m) {\n\t\t\t\t\t\t\t\t\t\t\tpush.call(results, elem);\n\t\t\t\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Element context\n\t\t\t\t\t\t\t\t} else {\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// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\t\t\tif (newContext && (elem = newContext.getElementById(m)) && find.contains(context, elem) && elem.id === m) {\n\n\t\t\t\t\t\t\t\t\t\tpush.call(results, elem);\n\t\t\t\t\t\t\t\t\t\treturn results;\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// Type selector\n\t\t\t\t\t\t\t} else if (match[2]) {\n\t\t\t\t\t\t\t\tpush.apply(results, context.getElementsByTagName(selector));\n\t\t\t\t\t\t\t\treturn results;\n\n\t\t\t\t\t\t\t\t// Class selector\n\t\t\t\t\t\t\t} else if ((m = match[3]) && context.getElementsByClassName) {\n\t\t\t\t\t\t\t\tpush.apply(results, context.getElementsByClassName(m));\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}\n\n\t\t\t\t\t\t// Take advantage of querySelectorAll\n\t\t\t\t\t\tif (!nonnativeSelectorCache[selector + \" \"] && (!rbuggyQSA || !rbuggyQSA.test(selector))) {\n\n\t\t\t\t\t\t\tnewSelector = selector;\n\t\t\t\t\t\t\tnewContext = context;\n\n\t\t\t\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\t\t\t\tif (nodeType === 1 && (rdescend.test(selector) || rleadingCombinator.test(selector))) {\n\n\t\t\t\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\t\t\t\tnewContext = rsibling.test(selector) && testContext(context.parentNode) || context;\n\n\t\t\t\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when\n\t\t\t\t\t\t\t\t// strict-comparing two documents; shallow comparisons work.\n\t\t\t\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\t\t\t\tif (newContext != context || !support.scope) {\n\n\t\t\t\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\t\t\t\tif (nid = context.getAttribute(\"id\")) {\n\t\t\t\t\t\t\t\t\t\tnid = jQuery.escapeSelector(nid);\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tcontext.setAttribute(\"id\", nid = expando);\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// Prefix every selector in the list\n\t\t\t\t\t\t\t\tgroups = tokenize(selector);\n\t\t\t\t\t\t\t\ti = groups.length;\n\t\t\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\t\t\tgroups[i] = (nid ? \"#\" + nid : \":scope\") + \" \" + toSelector(groups[i]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tpush.apply(results, newContext.querySelectorAll(newSelector));\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t} catch (qsaError) {\n\t\t\t\t\t\t\t\tnonnativeSelectorCache(selector, true);\n\t\t\t\t\t\t\t} finally {\n\t\t\t\t\t\t\t\tif (nid === expando) {\n\t\t\t\t\t\t\t\t\tcontext.removeAttribute(\"id\");\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// All others\n\t\t\t\treturn select(selector.replace(rtrimCSS, \"$1\"), context, results, seed);\n\t\t\t}\n\n\t\t\t/**\n\t * Create key-value caches of limited size\n\t * @returns {function(string, object)} Returns the Object data after storing it on itself with\n\t *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n\t *\tdeleting the oldest entry\n\t */\n\t\t\tfunction createCache() {\n\t\t\t\tvar keys = [];\n\n\t\t\t\tfunction cache(key, value) {\n\n\t\t\t\t\t// Use (key + \" \") to avoid collision with native prototype properties\n\t\t\t\t\t// (see https://github.com/jquery/sizzle/issues/157)\n\t\t\t\t\tif (keys.push(key + \" \") > Expr.cacheLength) {\n\n\t\t\t\t\t\t// Only keep the most recent entries\n\t\t\t\t\t\tdelete cache[keys.shift()];\n\t\t\t\t\t}\n\t\t\t\t\treturn cache[key + \" \"] = value;\n\t\t\t\t}\n\t\t\t\treturn cache;\n\t\t\t}\n\n\t\t\t/**\n\t * Mark a function for special use by jQuery selector module\n\t * @param {Function} fn The function to mark\n\t */\n\t\t\tfunction markFunction(fn) {\n\t\t\t\tfn[expando] = true;\n\t\t\t\treturn fn;\n\t\t\t}\n\n\t\t\t/**\n\t * Support testing using an element\n\t * @param {Function} fn Passed the created element and returns a boolean result\n\t */\n\t\t\tfunction assert(fn) {\n\t\t\t\tvar el = document.createElement(\"fieldset\");\n\n\t\t\t\ttry {\n\t\t\t\t\treturn !!fn(el);\n\t\t\t\t} catch (e) {\n\t\t\t\t\treturn false;\n\t\t\t\t} finally {\n\n\t\t\t\t\t// Remove from its parent by default\n\t\t\t\t\tif (el.parentNode) {\n\t\t\t\t\t\tel.parentNode.removeChild(el);\n\t\t\t\t\t}\n\n\t\t\t\t\t// release memory in IE\n\t\t\t\t\tel = null;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/**\n\t * Returns a function to use in pseudos for input types\n\t * @param {String} type\n\t */\n\t\t\tfunction createInputPseudo(type) {\n\t\t\t\treturn function (elem) {\n\t\t\t\t\treturn nodeName(elem, \"input\") && elem.type === type;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t/**\n\t * Returns a function to use in pseudos for buttons\n\t * @param {String} type\n\t */\n\t\t\tfunction createButtonPseudo(type) {\n\t\t\t\treturn function (elem) {\n\t\t\t\t\treturn (nodeName(elem, \"input\") || nodeName(elem, \"button\")) && elem.type === type;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t/**\n\t * Returns a function to use in pseudos for :enabled/:disabled\n\t * @param {Boolean} disabled true for :disabled; false for :enabled\n\t */\n\t\t\tfunction createDisabledPseudo(disabled) {\n\n\t\t\t\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\t\t\t\treturn function (elem) {\n\n\t\t\t\t\t// Only certain elements can match :enabled or :disabled\n\t\t\t\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t\t\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\t\t\t\tif (\"form\" in elem) {\n\n\t\t\t\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t\t\t\t// * option elements in a disabled optgroup\n\t\t\t\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t\t\t\t// All such elements have a \"form\" property.\n\t\t\t\t\t\tif (elem.parentNode && elem.disabled === false) {\n\n\t\t\t\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\t\t\t\tif (\"label\" in elem) {\n\t\t\t\t\t\t\t\tif (\"label\" in elem.parentNode) {\n\t\t\t\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\treturn elem.disabled === disabled;\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\t// Support: IE 6 - 11+\n\t\t\t\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t\t\telem.isDisabled !== !disabled && inDisabledFieldset(elem) === disabled;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\n\t\t\t\t\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t\t\t\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t\t\t\t\t// even exist on them, let alone have a boolean value.\n\t\t\t\t\t} else if (\"label\" in elem) {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remaining elements are neither :enabled nor :disabled\n\t\t\t\t\treturn false;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t/**\n\t * Returns a function to use in pseudos for positionals\n\t * @param {Function} fn\n\t */\n\t\t\tfunction createPositionalPseudo(fn) {\n\t\t\t\treturn markFunction(function (argument) {\n\t\t\t\t\targument = +argument;\n\t\t\t\t\treturn markFunction(function (seed, matches) {\n\t\t\t\t\t\tvar j,\n\t\t\t\t\t\t matchIndexes = fn([], seed.length, argument),\n\t\t\t\t\t\t i = matchIndexes.length;\n\n\t\t\t\t\t\t// Match elements found at the specified indexes\n\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\tif (seed[j = matchIndexes[i]]) {\n\t\t\t\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\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\n\t\t\t/**\n\t * Checks a node for validity as a jQuery selector context\n\t * @param {Element|Object=} context\n\t * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n\t */\n\t\t\tfunction testContext(context) {\n\t\t\t\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n\t\t\t}\n\n\t\t\t/**\n\t * Sets document-related variables once based on the current document\n\t * @param {Element|Object} [node] An element or document object to use to set the document\n\t * @returns {Object} Returns the current document\n\t */\n\t\t\tfunction setDocument(node) {\n\t\t\t\tvar subWindow,\n\t\t\t\t doc = node ? node.ownerDocument || node : preferredDoc;\n\n\t\t\t\t// Return early if doc is invalid or already selected\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\tif (doc == document || doc.nodeType !== 9 || !doc.documentElement) {\n\t\t\t\t\treturn document;\n\t\t\t\t}\n\n\t\t\t\t// Update global variables\n\t\t\t\tdocument = doc;\n\t\t\t\tdocumentElement = document.documentElement;\n\t\t\t\tdocumentIsHTML = !jQuery.isXMLDoc(document);\n\n\t\t\t\t// Support: iOS 7 only, IE 9 - 11+\n\t\t\t\t// Older browsers didn't support unprefixed `matches`.\n\t\t\t\tmatches = documentElement.matches || documentElement.webkitMatchesSelector || documentElement.msMatchesSelector;\n\n\t\t\t\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t\t\t\t// Accessing iframe documents after unload throws \"permission denied\" errors\n\t\t\t\t// (see trac-13936).\n\t\t\t\t// Limit the fix to IE & Edge Legacy; despite Edge 15+ implementing `matches`,\n\t\t\t\t// all IE 9+ and Edge Legacy versions implement `msMatchesSelector` as well.\n\t\t\t\tif (documentElement.msMatchesSelector &&\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\tpreferredDoc != document && (subWindow = document.defaultView) && subWindow.top !== subWindow) {\n\n\t\t\t\t\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t\t\t\t\tsubWindow.addEventListener(\"unload\", unloadHandler);\n\t\t\t\t}\n\n\t\t\t\t// Support: IE <10\n\t\t\t\t// Check if getElementById returns elements by name\n\t\t\t\t// The broken getElementById methods don't pick up programmatically-set names,\n\t\t\t\t// so use a roundabout getElementsByName test\n\t\t\t\tsupport.getById = assert(function (el) {\n\t\t\t\t\tdocumentElement.appendChild(el).id = jQuery.expando;\n\t\t\t\t\treturn !document.getElementsByName || !document.getElementsByName(jQuery.expando).length;\n\t\t\t\t});\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t\t// on a disconnected node.\n\t\t\t\tsupport.disconnectedMatch = assert(function (el) {\n\t\t\t\t\treturn matches.call(el, \"*\");\n\t\t\t\t});\n\n\t\t\t\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t\t\t\t// IE/Edge don't support the :scope pseudo-class.\n\t\t\t\tsupport.scope = assert(function () {\n\t\t\t\t\treturn document.querySelectorAll(\":scope\");\n\t\t\t\t});\n\n\t\t\t\t// Support: Chrome 105 - 111 only, Safari 15.4 - 16.3 only\n\t\t\t\t// Make sure the `:has()` argument is parsed unforgivingly.\n\t\t\t\t// We include `*` in the test to detect buggy implementations that are\n\t\t\t\t// _selectively_ forgiving (specifically when the list includes at least\n\t\t\t\t// one valid selector).\n\t\t\t\t// Note that we treat complete lack of support for `:has()` as if it were\n\t\t\t\t// spec-compliant support, which is fine because use of `:has()` in such\n\t\t\t\t// environments will fail in the qSA path and fall back to jQuery traversal\n\t\t\t\t// anyway.\n\t\t\t\tsupport.cssHas = assert(function () {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tdocument.querySelector(\":has(*,:jqfake)\");\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\t// ID filter and find\n\t\t\t\tif (support.getById) {\n\t\t\t\t\tExpr.filter.ID = function (id) {\n\t\t\t\t\t\tvar attrId = id.replace(runescape, funescape);\n\t\t\t\t\t\treturn function (elem) {\n\t\t\t\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t\t\t\t};\n\t\t\t\t\t};\n\t\t\t\t\tExpr.find.ID = function (id, context) {\n\t\t\t\t\t\tif (typeof context.getElementById !== \"undefined\" && documentIsHTML) {\n\t\t\t\t\t\t\tvar elem = context.getElementById(id);\n\t\t\t\t\t\t\treturn elem ? [elem] : [];\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t} else {\n\t\t\t\t\tExpr.filter.ID = function (id) {\n\t\t\t\t\t\tvar attrId = id.replace(runescape, funescape);\n\t\t\t\t\t\treturn function (elem) {\n\t\t\t\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\t\t\t\treturn node && node.value === attrId;\n\t\t\t\t\t\t};\n\t\t\t\t\t};\n\n\t\t\t\t\t// Support: IE 6 - 7 only\n\t\t\t\t\t// getElementById is not reliable as a find shortcut\n\t\t\t\t\tExpr.find.ID = function (id, context) {\n\t\t\t\t\t\tif (typeof context.getElementById !== \"undefined\" && documentIsHTML) {\n\t\t\t\t\t\t\tvar node,\n\t\t\t\t\t\t\t i,\n\t\t\t\t\t\t\t elems,\n\t\t\t\t\t\t\t elem = context.getElementById(id);\n\n\t\t\t\t\t\t\tif (elem) {\n\n\t\t\t\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\t\t\t\tnode = elem.getAttributeNode(\"id\");\n\t\t\t\t\t\t\t\tif (node && node.value === id) {\n\t\t\t\t\t\t\t\t\treturn [elem];\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\t\t\t\telems = context.getElementsByName(id);\n\t\t\t\t\t\t\t\ti = 0;\n\t\t\t\t\t\t\t\twhile (elem = elems[i++]) {\n\t\t\t\t\t\t\t\t\tnode = elem.getAttributeNode(\"id\");\n\t\t\t\t\t\t\t\t\tif (node && node.value === id) {\n\t\t\t\t\t\t\t\t\t\treturn [elem];\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\n\t\t\t\t\t\t\treturn [];\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Tag\n\t\t\t\tExpr.find.TAG = function (tag, context) {\n\t\t\t\t\tif (typeof context.getElementsByTagName !== \"undefined\") {\n\t\t\t\t\t\treturn context.getElementsByTagName(tag);\n\n\t\t\t\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn context.querySelectorAll(tag);\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Class\n\t\t\t\tExpr.find.CLASS = function (className, context) {\n\t\t\t\t\tif (typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML) {\n\t\t\t\t\t\treturn context.getElementsByClassName(className);\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t/* QSA/matchesSelector\n\t ---------------------------------------------------------------------- */\n\n\t\t\t\t// QSA and matchesSelector support\n\n\t\t\t\trbuggyQSA = [];\n\n\t\t\t\t// Build QSA regex\n\t\t\t\t// Regex strategy adopted from Diego Perini\n\t\t\t\tassert(function (el) {\n\n\t\t\t\t\tvar input;\n\n\t\t\t\t\tdocumentElement.appendChild(el).innerHTML = \"\" + \"\";\n\n\t\t\t\t\t// Support: iOS <=7 - 8 only\n\t\t\t\t\t// Boolean attributes and \"value\" are not treated correctly in some XML documents\n\t\t\t\t\tif (!el.querySelectorAll(\"[selected]\").length) {\n\t\t\t\t\t\trbuggyQSA.push(\"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\");\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: iOS <=7 - 8 only\n\t\t\t\t\tif (!el.querySelectorAll(\"[id~=\" + expando + \"-]\").length) {\n\t\t\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: iOS 8 only\n\t\t\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\t\t\tif (!el.querySelectorAll(\"a#\" + expando + \"+*\").length) {\n\t\t\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+\n\t\t\t\t\t// In some of the document kinds, these selectors wouldn't work natively.\n\t\t\t\t\t// This is probably OK but for backwards compatibility we want to maintain\n\t\t\t\t\t// handling them through jQuery traversal in jQuery 3.x.\n\t\t\t\t\tif (!el.querySelectorAll(\":checked\").length) {\n\t\t\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Windows 8 Native Apps\n\t\t\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\t\t\tinput = document.createElement(\"input\");\n\t\t\t\t\tinput.setAttribute(\"type\", \"hidden\");\n\t\t\t\t\tel.appendChild(input).setAttribute(\"name\", \"D\");\n\n\t\t\t\t\t// Support: IE 9 - 11+\n\t\t\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\t\t\t// Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+\n\t\t\t\t\t// In some of the document kinds, these selectors wouldn't work natively.\n\t\t\t\t\t// This is probably OK but for backwards compatibility we want to maintain\n\t\t\t\t\t// handling them through jQuery traversal in jQuery 3.x.\n\t\t\t\t\tdocumentElement.appendChild(el).disabled = true;\n\t\t\t\t\tif (el.querySelectorAll(\":disabled\").length !== 2) {\n\t\t\t\t\t\trbuggyQSA.push(\":enabled\", \":disabled\");\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t\t\t// around the issue.\n\t\t\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\t\t\tinput = document.createElement(\"input\");\n\t\t\t\t\tinput.setAttribute(\"name\", \"\");\n\t\t\t\t\tel.appendChild(input);\n\t\t\t\t\tif (!el.querySelectorAll(\"[name='']\").length) {\n\t\t\t\t\t\trbuggyQSA.push(\"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" + whitespace + \"*(?:''|\\\"\\\")\");\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tif (!support.cssHas) {\n\n\t\t\t\t\t// Support: Chrome 105 - 110+, Safari 15.4 - 16.3+\n\t\t\t\t\t// Our regular `try-catch` mechanism fails to detect natively-unsupported\n\t\t\t\t\t// pseudo-classes inside `:has()` (such as `:has(:contains(\"Foo\"))`)\n\t\t\t\t\t// in browsers that parse the `:has()` argument as a forgiving selector list.\n\t\t\t\t\t// https://drafts.csswg.org/selectors/#relational now requires the argument\n\t\t\t\t\t// to be parsed unforgivingly, but browsers have not yet fully adjusted.\n\t\t\t\t\trbuggyQSA.push(\":has\");\n\t\t\t\t}\n\n\t\t\t\trbuggyQSA = rbuggyQSA.length && new RegExp(rbuggyQSA.join(\"|\"));\n\n\t\t\t\t/* Sorting\n\t ---------------------------------------------------------------------- */\n\n\t\t\t\t// Document order sorting\n\t\t\t\tsortOrder = function sortOrder(a, b) {\n\n\t\t\t\t\t// Flag for duplicate removal\n\t\t\t\t\tif (a === b) {\n\t\t\t\t\t\thasDuplicate = true;\n\t\t\t\t\t\treturn 0;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\t\t\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\t\t\t\tif (compare) {\n\t\t\t\t\t\treturn compare;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Calculate position if both inputs belong to the same document\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\tcompare = (a.ownerDocument || a) == (b.ownerDocument || b) ? a.compareDocumentPosition(b) :\n\n\t\t\t\t\t// Otherwise we know they are disconnected\n\t\t\t\t\t1;\n\n\t\t\t\t\t// Disconnected nodes\n\t\t\t\t\tif (compare & 1 || !support.sortDetached && b.compareDocumentPosition(a) === compare) {\n\n\t\t\t\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\t\tif (a === document || a.ownerDocument == preferredDoc && find.contains(preferredDoc, a)) {\n\t\t\t\t\t\t\treturn -1;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\t\tif (b === document || b.ownerDocument == preferredDoc && find.contains(preferredDoc, b)) {\n\t\t\t\t\t\t\treturn 1;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Maintain original order\n\t\t\t\t\t\treturn sortInput ? indexOf.call(sortInput, a) - indexOf.call(sortInput, b) : 0;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn compare & 4 ? -1 : 1;\n\t\t\t\t};\n\n\t\t\t\treturn document;\n\t\t\t}\n\n\t\t\tfind.matches = function (expr, elements) {\n\t\t\t\treturn find(expr, null, null, elements);\n\t\t\t};\n\n\t\t\tfind.matchesSelector = function (elem, expr) {\n\t\t\t\tsetDocument(elem);\n\n\t\t\t\tif (documentIsHTML && !nonnativeSelectorCache[expr + \" \"] && (!rbuggyQSA || !rbuggyQSA.test(expr))) {\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tvar ret = matches.call(elem, expr);\n\n\t\t\t\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\t\t\t\tif (ret || support.disconnectedMatch ||\n\n\t\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\t\telem.document && elem.document.nodeType !== 11) {\n\t\t\t\t\t\t\treturn ret;\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\tnonnativeSelectorCache(expr, true);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn find(expr, document, null, [elem]).length > 0;\n\t\t\t};\n\n\t\t\tfind.contains = function (context, elem) {\n\n\t\t\t\t// Set document vars if needed\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\tif ((context.ownerDocument || context) != document) {\n\t\t\t\t\tsetDocument(context);\n\t\t\t\t}\n\t\t\t\treturn jQuery.contains(context, elem);\n\t\t\t};\n\n\t\t\tfind.attr = function (elem, name) {\n\n\t\t\t\t// Set document vars if needed\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\tif ((elem.ownerDocument || elem) != document) {\n\t\t\t\t\tsetDocument(elem);\n\t\t\t\t}\n\n\t\t\t\tvar fn = Expr.attrHandle[name.toLowerCase()],\n\n\n\t\t\t\t// Don't get fooled by Object.prototype properties (see trac-13807)\n\t\t\t\tval = fn && hasOwn.call(Expr.attrHandle, name.toLowerCase()) ? fn(elem, name, !documentIsHTML) : undefined;\n\n\t\t\t\tif (val !== undefined) {\n\t\t\t\t\treturn val;\n\t\t\t\t}\n\n\t\t\t\treturn elem.getAttribute(name);\n\t\t\t};\n\n\t\t\tfind.error = function (msg) {\n\t\t\t\tthrow new Error(\"Syntax error, unrecognized expression: \" + msg);\n\t\t\t};\n\n\t\t\t/**\n\t * Document sorting and removing duplicates\n\t * @param {ArrayLike} results\n\t */\n\t\t\tjQuery.uniqueSort = function (results) {\n\t\t\t\tvar elem,\n\t\t\t\t duplicates = [],\n\t\t\t\t j = 0,\n\t\t\t\t i = 0;\n\n\t\t\t\t// Unless we *know* we can detect duplicates, assume their presence\n\t\t\t\t//\n\t\t\t\t// Support: Android <=4.0+\n\t\t\t\t// Testing for detecting duplicates is unpredictable so instead assume we can't\n\t\t\t\t// depend on duplicate detection in all browsers without a stable sort.\n\t\t\t\thasDuplicate = !support.sortStable;\n\t\t\t\tsortInput = !support.sortStable && _slice.call(results, 0);\n\t\t\t\tsort.call(results, sortOrder);\n\n\t\t\t\tif (hasDuplicate) {\n\t\t\t\t\twhile (elem = results[i++]) {\n\t\t\t\t\t\tif (elem === results[i]) {\n\t\t\t\t\t\t\tj = duplicates.push(i);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\twhile (j--) {\n\t\t\t\t\t\tsplice.call(results, duplicates[j], 1);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Clear input after sorting to release objects\n\t\t\t\t// See https://github.com/jquery/sizzle/pull/225\n\t\t\t\tsortInput = null;\n\n\t\t\t\treturn results;\n\t\t\t};\n\n\t\t\tjQuery.fn.uniqueSort = function () {\n\t\t\t\treturn this.pushStack(jQuery.uniqueSort(_slice.apply(this)));\n\t\t\t};\n\n\t\t\tExpr = jQuery.expr = {\n\n\t\t\t\t// Can be adjusted by the user\n\t\t\t\tcacheLength: 50,\n\n\t\t\t\tcreatePseudo: markFunction,\n\n\t\t\t\tmatch: matchExpr,\n\n\t\t\t\tattrHandle: {},\n\n\t\t\t\tfind: {},\n\n\t\t\t\trelative: {\n\t\t\t\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\t\t\t\" \": { dir: \"parentNode\" },\n\t\t\t\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\t\t\t\"~\": { dir: \"previousSibling\" }\n\t\t\t\t},\n\n\t\t\t\tpreFilter: {\n\t\t\t\t\tATTR: function ATTR(match) {\n\t\t\t\t\t\tmatch[1] = match[1].replace(runescape, funescape);\n\n\t\t\t\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\t\t\t\tmatch[3] = (match[3] || match[4] || match[5] || \"\").replace(runescape, funescape);\n\n\t\t\t\t\t\tif (match[2] === \"~=\") {\n\t\t\t\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn match.slice(0, 4);\n\t\t\t\t\t},\n\n\t\t\t\t\tCHILD: function CHILD(match) {\n\n\t\t\t\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t \t1 type (only|nth|...)\n\t \t2 what (child|of-type)\n\t \t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t \t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t \t5 sign of xn-component\n\t \t6 x of xn-component\n\t \t7 sign of y-component\n\t \t8 y of y-component\n\t */\n\t\t\t\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\t\t\t\tif (match[1].slice(0, 3) === \"nth\") {\n\n\t\t\t\t\t\t\t// nth-* requires argument\n\t\t\t\t\t\t\tif (!match[3]) {\n\t\t\t\t\t\t\t\tfind.error(match[0]);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\t\t\t\tmatch[4] = +(match[4] ? match[5] + (match[6] || 1) : 2 * (match[3] === \"even\" || match[3] === \"odd\"));\n\t\t\t\t\t\t\tmatch[5] = +(match[7] + match[8] || match[3] === \"odd\");\n\n\t\t\t\t\t\t\t// other types prohibit arguments\n\t\t\t\t\t\t} else if (match[3]) {\n\t\t\t\t\t\t\tfind.error(match[0]);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn match;\n\t\t\t\t\t},\n\n\t\t\t\t\tPSEUDO: function PSEUDO(match) {\n\t\t\t\t\t\tvar excess,\n\t\t\t\t\t\t unquoted = !match[6] && match[2];\n\n\t\t\t\t\t\tif (matchExpr.CHILD.test(match[0])) {\n\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Accept quoted arguments as-is\n\t\t\t\t\t\tif (match[3]) {\n\t\t\t\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t\t\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t\t\t\t} else if (unquoted && rpseudo.test(unquoted) && (\n\n\t\t\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t\t\texcess = tokenize(unquoted, true)) && (\n\n\t\t\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t\t\texcess = unquoted.indexOf(\")\", unquoted.length - excess) - unquoted.length)) {\n\n\t\t\t\t\t\t\t// excess is a negative index\n\t\t\t\t\t\t\tmatch[0] = match[0].slice(0, excess);\n\t\t\t\t\t\t\tmatch[2] = unquoted.slice(0, excess);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\t\t\t\treturn match.slice(0, 3);\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tfilter: {\n\n\t\t\t\t\tTAG: function TAG(nodeNameSelector) {\n\t\t\t\t\t\tvar expectedNodeName = nodeNameSelector.replace(runescape, funescape).toLowerCase();\n\t\t\t\t\t\treturn nodeNameSelector === \"*\" ? function () {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t} : function (elem) {\n\t\t\t\t\t\t\treturn nodeName(elem, expectedNodeName);\n\t\t\t\t\t\t};\n\t\t\t\t\t},\n\n\t\t\t\t\tCLASS: function CLASS(className) {\n\t\t\t\t\t\tvar pattern = classCache[className + \" \"];\n\n\t\t\t\t\t\treturn pattern || (pattern = new RegExp(\"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\")) && classCache(className, function (elem) {\n\t\t\t\t\t\t\treturn pattern.test(typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\");\n\t\t\t\t\t\t});\n\t\t\t\t\t},\n\n\t\t\t\t\tATTR: function ATTR(name, operator, check) {\n\t\t\t\t\t\treturn function (elem) {\n\t\t\t\t\t\t\tvar result = find.attr(elem, name);\n\n\t\t\t\t\t\t\tif (result == null) {\n\t\t\t\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (!operator) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tresult += \"\";\n\n\t\t\t\t\t\t\tif (operator === \"=\") {\n\t\t\t\t\t\t\t\treturn result === check;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (operator === \"!=\") {\n\t\t\t\t\t\t\t\treturn result !== check;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (operator === \"^=\") {\n\t\t\t\t\t\t\t\treturn check && result.indexOf(check) === 0;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (operator === \"*=\") {\n\t\t\t\t\t\t\t\treturn check && result.indexOf(check) > -1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (operator === \"$=\") {\n\t\t\t\t\t\t\t\treturn check && result.slice(-check.length) === check;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (operator === \"~=\") {\n\t\t\t\t\t\t\t\treturn (\" \" + result.replace(rwhitespace, \" \") + \" \").indexOf(check) > -1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (operator === \"|=\") {\n\t\t\t\t\t\t\t\treturn result === check || result.slice(0, check.length + 1) === check + \"-\";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t};\n\t\t\t\t\t},\n\n\t\t\t\t\tCHILD: function CHILD(type, what, _argument, first, last) {\n\t\t\t\t\t\tvar simple = type.slice(0, 3) !== \"nth\",\n\t\t\t\t\t\t forward = type.slice(-4) !== \"last\",\n\t\t\t\t\t\t ofType = what === \"of-type\";\n\n\t\t\t\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\t\t\tfunction (elem) {\n\t\t\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t\t\t} : function (elem, _context, xml) {\n\t\t\t\t\t\t\tvar cache,\n\t\t\t\t\t\t\t outerCache,\n\t\t\t\t\t\t\t node,\n\t\t\t\t\t\t\t nodeIndex,\n\t\t\t\t\t\t\t start,\n\t\t\t\t\t\t\t dir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\t\t parent = elem.parentNode,\n\t\t\t\t\t\t\t name = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\t\t useCache = !xml && !ofType,\n\t\t\t\t\t\t\t diff = false;\n\n\t\t\t\t\t\t\tif (parent) {\n\n\t\t\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\t\t\tif (simple) {\n\t\t\t\t\t\t\t\t\twhile (dir) {\n\t\t\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\t\t\twhile (node = node[dir]) {\n\t\t\t\t\t\t\t\t\t\t\tif (ofType ? nodeName(node, name) : node.nodeType === 1) {\n\n\t\t\t\t\t\t\t\t\t\t\t\treturn false;\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\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tstart = [forward ? parent.firstChild : parent.lastChild];\n\n\t\t\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\t\t\tif (forward && useCache) {\n\n\t\t\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\t\t\touterCache = parent[expando] || (parent[expando] = {});\n\t\t\t\t\t\t\t\t\tcache = outerCache[type] || [];\n\t\t\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\t\t\tdiff = nodeIndex && cache[2];\n\t\t\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[nodeIndex];\n\n\t\t\t\t\t\t\t\t\twhile (node = ++nodeIndex && node && node[dir] || (\n\n\t\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t\tdiff = nodeIndex = 0) || start.pop()) {\n\n\t\t\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\t\t\tif (node.nodeType === 1 && ++diff && node === elem) {\n\t\t\t\t\t\t\t\t\t\t\touterCache[type] = [dirruns, nodeIndex, diff];\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} else {\n\n\t\t\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\t\t\tif (useCache) {\n\t\t\t\t\t\t\t\t\t\touterCache = elem[expando] || (elem[expando] = {});\n\t\t\t\t\t\t\t\t\t\tcache = outerCache[type] || [];\n\t\t\t\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\t\t\tif (diff === false) {\n\n\t\t\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\t\t\twhile (node = ++nodeIndex && node && node[dir] || (diff = nodeIndex = 0) || start.pop()) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ((ofType ? nodeName(node, name) : node.nodeType === 1) && ++diff) {\n\n\t\t\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\t\t\tif (useCache) {\n\t\t\t\t\t\t\t\t\t\t\t\t\touterCache = node[expando] || (node[expando] = {});\n\t\t\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\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (node === elem) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t}\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\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\t\t\treturn diff === first || diff % first === 0 && diff / first >= 0;\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\tPSEUDO: function PSEUDO(pseudo, argument) {\n\n\t\t\t\t\t\t// pseudo-class names are case-insensitive\n\t\t\t\t\t\t// https://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\t\t\t\tvar args,\n\t\t\t\t\t\t fn = Expr.pseudos[pseudo] || Expr.setFilters[pseudo.toLowerCase()] || find.error(\"unsupported pseudo: \" + pseudo);\n\n\t\t\t\t\t\t// The user may use createPseudo to indicate that\n\t\t\t\t\t\t// arguments are needed to create the filter function\n\t\t\t\t\t\t// just as jQuery does\n\t\t\t\t\t\tif (fn[expando]) {\n\t\t\t\t\t\t\treturn fn(argument);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// But maintain support for old signatures\n\t\t\t\t\t\tif (fn.length > 1) {\n\t\t\t\t\t\t\targs = [pseudo, pseudo, \"\", argument];\n\t\t\t\t\t\t\treturn Expr.setFilters.hasOwnProperty(pseudo.toLowerCase()) ? markFunction(function (seed, matches) {\n\t\t\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\t\t matched = fn(seed, argument),\n\t\t\t\t\t\t\t\t i = matched.length;\n\t\t\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\t\t\tidx = indexOf.call(seed, matched[i]);\n\t\t\t\t\t\t\t\t\tseed[idx] = !(matches[idx] = matched[i]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}) : function (elem) {\n\t\t\t\t\t\t\t\treturn fn(elem, 0, args);\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn fn;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tpseudos: {\n\n\t\t\t\t\t// Potentially complex pseudos\n\t\t\t\t\tnot: markFunction(function (selector) {\n\n\t\t\t\t\t\t// Trim the selector passed to compile\n\t\t\t\t\t\t// to avoid treating leading and trailing\n\t\t\t\t\t\t// spaces as combinators\n\t\t\t\t\t\tvar input = [],\n\t\t\t\t\t\t results = [],\n\t\t\t\t\t\t matcher = compile(selector.replace(rtrimCSS, \"$1\"));\n\n\t\t\t\t\t\treturn matcher[expando] ? markFunction(function (seed, matches, _context, xml) {\n\t\t\t\t\t\t\tvar elem,\n\t\t\t\t\t\t\t unmatched = matcher(seed, null, xml, []),\n\t\t\t\t\t\t\t i = seed.length;\n\n\t\t\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\t\tif (elem = unmatched[i]) {\n\t\t\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}) : function (elem, _context, xml) {\n\t\t\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\t\t\tmatcher(input, null, xml, results);\n\n\t\t\t\t\t\t\t// Don't keep the element\n\t\t\t\t\t\t\t// (see https://github.com/jquery/sizzle/issues/299)\n\t\t\t\t\t\t\tinput[0] = null;\n\t\t\t\t\t\t\treturn !results.pop();\n\t\t\t\t\t\t};\n\t\t\t\t\t}),\n\n\t\t\t\t\thas: markFunction(function (selector) {\n\t\t\t\t\t\treturn function (elem) {\n\t\t\t\t\t\t\treturn find(selector, elem).length > 0;\n\t\t\t\t\t\t};\n\t\t\t\t\t}),\n\n\t\t\t\t\tcontains: markFunction(function (text) {\n\t\t\t\t\t\ttext = text.replace(runescape, funescape);\n\t\t\t\t\t\treturn function (elem) {\n\t\t\t\t\t\t\treturn (elem.textContent || jQuery.text(elem)).indexOf(text) > -1;\n\t\t\t\t\t\t};\n\t\t\t\t\t}),\n\n\t\t\t\t\t// \"Whether an element is represented by a :lang() selector\n\t\t\t\t\t// is based solely on the element's language value\n\t\t\t\t\t// being equal to the identifier C,\n\t\t\t\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t\t\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t\t\t\t// The identifier C does not have to be a valid language name.\"\n\t\t\t\t\t// https://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\t\t\tlang: markFunction(function (lang) {\n\n\t\t\t\t\t\t// lang value must be a valid identifier\n\t\t\t\t\t\tif (!ridentifier.test(lang || \"\")) {\n\t\t\t\t\t\t\tfind.error(\"unsupported lang: \" + lang);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlang = lang.replace(runescape, funescape).toLowerCase();\n\t\t\t\t\t\treturn function (elem) {\n\t\t\t\t\t\t\tvar elemLang;\n\t\t\t\t\t\t\tdo {\n\t\t\t\t\t\t\t\tif (elemLang = documentIsHTML ? elem.lang : elem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) {\n\n\t\t\t\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf(lang + \"-\") === 0;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} while ((elem = elem.parentNode) && elem.nodeType === 1);\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t};\n\t\t\t\t\t}),\n\n\t\t\t\t\t// Miscellaneous\n\t\t\t\t\ttarget: function target(elem) {\n\t\t\t\t\t\tvar hash = window.location && window.location.hash;\n\t\t\t\t\t\treturn hash && hash.slice(1) === elem.id;\n\t\t\t\t\t},\n\n\t\t\t\t\troot: function root(elem) {\n\t\t\t\t\t\treturn elem === documentElement;\n\t\t\t\t\t},\n\n\t\t\t\t\tfocus: function focus(elem) {\n\t\t\t\t\t\treturn elem === safeActiveElement() && document.hasFocus() && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t\t\t\t},\n\n\t\t\t\t\t// Boolean properties\n\t\t\t\t\tenabled: createDisabledPseudo(false),\n\t\t\t\t\tdisabled: createDisabledPseudo(true),\n\n\t\t\t\t\tchecked: function checked(elem) {\n\n\t\t\t\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t\t\t\t// https://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t\t\t\treturn nodeName(elem, \"input\") && !!elem.checked || nodeName(elem, \"option\") && !!elem.selected;\n\t\t\t\t\t},\n\n\t\t\t\t\tselected: function selected(elem) {\n\n\t\t\t\t\t\t// Support: IE <=11+\n\t\t\t\t\t\t// Accessing the selectedIndex property\n\t\t\t\t\t\t// forces the browser to treat the default option as\n\t\t\t\t\t\t// selected when in an optgroup.\n\t\t\t\t\t\tif (elem.parentNode) {\n\t\t\t\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn elem.selected === true;\n\t\t\t\t\t},\n\n\t\t\t\t\t// Contents\n\t\t\t\t\tempty: function empty(elem) {\n\n\t\t\t\t\t\t// https://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t\t\t\t// but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\t\t\t\tfor (elem = elem.firstChild; elem; elem = elem.nextSibling) {\n\t\t\t\t\t\t\tif (elem.nodeType < 6) {\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t},\n\n\t\t\t\t\tparent: function parent(elem) {\n\t\t\t\t\t\treturn !Expr.pseudos.empty(elem);\n\t\t\t\t\t},\n\n\t\t\t\t\t// Element/input types\n\t\t\t\t\theader: function header(elem) {\n\t\t\t\t\t\treturn rheader.test(elem.nodeName);\n\t\t\t\t\t},\n\n\t\t\t\t\tinput: function input(elem) {\n\t\t\t\t\t\treturn rinputs.test(elem.nodeName);\n\t\t\t\t\t},\n\n\t\t\t\t\tbutton: function button(elem) {\n\t\t\t\t\t\treturn nodeName(elem, \"input\") && elem.type === \"button\" || nodeName(elem, \"button\");\n\t\t\t\t\t},\n\n\t\t\t\t\ttext: function text(elem) {\n\t\t\t\t\t\tvar attr;\n\t\t\t\t\t\treturn nodeName(elem, \"input\") && elem.type === \"text\" && (\n\n\t\t\t\t\t\t// Support: IE <10 only\n\t\t\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear\n\t\t\t\t\t\t// with elem.type === \"text\"\n\t\t\t\t\t\t(attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\");\n\t\t\t\t\t},\n\n\t\t\t\t\t// Position-in-collection\n\t\t\t\t\tfirst: createPositionalPseudo(function () {\n\t\t\t\t\t\treturn [0];\n\t\t\t\t\t}),\n\n\t\t\t\t\tlast: createPositionalPseudo(function (_matchIndexes, length) {\n\t\t\t\t\t\treturn [length - 1];\n\t\t\t\t\t}),\n\n\t\t\t\t\teq: createPositionalPseudo(function (_matchIndexes, length, argument) {\n\t\t\t\t\t\treturn [argument < 0 ? argument + length : argument];\n\t\t\t\t\t}),\n\n\t\t\t\t\teven: createPositionalPseudo(function (matchIndexes, length) {\n\t\t\t\t\t\tvar i = 0;\n\t\t\t\t\t\tfor (; i < length; i += 2) {\n\t\t\t\t\t\t\tmatchIndexes.push(i);\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn matchIndexes;\n\t\t\t\t\t}),\n\n\t\t\t\t\todd: createPositionalPseudo(function (matchIndexes, length) {\n\t\t\t\t\t\tvar i = 1;\n\t\t\t\t\t\tfor (; i < length; i += 2) {\n\t\t\t\t\t\t\tmatchIndexes.push(i);\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn matchIndexes;\n\t\t\t\t\t}),\n\n\t\t\t\t\tlt: createPositionalPseudo(function (matchIndexes, length, argument) {\n\t\t\t\t\t\tvar i;\n\n\t\t\t\t\t\tif (argument < 0) {\n\t\t\t\t\t\t\ti = argument + length;\n\t\t\t\t\t\t} else if (argument > length) {\n\t\t\t\t\t\t\ti = length;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ti = argument;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tfor (; --i >= 0;) {\n\t\t\t\t\t\t\tmatchIndexes.push(i);\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn matchIndexes;\n\t\t\t\t\t}),\n\n\t\t\t\t\tgt: createPositionalPseudo(function (matchIndexes, length, argument) {\n\t\t\t\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\t\t\t\tfor (; ++i < length;) {\n\t\t\t\t\t\t\tmatchIndexes.push(i);\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn matchIndexes;\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tExpr.pseudos.nth = Expr.pseudos.eq;\n\n\t\t\t// Add button/input type pseudos\n\t\t\tfor (i in { radio: true, checkbox: true, file: true, password: true, image: true }) {\n\t\t\t\tExpr.pseudos[i] = createInputPseudo(i);\n\t\t\t}\n\t\t\tfor (i in { submit: true, reset: true }) {\n\t\t\t\tExpr.pseudos[i] = createButtonPseudo(i);\n\t\t\t}\n\n\t\t\t// Easy API for creating new setFilters\n\t\t\tfunction setFilters() {}\n\t\t\tsetFilters.prototype = Expr.filters = Expr.pseudos;\n\t\t\tExpr.setFilters = new setFilters();\n\n\t\t\tfunction tokenize(selector, parseOnly) {\n\t\t\t\tvar matched,\n\t\t\t\t match,\n\t\t\t\t tokens,\n\t\t\t\t type,\n\t\t\t\t soFar,\n\t\t\t\t groups,\n\t\t\t\t preFilters,\n\t\t\t\t cached = tokenCache[selector + \" \"];\n\n\t\t\t\tif (cached) {\n\t\t\t\t\treturn parseOnly ? 0 : cached.slice(0);\n\t\t\t\t}\n\n\t\t\t\tsoFar = selector;\n\t\t\t\tgroups = [];\n\t\t\t\tpreFilters = Expr.preFilter;\n\n\t\t\t\twhile (soFar) {\n\n\t\t\t\t\t// Comma and first run\n\t\t\t\t\tif (!matched || (match = rcomma.exec(soFar))) {\n\t\t\t\t\t\tif (match) {\n\n\t\t\t\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\t\t\t\tsoFar = soFar.slice(match[0].length) || soFar;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tgroups.push(tokens = []);\n\t\t\t\t\t}\n\n\t\t\t\t\tmatched = false;\n\n\t\t\t\t\t// Combinators\n\t\t\t\t\tif (match = rleadingCombinator.exec(soFar)) {\n\t\t\t\t\t\tmatched = match.shift();\n\t\t\t\t\t\ttokens.push({\n\t\t\t\t\t\t\tvalue: matched,\n\n\t\t\t\t\t\t\t// Cast descendant combinators to space\n\t\t\t\t\t\t\ttype: match[0].replace(rtrimCSS, \" \")\n\t\t\t\t\t\t});\n\t\t\t\t\t\tsoFar = soFar.slice(matched.length);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Filters\n\t\t\t\t\tfor (type in Expr.filter) {\n\t\t\t\t\t\tif ((match = matchExpr[type].exec(soFar)) && (!preFilters[type] || (match = preFilters[type](match)))) {\n\t\t\t\t\t\t\tmatched = match.shift();\n\t\t\t\t\t\t\ttokens.push({\n\t\t\t\t\t\t\t\tvalue: matched,\n\t\t\t\t\t\t\t\ttype: type,\n\t\t\t\t\t\t\t\tmatches: match\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tsoFar = soFar.slice(matched.length);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!matched) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Return the length of the invalid excess\n\t\t\t\t// if we're just parsing\n\t\t\t\t// Otherwise, throw an error or return tokens\n\t\t\t\tif (parseOnly) {\n\t\t\t\t\treturn soFar.length;\n\t\t\t\t}\n\n\t\t\t\treturn soFar ? find.error(selector) :\n\n\t\t\t\t// Cache the tokens\n\t\t\t\ttokenCache(selector, groups).slice(0);\n\t\t\t}\n\n\t\t\tfunction toSelector(tokens) {\n\t\t\t\tvar i = 0,\n\t\t\t\t len = tokens.length,\n\t\t\t\t selector = \"\";\n\t\t\t\tfor (; i < len; i++) {\n\t\t\t\t\tselector += tokens[i].value;\n\t\t\t\t}\n\t\t\t\treturn selector;\n\t\t\t}\n\n\t\t\tfunction addCombinator(matcher, combinator, base) {\n\t\t\t\tvar dir = combinator.dir,\n\t\t\t\t skip = combinator.next,\n\t\t\t\t key = skip || dir,\n\t\t\t\t checkNonElements = base && key === \"parentNode\",\n\t\t\t\t doneName = done++;\n\n\t\t\t\treturn combinator.first ?\n\n\t\t\t\t// Check against closest ancestor/preceding element\n\t\t\t\tfunction (elem, context, xml) {\n\t\t\t\t\twhile (elem = elem[dir]) {\n\t\t\t\t\t\tif (elem.nodeType === 1 || checkNonElements) {\n\t\t\t\t\t\t\treturn matcher(elem, context, xml);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn false;\n\t\t\t\t} :\n\n\t\t\t\t// Check against all ancestor/preceding elements\n\t\t\t\tfunction (elem, context, xml) {\n\t\t\t\t\tvar oldCache,\n\t\t\t\t\t outerCache,\n\t\t\t\t\t newCache = [dirruns, doneName];\n\n\t\t\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\t\t\tif (xml) {\n\t\t\t\t\t\twhile (elem = elem[dir]) {\n\t\t\t\t\t\t\tif (elem.nodeType === 1 || checkNonElements) {\n\t\t\t\t\t\t\t\tif (matcher(elem, context, xml)) {\n\t\t\t\t\t\t\t\t\treturn true;\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} else {\n\t\t\t\t\t\twhile (elem = elem[dir]) {\n\t\t\t\t\t\t\tif (elem.nodeType === 1 || checkNonElements) {\n\t\t\t\t\t\t\t\touterCache = elem[expando] || (elem[expando] = {});\n\n\t\t\t\t\t\t\t\tif (skip && nodeName(elem, skip)) {\n\t\t\t\t\t\t\t\t\telem = elem[dir] || elem;\n\t\t\t\t\t\t\t\t} else if ((oldCache = outerCache[key]) && oldCache[0] === dirruns && oldCache[1] === doneName) {\n\n\t\t\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\t\t\treturn newCache[2] = oldCache[2];\n\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\t\t\touterCache[key] = newCache;\n\n\t\t\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\t\t\tif (newCache[2] = matcher(elem, context, xml)) {\n\t\t\t\t\t\t\t\t\t\treturn true;\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\treturn false;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tfunction elementMatcher(matchers) {\n\t\t\t\treturn matchers.length > 1 ? function (elem, context, xml) {\n\t\t\t\t\tvar i = matchers.length;\n\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\tif (!matchers[i](elem, context, xml)) {\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn true;\n\t\t\t\t} : matchers[0];\n\t\t\t}\n\n\t\t\tfunction multipleContexts(selector, contexts, results) {\n\t\t\t\tvar i = 0,\n\t\t\t\t len = contexts.length;\n\t\t\t\tfor (; i < len; i++) {\n\t\t\t\t\tfind(selector, contexts[i], results);\n\t\t\t\t}\n\t\t\t\treturn results;\n\t\t\t}\n\n\t\t\tfunction condense(unmatched, map, filter, context, xml) {\n\t\t\t\tvar elem,\n\t\t\t\t newUnmatched = [],\n\t\t\t\t i = 0,\n\t\t\t\t len = unmatched.length,\n\t\t\t\t mapped = map != null;\n\n\t\t\t\tfor (; i < len; i++) {\n\t\t\t\t\tif (elem = unmatched[i]) {\n\t\t\t\t\t\tif (!filter || filter(elem, context, xml)) {\n\t\t\t\t\t\t\tnewUnmatched.push(elem);\n\t\t\t\t\t\t\tif (mapped) {\n\t\t\t\t\t\t\t\tmap.push(i);\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\treturn newUnmatched;\n\t\t\t}\n\n\t\t\tfunction setMatcher(preFilter, selector, matcher, postFilter, postFinder, postSelector) {\n\t\t\t\tif (postFilter && !postFilter[expando]) {\n\t\t\t\t\tpostFilter = setMatcher(postFilter);\n\t\t\t\t}\n\t\t\t\tif (postFinder && !postFinder[expando]) {\n\t\t\t\t\tpostFinder = setMatcher(postFinder, postSelector);\n\t\t\t\t}\n\t\t\t\treturn markFunction(function (seed, results, context, xml) {\n\t\t\t\t\tvar temp,\n\t\t\t\t\t i,\n\t\t\t\t\t elem,\n\t\t\t\t\t matcherOut,\n\t\t\t\t\t preMap = [],\n\t\t\t\t\t postMap = [],\n\t\t\t\t\t preexisting = results.length,\n\n\n\t\t\t\t\t// Get initial elements from seed or context\n\t\t\t\t\telems = seed || multipleContexts(selector || \"*\", context.nodeType ? [context] : context, []),\n\n\n\t\t\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\t\t\tmatcherIn = preFilter && (seed || !selector) ? condense(elems, preMap, preFilter, context, xml) : elems;\n\n\t\t\t\t\tif (matcher) {\n\n\t\t\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter\n\t\t\t\t\t\t// or preexisting results,\n\t\t\t\t\t\tmatcherOut = postFinder || (seed ? preFilter : preexisting || postFilter) ?\n\n\t\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t\t[] :\n\n\t\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\t\tresults;\n\n\t\t\t\t\t\t// Find primary matches\n\t\t\t\t\t\tmatcher(matcherIn, matcherOut, context, xml);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmatcherOut = matcherIn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Apply postFilter\n\t\t\t\t\tif (postFilter) {\n\t\t\t\t\t\ttemp = condense(matcherOut, postMap);\n\t\t\t\t\t\tpostFilter(temp, [], context, xml);\n\n\t\t\t\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\t\t\t\ti = temp.length;\n\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\tif (elem = temp[i]) {\n\t\t\t\t\t\t\t\tmatcherOut[postMap[i]] = !(matcherIn[postMap[i]] = elem);\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\tif (seed) {\n\t\t\t\t\t\tif (postFinder || preFilter) {\n\t\t\t\t\t\t\tif (postFinder) {\n\n\t\t\t\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\t\t\t\ttemp = [];\n\t\t\t\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\t\t\tif (elem = matcherOut[i]) {\n\n\t\t\t\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\t\t\t\ttemp.push(matcherIn[i] = elem);\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\tpostFinder(null, matcherOut = [], temp, xml);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\t\tif ((elem = matcherOut[i]) && (temp = postFinder ? indexOf.call(seed, elem) : preMap[i]) > -1) {\n\n\t\t\t\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\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// Add elements to results, through postFinder if defined\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmatcherOut = condense(matcherOut === results ? matcherOut.splice(preexisting, matcherOut.length) : matcherOut);\n\t\t\t\t\t\tif (postFinder) {\n\t\t\t\t\t\t\tpostFinder(null, results, matcherOut, xml);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tpush.apply(results, matcherOut);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tfunction matcherFromTokens(tokens) {\n\t\t\t\tvar checkContext,\n\t\t\t\t matcher,\n\t\t\t\t j,\n\t\t\t\t len = tokens.length,\n\t\t\t\t leadingRelative = Expr.relative[tokens[0].type],\n\t\t\t\t implicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\t\t\t i = leadingRelative ? 1 : 0,\n\n\n\t\t\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\t\t\tmatchContext = addCombinator(function (elem) {\n\t\t\t\t\treturn elem === checkContext;\n\t\t\t\t}, implicitRelative, true),\n\t\t\t\t matchAnyContext = addCombinator(function (elem) {\n\t\t\t\t\treturn indexOf.call(checkContext, elem) > -1;\n\t\t\t\t}, implicitRelative, true),\n\t\t\t\t matchers = [function (elem, context, xml) {\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\tvar ret = !leadingRelative && (xml || context != outermostContext) || ((checkContext = context).nodeType ? matchContext(elem, context, xml) : matchAnyContext(elem, context, xml));\n\n\t\t\t\t\t// Avoid hanging onto element\n\t\t\t\t\t// (see https://github.com/jquery/sizzle/issues/299)\n\t\t\t\t\tcheckContext = null;\n\t\t\t\t\treturn ret;\n\t\t\t\t}];\n\n\t\t\t\tfor (; i < len; i++) {\n\t\t\t\t\tif (matcher = Expr.relative[tokens[i].type]) {\n\t\t\t\t\t\tmatchers = [addCombinator(elementMatcher(matchers), matcher)];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmatcher = Expr.filter[tokens[i].type].apply(null, tokens[i].matches);\n\n\t\t\t\t\t\t// Return special upon seeing a positional matcher\n\t\t\t\t\t\tif (matcher[expando]) {\n\n\t\t\t\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\t\t\t\tj = ++i;\n\t\t\t\t\t\t\tfor (; j < len; j++) {\n\t\t\t\t\t\t\t\tif (Expr.relative[tokens[j].type]) {\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\t\t\t\t\t\t\treturn setMatcher(i > 1 && elementMatcher(matchers), i > 1 && toSelector(\n\n\t\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\t\ttokens.slice(0, i - 1).concat({ value: tokens[i - 2].type === \" \" ? \"*\" : \"\" })).replace(rtrimCSS, \"$1\"), matcher, i < j && matcherFromTokens(tokens.slice(i, j)), j < len && matcherFromTokens(tokens = tokens.slice(j)), j < len && toSelector(tokens));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatchers.push(matcher);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn elementMatcher(matchers);\n\t\t\t}\n\n\t\t\tfunction matcherFromGroupMatchers(elementMatchers, setMatchers) {\n\t\t\t\tvar bySet = setMatchers.length > 0,\n\t\t\t\t byElement = elementMatchers.length > 0,\n\t\t\t\t superMatcher = function superMatcher(seed, context, xml, results, outermost) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t j,\n\t\t\t\t\t matcher,\n\t\t\t\t\t matchedCount = 0,\n\t\t\t\t\t i = \"0\",\n\t\t\t\t\t unmatched = seed && [],\n\t\t\t\t\t setMatched = [],\n\t\t\t\t\t contextBackup = outermostContext,\n\n\n\t\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\t\telems = seed || byElement && Expr.find.TAG(\"*\", outermost),\n\n\n\t\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\t\tdirrunsUnique = dirruns += contextBackup == null ? 1 : Math.random() || 0.1,\n\t\t\t\t\t len = elems.length;\n\n\t\t\t\t\tif (outermost) {\n\n\t\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t\t\t// Support: iOS <=7 - 9 only\n\t\t\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: ) matching\n\t\t\t\t\t// elements by id. (see trac-14142)\n\t\t\t\t\tfor (; i !== len && (elem = elems[i]) != null; i++) {\n\t\t\t\t\t\tif (byElement && elem) {\n\t\t\t\t\t\t\tj = 0;\n\n\t\t\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\t\t\tif (!context && elem.ownerDocument != document) {\n\t\t\t\t\t\t\t\tsetDocument(elem);\n\t\t\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\twhile (matcher = elementMatchers[j++]) {\n\t\t\t\t\t\t\t\tif (matcher(elem, context || document, xml)) {\n\t\t\t\t\t\t\t\t\tpush.call(results, elem);\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\t\t\t\t\t\t\tif (outermost) {\n\t\t\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\t\t\tif (bySet) {\n\n\t\t\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\t\t\tif (elem = !matcher && elem) {\n\t\t\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\t\t\tif (seed) {\n\t\t\t\t\t\t\t\tunmatched.push(elem);\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// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t\t\t// makes the latter nonnegative.\n\t\t\t\t\tmatchedCount += i;\n\n\t\t\t\t\t// Apply set filters to unmatched elements\n\t\t\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t\t\t// no element matchers and no seed.\n\t\t\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t\t\t// numerically zero.\n\t\t\t\t\tif (bySet && i !== matchedCount) {\n\t\t\t\t\t\tj = 0;\n\t\t\t\t\t\twhile (matcher = setMatchers[j++]) {\n\t\t\t\t\t\t\tmatcher(unmatched, setMatched, context, xml);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (seed) {\n\n\t\t\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\t\t\tif (matchedCount > 0) {\n\t\t\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\t\t\tif (!(unmatched[i] || setMatched[i])) {\n\t\t\t\t\t\t\t\t\t\tsetMatched[i] = pop.call(results);\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\n\t\t\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\t\t\tsetMatched = condense(setMatched);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Add matches to results\n\t\t\t\t\t\tpush.apply(results, setMatched);\n\n\t\t\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\t\t\tif (outermost && !seed && setMatched.length > 0 && matchedCount + setMatchers.length > 1) {\n\n\t\t\t\t\t\t\tjQuery.uniqueSort(results);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override manipulation of globals by nested matchers\n\t\t\t\t\tif (outermost) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t\toutermostContext = contextBackup;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn unmatched;\n\t\t\t\t};\n\n\t\t\t\treturn bySet ? markFunction(superMatcher) : superMatcher;\n\t\t\t}\n\n\t\t\tfunction compile(selector, match /* Internal Use Only */) {\n\t\t\t\tvar i,\n\t\t\t\t setMatchers = [],\n\t\t\t\t elementMatchers = [],\n\t\t\t\t cached = compilerCache[selector + \" \"];\n\n\t\t\t\tif (!cached) {\n\n\t\t\t\t\t// Generate a function of recursive functions that can be used to check each element\n\t\t\t\t\tif (!match) {\n\t\t\t\t\t\tmatch = tokenize(selector);\n\t\t\t\t\t}\n\t\t\t\t\ti = match.length;\n\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\tcached = matcherFromTokens(match[i]);\n\t\t\t\t\t\tif (cached[expando]) {\n\t\t\t\t\t\t\tsetMatchers.push(cached);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telementMatchers.push(cached);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Cache the compiled function\n\t\t\t\t\tcached = compilerCache(selector, matcherFromGroupMatchers(elementMatchers, setMatchers));\n\n\t\t\t\t\t// Save selector and tokenization\n\t\t\t\t\tcached.selector = selector;\n\t\t\t\t}\n\t\t\t\treturn cached;\n\t\t\t}\n\n\t\t\t/**\n\t * A low-level selection function that works with jQuery's compiled\n\t * selector functions\n\t * @param {String|Function} selector A selector or a pre-compiled\n\t * selector function built with jQuery selector compile\n\t * @param {Element} context\n\t * @param {Array} [results]\n\t * @param {Array} [seed] A set of elements to match against\n\t */\n\t\t\tfunction select(selector, context, results, seed) {\n\t\t\t\tvar i,\n\t\t\t\t tokens,\n\t\t\t\t token,\n\t\t\t\t type,\n\t\t\t\t find,\n\t\t\t\t compiled = typeof selector === \"function\" && selector,\n\t\t\t\t match = !seed && tokenize(selector = compiled.selector || selector);\n\n\t\t\t\tresults = results || [];\n\n\t\t\t\t// Try to minimize operations if there is only one selector in the list and no seed\n\t\t\t\t// (the latter of which guarantees us context)\n\t\t\t\tif (match.length === 1) {\n\n\t\t\t\t\t// Reduce context if the leading compound selector is an ID\n\t\t\t\t\ttokens = match[0] = match[0].slice(0);\n\t\t\t\t\tif (tokens.length > 2 && (token = tokens[0]).type === \"ID\" && context.nodeType === 9 && documentIsHTML && Expr.relative[tokens[1].type]) {\n\n\t\t\t\t\t\tcontext = (Expr.find.ID(token.matches[0].replace(runescape, funescape), context) || [])[0];\n\t\t\t\t\t\tif (!context) {\n\t\t\t\t\t\t\treturn results;\n\n\t\t\t\t\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t\t\t\t} else if (compiled) {\n\t\t\t\t\t\t\tcontext = context.parentNode;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tselector = selector.slice(tokens.shift().value.length);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fetch a seed set for right-to-left matching\n\t\t\t\t\ti = matchExpr.needsContext.test(selector) ? 0 : tokens.length;\n\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\ttoken = tokens[i];\n\n\t\t\t\t\t\t// Abort if we hit a combinator\n\t\t\t\t\t\tif (Expr.relative[type = token.type]) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (find = Expr.find[type]) {\n\n\t\t\t\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\t\t\t\tif (seed = find(token.matches[0].replace(runescape, funescape), rsibling.test(tokens[0].type) && testContext(context.parentNode) || context)) {\n\n\t\t\t\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\t\t\t\ttokens.splice(i, 1);\n\t\t\t\t\t\t\t\tselector = seed.length && toSelector(tokens);\n\t\t\t\t\t\t\t\tif (!selector) {\n\t\t\t\t\t\t\t\t\tpush.apply(results, seed);\n\t\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t\t}\n\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// Compile and execute a filtering function if one is not provided\n\t\t\t\t// Provide `match` to avoid retokenization if we modified the selector above\n\t\t\t\t(compiled || compile(selector, match))(seed, context, !documentIsHTML, results, !context || rsibling.test(selector) && testContext(context.parentNode) || context);\n\t\t\t\treturn results;\n\t\t\t}\n\n\t\t\t// One-time assignments\n\n\t\t\t// Support: Android <=4.0 - 4.1+\n\t\t\t// Sort stability\n\t\t\tsupport.sortStable = expando.split(\"\").sort(sortOrder).join(\"\") === expando;\n\n\t\t\t// Initialize against the default document\n\t\t\tsetDocument();\n\n\t\t\t// Support: Android <=4.0 - 4.1+\n\t\t\t// Detached nodes confoundingly follow *each other*\n\t\t\tsupport.sortDetached = assert(function (el) {\n\n\t\t\t\t// Should return 1, but returns 4 (following)\n\t\t\t\treturn el.compareDocumentPosition(document.createElement(\"fieldset\")) & 1;\n\t\t\t});\n\n\t\t\tjQuery.find = find;\n\n\t\t\t// Deprecated\n\t\t\tjQuery.expr[\":\"] = jQuery.expr.pseudos;\n\t\t\tjQuery.unique = jQuery.uniqueSort;\n\n\t\t\t// These have always been private, but they used to be documented as part of\n\t\t\t// Sizzle so let's maintain them for now for backwards compatibility purposes.\n\t\t\tfind.compile = compile;\n\t\t\tfind.select = select;\n\t\t\tfind.setDocument = setDocument;\n\t\t\tfind.tokenize = tokenize;\n\n\t\t\tfind.escape = jQuery.escapeSelector;\n\t\t\tfind.getText = jQuery.text;\n\t\t\tfind.isXML = jQuery.isXMLDoc;\n\t\t\tfind.selectors = jQuery.expr;\n\t\t\tfind.support = jQuery.support;\n\t\t\tfind.uniqueSort = jQuery.uniqueSort;\n\n\t\t\t/* eslint-enable */\n\t\t})();\n\n\t\tvar dir = function dir(elem, _dir, until) {\n\t\t\tvar matched = [],\n\t\t\t truncate = until !== undefined;\n\n\t\t\twhile ((elem = elem[_dir]) && elem.nodeType !== 9) {\n\t\t\t\tif (elem.nodeType === 1) {\n\t\t\t\t\tif (truncate && jQuery(elem).is(until)) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tmatched.push(elem);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn matched;\n\t\t};\n\n\t\tvar _siblings = function _siblings(n, elem) {\n\t\t\tvar matched = [];\n\n\t\t\tfor (; n; n = n.nextSibling) {\n\t\t\t\tif (n.nodeType === 1 && n !== elem) {\n\t\t\t\t\tmatched.push(n);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn matched;\n\t\t};\n\n\t\tvar rneedsContext = jQuery.expr.match.needsContext;\n\n\t\tvar rsingleTag = /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;\n\n\t\t// Implement the identical functionality for filter and not\n\t\tfunction winnow(elements, qualifier, not) {\n\t\t\tif (isFunction(qualifier)) {\n\t\t\t\treturn jQuery.grep(elements, function (elem, i) {\n\t\t\t\t\treturn !!qualifier.call(elem, i, elem) !== not;\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Single element\n\t\t\tif (qualifier.nodeType) {\n\t\t\t\treturn jQuery.grep(elements, function (elem) {\n\t\t\t\t\treturn elem === qualifier !== not;\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Arraylike of elements (jQuery, arguments, Array)\n\t\t\tif (typeof qualifier !== \"string\") {\n\t\t\t\treturn jQuery.grep(elements, function (elem) {\n\t\t\t\t\treturn indexOf.call(qualifier, elem) > -1 !== not;\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Filtered directly for both simple and complex selectors\n\t\t\treturn jQuery.filter(qualifier, elements, not);\n\t\t}\n\n\t\tjQuery.filter = function (expr, elems, not) {\n\t\t\tvar elem = elems[0];\n\n\t\t\tif (not) {\n\t\t\t\texpr = \":not(\" + expr + \")\";\n\t\t\t}\n\n\t\t\tif (elems.length === 1 && elem.nodeType === 1) {\n\t\t\t\treturn jQuery.find.matchesSelector(elem, expr) ? [elem] : [];\n\t\t\t}\n\n\t\t\treturn jQuery.find.matches(expr, jQuery.grep(elems, function (elem) {\n\t\t\t\treturn elem.nodeType === 1;\n\t\t\t}));\n\t\t};\n\n\t\tjQuery.fn.extend({\n\t\t\tfind: function find(selector) {\n\t\t\t\tvar i,\n\t\t\t\t ret,\n\t\t\t\t len = this.length,\n\t\t\t\t self = this;\n\n\t\t\t\tif (typeof selector !== \"string\") {\n\t\t\t\t\treturn this.pushStack(jQuery(selector).filter(function () {\n\t\t\t\t\t\tfor (i = 0; i < len; i++) {\n\t\t\t\t\t\t\tif (jQuery.contains(self[i], this)) {\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\n\t\t\t\tret = this.pushStack([]);\n\n\t\t\t\tfor (i = 0; i < len; i++) {\n\t\t\t\t\tjQuery.find(selector, self[i], ret);\n\t\t\t\t}\n\n\t\t\t\treturn len > 1 ? jQuery.uniqueSort(ret) : ret;\n\t\t\t},\n\t\t\tfilter: function filter(selector) {\n\t\t\t\treturn this.pushStack(winnow(this, selector || [], false));\n\t\t\t},\n\t\t\tnot: function not(selector) {\n\t\t\t\treturn this.pushStack(winnow(this, selector || [], true));\n\t\t\t},\n\t\t\tis: function is(selector) {\n\t\t\t\treturn !!winnow(this,\n\n\t\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\t\ttypeof selector === \"string\" && rneedsContext.test(selector) ? jQuery(selector) : selector || [], false).length;\n\t\t\t}\n\t\t});\n\n\t\t// Initialize a jQuery object\n\n\n\t\t// A central reference to the root jQuery(document)\n\t\tvar rootjQuery,\n\n\n\t\t// A simple way to check for HTML strings\n\t\t// Prioritize #id over to avoid XSS via location.hash (trac-9521)\n\t\t// Strict HTML recognition (trac-11290: must start with <)\n\t\t// Shortcut simple #id case for speed\n\t\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\t\t init = jQuery.fn.init = function (selector, context, root) {\n\t\t\tvar match, elem;\n\n\t\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\t\tif (!selector) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\t// Method init() accepts an alternate rootjQuery\n\t\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\t\troot = root || rootjQuery;\n\n\t\t\t// Handle HTML strings\n\t\t\tif (typeof selector === \"string\") {\n\t\t\t\tif (selector[0] === \"<\" && selector[selector.length - 1] === \">\" && selector.length >= 3) {\n\n\t\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\t\tmatch = [null, selector, null];\n\t\t\t\t} else {\n\t\t\t\t\tmatch = rquickExpr.exec(selector);\n\t\t\t\t}\n\n\t\t\t\t// Match html or make sure no context is specified for #id\n\t\t\t\tif (match && (match[1] || !context)) {\n\n\t\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\t\tif (match[1]) {\n\t\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\t\tjQuery.merge(this, jQuery.parseHTML(match[1], context && context.nodeType ? context.ownerDocument || context : document, true));\n\n\t\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\t\tif (rsingleTag.test(match[1]) && jQuery.isPlainObject(context)) {\n\t\t\t\t\t\t\tfor (match in context) {\n\n\t\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\t\tif (isFunction(this[match])) {\n\t\t\t\t\t\t\t\t\tthis[match](context[match]);\n\n\t\t\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tthis.attr(match, context[match]);\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\treturn this;\n\n\t\t\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem = document.getElementById(match[2]);\n\n\t\t\t\t\t\tif (elem) {\n\n\t\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t}\n\n\t\t\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t\t} else if (!context || context.jquery) {\n\t\t\t\t\treturn (context || root).find(selector);\n\n\t\t\t\t\t// HANDLE: $(expr, context)\n\t\t\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t\t} else {\n\t\t\t\t\treturn this.constructor(context).find(selector);\n\t\t\t\t}\n\n\t\t\t\t// HANDLE: $(DOMElement)\n\t\t\t} else if (selector.nodeType) {\n\t\t\t\tthis[0] = selector;\n\t\t\t\tthis.length = 1;\n\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(function)\n\t\t\t\t// Shortcut for document ready\n\t\t\t} else if (isFunction(selector)) {\n\t\t\t\treturn root.ready !== undefined ? root.ready(selector) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector(jQuery);\n\t\t\t}\n\n\t\t\treturn jQuery.makeArray(selector, this);\n\t\t};\n\n\t\t// Give the init function the jQuery prototype for later instantiation\n\t\tinit.prototype = jQuery.fn;\n\n\t\t// Initialize central reference\n\t\trootjQuery = jQuery(document);\n\n\t\tvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\n\t\t// Methods guaranteed to produce a unique set when starting from a unique set\n\t\tguaranteedUnique = {\n\t\t\tchildren: true,\n\t\t\tcontents: true,\n\t\t\tnext: true,\n\t\t\tprev: true\n\t\t};\n\n\t\tjQuery.fn.extend({\n\t\t\thas: function has(target) {\n\t\t\t\tvar targets = jQuery(target, this),\n\t\t\t\t l = targets.length;\n\n\t\t\t\treturn this.filter(function () {\n\t\t\t\t\tvar i = 0;\n\t\t\t\t\tfor (; i < l; i++) {\n\t\t\t\t\t\tif (jQuery.contains(this, targets[i])) {\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},\n\n\t\t\tclosest: function closest(selectors, context) {\n\t\t\t\tvar cur,\n\t\t\t\t i = 0,\n\t\t\t\t l = this.length,\n\t\t\t\t matched = [],\n\t\t\t\t targets = typeof selectors !== \"string\" && jQuery(selectors);\n\n\t\t\t\t// Positional selectors never match, since there's no _selection_ context\n\t\t\t\tif (!rneedsContext.test(selectors)) {\n\t\t\t\t\tfor (; i < l; i++) {\n\t\t\t\t\t\tfor (cur = this[i]; cur && cur !== context; cur = cur.parentNode) {\n\n\t\t\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\t\t\tif (cur.nodeType < 11 && (targets ? targets.index(cur) > -1 :\n\n\t\t\t\t\t\t\t// Don't pass non-elements to jQuery#find\n\t\t\t\t\t\t\tcur.nodeType === 1 && jQuery.find.matchesSelector(cur, selectors))) {\n\n\t\t\t\t\t\t\t\tmatched.push(cur);\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\treturn this.pushStack(matched.length > 1 ? jQuery.uniqueSort(matched) : matched);\n\t\t\t},\n\n\t\t\t// Determine the position of an element within the set\n\t\t\tindex: function index(elem) {\n\n\t\t\t\t// No argument, return index in parent\n\t\t\t\tif (!elem) {\n\t\t\t\t\treturn this[0] && this[0].parentNode ? this.first().prevAll().length : -1;\n\t\t\t\t}\n\n\t\t\t\t// Index in selector\n\t\t\t\tif (typeof elem === \"string\") {\n\t\t\t\t\treturn indexOf.call(jQuery(elem), this[0]);\n\t\t\t\t}\n\n\t\t\t\t// Locate the position of the desired element\n\t\t\t\treturn indexOf.call(this,\n\n\t\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\t\telem.jquery ? elem[0] : elem);\n\t\t\t},\n\n\t\t\tadd: function add(selector, context) {\n\t\t\t\treturn this.pushStack(jQuery.uniqueSort(jQuery.merge(this.get(), jQuery(selector, context))));\n\t\t\t},\n\n\t\t\taddBack: function addBack(selector) {\n\t\t\t\treturn this.add(selector == null ? this.prevObject : this.prevObject.filter(selector));\n\t\t\t}\n\t\t});\n\n\t\tfunction sibling(cur, dir) {\n\t\t\twhile ((cur = cur[dir]) && cur.nodeType !== 1) {}\n\t\t\treturn cur;\n\t\t}\n\n\t\tjQuery.each({\n\t\t\tparent: function parent(elem) {\n\t\t\t\tvar parent = elem.parentNode;\n\t\t\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t\t\t},\n\t\t\tparents: function parents(elem) {\n\t\t\t\treturn dir(elem, \"parentNode\");\n\t\t\t},\n\t\t\tparentsUntil: function parentsUntil(elem, _i, until) {\n\t\t\t\treturn dir(elem, \"parentNode\", until);\n\t\t\t},\n\t\t\tnext: function next(elem) {\n\t\t\t\treturn sibling(elem, \"nextSibling\");\n\t\t\t},\n\t\t\tprev: function prev(elem) {\n\t\t\t\treturn sibling(elem, \"previousSibling\");\n\t\t\t},\n\t\t\tnextAll: function nextAll(elem) {\n\t\t\t\treturn dir(elem, \"nextSibling\");\n\t\t\t},\n\t\t\tprevAll: function prevAll(elem) {\n\t\t\t\treturn dir(elem, \"previousSibling\");\n\t\t\t},\n\t\t\tnextUntil: function nextUntil(elem, _i, until) {\n\t\t\t\treturn dir(elem, \"nextSibling\", until);\n\t\t\t},\n\t\t\tprevUntil: function prevUntil(elem, _i, until) {\n\t\t\t\treturn dir(elem, \"previousSibling\", until);\n\t\t\t},\n\t\t\tsiblings: function siblings(elem) {\n\t\t\t\treturn _siblings((elem.parentNode || {}).firstChild, elem);\n\t\t\t},\n\t\t\tchildren: function children(elem) {\n\t\t\t\treturn _siblings(elem.firstChild);\n\t\t\t},\n\t\t\tcontents: function contents(elem) {\n\t\t\t\tif (elem.contentDocument != null &&\n\n\t\t\t\t// Support: IE 11+\n\t\t\t\t// elements with no `data` attribute has an object\n\t\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\t\tgetProto(elem.contentDocument)) {\n\n\t\t\t\t\treturn elem.contentDocument;\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t\t\t// Treat the template element as a regular one in browsers that\n\t\t\t\t// don't support it.\n\t\t\t\tif (nodeName(elem, \"template\")) {\n\t\t\t\t\telem = elem.content || elem;\n\t\t\t\t}\n\n\t\t\t\treturn jQuery.merge([], elem.childNodes);\n\t\t\t}\n\t\t}, function (name, fn) {\n\t\t\tjQuery.fn[name] = function (until, selector) {\n\t\t\t\tvar matched = jQuery.map(this, fn, until);\n\n\t\t\t\tif (name.slice(-5) !== \"Until\") {\n\t\t\t\t\tselector = until;\n\t\t\t\t}\n\n\t\t\t\tif (selector && typeof selector === \"string\") {\n\t\t\t\t\tmatched = jQuery.filter(selector, matched);\n\t\t\t\t}\n\n\t\t\t\tif (this.length > 1) {\n\n\t\t\t\t\t// Remove duplicates\n\t\t\t\t\tif (!guaranteedUnique[name]) {\n\t\t\t\t\t\tjQuery.uniqueSort(matched);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\t\t\tif (rparentsprev.test(name)) {\n\t\t\t\t\t\tmatched.reverse();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn this.pushStack(matched);\n\t\t\t};\n\t\t});\n\t\tvar rnothtmlwhite = /[^\\x20\\t\\r\\n\\f]+/g;\n\n\t\t// Convert String-formatted options into Object-formatted ones\n\t\tfunction createOptions(options) {\n\t\t\tvar object = {};\n\t\t\tjQuery.each(options.match(rnothtmlwhite) || [], function (_, flag) {\n\t\t\t\tobject[flag] = true;\n\t\t\t});\n\t\t\treturn object;\n\t\t}\n\n\t\t/*\n\t * Create a callback list using the following parameters:\n\t *\n\t *\toptions: an optional list of space-separated options that will change how\n\t *\t\t\tthe callback list behaves or a more traditional option object\n\t *\n\t * By default a callback list will act like an event callback list and can be\n\t * \"fired\" multiple times.\n\t *\n\t * Possible options:\n\t *\n\t *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n\t *\n\t *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n\t *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n\t *\t\t\t\t\tvalues (like a Deferred)\n\t *\n\t *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n\t *\n\t *\tstopOnFalse:\tinterrupt callings when a callback returns false\n\t *\n\t */\n\t\tjQuery.Callbacks = function (options) {\n\n\t\t\t// Convert options from String-formatted to Object-formatted if needed\n\t\t\t// (we check in cache first)\n\t\t\toptions = typeof options === \"string\" ? createOptions(options) : jQuery.extend({}, options);\n\n\t\t\tvar // Flag to know if list is currently firing\n\t\t\tfiring,\n\n\n\t\t\t// Last fire value for non-forgettable lists\n\t\t\tmemory,\n\n\n\t\t\t// Flag to know if list was already fired\n\t\t\t_fired,\n\n\n\t\t\t// Flag to prevent firing\n\t\t\t_locked,\n\n\n\t\t\t// Actual callback list\n\t\t\tlist = [],\n\n\n\t\t\t// Queue of execution data for repeatable lists\n\t\t\tqueue = [],\n\n\n\t\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\t\tfiringIndex = -1,\n\n\n\t\t\t// Fire callbacks\n\t\t\tfire = function fire() {\n\n\t\t\t\t// Enforce single-firing\n\t\t\t\t_locked = _locked || options.once;\n\n\t\t\t\t// Execute callbacks for all pending executions,\n\t\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\t\t_fired = firing = true;\n\t\t\t\tfor (; queue.length; firingIndex = -1) {\n\t\t\t\t\tmemory = queue.shift();\n\t\t\t\t\twhile (++firingIndex < list.length) {\n\n\t\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\t\tif (list[firingIndex].apply(memory[0], memory[1]) === false && options.stopOnFalse) {\n\n\t\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\t\tfiringIndex = list.length;\n\t\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Forget the data if we're done with it\n\t\t\t\tif (!options.memory) {\n\t\t\t\t\tmemory = false;\n\t\t\t\t}\n\n\t\t\t\tfiring = false;\n\n\t\t\t\t// Clean up if we're done firing for good\n\t\t\t\tif (_locked) {\n\n\t\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\t\tif (memory) {\n\t\t\t\t\t\tlist = [];\n\n\t\t\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t\t} else {\n\t\t\t\t\t\tlist = \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\n\t\t\t// Actual Callbacks object\n\t\t\tself = {\n\n\t\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\t\tadd: function add() {\n\t\t\t\t\tif (list) {\n\n\t\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\t\tif (memory && !firing) {\n\t\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\t\tqueue.push(memory);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t(function add(args) {\n\t\t\t\t\t\t\tjQuery.each(args, function (_, arg) {\n\t\t\t\t\t\t\t\tif (isFunction(arg)) {\n\t\t\t\t\t\t\t\t\tif (!options.unique || !self.has(arg)) {\n\t\t\t\t\t\t\t\t\t\tlist.push(arg);\n\t\t\t\t\t\t\t\t\t}\n\t\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\t// Inspect recursively\n\t\t\t\t\t\t\t\t\tadd(arg);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t})(arguments);\n\n\t\t\t\t\t\tif (memory && !firing) {\n\t\t\t\t\t\t\tfire();\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// Remove a callback from the list\n\t\t\t\tremove: function remove() {\n\t\t\t\t\tjQuery.each(arguments, function (_, arg) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ((index = jQuery.inArray(arg, list, index)) > -1) {\n\t\t\t\t\t\t\tlist.splice(index, 1);\n\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif (index <= firingIndex) {\n\t\t\t\t\t\t\t\tfiringIndex--;\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// Check if a given callback is in the list.\n\t\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\t\thas: function has(fn) {\n\t\t\t\t\treturn fn ? jQuery.inArray(fn, list) > -1 : list.length > 0;\n\t\t\t\t},\n\n\t\t\t\t// Remove all callbacks from the list\n\t\t\t\tempty: function empty() {\n\t\t\t\t\tif (list) {\n\t\t\t\t\t\tlist = [];\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Disable .fire and .add\n\t\t\t\t// Abort any current/pending executions\n\t\t\t\t// Clear all callbacks and values\n\t\t\t\tdisable: function disable() {\n\t\t\t\t\t_locked = queue = [];\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tdisabled: function disabled() {\n\t\t\t\t\treturn !list;\n\t\t\t\t},\n\n\t\t\t\t// Disable .fire\n\t\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t\t// Abort any pending executions\n\t\t\t\tlock: function lock() {\n\t\t\t\t\t_locked = queue = [];\n\t\t\t\t\tif (!memory && !firing) {\n\t\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tlocked: function locked() {\n\t\t\t\t\treturn !!_locked;\n\t\t\t\t},\n\n\t\t\t\t// Call all callbacks with the given context and arguments\n\t\t\t\tfireWith: function fireWith(context, args) {\n\t\t\t\t\tif (!_locked) {\n\t\t\t\t\t\targs = args || [];\n\t\t\t\t\t\targs = [context, args.slice ? args.slice() : args];\n\t\t\t\t\t\tqueue.push(args);\n\t\t\t\t\t\tif (!firing) {\n\t\t\t\t\t\t\tfire();\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// Call all the callbacks with the given arguments\n\t\t\t\tfire: function fire() {\n\t\t\t\t\tself.fireWith(this, arguments);\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// To know if the callbacks have already been called at least once\n\t\t\t\tfired: function fired() {\n\t\t\t\t\treturn !!_fired;\n\t\t\t\t}\n\t\t\t};\n\n\t\t\treturn self;\n\t\t};\n\n\t\tfunction Identity(v) {\n\t\t\treturn v;\n\t\t}\n\t\tfunction Thrower(ex) {\n\t\t\tthrow ex;\n\t\t}\n\n\t\tfunction adoptValue(value, resolve, reject, noValue) {\n\t\t\tvar method;\n\n\t\t\ttry {\n\n\t\t\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\t\t\tif (value && isFunction(method = value.promise)) {\n\t\t\t\t\tmethod.call(value).done(resolve).fail(reject);\n\n\t\t\t\t\t// Other thenables\n\t\t\t\t} else if (value && isFunction(method = value.then)) {\n\t\t\t\t\tmethod.call(value, resolve, reject);\n\n\t\t\t\t\t// Other non-thenables\n\t\t\t\t} else {\n\n\t\t\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\t\t\tresolve.apply(undefined, [value].slice(noValue));\n\t\t\t\t}\n\n\t\t\t\t// For Promises/A+, convert exceptions into rejections\n\t\t\t\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t\t\t\t// Deferred#then to conditionally suppress rejection.\n\t\t\t} catch (value) {\n\n\t\t\t\t// Support: Android 4.0 only\n\t\t\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\t\t\treject.apply(undefined, [value]);\n\t\t\t}\n\t\t}\n\n\t\tjQuery.extend({\n\n\t\t\tDeferred: function Deferred(func) {\n\t\t\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\"), jQuery.Callbacks(\"memory\"), 2], [\"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), jQuery.Callbacks(\"once memory\"), 0, \"resolved\"], [\"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), jQuery.Callbacks(\"once memory\"), 1, \"rejected\"]],\n\t\t\t\t _state = \"pending\",\n\t\t\t\t _promise = {\n\t\t\t\t\tstate: function state() {\n\t\t\t\t\t\treturn _state;\n\t\t\t\t\t},\n\t\t\t\t\talways: function always() {\n\t\t\t\t\t\tdeferred.done(arguments).fail(arguments);\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t},\n\t\t\t\t\t\"catch\": function _catch(fn) {\n\t\t\t\t\t\treturn _promise.then(null, fn);\n\t\t\t\t\t},\n\n\t\t\t\t\t// Keep pipe for back-compat\n\t\t\t\t\tpipe: function pipe() /* fnDone, fnFail, fnProgress */{\n\t\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\t\treturn jQuery.Deferred(function (newDefer) {\n\t\t\t\t\t\t\tjQuery.each(tuples, function (_i, tuple) {\n\n\t\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\t\tvar fn = isFunction(fns[tuple[4]]) && fns[tuple[4]];\n\n\t\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\t\tdeferred[tuple[1]](function () {\n\t\t\t\t\t\t\t\t\tvar returned = fn && fn.apply(this, arguments);\n\t\t\t\t\t\t\t\t\tif (returned && isFunction(returned.promise)) {\n\t\t\t\t\t\t\t\t\t\treturned.promise().progress(newDefer.notify).done(newDefer.resolve).fail(newDefer.reject);\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tnewDefer[tuple[0] + \"With\"](this, fn ? [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\tfns = null;\n\t\t\t\t\t\t}).promise();\n\t\t\t\t\t},\n\t\t\t\t\tthen: function then(onFulfilled, onRejected, onProgress) {\n\t\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\t\tfunction resolve(depth, deferred, handler, special) {\n\t\t\t\t\t\t\treturn function () {\n\t\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\t args = arguments,\n\t\t\t\t\t\t\t\t mightThrow = function mightThrow() {\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// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\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(typeof returned === \"undefined\" ? \"undefined\" : _typeof(returned)) === \"object\" || typeof returned === \"function\") && returned.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(returned, resolve(maxDepth, deferred, Identity, special), resolve(maxDepth, deferred, Thrower, special));\n\n\t\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(returned, resolve(maxDepth, deferred, Identity, special), resolve(maxDepth, deferred, Thrower, special), resolve(maxDepth, deferred, Identity, deferred.notifyWith));\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\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\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 ? mightThrow : function () {\n\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t} catch (e) {\n\n\t\t\t\t\t\t\t\t\t\tif (jQuery.Deferred.exceptionHook) {\n\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook(e, process.error);\n\t\t\t\t\t\t\t\t\t\t}\n\n\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// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\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// Only substitute handlers pass on context\n\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\tif (handler !== Thrower) {\n\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\targs = [e];\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\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}\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// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\t\tif (depth) {\n\t\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t\t} else {\n\n\t\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\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\t\tif (jQuery.Deferred.getErrorHook) {\n\t\t\t\t\t\t\t\t\t\tprocess.error = jQuery.Deferred.getErrorHook();\n\n\t\t\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\t\t// returning the stack, not an error instance, jQuery just passes\n\t\t\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\t\t// just better cooperates with source maps.\n\t\t\t\t\t\t\t\t\t} else if (jQuery.Deferred.getStackHook) {\n\t\t\t\t\t\t\t\t\t\tprocess.error = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\twindow.setTimeout(process);\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\treturn jQuery.Deferred(function (newDefer) {\n\n\t\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\t\ttuples[0][3].add(resolve(0, newDefer, isFunction(onProgress) ? onProgress : Identity, newDefer.notifyWith));\n\n\t\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\t\ttuples[1][3].add(resolve(0, newDefer, isFunction(onFulfilled) ? onFulfilled : Identity));\n\n\t\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\t\ttuples[2][3].add(resolve(0, newDefer, isFunction(onRejected) ? onRejected : Thrower));\n\t\t\t\t\t\t}).promise();\n\t\t\t\t\t},\n\n\t\t\t\t\t// Get a promise for this deferred\n\t\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\t\tpromise: function promise(obj) {\n\t\t\t\t\t\treturn obj != null ? jQuery.extend(obj, _promise) : _promise;\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t deferred = {};\n\n\t\t\t\t// Add list-specific methods\n\t\t\t\tjQuery.each(tuples, function (i, tuple) {\n\t\t\t\t\tvar list = tuple[2],\n\t\t\t\t\t stateString = tuple[5];\n\n\t\t\t\t\t// promise.progress = list.add\n\t\t\t\t\t// promise.done = list.add\n\t\t\t\t\t// promise.fail = list.add\n\t\t\t\t\t_promise[tuple[1]] = list.add;\n\n\t\t\t\t\t// Handle state\n\t\t\t\t\tif (stateString) {\n\t\t\t\t\t\tlist.add(function () {\n\n\t\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\t\t_state = stateString;\n\t\t\t\t\t\t},\n\n\t\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\t\ttuples[3 - i][2].disable,\n\n\t\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\t\ttuples[3 - i][3].disable,\n\n\t\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\t\ttuples[0][2].lock,\n\n\t\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\t\ttuples[0][3].lock);\n\t\t\t\t\t}\n\n\t\t\t\t\t// progress_handlers.fire\n\t\t\t\t\t// fulfilled_handlers.fire\n\t\t\t\t\t// rejected_handlers.fire\n\t\t\t\t\tlist.add(tuple[3].fire);\n\n\t\t\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\t\t\tdeferred[tuple[0]] = function () {\n\t\t\t\t\t\tdeferred[tuple[0] + \"With\"](this === deferred ? undefined : this, arguments);\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t};\n\n\t\t\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\t\t\tdeferred[tuple[0] + \"With\"] = list.fireWith;\n\t\t\t\t});\n\n\t\t\t\t// Make the deferred a promise\n\t\t\t\t_promise.promise(deferred);\n\n\t\t\t\t// Call given func if any\n\t\t\t\tif (func) {\n\t\t\t\t\tfunc.call(deferred, deferred);\n\t\t\t\t}\n\n\t\t\t\t// All done!\n\t\t\t\treturn deferred;\n\t\t\t},\n\n\t\t\t// Deferred helper\n\t\t\twhen: function when(singleValue) {\n\t\t\t\tvar\n\n\t\t\t\t// count of uncompleted subordinates\n\t\t\t\tremaining = arguments.length,\n\n\n\t\t\t\t// count of unprocessed arguments\n\t\t\t\ti = remaining,\n\n\n\t\t\t\t// subordinate fulfillment data\n\t\t\t\tresolveContexts = Array(i),\n\t\t\t\t resolveValues = _slice.call(arguments),\n\n\n\t\t\t\t// the primary Deferred\n\t\t\t\tprimary = jQuery.Deferred(),\n\n\n\t\t\t\t// subordinate callback factory\n\t\t\t\tupdateFunc = function updateFunc(i) {\n\t\t\t\t\treturn function (value) {\n\t\t\t\t\t\tresolveContexts[i] = this;\n\t\t\t\t\t\tresolveValues[i] = arguments.length > 1 ? _slice.call(arguments) : value;\n\t\t\t\t\t\tif (! --remaining) {\n\t\t\t\t\t\t\tprimary.resolveWith(resolveContexts, resolveValues);\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\t\t\tif (remaining <= 1) {\n\t\t\t\t\tadoptValue(singleValue, primary.done(updateFunc(i)).resolve, primary.reject, !remaining);\n\n\t\t\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\t\t\tif (primary.state() === \"pending\" || isFunction(resolveValues[i] && resolveValues[i].then)) {\n\n\t\t\t\t\t\treturn primary.then();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\t\t\twhile (i--) {\n\t\t\t\t\tadoptValue(resolveValues[i], updateFunc(i), primary.reject);\n\t\t\t\t}\n\n\t\t\t\treturn primary.promise();\n\t\t\t}\n\t\t});\n\n\t\t// These usually indicate a programmer mistake during development,\n\t\t// warn about them ASAP rather than swallowing them by default.\n\t\tvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\n\t\t// If `jQuery.Deferred.getErrorHook` is defined, `asyncError` is an error\n\t\t// captured before the async barrier to get the original error cause\n\t\t// which may otherwise be hidden.\n\t\tjQuery.Deferred.exceptionHook = function (error, asyncError) {\n\n\t\t\t// Support: IE 8 - 9 only\n\t\t\t// Console exists when dev tools are open, which can happen at any time\n\t\t\tif (window.console && window.console.warn && error && rerrorNames.test(error.name)) {\n\t\t\t\twindow.console.warn(\"jQuery.Deferred exception: \" + error.message, error.stack, asyncError);\n\t\t\t}\n\t\t};\n\n\t\tjQuery.readyException = function (error) {\n\t\t\twindow.setTimeout(function () {\n\t\t\t\tthrow error;\n\t\t\t});\n\t\t};\n\n\t\t// The deferred used on DOM ready\n\t\tvar readyList = jQuery.Deferred();\n\n\t\tjQuery.fn.ready = function (fn) {\n\n\t\t\treadyList.then(fn)\n\n\t\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t\t// happens at the time of error handling instead of callback\n\t\t\t// registration.\n\t\t\t.catch(function (error) {\n\t\t\t\tjQuery.readyException(error);\n\t\t\t});\n\n\t\t\treturn this;\n\t\t};\n\n\t\tjQuery.extend({\n\n\t\t\t// Is the DOM ready to be used? Set to true once it occurs.\n\t\t\tisReady: false,\n\n\t\t\t// A counter to track how many items to wait for before\n\t\t\t// the ready event fires. See trac-6781\n\t\t\treadyWait: 1,\n\n\t\t\t// Handle when the DOM is ready\n\t\t\tready: function ready(wait) {\n\n\t\t\t\t// Abort if there are pending holds or we're already ready\n\t\t\t\tif (wait === true ? --jQuery.readyWait : jQuery.isReady) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Remember that the DOM is ready\n\t\t\t\tjQuery.isReady = true;\n\n\t\t\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\t\t\tif (wait !== true && --jQuery.readyWait > 0) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// If there are functions bound, to execute\n\t\t\t\treadyList.resolveWith(document, [jQuery]);\n\t\t\t}\n\t\t});\n\n\t\tjQuery.ready.then = readyList.then;\n\n\t\t// The ready event handler and self cleanup method\n\t\tfunction completed() {\n\t\t\tdocument.removeEventListener(\"DOMContentLoaded\", completed);\n\t\t\twindow.removeEventListener(\"load\", completed);\n\t\t\tjQuery.ready();\n\t\t}\n\n\t\t// Catch cases where $(document).ready() is called\n\t\t// after the browser event has already occurred.\n\t\t// Support: IE <=9 - 10 only\n\t\t// Older IE sometimes signals \"interactive\" too soon\n\t\tif (document.readyState === \"complete\" || document.readyState !== \"loading\" && !document.documentElement.doScroll) {\n\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\twindow.setTimeout(jQuery.ready);\n\t\t} else {\n\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener(\"DOMContentLoaded\", completed);\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener(\"load\", completed);\n\t\t}\n\n\t\t// Multifunctional method to get and set values of a collection\n\t\t// The value/s can optionally be executed if it's a function\n\t\tvar access = function access(elems, fn, key, value, chainable, emptyGet, raw) {\n\t\t\tvar i = 0,\n\t\t\t len = elems.length,\n\t\t\t bulk = key == null;\n\n\t\t\t// Sets many values\n\t\t\tif (toType(key) === \"object\") {\n\t\t\t\tchainable = true;\n\t\t\t\tfor (i in key) {\n\t\t\t\t\taccess(elems, fn, i, key[i], true, emptyGet, raw);\n\t\t\t\t}\n\n\t\t\t\t// Sets one value\n\t\t\t} else if (value !== undefined) {\n\t\t\t\tchainable = true;\n\n\t\t\t\tif (!isFunction(value)) {\n\t\t\t\t\traw = true;\n\t\t\t\t}\n\n\t\t\t\tif (bulk) {\n\n\t\t\t\t\t// Bulk operations run against the entire set\n\t\t\t\t\tif (raw) {\n\t\t\t\t\t\tfn.call(elems, value);\n\t\t\t\t\t\tfn = null;\n\n\t\t\t\t\t\t// ...except when executing function values\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbulk = fn;\n\t\t\t\t\t\tfn = function fn(elem, _key, value) {\n\t\t\t\t\t\t\treturn bulk.call(jQuery(elem), value);\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (fn) {\n\t\t\t\t\tfor (; i < len; i++) {\n\t\t\t\t\t\tfn(elems[i], key, raw ? value : value.call(elems[i], i, fn(elems[i], key)));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (chainable) {\n\t\t\t\treturn elems;\n\t\t\t}\n\n\t\t\t// Gets\n\t\t\tif (bulk) {\n\t\t\t\treturn fn.call(elems);\n\t\t\t}\n\n\t\t\treturn len ? fn(elems[0], key) : emptyGet;\n\t\t};\n\n\t\t// Matches dashed string for camelizing\n\t\tvar rmsPrefix = /^-ms-/,\n\t\t rdashAlpha = /-([a-z])/g;\n\n\t\t// Used by camelCase as callback to replace()\n\t\tfunction fcamelCase(_all, letter) {\n\t\t\treturn letter.toUpperCase();\n\t\t}\n\n\t\t// Convert dashed to camelCase; used by the css and data modules\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Microsoft forgot to hump their vendor prefix (trac-9572)\n\t\tfunction camelCase(string) {\n\t\t\treturn string.replace(rmsPrefix, \"ms-\").replace(rdashAlpha, fcamelCase);\n\t\t}\n\t\tvar acceptData = function acceptData(owner) {\n\n\t\t\t// Accepts only:\n\t\t\t// - Node\n\t\t\t// - Node.ELEMENT_NODE\n\t\t\t// - Node.DOCUMENT_NODE\n\t\t\t// - Object\n\t\t\t// - Any\n\t\t\treturn owner.nodeType === 1 || owner.nodeType === 9 || !+owner.nodeType;\n\t\t};\n\n\t\tfunction Data() {\n\t\t\tthis.expando = jQuery.expando + Data.uid++;\n\t\t}\n\n\t\tData.uid = 1;\n\n\t\tData.prototype = {\n\n\t\t\tcache: function cache(owner) {\n\n\t\t\t\t// Check if the owner object already has a cache\n\t\t\t\tvar value = owner[this.expando];\n\n\t\t\t\t// If not, create one\n\t\t\t\tif (!value) {\n\t\t\t\t\tvalue = {};\n\n\t\t\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t\t\t// but we should not, see trac-8335.\n\t\t\t\t\t// Always return an empty object.\n\t\t\t\t\tif (acceptData(owner)) {\n\n\t\t\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t\t\t// use plain assignment\n\t\t\t\t\t\tif (owner.nodeType) {\n\t\t\t\t\t\t\towner[this.expando] = value;\n\n\t\t\t\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t\t\t\t// deleted when data is removed\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tObject.defineProperty(owner, this.expando, {\n\t\t\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\t\t\tconfigurable: 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\n\t\t\t\treturn value;\n\t\t\t},\n\t\t\tset: function set(owner, data, value) {\n\t\t\t\tvar prop,\n\t\t\t\t cache = this.cache(owner);\n\n\t\t\t\t// Handle: [ owner, key, value ] args\n\t\t\t\t// Always use camelCase key (gh-2257)\n\t\t\t\tif (typeof data === \"string\") {\n\t\t\t\t\tcache[camelCase(data)] = value;\n\n\t\t\t\t\t// Handle: [ owner, { properties } ] args\n\t\t\t\t} else {\n\n\t\t\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\t\t\tfor (prop in data) {\n\t\t\t\t\t\tcache[camelCase(prop)] = data[prop];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn cache;\n\t\t\t},\n\t\t\tget: function get(owner, key) {\n\t\t\t\treturn key === undefined ? this.cache(owner) :\n\n\t\t\t\t// Always use camelCase key (gh-2257)\n\t\t\t\towner[this.expando] && owner[this.expando][camelCase(key)];\n\t\t\t},\n\t\t\taccess: function access(owner, key, value) {\n\n\t\t\t\t// In cases where either:\n\t\t\t\t//\n\t\t\t\t// 1. No key was specified\n\t\t\t\t// 2. A string key was specified, but no value provided\n\t\t\t\t//\n\t\t\t\t// Take the \"read\" path and allow the get method to determine\n\t\t\t\t// which value to return, respectively either:\n\t\t\t\t//\n\t\t\t\t// 1. The entire cache object\n\t\t\t\t// 2. The data stored at the key\n\t\t\t\t//\n\t\t\t\tif (key === undefined || key && typeof key === \"string\" && value === undefined) {\n\n\t\t\t\t\treturn this.get(owner, key);\n\t\t\t\t}\n\n\t\t\t\t// When the key is not a string, or both a key and value\n\t\t\t\t// are specified, set or extend (existing objects) with either:\n\t\t\t\t//\n\t\t\t\t// 1. An object of properties\n\t\t\t\t// 2. A key and value\n\t\t\t\t//\n\t\t\t\tthis.set(owner, key, value);\n\n\t\t\t\t// Since the \"set\" path can have two possible entry points\n\t\t\t\t// return the expected data based on which path was taken[*]\n\t\t\t\treturn value !== undefined ? value : key;\n\t\t\t},\n\t\t\tremove: function remove(owner, key) {\n\t\t\t\tvar i,\n\t\t\t\t cache = owner[this.expando];\n\n\t\t\t\tif (cache === undefined) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (key !== undefined) {\n\n\t\t\t\t\t// Support array or space separated string of keys\n\t\t\t\t\tif (Array.isArray(key)) {\n\n\t\t\t\t\t\t// If key is an array of keys...\n\t\t\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\t\t\tkey = key.map(camelCase);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tkey = camelCase(key);\n\n\t\t\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\t\t\tkey = key in cache ? [key] : key.match(rnothtmlwhite) || [];\n\t\t\t\t\t}\n\n\t\t\t\t\ti = key.length;\n\n\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\tdelete cache[key[i]];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Remove the expando if there's no more data\n\t\t\t\tif (key === undefined || jQuery.isEmptyObject(cache)) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45\n\t\t\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\t\t\tif (owner.nodeType) {\n\t\t\t\t\t\towner[this.expando] = undefined;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdelete owner[this.expando];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\thasData: function hasData(owner) {\n\t\t\t\tvar cache = owner[this.expando];\n\t\t\t\treturn cache !== undefined && !jQuery.isEmptyObject(cache);\n\t\t\t}\n\t\t};\n\t\tvar dataPriv = new Data();\n\n\t\tvar dataUser = new Data();\n\n\t\t//\tImplementation Summary\n\t\t//\n\t\t//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n\t\t//\t2. Improve the module's maintainability by reducing the storage\n\t\t//\t\tpaths to a single mechanism.\n\t\t//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n\t\t//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n\t\t//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n\t\t//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\n\t\tvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\t\t rmultiDash = /[A-Z]/g;\n\n\t\tfunction getData(data) {\n\t\t\tif (data === \"true\") {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\tif (data === \"false\") {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\tif (data === \"null\") {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\tif (data === +data + \"\") {\n\t\t\t\treturn +data;\n\t\t\t}\n\n\t\t\tif (rbrace.test(data)) {\n\t\t\t\treturn JSON.parse(data);\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\tfunction dataAttr(elem, key, data) {\n\t\t\tvar name;\n\n\t\t\t// If nothing was found internally, try to fetch any\n\t\t\t// data from the HTML5 data-* attribute\n\t\t\tif (data === undefined && elem.nodeType === 1) {\n\t\t\t\tname = \"data-\" + key.replace(rmultiDash, \"-$&\").toLowerCase();\n\t\t\t\tdata = elem.getAttribute(name);\n\n\t\t\t\tif (typeof data === \"string\") {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tdata = getData(data);\n\t\t\t\t\t} catch (e) {}\n\n\t\t\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\t\t\tdataUser.set(elem, key, data);\n\t\t\t\t} else {\n\t\t\t\t\tdata = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn data;\n\t\t}\n\n\t\tjQuery.extend({\n\t\t\thasData: function hasData(elem) {\n\t\t\t\treturn dataUser.hasData(elem) || dataPriv.hasData(elem);\n\t\t\t},\n\n\t\t\tdata: function data(elem, name, _data) {\n\t\t\t\treturn dataUser.access(elem, name, _data);\n\t\t\t},\n\n\t\t\tremoveData: function removeData(elem, name) {\n\t\t\t\tdataUser.remove(elem, name);\n\t\t\t},\n\n\t\t\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t\t\t// with direct calls to dataPriv methods, these can be deprecated.\n\t\t\t_data: function _data(elem, name, data) {\n\t\t\t\treturn dataPriv.access(elem, name, data);\n\t\t\t},\n\n\t\t\t_removeData: function _removeData(elem, name) {\n\t\t\t\tdataPriv.remove(elem, name);\n\t\t\t}\n\t\t});\n\n\t\tjQuery.fn.extend({\n\t\t\tdata: function data(key, value) {\n\t\t\t\tvar i,\n\t\t\t\t name,\n\t\t\t\t data,\n\t\t\t\t elem = this[0],\n\t\t\t\t attrs = elem && elem.attributes;\n\n\t\t\t\t// Gets all values\n\t\t\t\tif (key === undefined) {\n\t\t\t\t\tif (this.length) {\n\t\t\t\t\t\tdata = dataUser.get(elem);\n\n\t\t\t\t\t\tif (elem.nodeType === 1 && !dataPriv.get(elem, \"hasDataAttrs\")) {\n\t\t\t\t\t\t\ti = attrs.length;\n\t\t\t\t\t\t\twhile (i--) {\n\n\t\t\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t\t\t// The attrs elements can be null (trac-14894)\n\t\t\t\t\t\t\t\tif (attrs[i]) {\n\t\t\t\t\t\t\t\t\tname = attrs[i].name;\n\t\t\t\t\t\t\t\t\tif (name.indexOf(\"data-\") === 0) {\n\t\t\t\t\t\t\t\t\t\tname = camelCase(name.slice(5));\n\t\t\t\t\t\t\t\t\t\tdataAttr(elem, name, data[name]);\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\tdataPriv.set(elem, \"hasDataAttrs\", true);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Sets multiple values\n\t\t\t\tif ((typeof key === \"undefined\" ? \"undefined\" : _typeof(key)) === \"object\") {\n\t\t\t\t\treturn this.each(function () {\n\t\t\t\t\t\tdataUser.set(this, key);\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\treturn access(this, function (value) {\n\t\t\t\t\tvar data;\n\n\t\t\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\t\t\tif (elem && value === undefined) {\n\n\t\t\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\t\t\tdata = dataUser.get(elem, key);\n\t\t\t\t\t\tif (data !== undefined) {\n\t\t\t\t\t\t\treturn data;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\t\t\tdata = dataAttr(elem, key);\n\t\t\t\t\t\tif (data !== undefined) {\n\t\t\t\t\t\t\treturn data;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set the data...\n\t\t\t\t\tthis.each(function () {\n\n\t\t\t\t\t\t// We always store the camelCased key\n\t\t\t\t\t\tdataUser.set(this, key, value);\n\t\t\t\t\t});\n\t\t\t\t}, null, value, arguments.length > 1, null, true);\n\t\t\t},\n\n\t\t\tremoveData: function removeData(key) {\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tdataUser.remove(this, key);\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tjQuery.extend({\n\t\t\tqueue: function queue(elem, type, data) {\n\t\t\t\tvar queue;\n\n\t\t\t\tif (elem) {\n\t\t\t\t\ttype = (type || \"fx\") + \"queue\";\n\t\t\t\t\tqueue = dataPriv.get(elem, type);\n\n\t\t\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\t\t\tif (data) {\n\t\t\t\t\t\tif (!queue || Array.isArray(data)) {\n\t\t\t\t\t\t\tqueue = dataPriv.access(elem, type, jQuery.makeArray(data));\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tqueue.push(data);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn queue || [];\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tdequeue: function dequeue(elem, type) {\n\t\t\t\ttype = type || \"fx\";\n\n\t\t\t\tvar queue = jQuery.queue(elem, type),\n\t\t\t\t startLength = queue.length,\n\t\t\t\t fn = queue.shift(),\n\t\t\t\t hooks = jQuery._queueHooks(elem, type),\n\t\t\t\t next = function next() {\n\t\t\t\t\tjQuery.dequeue(elem, type);\n\t\t\t\t};\n\n\t\t\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\t\t\tif (fn === \"inprogress\") {\n\t\t\t\t\tfn = queue.shift();\n\t\t\t\t\tstartLength--;\n\t\t\t\t}\n\n\t\t\t\tif (fn) {\n\n\t\t\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t\t\t// automatically dequeued\n\t\t\t\t\tif (type === \"fx\") {\n\t\t\t\t\t\tqueue.unshift(\"inprogress\");\n\t\t\t\t\t}\n\n\t\t\t\t\t// Clear up the last queue stop function\n\t\t\t\t\tdelete hooks.stop;\n\t\t\t\t\tfn.call(elem, next, hooks);\n\t\t\t\t}\n\n\t\t\t\tif (!startLength && hooks) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// Not public - generate a queueHooks object, or return the current one\n\t\t\t_queueHooks: function _queueHooks(elem, type) {\n\t\t\t\tvar key = type + \"queueHooks\";\n\t\t\t\treturn dataPriv.get(elem, key) || dataPriv.access(elem, key, {\n\t\t\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function () {\n\t\t\t\t\t\tdataPriv.remove(elem, [type + \"queue\", key]);\n\t\t\t\t\t})\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tjQuery.fn.extend({\n\t\t\tqueue: function queue(type, data) {\n\t\t\t\tvar setter = 2;\n\n\t\t\t\tif (typeof type !== \"string\") {\n\t\t\t\t\tdata = type;\n\t\t\t\t\ttype = \"fx\";\n\t\t\t\t\tsetter--;\n\t\t\t\t}\n\n\t\t\t\tif (arguments.length < setter) {\n\t\t\t\t\treturn jQuery.queue(this[0], type);\n\t\t\t\t}\n\n\t\t\t\treturn data === undefined ? this : this.each(function () {\n\t\t\t\t\tvar queue = jQuery.queue(this, type, data);\n\n\t\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\t\tjQuery._queueHooks(this, type);\n\n\t\t\t\t\tif (type === \"fx\" && queue[0] !== \"inprogress\") {\n\t\t\t\t\t\tjQuery.dequeue(this, type);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\t\t\tdequeue: function dequeue(type) {\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tjQuery.dequeue(this, type);\n\t\t\t\t});\n\t\t\t},\n\t\t\tclearQueue: function clearQueue(type) {\n\t\t\t\treturn this.queue(type || \"fx\", []);\n\t\t\t},\n\n\t\t\t// Get a promise resolved when queues of a certain type\n\t\t\t// are emptied (fx is the type by default)\n\t\t\tpromise: function promise(type, obj) {\n\t\t\t\tvar tmp,\n\t\t\t\t count = 1,\n\t\t\t\t defer = jQuery.Deferred(),\n\t\t\t\t elements = this,\n\t\t\t\t i = this.length,\n\t\t\t\t resolve = function resolve() {\n\t\t\t\t\tif (! --count) {\n\t\t\t\t\t\tdefer.resolveWith(elements, [elements]);\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tif (typeof type !== \"string\") {\n\t\t\t\t\tobj = type;\n\t\t\t\t\ttype = undefined;\n\t\t\t\t}\n\t\t\t\ttype = type || \"fx\";\n\n\t\t\t\twhile (i--) {\n\t\t\t\t\ttmp = dataPriv.get(elements[i], type + \"queueHooks\");\n\t\t\t\t\tif (tmp && tmp.empty) {\n\t\t\t\t\t\tcount++;\n\t\t\t\t\t\ttmp.empty.add(resolve);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tresolve();\n\t\t\t\treturn defer.promise(obj);\n\t\t\t}\n\t\t});\n\t\tvar pnum = /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source;\n\n\t\tvar rcssNum = new RegExp(\"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\");\n\n\t\tvar cssExpand = [\"Top\", \"Right\", \"Bottom\", \"Left\"];\n\n\t\tvar documentElement = document.documentElement;\n\n\t\tvar isAttached = function isAttached(elem) {\n\t\t\treturn jQuery.contains(elem.ownerDocument, elem);\n\t\t},\n\t\t composed = { composed: true };\n\n\t\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t\t// Support: iOS 10.0-10.2 only\n\t\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t\t// leading to errors. We need to check for `getRootNode`.\n\t\tif (documentElement.getRootNode) {\n\t\t\tisAttached = function isAttached(elem) {\n\t\t\t\treturn jQuery.contains(elem.ownerDocument, elem) || elem.getRootNode(composed) === elem.ownerDocument;\n\t\t\t};\n\t\t}\n\t\tvar isHiddenWithinTree = function isHiddenWithinTree(elem, el) {\n\n\t\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t\t// in that case, element will be second argument\n\t\t\telem = el || elem;\n\n\t\t\t// Inline style trumps all\n\t\t\treturn elem.style.display === \"none\" || elem.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) && jQuery.css(elem, \"display\") === \"none\";\n\t\t};\n\n\t\tfunction adjustCSS(elem, prop, valueParts, tween) {\n\t\t\tvar adjusted,\n\t\t\t scale,\n\t\t\t maxIterations = 20,\n\t\t\t currentValue = tween ? function () {\n\t\t\t\treturn tween.cur();\n\t\t\t} : function () {\n\t\t\t\treturn jQuery.css(elem, prop, \"\");\n\t\t\t},\n\t\t\t initial = currentValue(),\n\t\t\t unit = valueParts && valueParts[3] || (jQuery.cssNumber[prop] ? \"\" : \"px\"),\n\n\n\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\tinitialInUnit = elem.nodeType && (jQuery.cssNumber[prop] || unit !== \"px\" && +initial) && rcssNum.exec(jQuery.css(elem, prop));\n\n\t\t\tif (initialInUnit && initialInUnit[3] !== unit) {\n\n\t\t\t\t// Support: Firefox <=54\n\t\t\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\t\t\tinitial = initial / 2;\n\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || initialInUnit[3];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tinitialInUnit = +initial || 1;\n\n\t\t\t\twhile (maxIterations--) {\n\n\t\t\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\t\t\tjQuery.style(elem, prop, initialInUnit + unit);\n\t\t\t\t\tif ((1 - scale) * (1 - (scale = currentValue() / initial || 0.5)) <= 0) {\n\t\t\t\t\t\tmaxIterations = 0;\n\t\t\t\t\t}\n\t\t\t\t\tinitialInUnit = initialInUnit / scale;\n\t\t\t\t}\n\n\t\t\t\tinitialInUnit = initialInUnit * 2;\n\t\t\t\tjQuery.style(elem, prop, initialInUnit + unit);\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tvalueParts = valueParts || [];\n\t\t\t}\n\n\t\t\tif (valueParts) {\n\t\t\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t\t\t// Apply relative offset (+=/-=) if specified\n\t\t\t\tadjusted = valueParts[1] ? initialInUnit + (valueParts[1] + 1) * valueParts[2] : +valueParts[2];\n\t\t\t\tif (tween) {\n\t\t\t\t\ttween.unit = unit;\n\t\t\t\t\ttween.start = initialInUnit;\n\t\t\t\t\ttween.end = adjusted;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn adjusted;\n\t\t}\n\n\t\tvar defaultDisplayMap = {};\n\n\t\tfunction getDefaultDisplay(elem) {\n\t\t\tvar temp,\n\t\t\t doc = elem.ownerDocument,\n\t\t\t nodeName = elem.nodeName,\n\t\t\t display = defaultDisplayMap[nodeName];\n\n\t\t\tif (display) {\n\t\t\t\treturn display;\n\t\t\t}\n\n\t\t\ttemp = doc.body.appendChild(doc.createElement(nodeName));\n\t\t\tdisplay = jQuery.css(temp, \"display\");\n\n\t\t\ttemp.parentNode.removeChild(temp);\n\n\t\t\tif (display === \"none\") {\n\t\t\t\tdisplay = \"block\";\n\t\t\t}\n\t\t\tdefaultDisplayMap[nodeName] = display;\n\n\t\t\treturn display;\n\t\t}\n\n\t\tfunction showHide(elements, show) {\n\t\t\tvar display,\n\t\t\t elem,\n\t\t\t values = [],\n\t\t\t index = 0,\n\t\t\t length = elements.length;\n\n\t\t\t// Determine new display value for elements that need to change\n\t\t\tfor (; index < length; index++) {\n\t\t\t\telem = elements[index];\n\t\t\t\tif (!elem.style) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tdisplay = elem.style.display;\n\t\t\t\tif (show) {\n\n\t\t\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t\t\t// inline or about-to-be-restored)\n\t\t\t\t\tif (display === \"none\") {\n\t\t\t\t\t\tvalues[index] = dataPriv.get(elem, \"display\") || null;\n\t\t\t\t\t\tif (!values[index]) {\n\t\t\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif (elem.style.display === \"\" && isHiddenWithinTree(elem)) {\n\t\t\t\t\t\tvalues[index] = getDefaultDisplay(elem);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif (display !== \"none\") {\n\t\t\t\t\t\tvalues[index] = \"none\";\n\n\t\t\t\t\t\t// Remember what we're overwriting\n\t\t\t\t\t\tdataPriv.set(elem, \"display\", display);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set the display of the elements in a second loop to avoid constant reflow\n\t\t\tfor (index = 0; index < length; index++) {\n\t\t\t\tif (values[index] != null) {\n\t\t\t\t\telements[index].style.display = values[index];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn elements;\n\t\t}\n\n\t\tjQuery.fn.extend({\n\t\t\tshow: function show() {\n\t\t\t\treturn showHide(this, true);\n\t\t\t},\n\t\t\thide: function hide() {\n\t\t\t\treturn showHide(this);\n\t\t\t},\n\t\t\ttoggle: function toggle(state) {\n\t\t\t\tif (typeof state === \"boolean\") {\n\t\t\t\t\treturn state ? this.show() : this.hide();\n\t\t\t\t}\n\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tif (isHiddenWithinTree(this)) {\n\t\t\t\t\t\tjQuery(this).show();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tjQuery(this).hide();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\t\tvar rcheckableType = /^(?:checkbox|radio)$/i;\n\n\t\tvar rtagName = /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i;\n\n\t\tvar rscriptType = /^$|^module$|\\/(?:java|ecma)script/i;\n\n\t\t(function () {\n\t\t\tvar fragment = document.createDocumentFragment(),\n\t\t\t div = fragment.appendChild(document.createElement(\"div\")),\n\t\t\t input = document.createElement(\"input\");\n\n\t\t\t// Support: Android 4.0 - 4.3 only\n\t\t\t// Check state lost if the name is set (trac-11217)\n\t\t\t// Support: Windows Web Apps (WWA)\n\t\t\t// `name` and `type` must use .setAttribute for WWA (trac-14901)\n\t\t\tinput.setAttribute(\"type\", \"radio\");\n\t\t\tinput.setAttribute(\"checked\", \"checked\");\n\t\t\tinput.setAttribute(\"name\", \"t\");\n\n\t\t\tdiv.appendChild(input);\n\n\t\t\t// Support: Android <=4.1 only\n\t\t\t// Older WebKit doesn't clone checked state correctly in fragments\n\t\t\tsupport.checkClone = div.cloneNode(true).cloneNode(true).lastChild.checked;\n\n\t\t\t// Support: IE <=11 only\n\t\t\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t\t\tdiv.innerHTML = \"\";\n\t\t\tsupport.noCloneChecked = !!div.cloneNode(true).lastChild.defaultValue;\n\n\t\t\t// Support: IE <=9 only\n\t\t\t// IE <=9 replaces \";\n\t\t\tsupport.option = !!div.lastChild;\n\t\t})();\n\n\t\t// We have to close these tags to support XHTML (trac-13200)\n\t\tvar wrapMap = {\n\n\t\t\t// XHTML parsers do not magically insert elements in the\n\t\t\t// same way that tag soup parsers do. So we cannot shorten\n\t\t\t// this by omitting or other required elements.\n\t\t\tthead: [1, \"\", \"
\"],\n\t\t\tcol: [2, \"\", \"
\"],\n\t\t\ttr: [2, \"\", \"
\"],\n\t\t\ttd: [3, \"\", \"
\"],\n\n\t\t\t_default: [0, \"\", \"\"]\n\t\t};\n\n\t\twrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\n\t\twrapMap.th = wrapMap.td;\n\n\t\t// Support: IE <=9 only\n\t\tif (!support.option) {\n\t\t\twrapMap.optgroup = wrapMap.option = [1, \"\"];\n\t\t}\n\n\t\tfunction getAll(context, tag) {\n\n\t\t\t// Support: IE <=9 - 11 only\n\t\t\t// Use typeof to avoid zero-argument method invocation on host objects (trac-15151)\n\t\t\tvar ret;\n\n\t\t\tif (typeof context.getElementsByTagName !== \"undefined\") {\n\t\t\t\tret = context.getElementsByTagName(tag || \"*\");\n\t\t\t} else if (typeof context.querySelectorAll !== \"undefined\") {\n\t\t\t\tret = context.querySelectorAll(tag || \"*\");\n\t\t\t} else {\n\t\t\t\tret = [];\n\t\t\t}\n\n\t\t\tif (tag === undefined || tag && nodeName(context, tag)) {\n\t\t\t\treturn jQuery.merge([context], ret);\n\t\t\t}\n\n\t\t\treturn ret;\n\t\t}\n\n\t\t// Mark scripts as having already been evaluated\n\t\tfunction setGlobalEval(elems, refElements) {\n\t\t\tvar i = 0,\n\t\t\t l = elems.length;\n\n\t\t\tfor (; i < l; i++) {\n\t\t\t\tdataPriv.set(elems[i], \"globalEval\", !refElements || dataPriv.get(refElements[i], \"globalEval\"));\n\t\t\t}\n\t\t}\n\n\t\tvar rhtml = /<|&#?\\w+;/;\n\n\t\tfunction buildFragment(elems, context, scripts, selection, ignored) {\n\t\t\tvar elem,\n\t\t\t tmp,\n\t\t\t tag,\n\t\t\t wrap,\n\t\t\t attached,\n\t\t\t j,\n\t\t\t fragment = context.createDocumentFragment(),\n\t\t\t nodes = [],\n\t\t\t i = 0,\n\t\t\t l = elems.length;\n\n\t\t\tfor (; i < l; i++) {\n\t\t\t\telem = elems[i];\n\n\t\t\t\tif (elem || elem === 0) {\n\n\t\t\t\t\t// Add nodes directly\n\t\t\t\t\tif (toType(elem) === \"object\") {\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(nodes, elem.nodeType ? [elem] : elem);\n\n\t\t\t\t\t\t// Convert non-html into a text node\n\t\t\t\t\t} else if (!rhtml.test(elem)) {\n\t\t\t\t\t\tnodes.push(context.createTextNode(elem));\n\n\t\t\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = tmp || fragment.appendChild(context.createElement(\"div\"));\n\n\t\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\t\ttag = (rtagName.exec(elem) || [\"\", \"\"])[1].toLowerCase();\n\t\t\t\t\t\twrap = wrapMap[tag] || wrapMap._default;\n\t\t\t\t\t\ttmp.innerHTML = wrap[1] + jQuery.htmlPrefilter(elem) + wrap[2];\n\n\t\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\t\tj = wrap[0];\n\t\t\t\t\t\twhile (j--) {\n\t\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t\t}\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(nodes, tmp.childNodes);\n\n\t\t\t\t\t\t// Remember the top-level container\n\t\t\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t\t\t// Ensure the created nodes are orphaned (trac-12392)\n\t\t\t\t\t\ttmp.textContent = \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove wrapper from fragment\n\t\t\tfragment.textContent = \"\";\n\n\t\t\ti = 0;\n\t\t\twhile (elem = nodes[i++]) {\n\n\t\t\t\t// Skip elements already in the context collection (trac-4087)\n\t\t\t\tif (selection && jQuery.inArray(elem, selection) > -1) {\n\t\t\t\t\tif (ignored) {\n\t\t\t\t\t\tignored.push(elem);\n\t\t\t\t\t}\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tattached = isAttached(elem);\n\n\t\t\t\t// Append to fragment\n\t\t\t\ttmp = getAll(fragment.appendChild(elem), \"script\");\n\n\t\t\t\t// Preserve script evaluation history\n\t\t\t\tif (attached) {\n\t\t\t\t\tsetGlobalEval(tmp);\n\t\t\t\t}\n\n\t\t\t\t// Capture executables\n\t\t\t\tif (scripts) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile (elem = tmp[j++]) {\n\t\t\t\t\t\tif (rscriptType.test(elem.type || \"\")) {\n\t\t\t\t\t\t\tscripts.push(elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn fragment;\n\t\t}\n\n\t\tvar rtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\n\t\tfunction returnTrue() {\n\t\t\treturn true;\n\t\t}\n\n\t\tfunction returnFalse() {\n\t\t\treturn false;\n\t\t}\n\n\t\tfunction _on(elem, types, selector, data, fn, one) {\n\t\t\tvar origFn, type;\n\n\t\t\t// Types can be a map of types/handlers\n\t\t\tif ((typeof types === \"undefined\" ? \"undefined\" : _typeof(types)) === \"object\") {\n\n\t\t\t\t// ( types-Object, selector, data )\n\t\t\t\tif (typeof selector !== \"string\") {\n\n\t\t\t\t\t// ( types-Object, data )\n\t\t\t\t\tdata = data || selector;\n\t\t\t\t\tselector = undefined;\n\t\t\t\t}\n\t\t\t\tfor (type in types) {\n\t\t\t\t\t_on(elem, type, selector, data, types[type], one);\n\t\t\t\t}\n\t\t\t\treturn elem;\n\t\t\t}\n\n\t\t\tif (data == null && fn == null) {\n\n\t\t\t\t// ( types, fn )\n\t\t\t\tfn = selector;\n\t\t\t\tdata = selector = undefined;\n\t\t\t} else if (fn == null) {\n\t\t\t\tif (typeof selector === \"string\") {\n\n\t\t\t\t\t// ( types, selector, fn )\n\t\t\t\t\tfn = data;\n\t\t\t\t\tdata = undefined;\n\t\t\t\t} else {\n\n\t\t\t\t\t// ( types, data, fn )\n\t\t\t\t\tfn = data;\n\t\t\t\t\tdata = selector;\n\t\t\t\t\tselector = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (fn === false) {\n\t\t\t\tfn = returnFalse;\n\t\t\t} else if (!fn) {\n\t\t\t\treturn elem;\n\t\t\t}\n\n\t\t\tif (one === 1) {\n\t\t\t\torigFn = fn;\n\t\t\t\tfn = function fn(event) {\n\n\t\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\t\tjQuery().off(event);\n\t\t\t\t\treturn origFn.apply(this, arguments);\n\t\t\t\t};\n\n\t\t\t\t// Use same guid so caller can remove using origFn\n\t\t\t\tfn.guid = origFn.guid || (origFn.guid = jQuery.guid++);\n\t\t\t}\n\t\t\treturn elem.each(function () {\n\t\t\t\tjQuery.event.add(this, types, fn, data, selector);\n\t\t\t});\n\t\t}\n\n\t\t/*\n\t * Helper functions for managing events -- not part of the public interface.\n\t * Props to Dean Edwards' addEvent library for many of the ideas.\n\t */\n\t\tjQuery.event = {\n\n\t\t\tglobal: {},\n\n\t\t\tadd: function add(elem, types, handler, data, selector) {\n\n\t\t\t\tvar handleObjIn,\n\t\t\t\t eventHandle,\n\t\t\t\t tmp,\n\t\t\t\t events,\n\t\t\t\t t,\n\t\t\t\t handleObj,\n\t\t\t\t special,\n\t\t\t\t handlers,\n\t\t\t\t type,\n\t\t\t\t namespaces,\n\t\t\t\t origType,\n\t\t\t\t elemData = dataPriv.get(elem);\n\n\t\t\t\t// Only attach events to objects that accept data\n\t\t\t\tif (!acceptData(elem)) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\t\t\tif (handler.handler) {\n\t\t\t\t\thandleObjIn = handler;\n\t\t\t\t\thandler = handleObjIn.handler;\n\t\t\t\t\tselector = handleObjIn.selector;\n\t\t\t\t}\n\n\t\t\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\t\t\tif (selector) {\n\t\t\t\t\tjQuery.find.matchesSelector(documentElement, selector);\n\t\t\t\t}\n\n\t\t\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\t\t\tif (!handler.guid) {\n\t\t\t\t\thandler.guid = jQuery.guid++;\n\t\t\t\t}\n\n\t\t\t\t// Init the element's event structure and main handler, if this is the first\n\t\t\t\tif (!(events = elemData.events)) {\n\t\t\t\t\tevents = elemData.events = Object.create(null);\n\t\t\t\t}\n\t\t\t\tif (!(eventHandle = elemData.handle)) {\n\t\t\t\t\teventHandle = elemData.handle = function (e) {\n\n\t\t\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ? jQuery.event.dispatch.apply(elem, arguments) : undefined;\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Handle multiple events separated by a space\n\t\t\t\ttypes = (types || \"\").match(rnothtmlwhite) || [\"\"];\n\t\t\t\tt = types.length;\n\t\t\t\twhile (t--) {\n\t\t\t\t\ttmp = rtypenamespace.exec(types[t]) || [];\n\t\t\t\t\ttype = origType = tmp[1];\n\t\t\t\t\tnamespaces = (tmp[2] || \"\").split(\".\").sort();\n\n\t\t\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\t\t\tif (!type) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\t\t\tspecial = jQuery.event.special[type] || {};\n\n\t\t\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\t\t\ttype = (selector ? special.delegateType : special.bindType) || type;\n\n\t\t\t\t\t// Update special based on newly reset type\n\t\t\t\t\tspecial = jQuery.event.special[type] || {};\n\n\t\t\t\t\t// handleObj is passed to all event handlers\n\t\t\t\t\thandleObj = jQuery.extend({\n\t\t\t\t\t\ttype: type,\n\t\t\t\t\t\torigType: origType,\n\t\t\t\t\t\tdata: data,\n\t\t\t\t\t\thandler: handler,\n\t\t\t\t\t\tguid: handler.guid,\n\t\t\t\t\t\tselector: selector,\n\t\t\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test(selector),\n\t\t\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t\t\t}, handleObjIn);\n\n\t\t\t\t\t// Init the event handler queue if we're the first\n\t\t\t\t\tif (!(handlers = events[type])) {\n\t\t\t\t\t\thandlers = events[type] = [];\n\t\t\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\t\t\tif (!special.setup || special.setup.call(elem, data, namespaces, eventHandle) === false) {\n\n\t\t\t\t\t\t\tif (elem.addEventListener) {\n\t\t\t\t\t\t\t\telem.addEventListener(type, eventHandle);\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\tif (special.add) {\n\t\t\t\t\t\tspecial.add.call(elem, handleObj);\n\n\t\t\t\t\t\tif (!handleObj.handler.guid) {\n\t\t\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Add to the element's handler list, delegates in front\n\t\t\t\t\tif (selector) {\n\t\t\t\t\t\thandlers.splice(handlers.delegateCount++, 0, handleObj);\n\t\t\t\t\t} else {\n\t\t\t\t\t\thandlers.push(handleObj);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\t\t\tjQuery.event.global[type] = true;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// Detach an event or set of events from an element\n\t\t\tremove: function remove(elem, types, handler, selector, mappedTypes) {\n\n\t\t\t\tvar j,\n\t\t\t\t origCount,\n\t\t\t\t tmp,\n\t\t\t\t events,\n\t\t\t\t t,\n\t\t\t\t handleObj,\n\t\t\t\t special,\n\t\t\t\t handlers,\n\t\t\t\t type,\n\t\t\t\t namespaces,\n\t\t\t\t origType,\n\t\t\t\t elemData = dataPriv.hasData(elem) && dataPriv.get(elem);\n\n\t\t\t\tif (!elemData || !(events = elemData.events)) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Once for each type.namespace in types; type may be omitted\n\t\t\t\ttypes = (types || \"\").match(rnothtmlwhite) || [\"\"];\n\t\t\t\tt = types.length;\n\t\t\t\twhile (t--) {\n\t\t\t\t\ttmp = rtypenamespace.exec(types[t]) || [];\n\t\t\t\t\ttype = origType = tmp[1];\n\t\t\t\t\tnamespaces = (tmp[2] || \"\").split(\".\").sort();\n\n\t\t\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\t\t\tif (!type) {\n\t\t\t\t\t\tfor (type in events) {\n\t\t\t\t\t\t\tjQuery.event.remove(elem, type + types[t], handler, selector, true);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\tspecial = jQuery.event.special[type] || {};\n\t\t\t\t\ttype = (selector ? special.delegateType : special.bindType) || type;\n\t\t\t\t\thandlers = events[type] || [];\n\t\t\t\t\ttmp = tmp[2] && new RegExp(\"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\");\n\n\t\t\t\t\t// Remove matching events\n\t\t\t\t\torigCount = j = handlers.length;\n\t\t\t\t\twhile (j--) {\n\t\t\t\t\t\thandleObj = handlers[j];\n\n\t\t\t\t\t\tif ((mappedTypes || origType === handleObj.origType) && (!handler || handler.guid === handleObj.guid) && (!tmp || tmp.test(handleObj.namespace)) && (!selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector)) {\n\t\t\t\t\t\t\thandlers.splice(j, 1);\n\n\t\t\t\t\t\t\tif (handleObj.selector) {\n\t\t\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (special.remove) {\n\t\t\t\t\t\t\t\tspecial.remove.call(elem, handleObj);\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// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\t\t\tif (origCount && !handlers.length) {\n\t\t\t\t\t\tif (!special.teardown || special.teardown.call(elem, namespaces, elemData.handle) === false) {\n\n\t\t\t\t\t\t\tjQuery.removeEvent(elem, type, elemData.handle);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdelete events[type];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Remove data and the expando if it's no longer used\n\t\t\t\tif (jQuery.isEmptyObject(events)) {\n\t\t\t\t\tdataPriv.remove(elem, \"handle events\");\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tdispatch: function dispatch(nativeEvent) {\n\n\t\t\t\tvar i,\n\t\t\t\t j,\n\t\t\t\t ret,\n\t\t\t\t matched,\n\t\t\t\t handleObj,\n\t\t\t\t handlerQueue,\n\t\t\t\t args = new Array(arguments.length),\n\n\n\t\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\t\tevent = jQuery.event.fix(nativeEvent),\n\t\t\t\t handlers = (dataPriv.get(this, \"events\") || Object.create(null))[event.type] || [],\n\t\t\t\t special = jQuery.event.special[event.type] || {};\n\n\t\t\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\t\t\targs[0] = event;\n\n\t\t\t\tfor (i = 1; i < arguments.length; i++) {\n\t\t\t\t\targs[i] = arguments[i];\n\t\t\t\t}\n\n\t\t\t\tevent.delegateTarget = this;\n\n\t\t\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\t\t\tif (special.preDispatch && special.preDispatch.call(this, event) === false) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Determine handlers\n\t\t\t\thandlerQueue = jQuery.event.handlers.call(this, event, handlers);\n\n\t\t\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\t\t\ti = 0;\n\t\t\t\twhile ((matched = handlerQueue[i++]) && !event.isPropagationStopped()) {\n\t\t\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ((handleObj = matched.handlers[j++]) && !event.isImmediatePropagationStopped()) {\n\n\t\t\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\t\t\tif (!event.rnamespace || handleObj.namespace === false || event.rnamespace.test(handleObj.namespace)) {\n\n\t\t\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\t\t\tret = ((jQuery.event.special[handleObj.origType] || {}).handle || handleObj.handler).apply(matched.elem, args);\n\n\t\t\t\t\t\t\tif (ret !== undefined) {\n\t\t\t\t\t\t\t\tif ((event.result = ret) === false) {\n\t\t\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\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// Call the postDispatch hook for the mapped type\n\t\t\t\tif (special.postDispatch) {\n\t\t\t\t\tspecial.postDispatch.call(this, event);\n\t\t\t\t}\n\n\t\t\t\treturn event.result;\n\t\t\t},\n\n\t\t\thandlers: function handlers(event, _handlers) {\n\t\t\t\tvar i,\n\t\t\t\t handleObj,\n\t\t\t\t sel,\n\t\t\t\t matchedHandlers,\n\t\t\t\t matchedSelectors,\n\t\t\t\t handlerQueue = [],\n\t\t\t\t delegateCount = _handlers.delegateCount,\n\t\t\t\t cur = event.target;\n\n\t\t\t\t// Find delegate handlers\n\t\t\t\tif (delegateCount &&\n\n\t\t\t\t// Support: IE <=9\n\t\t\t\t// Black-hole SVG instance trees (trac-13180)\n\t\t\t\tcur.nodeType &&\n\n\t\t\t\t// Support: Firefox <=42\n\t\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t\t// Support: IE 11 only\n\t\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t\t!(event.type === \"click\" && event.button >= 1)) {\n\n\t\t\t\t\tfor (; cur !== this; cur = cur.parentNode || this) {\n\n\t\t\t\t\t\t// Don't check non-elements (trac-13208)\n\t\t\t\t\t\t// Don't process clicks on disabled elements (trac-6911, trac-8165, trac-11382, trac-11764)\n\t\t\t\t\t\tif (cur.nodeType === 1 && !(event.type === \"click\" && cur.disabled === true)) {\n\t\t\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\t\t\tfor (i = 0; i < delegateCount; i++) {\n\t\t\t\t\t\t\t\thandleObj = _handlers[i];\n\n\t\t\t\t\t\t\t\t// Don't conflict with Object.prototype properties (trac-13203)\n\t\t\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\t\t\tif (matchedSelectors[sel] === undefined) {\n\t\t\t\t\t\t\t\t\tmatchedSelectors[sel] = handleObj.needsContext ? jQuery(sel, this).index(cur) > -1 : jQuery.find(sel, this, null, [cur]).length;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (matchedSelectors[sel]) {\n\t\t\t\t\t\t\t\t\tmatchedHandlers.push(handleObj);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (matchedHandlers.length) {\n\t\t\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matchedHandlers });\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// Add the remaining (directly-bound) handlers\n\t\t\t\tcur = this;\n\t\t\t\tif (delegateCount < _handlers.length) {\n\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: _handlers.slice(delegateCount) });\n\t\t\t\t}\n\n\t\t\t\treturn handlerQueue;\n\t\t\t},\n\n\t\t\taddProp: function addProp(name, hook) {\n\t\t\t\tObject.defineProperty(jQuery.Event.prototype, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\n\t\t\t\t\tget: isFunction(hook) ? function () {\n\t\t\t\t\t\tif (this.originalEvent) {\n\t\t\t\t\t\t\treturn hook(this.originalEvent);\n\t\t\t\t\t\t}\n\t\t\t\t\t} : function () {\n\t\t\t\t\t\tif (this.originalEvent) {\n\t\t\t\t\t\t\treturn this.originalEvent[name];\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\n\t\t\t\t\tset: function set(value) {\n\t\t\t\t\t\tObject.defineProperty(this, name, {\n\t\t\t\t\t\t\tenumerable: true,\n\t\t\t\t\t\t\tconfigurable: true,\n\t\t\t\t\t\t\twritable: true,\n\t\t\t\t\t\t\tvalue: value\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tfix: function fix(originalEvent) {\n\t\t\t\treturn originalEvent[jQuery.expando] ? originalEvent : new jQuery.Event(originalEvent);\n\t\t\t},\n\n\t\t\tspecial: {\n\t\t\t\tload: {\n\n\t\t\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\t\t\tnoBubble: true\n\t\t\t\t},\n\t\t\t\tclick: {\n\n\t\t\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\t\t\tsetup: function setup(data) {\n\n\t\t\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\t\t\tvar el = this || data;\n\n\t\t\t\t\t\t// Claim the first handler\n\t\t\t\t\t\tif (rcheckableType.test(el.type) && el.click && nodeName(el, \"input\")) {\n\n\t\t\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\t\t\tleverageNative(el, \"click\", true);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t},\n\t\t\t\t\ttrigger: function trigger(data) {\n\n\t\t\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\t\t\tvar el = this || data;\n\n\t\t\t\t\t\t// Force setup before triggering a click\n\t\t\t\t\t\tif (rcheckableType.test(el.type) && el.click && nodeName(el, \"input\")) {\n\n\t\t\t\t\t\t\tleverageNative(el, \"click\");\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t},\n\n\t\t\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t\t\t_default: function _default(event) {\n\t\t\t\t\t\tvar target = event.target;\n\t\t\t\t\t\treturn rcheckableType.test(target.type) && target.click && nodeName(target, \"input\") && dataPriv.get(target, \"click\") || nodeName(target, \"a\");\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tbeforeunload: {\n\t\t\t\t\tpostDispatch: function postDispatch(event) {\n\n\t\t\t\t\t\t// Support: Firefox 20+\n\t\t\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\t\t\tif (event.result !== undefined && event.originalEvent) {\n\t\t\t\t\t\t\tevent.originalEvent.returnValue = event.result;\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// Ensure the presence of an event listener that handles manually-triggered\n\t\t// synthetic events by interrupting progress until reinvoked in response to\n\t\t// *native* events that it fires directly, ensuring that state changes have\n\t\t// already occurred before other listeners are invoked.\n\t\tfunction leverageNative(el, type, isSetup) {\n\n\t\t\t// Missing `isSetup` indicates a trigger call, which must force setup through jQuery.event.add\n\t\t\tif (!isSetup) {\n\t\t\t\tif (dataPriv.get(el, type) === undefined) {\n\t\t\t\t\tjQuery.event.add(el, type, returnTrue);\n\t\t\t\t}\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Register the controller as a special universal handler for all event namespaces\n\t\t\tdataPriv.set(el, type, false);\n\t\t\tjQuery.event.add(el, type, {\n\t\t\t\tnamespace: false,\n\t\t\t\thandler: function handler(event) {\n\t\t\t\t\tvar result,\n\t\t\t\t\t saved = dataPriv.get(this, type);\n\n\t\t\t\t\tif (event.isTrigger & 1 && this[type]) {\n\n\t\t\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t\t\tif (!saved) {\n\n\t\t\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\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\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\t\t\tsaved = _slice.call(arguments);\n\t\t\t\t\t\t\tdataPriv.set(this, type, saved);\n\n\t\t\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t\t\tthis[type]();\n\t\t\t\t\t\t\tresult = dataPriv.get(this, type);\n\t\t\t\t\t\t\tdataPriv.set(this, type, false);\n\n\t\t\t\t\t\t\tif (saved !== result) {\n\n\t\t\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\t\t\tevent.preventDefault();\n\n\t\t\t\t\t\t\t\treturn result;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering\n\t\t\t\t\t\t\t// the native event and prevent that from happening again here.\n\t\t\t\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t\t\t\t// less bad than duplication.\n\t\t\t\t\t\t} else if ((jQuery.event.special[type] || {}).delegateType) {\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t\t\t} else if (saved) {\n\n\t\t\t\t\t\t// ...and capture the result\n\t\t\t\t\t\tdataPriv.set(this, type, jQuery.event.trigger(saved[0], saved.slice(1), this));\n\n\t\t\t\t\t\t// Abort handling of the native event by all jQuery handlers while allowing\n\t\t\t\t\t\t// native handlers on the same element to run. On target, this is achieved\n\t\t\t\t\t\t// by stopping immediate propagation just on the jQuery event. However,\n\t\t\t\t\t\t// the native event is re-wrapped by a jQuery one on each level of the\n\t\t\t\t\t\t// propagation so the only way to stop it for jQuery is to stop it for\n\t\t\t\t\t\t// everyone via native `stopPropagation()`. This is not a problem for\n\t\t\t\t\t\t// focus/blur which don't bubble, but it does also stop click on checkboxes\n\t\t\t\t\t\t// and radios. We accept this limitation.\n\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\tevent.isImmediatePropagationStopped = returnTrue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tjQuery.removeEvent = function (elem, type, handle) {\n\n\t\t\t// This \"if\" is needed for plain objects\n\t\t\tif (elem.removeEventListener) {\n\t\t\t\telem.removeEventListener(type, handle);\n\t\t\t}\n\t\t};\n\n\t\tjQuery.Event = function (src, props) {\n\n\t\t\t// Allow instantiation without the 'new' keyword\n\t\t\tif (!(this instanceof jQuery.Event)) {\n\t\t\t\treturn new jQuery.Event(src, props);\n\t\t\t}\n\n\t\t\t// Event object\n\t\t\tif (src && src.type) {\n\t\t\t\tthis.originalEvent = src;\n\t\t\t\tthis.type = src.type;\n\n\t\t\t\t// Events bubbling up the document may have been marked as prevented\n\t\t\t\t// by a handler lower down the tree; reflect the correct value.\n\t\t\t\tthis.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ? returnTrue : returnFalse;\n\n\t\t\t\t// Create target properties\n\t\t\t\t// Support: Safari <=6 - 7 only\n\t\t\t\t// Target should not be a text node (trac-504, trac-13143)\n\t\t\t\tthis.target = src.target && src.target.nodeType === 3 ? src.target.parentNode : src.target;\n\n\t\t\t\tthis.currentTarget = src.currentTarget;\n\t\t\t\tthis.relatedTarget = src.relatedTarget;\n\n\t\t\t\t// Event type\n\t\t\t} else {\n\t\t\t\tthis.type = src;\n\t\t\t}\n\n\t\t\t// Put explicitly provided properties onto the event object\n\t\t\tif (props) {\n\t\t\t\tjQuery.extend(this, props);\n\t\t\t}\n\n\t\t\t// Create a timestamp if incoming event doesn't have one\n\t\t\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t\t\t// Mark it as fixed\n\t\t\tthis[jQuery.expando] = true;\n\t\t};\n\n\t\t// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n\t\t// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\n\t\tjQuery.Event.prototype = {\n\t\t\tconstructor: jQuery.Event,\n\t\t\tisDefaultPrevented: returnFalse,\n\t\t\tisPropagationStopped: returnFalse,\n\t\t\tisImmediatePropagationStopped: returnFalse,\n\t\t\tisSimulated: false,\n\n\t\t\tpreventDefault: function preventDefault() {\n\t\t\t\tvar e = this.originalEvent;\n\n\t\t\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\t\t\tif (e && !this.isSimulated) {\n\t\t\t\t\te.preventDefault();\n\t\t\t\t}\n\t\t\t},\n\t\t\tstopPropagation: function stopPropagation() {\n\t\t\t\tvar e = this.originalEvent;\n\n\t\t\t\tthis.isPropagationStopped = returnTrue;\n\n\t\t\t\tif (e && !this.isSimulated) {\n\t\t\t\t\te.stopPropagation();\n\t\t\t\t}\n\t\t\t},\n\t\t\tstopImmediatePropagation: function stopImmediatePropagation() {\n\t\t\t\tvar e = this.originalEvent;\n\n\t\t\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\t\t\tif (e && !this.isSimulated) {\n\t\t\t\t\te.stopImmediatePropagation();\n\t\t\t\t}\n\n\t\t\t\tthis.stopPropagation();\n\t\t\t}\n\t\t};\n\n\t\t// Includes all common event props including KeyEvent and MouseEvent specific props\n\t\tjQuery.each({\n\t\t\taltKey: true,\n\t\t\tbubbles: true,\n\t\t\tcancelable: true,\n\t\t\tchangedTouches: true,\n\t\t\tctrlKey: true,\n\t\t\tdetail: true,\n\t\t\teventPhase: true,\n\t\t\tmetaKey: true,\n\t\t\tpageX: true,\n\t\t\tpageY: true,\n\t\t\tshiftKey: true,\n\t\t\tview: true,\n\t\t\t\"char\": true,\n\t\t\tcode: true,\n\t\t\tcharCode: true,\n\t\t\tkey: true,\n\t\t\tkeyCode: true,\n\t\t\tbutton: true,\n\t\t\tbuttons: true,\n\t\t\tclientX: true,\n\t\t\tclientY: true,\n\t\t\toffsetX: true,\n\t\t\toffsetY: true,\n\t\t\tpointerId: true,\n\t\t\tpointerType: true,\n\t\t\tscreenX: true,\n\t\t\tscreenY: true,\n\t\t\ttargetTouches: true,\n\t\t\ttoElement: true,\n\t\t\ttouches: true,\n\t\t\twhich: true\n\t\t}, jQuery.event.addProp);\n\n\t\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function (type, delegateType) {\n\n\t\t\tfunction focusMappedHandler(nativeEvent) {\n\t\t\t\tif (document.documentMode) {\n\n\t\t\t\t\t// Support: IE 11+\n\t\t\t\t\t// Attach a single focusin/focusout handler on the document while someone wants\n\t\t\t\t\t// focus/blur. This is because the former are synchronous in IE while the latter\n\t\t\t\t\t// are async. In other browsers, all those handlers are invoked synchronously.\n\n\t\t\t\t\t// `handle` from private data would already wrap the event, but we need\n\t\t\t\t\t// to change the `type` here.\n\t\t\t\t\tvar handle = dataPriv.get(this, \"handle\"),\n\t\t\t\t\t event = jQuery.event.fix(nativeEvent);\n\t\t\t\t\tevent.type = nativeEvent.type === \"focusin\" ? \"focus\" : \"blur\";\n\t\t\t\t\tevent.isSimulated = true;\n\n\t\t\t\t\t// First, handle focusin/focusout\n\t\t\t\t\thandle(nativeEvent);\n\n\t\t\t\t\t// ...then, handle focus/blur\n\t\t\t\t\t//\n\t\t\t\t\t// focus/blur don't bubble while focusin/focusout do; simulate the former by only\n\t\t\t\t\t// invoking the handler at the lower level.\n\t\t\t\t\tif (event.target === event.currentTarget) {\n\n\t\t\t\t\t\t// The setup part calls `leverageNative`, which, in turn, calls\n\t\t\t\t\t\t// `jQuery.event.add`, so event handle will already have been set\n\t\t\t\t\t\t// by this point.\n\t\t\t\t\t\thandle(event);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\n\t\t\t\t\t// For non-IE browsers, attach a single capturing handler on the document\n\t\t\t\t\t// while someone wants focusin/focusout.\n\t\t\t\t\tjQuery.event.simulate(delegateType, nativeEvent.target, jQuery.event.fix(nativeEvent));\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tjQuery.event.special[type] = {\n\n\t\t\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\t\t\tsetup: function setup() {\n\n\t\t\t\t\tvar attaches;\n\n\t\t\t\t\t// Claim the first handler\n\t\t\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\t\t\tleverageNative(this, type, true);\n\n\t\t\t\t\tif (document.documentMode) {\n\n\t\t\t\t\t\t// Support: IE 9 - 11+\n\t\t\t\t\t\t// We use the same native handler for focusin & focus (and focusout & blur)\n\t\t\t\t\t\t// so we need to coordinate setup & teardown parts between those events.\n\t\t\t\t\t\t// Use `delegateType` as the key as `type` is already used by `leverageNative`.\n\t\t\t\t\t\tattaches = dataPriv.get(this, delegateType);\n\t\t\t\t\t\tif (!attaches) {\n\t\t\t\t\t\t\tthis.addEventListener(delegateType, focusMappedHandler);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdataPriv.set(this, delegateType, (attaches || 0) + 1);\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\ttrigger: function trigger() {\n\n\t\t\t\t\t// Force setup before trigger\n\t\t\t\t\tleverageNative(this, type);\n\n\t\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\n\t\t\t\tteardown: function teardown() {\n\t\t\t\t\tvar attaches;\n\n\t\t\t\t\tif (document.documentMode) {\n\t\t\t\t\t\tattaches = dataPriv.get(this, delegateType) - 1;\n\t\t\t\t\t\tif (!attaches) {\n\t\t\t\t\t\t\tthis.removeEventListener(delegateType, focusMappedHandler);\n\t\t\t\t\t\t\tdataPriv.remove(this, delegateType);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tdataPriv.set(this, delegateType, attaches);\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Return false to indicate standard teardown should be applied\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\t// Suppress native focus or blur if we're currently inside\n\t\t\t\t// a leveraged native-event stack\n\t\t\t\t_default: function _default(event) {\n\t\t\t\t\treturn dataPriv.get(event.target, type);\n\t\t\t\t},\n\n\t\t\t\tdelegateType: delegateType\n\t\t\t};\n\n\t\t\t// Support: Firefox <=44\n\t\t\t// Firefox doesn't have focus(in | out) events\n\t\t\t// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n\t\t\t//\n\t\t\t// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n\t\t\t// focus(in | out) events fire after focus & blur events,\n\t\t\t// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n\t\t\t// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\n\t\t\t//\n\t\t\t// Support: IE 9 - 11+\n\t\t\t// To preserve relative focusin/focus & focusout/blur event order guaranteed on the 3.x branch,\n\t\t\t// attach a single handler for both events in IE.\n\t\t\tjQuery.event.special[delegateType] = {\n\t\t\t\tsetup: function setup() {\n\n\t\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\t dataHolder = document.documentMode ? this : doc,\n\t\t\t\t\t attaches = dataPriv.get(dataHolder, delegateType);\n\n\t\t\t\t\t// Support: IE 9 - 11+\n\t\t\t\t\t// We use the same native handler for focusin & focus (and focusout & blur)\n\t\t\t\t\t// so we need to coordinate setup & teardown parts between those events.\n\t\t\t\t\t// Use `delegateType` as the key as `type` is already used by `leverageNative`.\n\t\t\t\t\tif (!attaches) {\n\t\t\t\t\t\tif (document.documentMode) {\n\t\t\t\t\t\t\tthis.addEventListener(delegateType, focusMappedHandler);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tdoc.addEventListener(type, focusMappedHandler, true);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set(dataHolder, delegateType, (attaches || 0) + 1);\n\t\t\t\t},\n\t\t\t\tteardown: function teardown() {\n\t\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\t dataHolder = document.documentMode ? this : doc,\n\t\t\t\t\t attaches = dataPriv.get(dataHolder, delegateType) - 1;\n\n\t\t\t\t\tif (!attaches) {\n\t\t\t\t\t\tif (document.documentMode) {\n\t\t\t\t\t\t\tthis.removeEventListener(delegateType, focusMappedHandler);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tdoc.removeEventListener(type, focusMappedHandler, true);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdataPriv.remove(dataHolder, delegateType);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdataPriv.set(dataHolder, delegateType, attaches);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t});\n\n\t\t// Create mouseenter/leave events using mouseover/out and event-time checks\n\t\t// so that event delegation works in jQuery.\n\t\t// Do the same for pointerenter/pointerleave and pointerover/pointerout\n\t\t//\n\t\t// Support: Safari 7 only\n\t\t// Safari sends mouseenter too often; see:\n\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n\t\t// for the description of the bug (it existed in older Chrome versions as well).\n\t\tjQuery.each({\n\t\t\tmouseenter: \"mouseover\",\n\t\t\tmouseleave: \"mouseout\",\n\t\t\tpointerenter: \"pointerover\",\n\t\t\tpointerleave: \"pointerout\"\n\t\t}, function (orig, fix) {\n\t\t\tjQuery.event.special[orig] = {\n\t\t\t\tdelegateType: fix,\n\t\t\t\tbindType: fix,\n\n\t\t\t\thandle: function handle(event) {\n\t\t\t\t\tvar ret,\n\t\t\t\t\t target = this,\n\t\t\t\t\t related = event.relatedTarget,\n\t\t\t\t\t handleObj = event.handleObj;\n\n\t\t\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\t\t\tif (!related || related !== target && !jQuery.contains(target, related)) {\n\t\t\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\t\t\tret = handleObj.handler.apply(this, arguments);\n\t\t\t\t\t\tevent.type = fix;\n\t\t\t\t\t}\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\t\t\t};\n\t\t});\n\n\t\tjQuery.fn.extend({\n\n\t\t\ton: function on(types, selector, data, fn) {\n\t\t\t\treturn _on(this, types, selector, data, fn);\n\t\t\t},\n\t\t\tone: function one(types, selector, data, fn) {\n\t\t\t\treturn _on(this, types, selector, data, fn, 1);\n\t\t\t},\n\t\t\toff: function off(types, selector, fn) {\n\t\t\t\tvar handleObj, type;\n\t\t\t\tif (types && types.preventDefault && types.handleObj) {\n\n\t\t\t\t\t// ( event ) dispatched jQuery.Event\n\t\t\t\t\thandleObj = types.handleObj;\n\t\t\t\t\tjQuery(types.delegateTarget).off(handleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler);\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tif ((typeof types === \"undefined\" ? \"undefined\" : _typeof(types)) === \"object\") {\n\n\t\t\t\t\t// ( types-object [, selector] )\n\t\t\t\t\tfor (type in types) {\n\t\t\t\t\t\tthis.off(type, selector, types[type]);\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tif (selector === false || typeof selector === \"function\") {\n\n\t\t\t\t\t// ( types [, fn] )\n\t\t\t\t\tfn = selector;\n\t\t\t\t\tselector = undefined;\n\t\t\t\t}\n\t\t\t\tif (fn === false) {\n\t\t\t\t\tfn = returnFalse;\n\t\t\t\t}\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tjQuery.event.remove(this, types, fn, selector);\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tvar\n\n\t\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\t\trnoInnerhtml = /\\s*$/g;\n\n\t\t// Prefer a tbody over its parent table for containing new rows\n\t\tfunction manipulationTarget(elem, content) {\n\t\t\tif (nodeName(elem, \"table\") && nodeName(content.nodeType !== 11 ? content : content.firstChild, \"tr\")) {\n\n\t\t\t\treturn jQuery(elem).children(\"tbody\")[0] || elem;\n\t\t\t}\n\n\t\t\treturn elem;\n\t\t}\n\n\t\t// Replace/restore the type attribute of script elements for safe DOM manipulation\n\t\tfunction disableScript(elem) {\n\t\t\telem.type = (elem.getAttribute(\"type\") !== null) + \"/\" + elem.type;\n\t\t\treturn elem;\n\t\t}\n\t\tfunction restoreScript(elem) {\n\t\t\tif ((elem.type || \"\").slice(0, 5) === \"true/\") {\n\t\t\t\telem.type = elem.type.slice(5);\n\t\t\t} else {\n\t\t\t\telem.removeAttribute(\"type\");\n\t\t\t}\n\n\t\t\treturn elem;\n\t\t}\n\n\t\tfunction cloneCopyEvent(src, dest) {\n\t\t\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\t\t\tif (dest.nodeType !== 1) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// 1. Copy private data: events, handlers, etc.\n\t\t\tif (dataPriv.hasData(src)) {\n\t\t\t\tpdataOld = dataPriv.get(src);\n\t\t\t\tevents = pdataOld.events;\n\n\t\t\t\tif (events) {\n\t\t\t\t\tdataPriv.remove(dest, \"handle events\");\n\n\t\t\t\t\tfor (type in events) {\n\t\t\t\t\t\tfor (i = 0, l = events[type].length; i < l; i++) {\n\t\t\t\t\t\t\tjQuery.event.add(dest, type, events[type][i]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// 2. Copy user data\n\t\t\tif (dataUser.hasData(src)) {\n\t\t\t\tudataOld = dataUser.access(src);\n\t\t\t\tudataCur = jQuery.extend({}, udataOld);\n\n\t\t\t\tdataUser.set(dest, udataCur);\n\t\t\t}\n\t\t}\n\n\t\t// Fix IE bugs, see support tests\n\t\tfunction fixInput(src, dest) {\n\t\t\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t\t\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\t\t\tif (nodeName === \"input\" && rcheckableType.test(src.type)) {\n\t\t\t\tdest.checked = src.checked;\n\n\t\t\t\t// Fails to return the selected option to the default selected state when cloning options\n\t\t\t} else if (nodeName === \"input\" || nodeName === \"textarea\") {\n\t\t\t\tdest.defaultValue = src.defaultValue;\n\t\t\t}\n\t\t}\n\n\t\tfunction domManip(collection, args, callback, ignored) {\n\n\t\t\t// Flatten any nested arrays\n\t\t\targs = flat(args);\n\n\t\t\tvar fragment,\n\t\t\t first,\n\t\t\t scripts,\n\t\t\t hasScripts,\n\t\t\t node,\n\t\t\t doc,\n\t\t\t i = 0,\n\t\t\t l = collection.length,\n\t\t\t iNoClone = l - 1,\n\t\t\t value = args[0],\n\t\t\t valueIsFunction = isFunction(value);\n\n\t\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\t\tif (valueIsFunction || l > 1 && typeof value === \"string\" && !support.checkClone && rchecked.test(value)) {\n\t\t\t\treturn collection.each(function (index) {\n\t\t\t\t\tvar self = collection.eq(index);\n\t\t\t\t\tif (valueIsFunction) {\n\t\t\t\t\t\targs[0] = value.call(this, index, self.html());\n\t\t\t\t\t}\n\t\t\t\t\tdomManip(self, args, callback, ignored);\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif (l) {\n\t\t\t\tfragment = buildFragment(args, collection[0].ownerDocument, false, collection, ignored);\n\t\t\t\tfirst = fragment.firstChild;\n\n\t\t\t\tif (fragment.childNodes.length === 1) {\n\t\t\t\t\tfragment = first;\n\t\t\t\t}\n\n\t\t\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\t\t\tif (first || ignored) {\n\t\t\t\t\tscripts = jQuery.map(getAll(fragment, \"script\"), disableScript);\n\t\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t\t// Use the original fragment for the last item\n\t\t\t\t\t// instead of the first because it can end up\n\t\t\t\t\t// being emptied incorrectly in certain situations (trac-8070).\n\t\t\t\t\tfor (; i < l; i++) {\n\t\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\t\tif (i !== iNoClone) {\n\t\t\t\t\t\t\tnode = jQuery.clone(node, true, true);\n\n\t\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\t\tif (hasScripts) {\n\n\t\t\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\t\t\tjQuery.merge(scripts, getAll(node, \"script\"));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tcallback.call(collection[i], node, i);\n\t\t\t\t\t}\n\n\t\t\t\t\tif (hasScripts) {\n\t\t\t\t\t\tdoc = scripts[scripts.length - 1].ownerDocument;\n\n\t\t\t\t\t\t// Re-enable scripts\n\t\t\t\t\t\tjQuery.map(scripts, restoreScript);\n\n\t\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\t\tfor (i = 0; i < hasScripts; i++) {\n\t\t\t\t\t\t\tnode = scripts[i];\n\t\t\t\t\t\t\tif (rscriptType.test(node.type || \"\") && !dataPriv.access(node, \"globalEval\") && jQuery.contains(doc, node)) {\n\n\t\t\t\t\t\t\t\tif (node.src && (node.type || \"\").toLowerCase() !== \"module\") {\n\n\t\t\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\t\t\tif (jQuery._evalUrl && !node.noModule) {\n\t\t\t\t\t\t\t\t\t\tjQuery._evalUrl(node.src, {\n\t\t\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute(\"nonce\")\n\t\t\t\t\t\t\t\t\t\t}, doc);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} else {\n\n\t\t\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\t\t// needed as in XML documents they're already not visible when\n\t\t\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\t\t// meaning but we're preserving that logic for backwards compatibility.\n\t\t\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\t\t\tDOMEval(node.textContent.replace(rcleanScript, \"\"), node, doc);\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\t\t\t}\n\n\t\t\treturn collection;\n\t\t}\n\n\t\tfunction _remove(elem, selector, keepData) {\n\t\t\tvar node,\n\t\t\t nodes = selector ? jQuery.filter(selector, elem) : elem,\n\t\t\t i = 0;\n\n\t\t\tfor (; (node = nodes[i]) != null; i++) {\n\t\t\t\tif (!keepData && node.nodeType === 1) {\n\t\t\t\t\tjQuery.cleanData(getAll(node));\n\t\t\t\t}\n\n\t\t\t\tif (node.parentNode) {\n\t\t\t\t\tif (keepData && isAttached(node)) {\n\t\t\t\t\t\tsetGlobalEval(getAll(node, \"script\"));\n\t\t\t\t\t}\n\t\t\t\t\tnode.parentNode.removeChild(node);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn elem;\n\t\t}\n\n\t\tjQuery.extend({\n\t\t\thtmlPrefilter: function htmlPrefilter(html) {\n\t\t\t\treturn html;\n\t\t\t},\n\n\t\t\tclone: function clone(elem, dataAndEvents, deepDataAndEvents) {\n\t\t\t\tvar i,\n\t\t\t\t l,\n\t\t\t\t srcElements,\n\t\t\t\t destElements,\n\t\t\t\t clone = elem.cloneNode(true),\n\t\t\t\t inPage = isAttached(elem);\n\n\t\t\t\t// Fix IE cloning issues\n\t\t\t\tif (!support.noCloneChecked && (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem)) {\n\n\t\t\t\t\t// We eschew jQuery#find here for performance reasons:\n\t\t\t\t\t// https://jsperf.com/getall-vs-sizzle/2\n\t\t\t\t\tdestElements = getAll(clone);\n\t\t\t\t\tsrcElements = getAll(elem);\n\n\t\t\t\t\tfor (i = 0, l = srcElements.length; i < l; i++) {\n\t\t\t\t\t\tfixInput(srcElements[i], destElements[i]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Copy the events from the original to the clone\n\t\t\t\tif (dataAndEvents) {\n\t\t\t\t\tif (deepDataAndEvents) {\n\t\t\t\t\t\tsrcElements = srcElements || getAll(elem);\n\t\t\t\t\t\tdestElements = destElements || getAll(clone);\n\n\t\t\t\t\t\tfor (i = 0, l = srcElements.length; i < l; i++) {\n\t\t\t\t\t\t\tcloneCopyEvent(srcElements[i], destElements[i]);\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tcloneCopyEvent(elem, clone);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Preserve script evaluation history\n\t\t\t\tdestElements = getAll(clone, \"script\");\n\t\t\t\tif (destElements.length > 0) {\n\t\t\t\t\tsetGlobalEval(destElements, !inPage && getAll(elem, \"script\"));\n\t\t\t\t}\n\n\t\t\t\t// Return the cloned set\n\t\t\t\treturn clone;\n\t\t\t},\n\n\t\t\tcleanData: function cleanData(elems) {\n\t\t\t\tvar data,\n\t\t\t\t elem,\n\t\t\t\t type,\n\t\t\t\t special = jQuery.event.special,\n\t\t\t\t i = 0;\n\n\t\t\t\tfor (; (elem = elems[i]) !== undefined; i++) {\n\t\t\t\t\tif (acceptData(elem)) {\n\t\t\t\t\t\tif (data = elem[dataPriv.expando]) {\n\t\t\t\t\t\t\tif (data.events) {\n\t\t\t\t\t\t\t\tfor (type in data.events) {\n\t\t\t\t\t\t\t\t\tif (special[type]) {\n\t\t\t\t\t\t\t\t\t\tjQuery.event.remove(elem, type);\n\n\t\t\t\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\t\t} else {\n\t\t\t\t\t\t\t\t\t\tjQuery.removeEvent(elem, type, data.handle);\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\n\t\t\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\t\t\telem[dataPriv.expando] = undefined;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (elem[dataUser.expando]) {\n\n\t\t\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\t\t\telem[dataUser.expando] = undefined;\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\tjQuery.fn.extend({\n\t\t\tdetach: function detach(selector) {\n\t\t\t\treturn _remove(this, selector, true);\n\t\t\t},\n\n\t\t\tremove: function remove(selector) {\n\t\t\t\treturn _remove(this, selector);\n\t\t\t},\n\n\t\t\ttext: function text(value) {\n\t\t\t\treturn access(this, function (value) {\n\t\t\t\t\treturn value === undefined ? jQuery.text(this) : this.empty().each(function () {\n\t\t\t\t\t\tif (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n\t\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}, null, value, arguments.length);\n\t\t\t},\n\n\t\t\tappend: function append() {\n\t\t\t\treturn domManip(this, arguments, function (elem) {\n\t\t\t\t\tif (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n\t\t\t\t\t\tvar target = manipulationTarget(this, elem);\n\t\t\t\t\t\ttarget.appendChild(elem);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tprepend: function prepend() {\n\t\t\t\treturn domManip(this, arguments, function (elem) {\n\t\t\t\t\tif (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n\t\t\t\t\t\tvar target = manipulationTarget(this, elem);\n\t\t\t\t\t\ttarget.insertBefore(elem, target.firstChild);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tbefore: function before() {\n\t\t\t\treturn domManip(this, arguments, function (elem) {\n\t\t\t\t\tif (this.parentNode) {\n\t\t\t\t\t\tthis.parentNode.insertBefore(elem, this);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tafter: function after() {\n\t\t\t\treturn domManip(this, arguments, function (elem) {\n\t\t\t\t\tif (this.parentNode) {\n\t\t\t\t\t\tthis.parentNode.insertBefore(elem, this.nextSibling);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tempty: function empty() {\n\t\t\t\tvar elem,\n\t\t\t\t i = 0;\n\n\t\t\t\tfor (; (elem = this[i]) != null; i++) {\n\t\t\t\t\tif (elem.nodeType === 1) {\n\n\t\t\t\t\t\t// Prevent memory leaks\n\t\t\t\t\t\tjQuery.cleanData(getAll(elem, false));\n\n\t\t\t\t\t\t// Remove any remaining nodes\n\t\t\t\t\t\telem.textContent = \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\tclone: function clone(dataAndEvents, deepDataAndEvents) {\n\t\t\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\t\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\t\t\treturn this.map(function () {\n\t\t\t\t\treturn jQuery.clone(this, dataAndEvents, deepDataAndEvents);\n\t\t\t\t});\n\t\t\t},\n\n\t\t\thtml: function html(value) {\n\t\t\t\treturn access(this, function (value) {\n\t\t\t\t\tvar elem = this[0] || {},\n\t\t\t\t\t i = 0,\n\t\t\t\t\t l = this.length;\n\n\t\t\t\t\tif (value === undefined && elem.nodeType === 1) {\n\t\t\t\t\t\treturn elem.innerHTML;\n\t\t\t\t\t}\n\n\t\t\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\t\t\tif (typeof value === \"string\" && !rnoInnerhtml.test(value) && !wrapMap[(rtagName.exec(value) || [\"\", \"\"])[1].toLowerCase()]) {\n\n\t\t\t\t\t\tvalue = jQuery.htmlPrefilter(value);\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tfor (; i < l; i++) {\n\t\t\t\t\t\t\t\telem = this[i] || {};\n\n\t\t\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\t\t\tif (elem.nodeType === 1) {\n\t\t\t\t\t\t\t\t\tjQuery.cleanData(getAll(elem, false));\n\t\t\t\t\t\t\t\t\telem.innerHTML = value;\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\telem = 0;\n\n\t\t\t\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t\t\t} catch (e) {}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (elem) {\n\t\t\t\t\t\tthis.empty().append(value);\n\t\t\t\t\t}\n\t\t\t\t}, null, value, arguments.length);\n\t\t\t},\n\n\t\t\treplaceWith: function replaceWith() {\n\t\t\t\tvar ignored = [];\n\n\t\t\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\t\t\treturn domManip(this, arguments, function (elem) {\n\t\t\t\t\tvar parent = this.parentNode;\n\n\t\t\t\t\tif (jQuery.inArray(this, ignored) < 0) {\n\t\t\t\t\t\tjQuery.cleanData(getAll(this));\n\t\t\t\t\t\tif (parent) {\n\t\t\t\t\t\t\tparent.replaceChild(elem, this);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Force callback invocation\n\t\t\t\t}, ignored);\n\t\t\t}\n\t\t});\n\n\t\tjQuery.each({\n\t\t\tappendTo: \"append\",\n\t\t\tprependTo: \"prepend\",\n\t\t\tinsertBefore: \"before\",\n\t\t\tinsertAfter: \"after\",\n\t\t\treplaceAll: \"replaceWith\"\n\t\t}, function (name, original) {\n\t\t\tjQuery.fn[name] = function (selector) {\n\t\t\t\tvar elems,\n\t\t\t\t ret = [],\n\t\t\t\t insert = jQuery(selector),\n\t\t\t\t last = insert.length - 1,\n\t\t\t\t i = 0;\n\n\t\t\t\tfor (; i <= last; i++) {\n\t\t\t\t\telems = i === last ? this : this.clone(true);\n\t\t\t\t\tjQuery(insert[i])[original](elems);\n\n\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\tpush.apply(ret, elems.get());\n\t\t\t\t}\n\n\t\t\t\treturn this.pushStack(ret);\n\t\t\t};\n\t\t});\n\t\tvar rnumnonpx = new RegExp(\"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\");\n\n\t\tvar rcustomProp = /^--/;\n\n\t\tvar getStyles = function getStyles(elem) {\n\n\t\t\t// Support: IE <=11 only, Firefox <=30 (trac-15098, trac-14150)\n\t\t\t// IE throws on elements created in popups\n\t\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\t\tif (!view || !view.opener) {\n\t\t\t\tview = window;\n\t\t\t}\n\n\t\t\treturn view.getComputedStyle(elem);\n\t\t};\n\n\t\tvar swap = function swap(elem, options, callback) {\n\t\t\tvar ret,\n\t\t\t name,\n\t\t\t old = {};\n\n\t\t\t// Remember the old values, and insert the new ones\n\t\t\tfor (name in options) {\n\t\t\t\told[name] = elem.style[name];\n\t\t\t\telem.style[name] = options[name];\n\t\t\t}\n\n\t\t\tret = callback.call(elem);\n\n\t\t\t// Revert the old values\n\t\t\tfor (name in options) {\n\t\t\t\telem.style[name] = old[name];\n\t\t\t}\n\n\t\t\treturn ret;\n\t\t};\n\n\t\tvar rboxStyle = new RegExp(cssExpand.join(\"|\"), \"i\");\n\n\t\t(function () {\n\n\t\t\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t\t\t// so they're executed at the same time to save the second computation.\n\t\t\tfunction computeStyleTests() {\n\n\t\t\t\t// This is a singleton, we need to execute it only once\n\t\t\t\tif (!div) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" + \"margin-top:1px;padding:0;border:0\";\n\t\t\t\tdiv.style.cssText = \"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" + \"margin:auto;border:1px;padding:1px;\" + \"width:60%;top:1%\";\n\t\t\t\tdocumentElement.appendChild(container).appendChild(div);\n\n\t\t\t\tvar divStyle = window.getComputedStyle(div);\n\t\t\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\t\t\treliableMarginLeftVal = roundPixelMeasures(divStyle.marginLeft) === 12;\n\n\t\t\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\t\t\tdiv.style.right = \"60%\";\n\t\t\t\tpixelBoxStylesVal = roundPixelMeasures(divStyle.right) === 36;\n\n\t\t\t\t// Support: IE 9 - 11 only\n\t\t\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\t\t\tboxSizingReliableVal = roundPixelMeasures(divStyle.width) === 36;\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t\t\t// Support: Chrome <=64\n\t\t\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\t\t\tdiv.style.position = \"absolute\";\n\t\t\t\tscrollboxSizeVal = roundPixelMeasures(div.offsetWidth / 3) === 12;\n\n\t\t\t\tdocumentElement.removeChild(container);\n\n\t\t\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t\t\t// it will also be a sign that checks already performed\n\t\t\t\tdiv = null;\n\t\t\t}\n\n\t\t\tfunction roundPixelMeasures(measure) {\n\t\t\t\treturn Math.round(parseFloat(measure));\n\t\t\t}\n\n\t\t\tvar pixelPositionVal,\n\t\t\t boxSizingReliableVal,\n\t\t\t scrollboxSizeVal,\n\t\t\t pixelBoxStylesVal,\n\t\t\t reliableTrDimensionsVal,\n\t\t\t reliableMarginLeftVal,\n\t\t\t container = document.createElement(\"div\"),\n\t\t\t div = document.createElement(\"div\");\n\n\t\t\t// Finish early in limited (non-browser) environments\n\t\t\tif (!div.style) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Support: IE <=9 - 11 only\n\t\t\t// Style of cloned element affects source element cloned (trac-8908)\n\t\t\tdiv.style.backgroundClip = \"content-box\";\n\t\t\tdiv.cloneNode(true).style.backgroundClip = \"\";\n\t\t\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t\t\tjQuery.extend(support, {\n\t\t\t\tboxSizingReliable: function boxSizingReliable() {\n\t\t\t\t\tcomputeStyleTests();\n\t\t\t\t\treturn boxSizingReliableVal;\n\t\t\t\t},\n\t\t\t\tpixelBoxStyles: function pixelBoxStyles() {\n\t\t\t\t\tcomputeStyleTests();\n\t\t\t\t\treturn pixelBoxStylesVal;\n\t\t\t\t},\n\t\t\t\tpixelPosition: function pixelPosition() {\n\t\t\t\t\tcomputeStyleTests();\n\t\t\t\t\treturn pixelPositionVal;\n\t\t\t\t},\n\t\t\t\treliableMarginLeft: function reliableMarginLeft() {\n\t\t\t\t\tcomputeStyleTests();\n\t\t\t\t\treturn reliableMarginLeftVal;\n\t\t\t\t},\n\t\t\t\tscrollboxSize: function scrollboxSize() {\n\t\t\t\t\tcomputeStyleTests();\n\t\t\t\t\treturn scrollboxSizeVal;\n\t\t\t\t},\n\n\t\t\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t\t\t// set in CSS while `offset*` properties report correct values.\n\t\t\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t\t\t// some versions of this test; make sure not to make it pass there!\n\t\t\t\t//\n\t\t\t\t// Support: Firefox 70+\n\t\t\t\t// Only Firefox includes border widths\n\t\t\t\t// in computed dimensions. (gh-4529)\n\t\t\t\treliableTrDimensions: function reliableTrDimensions() {\n\t\t\t\t\tvar table, tr, trChild, trStyle;\n\t\t\t\t\tif (reliableTrDimensionsVal == null) {\n\t\t\t\t\t\ttable = document.createElement(\"table\");\n\t\t\t\t\t\ttr = document.createElement(\"tr\");\n\t\t\t\t\t\ttrChild = document.createElement(\"div\");\n\n\t\t\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px;border-collapse:separate\";\n\t\t\t\t\t\ttr.style.cssText = \"box-sizing:content-box;border:1px solid\";\n\n\t\t\t\t\t\t// Support: Chrome 86+\n\t\t\t\t\t\t// Height set through cssText does not get applied.\n\t\t\t\t\t\t// Computed height then comes back as 0.\n\t\t\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\t\t\t// Support: Android 8 Chrome 86+\n\t\t\t\t\t\t// In our bodyBackground.html iframe,\n\t\t\t\t\t\t// display for all div elements is set to \"inline\",\n\t\t\t\t\t\t// which causes a problem only in Android 8 Chrome 86.\n\t\t\t\t\t\t// Ensuring the div is `display: block`\n\t\t\t\t\t\t// gets around this issue.\n\t\t\t\t\t\ttrChild.style.display = \"block\";\n\n\t\t\t\t\t\tdocumentElement.appendChild(table).appendChild(tr).appendChild(trChild);\n\n\t\t\t\t\t\ttrStyle = window.getComputedStyle(tr);\n\t\t\t\t\t\treliableTrDimensionsVal = parseInt(trStyle.height, 10) + parseInt(trStyle.borderTopWidth, 10) + parseInt(trStyle.borderBottomWidth, 10) === tr.offsetHeight;\n\n\t\t\t\t\t\tdocumentElement.removeChild(table);\n\t\t\t\t\t}\n\t\t\t\t\treturn reliableTrDimensionsVal;\n\t\t\t\t}\n\t\t\t});\n\t\t})();\n\n\t\tfunction curCSS(elem, name, computed) {\n\t\t\tvar width,\n\t\t\t minWidth,\n\t\t\t maxWidth,\n\t\t\t ret,\n\t\t\t isCustomProp = rcustomProp.test(name),\n\n\n\t\t\t// Support: Firefox 51+\n\t\t\t// Retrieving style before computed somehow\n\t\t\t// fixes an issue with getting wrong values\n\t\t\t// on detached elements\n\t\t\tstyle = elem.style;\n\n\t\t\tcomputed = computed || getStyles(elem);\n\n\t\t\t// getPropertyValue is needed for:\n\t\t\t// .css('filter') (IE 9 only, trac-12537)\n\t\t\t// .css('--customProperty) (gh-3144)\n\t\t\tif (computed) {\n\n\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t// IE only supports `\"float\"` in `getPropertyValue`; in computed styles\n\t\t\t\t// it's only available as `\"cssFloat\"`. We no longer modify properties\n\t\t\t\t// sent to `.css()` apart from camelCasing, so we need to check both.\n\t\t\t\t// Normally, this would create difference in behavior: if\n\t\t\t\t// `getPropertyValue` returns an empty string, the value returned\n\t\t\t\t// by `.css()` would be `undefined`. This is usually the case for\n\t\t\t\t// disconnected elements. However, in IE even disconnected elements\n\t\t\t\t// with no styles return `\"none\"` for `getPropertyValue( \"float\" )`\n\t\t\t\tret = computed.getPropertyValue(name) || computed[name];\n\n\t\t\t\tif (isCustomProp && ret) {\n\n\t\t\t\t\t// Support: Firefox 105+, Chrome <=105+\n\t\t\t\t\t// Spec requires trimming whitespace for custom properties (gh-4926).\n\t\t\t\t\t// Firefox only trims leading whitespace. Chrome just collapses\n\t\t\t\t\t// both leading & trailing whitespace to a single space.\n\t\t\t\t\t//\n\t\t\t\t\t// Fall back to `undefined` if empty string returned.\n\t\t\t\t\t// This collapses a missing definition with property defined\n\t\t\t\t\t// and set to an empty string but there's no standard API\n\t\t\t\t\t// allowing us to differentiate them without a performance penalty\n\t\t\t\t\t// and returning `undefined` aligns with older jQuery.\n\t\t\t\t\t//\n\t\t\t\t\t// rtrimCSS treats U+000D CARRIAGE RETURN and U+000C FORM FEED\n\t\t\t\t\t// as whitespace while CSS does not, but this is not a problem\n\t\t\t\t\t// because CSS preprocessing replaces them with U+000A LINE FEED\n\t\t\t\t\t// (which *is* CSS whitespace)\n\t\t\t\t\t// https://www.w3.org/TR/css-syntax-3/#input-preprocessing\n\t\t\t\t\tret = ret.replace(rtrimCSS, \"$1\") || undefined;\n\t\t\t\t}\n\n\t\t\t\tif (ret === \"\" && !isAttached(elem)) {\n\t\t\t\t\tret = jQuery.style(elem, name);\n\t\t\t\t}\n\n\t\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t\t// Android Browser returns percentage for some values,\n\t\t\t\t// but width seems to be reliably pixels.\n\t\t\t\t// This is against the CSSOM draft spec:\n\t\t\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\t\t\tif (!support.pixelBoxStyles() && rnumnonpx.test(ret) && rboxStyle.test(name)) {\n\n\t\t\t\t\t// Remember the original values\n\t\t\t\t\twidth = style.width;\n\t\t\t\t\tminWidth = style.minWidth;\n\t\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\t\tret = computed.width;\n\n\t\t\t\t\t// Revert the changed values\n\t\t\t\t\tstyle.width = width;\n\t\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn ret !== undefined ?\n\n\t\t\t// Support: IE <=9 - 11 only\n\t\t\t// IE returns zIndex value as an integer.\n\t\t\tret + \"\" : ret;\n\t\t}\n\n\t\tfunction addGetHookIf(conditionFn, hookFn) {\n\n\t\t\t// Define the hook, we'll check on the first run if it's really needed.\n\t\t\treturn {\n\t\t\t\tget: function get() {\n\t\t\t\t\tif (conditionFn()) {\n\n\t\t\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t\t\t// to missing dependency), remove it.\n\t\t\t\t\t\tdelete this.get;\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\t\t\treturn (this.get = hookFn).apply(this, arguments);\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\n\t\tvar cssPrefixes = [\"Webkit\", \"Moz\", \"ms\"],\n\t\t emptyStyle = document.createElement(\"div\").style,\n\t\t vendorProps = {};\n\n\t\t// Return a vendor-prefixed property or undefined\n\t\tfunction vendorPropName(name) {\n\n\t\t\t// Check for vendor prefixed names\n\t\t\tvar capName = name[0].toUpperCase() + name.slice(1),\n\t\t\t i = cssPrefixes.length;\n\n\t\t\twhile (i--) {\n\t\t\t\tname = cssPrefixes[i] + capName;\n\t\t\t\tif (name in emptyStyle) {\n\t\t\t\t\treturn name;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\n\t\tfunction finalPropName(name) {\n\t\t\tvar final = jQuery.cssProps[name] || vendorProps[name];\n\n\t\t\tif (final) {\n\t\t\t\treturn final;\n\t\t\t}\n\t\t\tif (name in emptyStyle) {\n\t\t\t\treturn name;\n\t\t\t}\n\t\t\treturn vendorProps[name] = vendorPropName(name) || name;\n\t\t}\n\n\t\tvar\n\n\t\t// Swappable if display is none or starts with table\n\t\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\t\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\t\t cssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\t\t cssNormalTransform = {\n\t\t\tletterSpacing: \"0\",\n\t\t\tfontWeight: \"400\"\n\t\t};\n\n\t\tfunction setPositiveNumber(_elem, value, subtract) {\n\n\t\t\t// Any relative (+/-) values have already been\n\t\t\t// normalized at this point\n\t\t\tvar matches = rcssNum.exec(value);\n\t\t\treturn matches ?\n\n\t\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\t\tMath.max(0, matches[2] - (subtract || 0)) + (matches[3] || \"px\") : value;\n\t\t}\n\n\t\tfunction boxModelAdjustment(elem, dimension, box, isBorderBox, styles, computedVal) {\n\t\t\tvar i = dimension === \"width\" ? 1 : 0,\n\t\t\t extra = 0,\n\t\t\t delta = 0,\n\t\t\t marginDelta = 0;\n\n\t\t\t// Adjustment may not be necessary\n\t\t\tif (box === (isBorderBox ? \"border\" : \"content\")) {\n\t\t\t\treturn 0;\n\t\t\t}\n\n\t\t\tfor (; i < 4; i += 2) {\n\n\t\t\t\t// Both box models exclude margin\n\t\t\t\t// Count margin delta separately to only add it after scroll gutter adjustment.\n\t\t\t\t// This is needed to make negative margins work with `outerHeight( true )` (gh-3982).\n\t\t\t\tif (box === \"margin\") {\n\t\t\t\t\tmarginDelta += jQuery.css(elem, box + cssExpand[i], true, styles);\n\t\t\t\t}\n\n\t\t\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\t\t\tif (!isBorderBox) {\n\n\t\t\t\t\t// Add padding\n\t\t\t\t\tdelta += jQuery.css(elem, \"padding\" + cssExpand[i], true, styles);\n\n\t\t\t\t\t// For \"border\" or \"margin\", add border\n\t\t\t\t\tif (box !== \"padding\") {\n\t\t\t\t\t\tdelta += jQuery.css(elem, \"border\" + cssExpand[i] + \"Width\", true, styles);\n\n\t\t\t\t\t\t// But still keep track of it otherwise\n\t\t\t\t\t} else {\n\t\t\t\t\t\textra += jQuery.css(elem, \"border\" + cssExpand[i] + \"Width\", true, styles);\n\t\t\t\t\t}\n\n\t\t\t\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t\t\t\t// \"padding\" or \"margin\"\n\t\t\t\t} else {\n\n\t\t\t\t\t// For \"content\", subtract padding\n\t\t\t\t\tif (box === \"content\") {\n\t\t\t\t\t\tdelta -= jQuery.css(elem, \"padding\" + cssExpand[i], true, styles);\n\t\t\t\t\t}\n\n\t\t\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\t\t\tif (box !== \"margin\") {\n\t\t\t\t\t\tdelta -= jQuery.css(elem, \"border\" + cssExpand[i] + \"Width\", true, styles);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\t\t\tif (!isBorderBox && computedVal >= 0) {\n\n\t\t\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\t\t\tdelta += Math.max(0, Math.ceil(elem[\"offset\" + dimension[0].toUpperCase() + dimension.slice(1)] - computedVal - delta - extra - 0.5\n\n\t\t\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t\t\t)) || 0;\n\t\t\t}\n\n\t\t\treturn delta + marginDelta;\n\t\t}\n\n\t\tfunction getWidthOrHeight(elem, dimension, extra) {\n\n\t\t\t// Start with computed style\n\t\t\tvar styles = getStyles(elem),\n\n\n\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t\t// Fake content-box until we know it's needed to know the true value.\n\t\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\t\t isBorderBox = boxSizingNeeded && jQuery.css(elem, \"boxSizing\", false, styles) === \"border-box\",\n\t\t\t valueIsBorderBox = isBorderBox,\n\t\t\t val = curCSS(elem, dimension, styles),\n\t\t\t offsetProp = \"offset\" + dimension[0].toUpperCase() + dimension.slice(1);\n\n\t\t\t// Support: Firefox <=54\n\t\t\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\t\t\tif (rnumnonpx.test(val)) {\n\t\t\t\tif (!extra) {\n\t\t\t\t\treturn val;\n\t\t\t\t}\n\t\t\t\tval = \"auto\";\n\t\t\t}\n\n\t\t\t// Support: IE 9 - 11 only\n\t\t\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t\t\t// In those cases, the computed value can be trusted to be border-box.\n\t\t\tif ((!support.boxSizingReliable() && isBorderBox ||\n\n\t\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t\t// set in CSS while `offset*` properties report correct values.\n\t\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t\t!support.reliableTrDimensions() && nodeName(elem, \"tr\") ||\n\n\t\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\t\tval === \"auto\" ||\n\n\t\t\t// Support: Android <=4.1 - 4.3 only\n\t\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t\t!parseFloat(val) && jQuery.css(elem, \"display\", false, styles) === \"inline\") &&\n\n\t\t\t// Make sure the element is visible & connected\n\t\t\telem.getClientRects().length) {\n\n\t\t\t\tisBorderBox = jQuery.css(elem, \"boxSizing\", false, styles) === \"border-box\";\n\n\t\t\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t\t\t// retrieved value as a content box dimension.\n\t\t\t\tvalueIsBorderBox = offsetProp in elem;\n\t\t\t\tif (valueIsBorderBox) {\n\t\t\t\t\tval = elem[offsetProp];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Normalize \"\" and auto\n\t\t\tval = parseFloat(val) || 0;\n\n\t\t\t// Adjust for the element's box model\n\t\t\treturn val + boxModelAdjustment(elem, dimension, extra || (isBorderBox ? \"border\" : \"content\"), valueIsBorderBox, styles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval) + \"px\";\n\t\t}\n\n\t\tjQuery.extend({\n\n\t\t\t// Add in style property hooks for overriding the default\n\t\t\t// behavior of getting and setting a style property\n\t\t\tcssHooks: {\n\t\t\t\topacity: {\n\t\t\t\t\tget: function get(elem, computed) {\n\t\t\t\t\t\tif (computed) {\n\n\t\t\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\t\t\tvar ret = curCSS(elem, \"opacity\");\n\t\t\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// Don't automatically add \"px\" to these possibly-unitless properties\n\t\t\tcssNumber: {\n\t\t\t\tanimationIterationCount: true,\n\t\t\t\taspectRatio: true,\n\t\t\t\tborderImageSlice: true,\n\t\t\t\tcolumnCount: true,\n\t\t\t\tflexGrow: true,\n\t\t\t\tflexShrink: true,\n\t\t\t\tfontWeight: true,\n\t\t\t\tgridArea: true,\n\t\t\t\tgridColumn: true,\n\t\t\t\tgridColumnEnd: true,\n\t\t\t\tgridColumnStart: true,\n\t\t\t\tgridRow: true,\n\t\t\t\tgridRowEnd: true,\n\t\t\t\tgridRowStart: true,\n\t\t\t\tlineHeight: true,\n\t\t\t\topacity: true,\n\t\t\t\torder: true,\n\t\t\t\torphans: true,\n\t\t\t\tscale: true,\n\t\t\t\twidows: true,\n\t\t\t\tzIndex: true,\n\t\t\t\tzoom: true,\n\n\t\t\t\t// SVG-related\n\t\t\t\tfillOpacity: true,\n\t\t\t\tfloodOpacity: true,\n\t\t\t\tstopOpacity: true,\n\t\t\t\tstrokeMiterlimit: true,\n\t\t\t\tstrokeOpacity: true\n\t\t\t},\n\n\t\t\t// Add in properties whose names you wish to fix before\n\t\t\t// setting or getting the value\n\t\t\tcssProps: {},\n\n\t\t\t// Get and set the style property on a DOM Node\n\t\t\tstyle: function style(elem, name, value, extra) {\n\n\t\t\t\t// Don't set styles on text and comment nodes\n\t\t\t\tif (!elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Make sure that we're working with the right name\n\t\t\t\tvar ret,\n\t\t\t\t type,\n\t\t\t\t hooks,\n\t\t\t\t origName = camelCase(name),\n\t\t\t\t isCustomProp = rcustomProp.test(name),\n\t\t\t\t style = elem.style;\n\n\t\t\t\t// Make sure that we're working with the right name. We don't\n\t\t\t\t// want to query the value if it is a CSS custom property\n\t\t\t\t// since they are user-defined.\n\t\t\t\tif (!isCustomProp) {\n\t\t\t\t\tname = finalPropName(origName);\n\t\t\t\t}\n\n\t\t\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\t\t\thooks = jQuery.cssHooks[name] || jQuery.cssHooks[origName];\n\n\t\t\t\t// Check if we're setting a value\n\t\t\t\tif (value !== undefined) {\n\t\t\t\t\ttype = typeof value === \"undefined\" ? \"undefined\" : _typeof(value);\n\n\t\t\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (trac-7345)\n\t\t\t\t\tif (type === \"string\" && (ret = rcssNum.exec(value)) && ret[1]) {\n\t\t\t\t\t\tvalue = adjustCSS(elem, name, ret);\n\n\t\t\t\t\t\t// Fixes bug trac-9237\n\t\t\t\t\t\ttype = \"number\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Make sure that null and NaN values aren't set (trac-7116)\n\t\t\t\t\tif (value == null || value !== value) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t\t\t// \"px\" to a few hardcoded values.\n\t\t\t\t\tif (type === \"number\" && !isCustomProp) {\n\t\t\t\t\t\tvalue += ret && ret[3] || (jQuery.cssNumber[origName] ? \"\" : \"px\");\n\t\t\t\t\t}\n\n\t\t\t\t\t// background-* props affect original clone's values\n\t\t\t\t\tif (!support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0) {\n\t\t\t\t\t\tstyle[name] = \"inherit\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\t\t\tif (!hooks || !(\"set\" in hooks) || (value = hooks.set(elem, value, extra)) !== undefined) {\n\n\t\t\t\t\t\tif (isCustomProp) {\n\t\t\t\t\t\t\tstyle.setProperty(name, value);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tstyle[name] = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\n\t\t\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\t\t\tif (hooks && \"get\" in hooks && (ret = hooks.get(elem, false, extra)) !== undefined) {\n\n\t\t\t\t\t\treturn ret;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Otherwise just get the value from the style object\n\t\t\t\t\treturn style[name];\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tcss: function css(elem, name, extra, styles) {\n\t\t\t\tvar val,\n\t\t\t\t num,\n\t\t\t\t hooks,\n\t\t\t\t origName = camelCase(name),\n\t\t\t\t isCustomProp = rcustomProp.test(name);\n\n\t\t\t\t// Make sure that we're working with the right name. We don't\n\t\t\t\t// want to modify the value if it is a CSS custom property\n\t\t\t\t// since they are user-defined.\n\t\t\t\tif (!isCustomProp) {\n\t\t\t\t\tname = finalPropName(origName);\n\t\t\t\t}\n\n\t\t\t\t// Try prefixed name followed by the unprefixed name\n\t\t\t\thooks = jQuery.cssHooks[name] || jQuery.cssHooks[origName];\n\n\t\t\t\t// If a hook was provided get the computed value from there\n\t\t\t\tif (hooks && \"get\" in hooks) {\n\t\t\t\t\tval = hooks.get(elem, true, extra);\n\t\t\t\t}\n\n\t\t\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\t\t\tif (val === undefined) {\n\t\t\t\t\tval = curCSS(elem, name, styles);\n\t\t\t\t}\n\n\t\t\t\t// Convert \"normal\" to computed value\n\t\t\t\tif (val === \"normal\" && name in cssNormalTransform) {\n\t\t\t\t\tval = cssNormalTransform[name];\n\t\t\t\t}\n\n\t\t\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\t\t\tif (extra === \"\" || extra) {\n\t\t\t\t\tnum = parseFloat(val);\n\t\t\t\t\treturn extra === true || isFinite(num) ? num || 0 : val;\n\t\t\t\t}\n\n\t\t\t\treturn val;\n\t\t\t}\n\t\t});\n\n\t\tjQuery.each([\"height\", \"width\"], function (_i, dimension) {\n\t\t\tjQuery.cssHooks[dimension] = {\n\t\t\t\tget: function get(elem, computed, extra) {\n\t\t\t\t\tif (computed) {\n\n\t\t\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\t\t\treturn rdisplayswap.test(jQuery.css(elem, \"display\")) && (\n\n\t\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t\t!elem.getClientRects().length || !elem.getBoundingClientRect().width) ? swap(elem, cssShow, function () {\n\t\t\t\t\t\t\treturn getWidthOrHeight(elem, dimension, extra);\n\t\t\t\t\t\t}) : getWidthOrHeight(elem, dimension, extra);\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tset: function set(elem, value, extra) {\n\t\t\t\t\tvar matches,\n\t\t\t\t\t styles = getStyles(elem),\n\n\n\t\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() && styles.position === \"absolute\",\n\n\n\t\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\t\t isBorderBox = boxSizingNeeded && jQuery.css(elem, \"boxSizing\", false, styles) === \"border-box\",\n\t\t\t\t\t subtract = extra ? boxModelAdjustment(elem, dimension, extra, isBorderBox, styles) : 0;\n\n\t\t\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\t\t\tif (isBorderBox && scrollboxSizeBuggy) {\n\t\t\t\t\t\tsubtract -= Math.ceil(elem[\"offset\" + dimension[0].toUpperCase() + dimension.slice(1)] - parseFloat(styles[dimension]) - boxModelAdjustment(elem, dimension, \"border\", false, styles) - 0.5);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\t\t\tif (subtract && (matches = rcssNum.exec(value)) && (matches[3] || \"px\") !== \"px\") {\n\n\t\t\t\t\t\telem.style[dimension] = value;\n\t\t\t\t\t\tvalue = jQuery.css(elem, dimension);\n\t\t\t\t\t}\n\n\t\t\t\t\treturn setPositiveNumber(elem, value, subtract);\n\t\t\t\t}\n\t\t\t};\n\t\t});\n\n\t\tjQuery.cssHooks.marginLeft = addGetHookIf(support.reliableMarginLeft, function (elem, computed) {\n\t\t\tif (computed) {\n\t\t\t\treturn (parseFloat(curCSS(elem, \"marginLeft\")) || elem.getBoundingClientRect().left - swap(elem, { marginLeft: 0 }, function () {\n\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t})) + \"px\";\n\t\t\t}\n\t\t});\n\n\t\t// These hooks are used by animate to expand properties\n\t\tjQuery.each({\n\t\t\tmargin: \"\",\n\t\t\tpadding: \"\",\n\t\t\tborder: \"Width\"\n\t\t}, function (prefix, suffix) {\n\t\t\tjQuery.cssHooks[prefix + suffix] = {\n\t\t\t\texpand: function expand(value) {\n\t\t\t\t\tvar i = 0,\n\t\t\t\t\t expanded = {},\n\n\n\t\t\t\t\t// Assumes a single number if not a string\n\t\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [value];\n\n\t\t\t\t\tfor (; i < 4; i++) {\n\t\t\t\t\t\texpanded[prefix + cssExpand[i] + suffix] = parts[i] || parts[i - 2] || parts[0];\n\t\t\t\t\t}\n\n\t\t\t\t\treturn expanded;\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tif (prefix !== \"margin\") {\n\t\t\t\tjQuery.cssHooks[prefix + suffix].set = setPositiveNumber;\n\t\t\t}\n\t\t});\n\n\t\tjQuery.fn.extend({\n\t\t\tcss: function css(name, value) {\n\t\t\t\treturn access(this, function (elem, name, value) {\n\t\t\t\t\tvar styles,\n\t\t\t\t\t len,\n\t\t\t\t\t map = {},\n\t\t\t\t\t i = 0;\n\n\t\t\t\t\tif (Array.isArray(name)) {\n\t\t\t\t\t\tstyles = getStyles(elem);\n\t\t\t\t\t\tlen = name.length;\n\n\t\t\t\t\t\tfor (; i < len; i++) {\n\t\t\t\t\t\t\tmap[name[i]] = jQuery.css(elem, name[i], false, styles);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn map;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn value !== undefined ? jQuery.style(elem, name, value) : jQuery.css(elem, name);\n\t\t\t\t}, name, value, arguments.length > 1);\n\t\t\t}\n\t\t});\n\n\t\tfunction Tween(elem, options, prop, end, easing) {\n\t\t\treturn new Tween.prototype.init(elem, options, prop, end, easing);\n\t\t}\n\t\tjQuery.Tween = Tween;\n\n\t\tTween.prototype = {\n\t\t\tconstructor: Tween,\n\t\t\tinit: function init(elem, options, prop, end, easing, unit) {\n\t\t\t\tthis.elem = elem;\n\t\t\t\tthis.prop = prop;\n\t\t\t\tthis.easing = easing || jQuery.easing._default;\n\t\t\t\tthis.options = options;\n\t\t\t\tthis.start = this.now = this.cur();\n\t\t\t\tthis.end = end;\n\t\t\t\tthis.unit = unit || (jQuery.cssNumber[prop] ? \"\" : \"px\");\n\t\t\t},\n\t\t\tcur: function cur() {\n\t\t\t\tvar hooks = Tween.propHooks[this.prop];\n\n\t\t\t\treturn hooks && hooks.get ? hooks.get(this) : Tween.propHooks._default.get(this);\n\t\t\t},\n\t\t\trun: function run(percent) {\n\t\t\t\tvar eased,\n\t\t\t\t hooks = Tween.propHooks[this.prop];\n\n\t\t\t\tif (this.options.duration) {\n\t\t\t\t\tthis.pos = eased = jQuery.easing[this.easing](percent, this.options.duration * percent, 0, 1, this.options.duration);\n\t\t\t\t} else {\n\t\t\t\t\tthis.pos = eased = percent;\n\t\t\t\t}\n\t\t\t\tthis.now = (this.end - this.start) * eased + this.start;\n\n\t\t\t\tif (this.options.step) {\n\t\t\t\t\tthis.options.step.call(this.elem, this.now, this);\n\t\t\t\t}\n\n\t\t\t\tif (hooks && hooks.set) {\n\t\t\t\t\thooks.set(this);\n\t\t\t\t} else {\n\t\t\t\t\tTween.propHooks._default.set(this);\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t};\n\n\t\tTween.prototype.init.prototype = Tween.prototype;\n\n\t\tTween.propHooks = {\n\t\t\t_default: {\n\t\t\t\tget: function get(tween) {\n\t\t\t\t\tvar result;\n\n\t\t\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t\t\t// or when there is no matching style property that exists.\n\t\t\t\t\tif (tween.elem.nodeType !== 1 || tween.elem[tween.prop] != null && tween.elem.style[tween.prop] == null) {\n\t\t\t\t\t\treturn tween.elem[tween.prop];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\t\t\tresult = jQuery.css(tween.elem, tween.prop, \"\");\n\n\t\t\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t\t\t},\n\t\t\t\tset: function set(tween) {\n\n\t\t\t\t\t// Use step hook for back compat.\n\t\t\t\t\t// Use cssHook if its there.\n\t\t\t\t\t// Use .style if available and use plain properties where available.\n\t\t\t\t\tif (jQuery.fx.step[tween.prop]) {\n\t\t\t\t\t\tjQuery.fx.step[tween.prop](tween);\n\t\t\t\t\t} else if (tween.elem.nodeType === 1 && (jQuery.cssHooks[tween.prop] || tween.elem.style[finalPropName(tween.prop)] != null)) {\n\t\t\t\t\t\tjQuery.style(tween.elem, tween.prop, tween.now + tween.unit);\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttween.elem[tween.prop] = tween.now;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t// Support: IE <=9 only\n\t\t// Panic based approach to setting things on disconnected nodes\n\t\tTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\t\t\tset: function set(tween) {\n\t\t\t\tif (tween.elem.nodeType && tween.elem.parentNode) {\n\t\t\t\t\ttween.elem[tween.prop] = tween.now;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\tjQuery.easing = {\n\t\t\tlinear: function linear(p) {\n\t\t\t\treturn p;\n\t\t\t},\n\t\t\tswing: function swing(p) {\n\t\t\t\treturn 0.5 - Math.cos(p * Math.PI) / 2;\n\t\t\t},\n\t\t\t_default: \"swing\"\n\t\t};\n\n\t\tjQuery.fx = Tween.prototype.init;\n\n\t\t// Back compat <1.8 extension point\n\t\tjQuery.fx.step = {};\n\n\t\tvar fxNow,\n\t\t inProgress,\n\t\t rfxtypes = /^(?:toggle|show|hide)$/,\n\t\t rrun = /queueHooks$/;\n\n\t\tfunction schedule() {\n\t\t\tif (inProgress) {\n\t\t\t\tif (document.hidden === false && window.requestAnimationFrame) {\n\t\t\t\t\twindow.requestAnimationFrame(schedule);\n\t\t\t\t} else {\n\t\t\t\t\twindow.setTimeout(schedule, jQuery.fx.interval);\n\t\t\t\t}\n\n\t\t\t\tjQuery.fx.tick();\n\t\t\t}\n\t\t}\n\n\t\t// Animations created synchronously will run synchronously\n\t\tfunction createFxNow() {\n\t\t\twindow.setTimeout(function () {\n\t\t\t\tfxNow = undefined;\n\t\t\t});\n\t\t\treturn fxNow = Date.now();\n\t\t}\n\n\t\t// Generate parameters to create a standard animation\n\t\tfunction genFx(type, includeWidth) {\n\t\t\tvar which,\n\t\t\t i = 0,\n\t\t\t attrs = { height: type };\n\n\t\t\t// If we include width, step value is 1 to do all cssExpand values,\n\t\t\t// otherwise step value is 2 to skip over Left and Right\n\t\t\tincludeWidth = includeWidth ? 1 : 0;\n\t\t\tfor (; i < 4; i += 2 - includeWidth) {\n\t\t\t\twhich = cssExpand[i];\n\t\t\t\tattrs[\"margin\" + which] = attrs[\"padding\" + which] = type;\n\t\t\t}\n\n\t\t\tif (includeWidth) {\n\t\t\t\tattrs.opacity = attrs.width = type;\n\t\t\t}\n\n\t\t\treturn attrs;\n\t\t}\n\n\t\tfunction createTween(value, prop, animation) {\n\t\t\tvar tween,\n\t\t\t collection = (Animation.tweeners[prop] || []).concat(Animation.tweeners[\"*\"]),\n\t\t\t index = 0,\n\t\t\t length = collection.length;\n\t\t\tfor (; index < length; index++) {\n\t\t\t\tif (tween = collection[index].call(animation, prop, value)) {\n\n\t\t\t\t\t// We're done with this property\n\t\t\t\t\treturn tween;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction defaultPrefilter(elem, props, opts) {\n\t\t\tvar prop,\n\t\t\t value,\n\t\t\t toggle,\n\t\t\t hooks,\n\t\t\t oldfire,\n\t\t\t propTween,\n\t\t\t restoreDisplay,\n\t\t\t display,\n\t\t\t isBox = \"width\" in props || \"height\" in props,\n\t\t\t anim = this,\n\t\t\t orig = {},\n\t\t\t style = elem.style,\n\t\t\t hidden = elem.nodeType && isHiddenWithinTree(elem),\n\t\t\t dataShow = dataPriv.get(elem, \"fxshow\");\n\n\t\t\t// Queue-skipping animations hijack the fx hooks\n\t\t\tif (!opts.queue) {\n\t\t\t\thooks = jQuery._queueHooks(elem, \"fx\");\n\t\t\t\tif (hooks.unqueued == null) {\n\t\t\t\t\thooks.unqueued = 0;\n\t\t\t\t\toldfire = hooks.empty.fire;\n\t\t\t\t\thooks.empty.fire = function () {\n\t\t\t\t\t\tif (!hooks.unqueued) {\n\t\t\t\t\t\t\toldfire();\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\thooks.unqueued++;\n\n\t\t\t\tanim.always(function () {\n\n\t\t\t\t\t// Ensure the complete handler is called before this completes\n\t\t\t\t\tanim.always(function () {\n\t\t\t\t\t\thooks.unqueued--;\n\t\t\t\t\t\tif (!jQuery.queue(elem, \"fx\").length) {\n\t\t\t\t\t\t\thooks.empty.fire();\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Detect show/hide animations\n\t\t\tfor (prop in props) {\n\t\t\t\tvalue = props[prop];\n\t\t\t\tif (rfxtypes.test(value)) {\n\t\t\t\t\tdelete props[prop];\n\t\t\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\t\t\tif (value === (hidden ? \"hide\" : \"show\")) {\n\n\t\t\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\t\t\tif (value === \"show\" && dataShow && dataShow[prop] !== undefined) {\n\t\t\t\t\t\t\thidden = true;\n\n\t\t\t\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\torig[prop] = dataShow && dataShow[prop] || jQuery.style(elem, prop);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Bail out if this is a no-op like .hide().hide()\n\t\t\tpropTween = !jQuery.isEmptyObject(props);\n\t\t\tif (!propTween && jQuery.isEmptyObject(orig)) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Restrict \"overflow\" and \"display\" styles during box animations\n\t\t\tif (isBox && elem.nodeType === 1) {\n\n\t\t\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t\t\t// the overflowX value there.\n\t\t\t\topts.overflow = [style.overflow, style.overflowX, style.overflowY];\n\n\t\t\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\t\t\trestoreDisplay = dataShow && dataShow.display;\n\t\t\t\tif (restoreDisplay == null) {\n\t\t\t\t\trestoreDisplay = dataPriv.get(elem, \"display\");\n\t\t\t\t}\n\t\t\t\tdisplay = jQuery.css(elem, \"display\");\n\t\t\t\tif (display === \"none\") {\n\t\t\t\t\tif (restoreDisplay) {\n\t\t\t\t\t\tdisplay = restoreDisplay;\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\t\t\tshowHide([elem], true);\n\t\t\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\t\t\tdisplay = jQuery.css(elem, \"display\");\n\t\t\t\t\t\tshowHide([elem]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Animate inline elements as inline-block\n\t\t\t\tif (display === \"inline\" || display === \"inline-block\" && restoreDisplay != null) {\n\t\t\t\t\tif (jQuery.css(elem, \"float\") === \"none\") {\n\n\t\t\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\t\t\tif (!propTween) {\n\t\t\t\t\t\t\tanim.done(function () {\n\t\t\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tif (restoreDisplay == null) {\n\t\t\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (opts.overflow) {\n\t\t\t\tstyle.overflow = \"hidden\";\n\t\t\t\tanim.always(function () {\n\t\t\t\t\tstyle.overflow = opts.overflow[0];\n\t\t\t\t\tstyle.overflowX = opts.overflow[1];\n\t\t\t\t\tstyle.overflowY = opts.overflow[2];\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Implement show/hide animations\n\t\t\tpropTween = false;\n\t\t\tfor (prop in orig) {\n\n\t\t\t\t// General show/hide setup for this element animation\n\t\t\t\tif (!propTween) {\n\t\t\t\t\tif (dataShow) {\n\t\t\t\t\t\tif (\"hidden\" in dataShow) {\n\t\t\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdataShow = dataPriv.access(elem, \"fxshow\", { display: restoreDisplay });\n\t\t\t\t\t}\n\n\t\t\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\t\t\tif (toggle) {\n\t\t\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Show elements before animating them\n\t\t\t\t\tif (hidden) {\n\t\t\t\t\t\tshowHide([elem], true);\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\t\t\tanim.done(function () {\n\n\t\t\t\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\t\t\tif (!hidden) {\n\t\t\t\t\t\t\tshowHide([elem]);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdataPriv.remove(elem, \"fxshow\");\n\t\t\t\t\t\tfor (prop in orig) {\n\t\t\t\t\t\t\tjQuery.style(elem, prop, orig[prop]);\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\t// Per-property setup\n\t\t\t\tpropTween = createTween(hidden ? dataShow[prop] : 0, prop, anim);\n\t\t\t\tif (!(prop in dataShow)) {\n\t\t\t\t\tdataShow[prop] = propTween.start;\n\t\t\t\t\tif (hidden) {\n\t\t\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\t\t\tpropTween.start = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction propFilter(props, specialEasing) {\n\t\t\tvar index, name, easing, value, hooks;\n\n\t\t\t// camelCase, specialEasing and expand cssHook pass\n\t\t\tfor (index in props) {\n\t\t\t\tname = camelCase(index);\n\t\t\t\teasing = specialEasing[name];\n\t\t\t\tvalue = props[index];\n\t\t\t\tif (Array.isArray(value)) {\n\t\t\t\t\teasing = value[1];\n\t\t\t\t\tvalue = props[index] = value[0];\n\t\t\t\t}\n\n\t\t\t\tif (index !== name) {\n\t\t\t\t\tprops[name] = value;\n\t\t\t\t\tdelete props[index];\n\t\t\t\t}\n\n\t\t\t\thooks = jQuery.cssHooks[name];\n\t\t\t\tif (hooks && \"expand\" in hooks) {\n\t\t\t\t\tvalue = hooks.expand(value);\n\t\t\t\t\tdelete props[name];\n\n\t\t\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\t\t\tfor (index in value) {\n\t\t\t\t\t\tif (!(index in props)) {\n\t\t\t\t\t\t\tprops[index] = value[index];\n\t\t\t\t\t\t\tspecialEasing[index] = easing;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tspecialEasing[name] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction Animation(elem, properties, options) {\n\t\t\tvar result,\n\t\t\t stopped,\n\t\t\t index = 0,\n\t\t\t length = Animation.prefilters.length,\n\t\t\t deferred = jQuery.Deferred().always(function () {\n\n\t\t\t\t// Don't match elem in the :animated selector\n\t\t\t\tdelete tick.elem;\n\t\t\t}),\n\t\t\t tick = function tick() {\n\t\t\t\tif (stopped) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\t remaining = Math.max(0, animation.startTime + animation.duration - currentTime),\n\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\t percent = 1 - temp,\n\t\t\t\t index = 0,\n\t\t\t\t length = animation.tweens.length;\n\n\t\t\t\tfor (; index < length; index++) {\n\t\t\t\t\tanimation.tweens[index].run(percent);\n\t\t\t\t}\n\n\t\t\t\tdeferred.notifyWith(elem, [animation, percent, remaining]);\n\n\t\t\t\t// If there's more to do, yield\n\t\t\t\tif (percent < 1 && length) {\n\t\t\t\t\treturn remaining;\n\t\t\t\t}\n\n\t\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\t\tif (!length) {\n\t\t\t\t\tdeferred.notifyWith(elem, [animation, 1, 0]);\n\t\t\t\t}\n\n\t\t\t\t// Resolve the animation and report its conclusion\n\t\t\t\tdeferred.resolveWith(elem, [animation]);\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t animation = deferred.promise({\n\t\t\t\telem: elem,\n\t\t\t\tprops: jQuery.extend({}, properties),\n\t\t\t\topts: jQuery.extend(true, {\n\t\t\t\t\tspecialEasing: {},\n\t\t\t\t\teasing: jQuery.easing._default\n\t\t\t\t}, options),\n\t\t\t\toriginalProperties: properties,\n\t\t\t\toriginalOptions: options,\n\t\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\t\tduration: options.duration,\n\t\t\t\ttweens: [],\n\t\t\t\tcreateTween: function createTween(prop, end) {\n\t\t\t\t\tvar tween = jQuery.Tween(elem, animation.opts, prop, end, animation.opts.specialEasing[prop] || animation.opts.easing);\n\t\t\t\t\tanimation.tweens.push(tween);\n\t\t\t\t\treturn tween;\n\t\t\t\t},\n\t\t\t\tstop: function stop(gotoEnd) {\n\t\t\t\t\tvar index = 0,\n\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\t\tif (stopped) {\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t}\n\t\t\t\t\tstopped = true;\n\t\t\t\t\tfor (; index < length; index++) {\n\t\t\t\t\t\tanimation.tweens[index].run(1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\t\tif (gotoEnd) {\n\t\t\t\t\t\tdeferred.notifyWith(elem, [animation, 1, 0]);\n\t\t\t\t\t\tdeferred.resolveWith(elem, [animation, gotoEnd]);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdeferred.rejectWith(elem, [animation, gotoEnd]);\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t}),\n\t\t\t props = animation.props;\n\n\t\t\tpropFilter(props, animation.opts.specialEasing);\n\n\t\t\tfor (; index < length; index++) {\n\t\t\t\tresult = Animation.prefilters[index].call(animation, elem, props, animation.opts);\n\t\t\t\tif (result) {\n\t\t\t\t\tif (isFunction(result.stop)) {\n\t\t\t\t\t\tjQuery._queueHooks(animation.elem, animation.opts.queue).stop = result.stop.bind(result);\n\t\t\t\t\t}\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tjQuery.map(props, createTween, animation);\n\n\t\t\tif (isFunction(animation.opts.start)) {\n\t\t\t\tanimation.opts.start.call(elem, animation);\n\t\t\t}\n\n\t\t\t// Attach callbacks from options\n\t\t\tanimation.progress(animation.opts.progress).done(animation.opts.done, animation.opts.complete).fail(animation.opts.fail).always(animation.opts.always);\n\n\t\t\tjQuery.fx.timer(jQuery.extend(tick, {\n\t\t\t\telem: elem,\n\t\t\t\tanim: animation,\n\t\t\t\tqueue: animation.opts.queue\n\t\t\t}));\n\n\t\t\treturn animation;\n\t\t}\n\n\t\tjQuery.Animation = jQuery.extend(Animation, {\n\n\t\t\ttweeners: {\n\t\t\t\t\"*\": [function (prop, value) {\n\t\t\t\t\tvar tween = this.createTween(prop, value);\n\t\t\t\t\tadjustCSS(tween.elem, prop, rcssNum.exec(value), tween);\n\t\t\t\t\treturn tween;\n\t\t\t\t}]\n\t\t\t},\n\n\t\t\ttweener: function tweener(props, callback) {\n\t\t\t\tif (isFunction(props)) {\n\t\t\t\t\tcallback = props;\n\t\t\t\t\tprops = [\"*\"];\n\t\t\t\t} else {\n\t\t\t\t\tprops = props.match(rnothtmlwhite);\n\t\t\t\t}\n\n\t\t\t\tvar prop,\n\t\t\t\t index = 0,\n\t\t\t\t length = props.length;\n\n\t\t\t\tfor (; index < length; index++) {\n\t\t\t\t\tprop = props[index];\n\t\t\t\t\tAnimation.tweeners[prop] = Animation.tweeners[prop] || [];\n\t\t\t\t\tAnimation.tweeners[prop].unshift(callback);\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tprefilters: [defaultPrefilter],\n\n\t\t\tprefilter: function prefilter(callback, prepend) {\n\t\t\t\tif (prepend) {\n\t\t\t\t\tAnimation.prefilters.unshift(callback);\n\t\t\t\t} else {\n\t\t\t\t\tAnimation.prefilters.push(callback);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tjQuery.speed = function (speed, easing, fn) {\n\t\t\tvar opt = speed && (typeof speed === \"undefined\" ? \"undefined\" : _typeof(speed)) === \"object\" ? jQuery.extend({}, speed) : {\n\t\t\t\tcomplete: fn || !fn && easing || isFunction(speed) && speed,\n\t\t\t\tduration: speed,\n\t\t\t\teasing: fn && easing || easing && !isFunction(easing) && easing\n\t\t\t};\n\n\t\t\t// Go to the end state if fx are off\n\t\t\tif (jQuery.fx.off) {\n\t\t\t\topt.duration = 0;\n\t\t\t} else {\n\t\t\t\tif (typeof opt.duration !== \"number\") {\n\t\t\t\t\tif (opt.duration in jQuery.fx.speeds) {\n\t\t\t\t\t\topt.duration = jQuery.fx.speeds[opt.duration];\n\t\t\t\t\t} else {\n\t\t\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\t\t\tif (opt.queue == null || opt.queue === true) {\n\t\t\t\topt.queue = \"fx\";\n\t\t\t}\n\n\t\t\t// Queueing\n\t\t\topt.old = opt.complete;\n\n\t\t\topt.complete = function () {\n\t\t\t\tif (isFunction(opt.old)) {\n\t\t\t\t\topt.old.call(this);\n\t\t\t\t}\n\n\t\t\t\tif (opt.queue) {\n\t\t\t\t\tjQuery.dequeue(this, opt.queue);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\treturn opt;\n\t\t};\n\n\t\tjQuery.fn.extend({\n\t\t\tfadeTo: function fadeTo(speed, to, easing, callback) {\n\n\t\t\t\t// Show any hidden elements after setting opacity to 0\n\t\t\t\treturn this.filter(isHiddenWithinTree).css(\"opacity\", 0).show()\n\n\t\t\t\t// Animate to the value specified\n\t\t\t\t.end().animate({ opacity: to }, speed, easing, callback);\n\t\t\t},\n\t\t\tanimate: function animate(prop, speed, easing, callback) {\n\t\t\t\tvar empty = jQuery.isEmptyObject(prop),\n\t\t\t\t optall = jQuery.speed(speed, easing, callback),\n\t\t\t\t doAnimation = function doAnimation() {\n\n\t\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\t\tvar anim = Animation(this, jQuery.extend({}, prop), optall);\n\n\t\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\t\tif (empty || dataPriv.get(this, \"finish\")) {\n\t\t\t\t\t\tanim.stop(true);\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tdoAnimation.finish = doAnimation;\n\n\t\t\t\treturn empty || optall.queue === false ? this.each(doAnimation) : this.queue(optall.queue, doAnimation);\n\t\t\t},\n\t\t\tstop: function stop(type, clearQueue, gotoEnd) {\n\t\t\t\tvar stopQueue = function stopQueue(hooks) {\n\t\t\t\t\tvar stop = hooks.stop;\n\t\t\t\t\tdelete hooks.stop;\n\t\t\t\t\tstop(gotoEnd);\n\t\t\t\t};\n\n\t\t\t\tif (typeof type !== \"string\") {\n\t\t\t\t\tgotoEnd = clearQueue;\n\t\t\t\t\tclearQueue = type;\n\t\t\t\t\ttype = undefined;\n\t\t\t\t}\n\t\t\t\tif (clearQueue) {\n\t\t\t\t\tthis.queue(type || \"fx\", []);\n\t\t\t\t}\n\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tvar dequeue = true,\n\t\t\t\t\t index = type != null && type + \"queueHooks\",\n\t\t\t\t\t timers = jQuery.timers,\n\t\t\t\t\t data = dataPriv.get(this);\n\n\t\t\t\t\tif (index) {\n\t\t\t\t\t\tif (data[index] && data[index].stop) {\n\t\t\t\t\t\t\tstopQueue(data[index]);\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfor (index in data) {\n\t\t\t\t\t\t\tif (data[index] && data[index].stop && rrun.test(index)) {\n\t\t\t\t\t\t\t\tstopQueue(data[index]);\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\tfor (index = timers.length; index--;) {\n\t\t\t\t\t\tif (timers[index].elem === this && (type == null || timers[index].queue === type)) {\n\n\t\t\t\t\t\t\ttimers[index].anim.stop(gotoEnd);\n\t\t\t\t\t\t\tdequeue = false;\n\t\t\t\t\t\t\ttimers.splice(index, 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\t\t\tif (dequeue || !gotoEnd) {\n\t\t\t\t\t\tjQuery.dequeue(this, type);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\t\t\tfinish: function finish(type) {\n\t\t\t\tif (type !== false) {\n\t\t\t\t\ttype = type || \"fx\";\n\t\t\t\t}\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tvar index,\n\t\t\t\t\t data = dataPriv.get(this),\n\t\t\t\t\t queue = data[type + \"queue\"],\n\t\t\t\t\t hooks = data[type + \"queueHooks\"],\n\t\t\t\t\t timers = jQuery.timers,\n\t\t\t\t\t length = queue ? queue.length : 0;\n\n\t\t\t\t\t// Enable finishing flag on private data\n\t\t\t\t\tdata.finish = true;\n\n\t\t\t\t\t// Empty the queue first\n\t\t\t\t\tjQuery.queue(this, type, []);\n\n\t\t\t\t\tif (hooks && hooks.stop) {\n\t\t\t\t\t\thooks.stop.call(this, true);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Look for any active animations, and finish them\n\t\t\t\t\tfor (index = timers.length; index--;) {\n\t\t\t\t\t\tif (timers[index].elem === this && timers[index].queue === type) {\n\t\t\t\t\t\t\ttimers[index].anim.stop(true);\n\t\t\t\t\t\t\ttimers.splice(index, 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Look for any animations in the old queue and finish them\n\t\t\t\t\tfor (index = 0; index < length; index++) {\n\t\t\t\t\t\tif (queue[index] && queue[index].finish) {\n\t\t\t\t\t\t\tqueue[index].finish.call(this);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Turn off finishing flag\n\t\t\t\t\tdelete data.finish;\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tjQuery.each([\"toggle\", \"show\", \"hide\"], function (_i, name) {\n\t\t\tvar cssFn = jQuery.fn[name];\n\t\t\tjQuery.fn[name] = function (speed, easing, callback) {\n\t\t\t\treturn speed == null || typeof speed === \"boolean\" ? cssFn.apply(this, arguments) : this.animate(genFx(name, true), speed, easing, callback);\n\t\t\t};\n\t\t});\n\n\t\t// Generate shortcuts for custom animations\n\t\tjQuery.each({\n\t\t\tslideDown: genFx(\"show\"),\n\t\t\tslideUp: genFx(\"hide\"),\n\t\t\tslideToggle: genFx(\"toggle\"),\n\t\t\tfadeIn: { opacity: \"show\" },\n\t\t\tfadeOut: { opacity: \"hide\" },\n\t\t\tfadeToggle: { opacity: \"toggle\" }\n\t\t}, function (name, props) {\n\t\t\tjQuery.fn[name] = function (speed, easing, callback) {\n\t\t\t\treturn this.animate(props, speed, easing, callback);\n\t\t\t};\n\t\t});\n\n\t\tjQuery.timers = [];\n\t\tjQuery.fx.tick = function () {\n\t\t\tvar timer,\n\t\t\t i = 0,\n\t\t\t timers = jQuery.timers;\n\n\t\t\tfxNow = Date.now();\n\n\t\t\tfor (; i < timers.length; i++) {\n\t\t\t\ttimer = timers[i];\n\n\t\t\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\t\t\tif (!timer() && timers[i] === timer) {\n\t\t\t\t\ttimers.splice(i--, 1);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!timers.length) {\n\t\t\t\tjQuery.fx.stop();\n\t\t\t}\n\t\t\tfxNow = undefined;\n\t\t};\n\n\t\tjQuery.fx.timer = function (timer) {\n\t\t\tjQuery.timers.push(timer);\n\t\t\tjQuery.fx.start();\n\t\t};\n\n\t\tjQuery.fx.interval = 13;\n\t\tjQuery.fx.start = function () {\n\t\t\tif (inProgress) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tinProgress = true;\n\t\t\tschedule();\n\t\t};\n\n\t\tjQuery.fx.stop = function () {\n\t\t\tinProgress = null;\n\t\t};\n\n\t\tjQuery.fx.speeds = {\n\t\t\tslow: 600,\n\t\t\tfast: 200,\n\n\t\t\t// Default speed\n\t\t\t_default: 400\n\t\t};\n\n\t\t// Based off of the plugin by Clint Helfers, with permission.\n\t\tjQuery.fn.delay = function (time, type) {\n\t\t\ttime = jQuery.fx ? jQuery.fx.speeds[time] || time : time;\n\t\t\ttype = type || \"fx\";\n\n\t\t\treturn this.queue(type, function (next, hooks) {\n\t\t\t\tvar timeout = window.setTimeout(next, time);\n\t\t\t\thooks.stop = function () {\n\t\t\t\t\twindow.clearTimeout(timeout);\n\t\t\t\t};\n\t\t\t});\n\t\t};\n\n\t\t(function () {\n\t\t\tvar input = document.createElement(\"input\"),\n\t\t\t select = document.createElement(\"select\"),\n\t\t\t opt = select.appendChild(document.createElement(\"option\"));\n\n\t\t\tinput.type = \"checkbox\";\n\n\t\t\t// Support: Android <=4.3 only\n\t\t\t// Default value for a checkbox should be \"on\"\n\t\t\tsupport.checkOn = input.value !== \"\";\n\n\t\t\t// Support: IE <=11 only\n\t\t\t// Must access selectedIndex to make default options select\n\t\t\tsupport.optSelected = opt.selected;\n\n\t\t\t// Support: IE <=11 only\n\t\t\t// An input loses its value after becoming a radio\n\t\t\tinput = document.createElement(\"input\");\n\t\t\tinput.value = \"t\";\n\t\t\tinput.type = \"radio\";\n\t\t\tsupport.radioValue = input.value === \"t\";\n\t\t})();\n\n\t\tvar boolHook,\n\t\t attrHandle = jQuery.expr.attrHandle;\n\n\t\tjQuery.fn.extend({\n\t\t\tattr: function attr(name, value) {\n\t\t\t\treturn access(this, jQuery.attr, name, value, arguments.length > 1);\n\t\t\t},\n\n\t\t\tremoveAttr: function removeAttr(name) {\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tjQuery.removeAttr(this, name);\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tjQuery.extend({\n\t\t\tattr: function attr(elem, name, value) {\n\t\t\t\tvar ret,\n\t\t\t\t hooks,\n\t\t\t\t nType = elem.nodeType;\n\n\t\t\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\t\t\tif (nType === 3 || nType === 8 || nType === 2) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Fallback to prop when attributes are not supported\n\t\t\t\tif (typeof elem.getAttribute === \"undefined\") {\n\t\t\t\t\treturn jQuery.prop(elem, name, value);\n\t\t\t\t}\n\n\t\t\t\t// Attribute hooks are determined by the lowercase version\n\t\t\t\t// Grab necessary hook if one is defined\n\t\t\t\tif (nType !== 1 || !jQuery.isXMLDoc(elem)) {\n\t\t\t\t\thooks = jQuery.attrHooks[name.toLowerCase()] || (jQuery.expr.match.bool.test(name) ? boolHook : undefined);\n\t\t\t\t}\n\n\t\t\t\tif (value !== undefined) {\n\t\t\t\t\tif (value === null) {\n\t\t\t\t\t\tjQuery.removeAttr(elem, name);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (hooks && \"set\" in hooks && (ret = hooks.set(elem, value, name)) !== undefined) {\n\t\t\t\t\t\treturn ret;\n\t\t\t\t\t}\n\n\t\t\t\t\telem.setAttribute(name, value + \"\");\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\n\t\t\t\tif (hooks && \"get\" in hooks && (ret = hooks.get(elem, name)) !== null) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = jQuery.find.attr(elem, name);\n\n\t\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\t\treturn ret == null ? undefined : ret;\n\t\t\t},\n\n\t\t\tattrHooks: {\n\t\t\t\ttype: {\n\t\t\t\t\tset: function set(elem, value) {\n\t\t\t\t\t\tif (!support.radioValue && value === \"radio\" && nodeName(elem, \"input\")) {\n\t\t\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\t\t\telem.setAttribute(\"type\", value);\n\t\t\t\t\t\t\tif (val) {\n\t\t\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tremoveAttr: function removeAttr(elem, value) {\n\t\t\t\tvar name,\n\t\t\t\t i = 0,\n\n\n\t\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\t\tattrNames = value && value.match(rnothtmlwhite);\n\n\t\t\t\tif (attrNames && elem.nodeType === 1) {\n\t\t\t\t\twhile (name = attrNames[i++]) {\n\t\t\t\t\t\telem.removeAttribute(name);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// Hooks for boolean attributes\n\t\tboolHook = {\n\t\t\tset: function set(elem, value, name) {\n\t\t\t\tif (value === false) {\n\n\t\t\t\t\t// Remove boolean attributes when set to false\n\t\t\t\t\tjQuery.removeAttr(elem, name);\n\t\t\t\t} else {\n\t\t\t\t\telem.setAttribute(name, name);\n\t\t\t\t}\n\t\t\t\treturn name;\n\t\t\t}\n\t\t};\n\n\t\tjQuery.each(jQuery.expr.match.bool.source.match(/\\w+/g), function (_i, name) {\n\t\t\tvar getter = attrHandle[name] || jQuery.find.attr;\n\n\t\t\tattrHandle[name] = function (elem, name, isXML) {\n\t\t\t\tvar ret,\n\t\t\t\t handle,\n\t\t\t\t lowercaseName = name.toLowerCase();\n\n\t\t\t\tif (!isXML) {\n\n\t\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\t\thandle = attrHandle[lowercaseName];\n\t\t\t\t\tattrHandle[lowercaseName] = ret;\n\t\t\t\t\tret = getter(elem, name, isXML) != null ? lowercaseName : null;\n\t\t\t\t\tattrHandle[lowercaseName] = handle;\n\t\t\t\t}\n\t\t\t\treturn ret;\n\t\t\t};\n\t\t});\n\n\t\tvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\t\t rclickable = /^(?:a|area)$/i;\n\n\t\tjQuery.fn.extend({\n\t\t\tprop: function prop(name, value) {\n\t\t\t\treturn access(this, jQuery.prop, name, value, arguments.length > 1);\n\t\t\t},\n\n\t\t\tremoveProp: function removeProp(name) {\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tdelete this[jQuery.propFix[name] || name];\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tjQuery.extend({\n\t\t\tprop: function prop(elem, name, value) {\n\t\t\t\tvar ret,\n\t\t\t\t hooks,\n\t\t\t\t nType = elem.nodeType;\n\n\t\t\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\t\t\tif (nType === 3 || nType === 8 || nType === 2) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (nType !== 1 || !jQuery.isXMLDoc(elem)) {\n\n\t\t\t\t\t// Fix name and attach hooks\n\t\t\t\t\tname = jQuery.propFix[name] || name;\n\t\t\t\t\thooks = jQuery.propHooks[name];\n\t\t\t\t}\n\n\t\t\t\tif (value !== undefined) {\n\t\t\t\t\tif (hooks && \"set\" in hooks && (ret = hooks.set(elem, value, name)) !== undefined) {\n\t\t\t\t\t\treturn ret;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn elem[name] = value;\n\t\t\t\t}\n\n\t\t\t\tif (hooks && \"get\" in hooks && (ret = hooks.get(elem, name)) !== null) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\treturn elem[name];\n\t\t\t},\n\n\t\t\tpropHooks: {\n\t\t\t\ttabIndex: {\n\t\t\t\t\tget: function get(elem) {\n\n\t\t\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t\t\t// Use proper attribute retrieval (trac-12072)\n\t\t\t\t\t\tvar tabindex = jQuery.find.attr(elem, \"tabindex\");\n\n\t\t\t\t\t\tif (tabindex) {\n\t\t\t\t\t\t\treturn parseInt(tabindex, 10);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (rfocusable.test(elem.nodeName) || rclickable.test(elem.nodeName) && elem.href) {\n\t\t\t\t\t\t\treturn 0;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tpropFix: {\n\t\t\t\t\"for\": \"htmlFor\",\n\t\t\t\t\"class\": \"className\"\n\t\t\t}\n\t\t});\n\n\t\t// Support: IE <=11 only\n\t\t// Accessing the selectedIndex property\n\t\t// forces the browser to respect setting selected\n\t\t// on the option\n\t\t// The getter ensures a default option is selected\n\t\t// when in an optgroup\n\t\t// eslint rule \"no-unused-expressions\" is disabled for this code\n\t\t// since it considers such accessions noop\n\t\tif (!support.optSelected) {\n\t\t\tjQuery.propHooks.selected = {\n\t\t\t\tget: function get(elem) {\n\n\t\t\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\t\t\tvar parent = elem.parentNode;\n\t\t\t\t\tif (parent && parent.parentNode) {\n\t\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t\t}\n\t\t\t\t\treturn null;\n\t\t\t\t},\n\t\t\t\tset: function set(elem) {\n\n\t\t\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\t\t\tvar parent = elem.parentNode;\n\t\t\t\t\tif (parent) {\n\t\t\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t\t\tif (parent.parentNode) {\n\t\t\t\t\t\t\tparent.parentNode.selectedIndex;\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\tjQuery.each([\"tabIndex\", \"readOnly\", \"maxLength\", \"cellSpacing\", \"cellPadding\", \"rowSpan\", \"colSpan\", \"useMap\", \"frameBorder\", \"contentEditable\"], function () {\n\t\t\tjQuery.propFix[this.toLowerCase()] = this;\n\t\t});\n\n\t\t// Strip and collapse whitespace according to HTML spec\n\t\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\t\tfunction stripAndCollapse(value) {\n\t\t\tvar tokens = value.match(rnothtmlwhite) || [];\n\t\t\treturn tokens.join(\" \");\n\t\t}\n\n\t\tfunction getClass(elem) {\n\t\t\treturn elem.getAttribute && elem.getAttribute(\"class\") || \"\";\n\t\t}\n\n\t\tfunction classesToArray(value) {\n\t\t\tif (Array.isArray(value)) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t\tif (typeof value === \"string\") {\n\t\t\t\treturn value.match(rnothtmlwhite) || [];\n\t\t\t}\n\t\t\treturn [];\n\t\t}\n\n\t\tjQuery.fn.extend({\n\t\t\taddClass: function addClass(value) {\n\t\t\t\tvar classNames, cur, curValue, className, i, finalValue;\n\n\t\t\t\tif (isFunction(value)) {\n\t\t\t\t\treturn this.each(function (j) {\n\t\t\t\t\t\tjQuery(this).addClass(value.call(this, j, getClass(this)));\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tclassNames = classesToArray(value);\n\n\t\t\t\tif (classNames.length) {\n\t\t\t\t\treturn this.each(function () {\n\t\t\t\t\t\tcurValue = getClass(this);\n\t\t\t\t\t\tcur = this.nodeType === 1 && \" \" + stripAndCollapse(curValue) + \" \";\n\n\t\t\t\t\t\tif (cur) {\n\t\t\t\t\t\t\tfor (i = 0; i < classNames.length; i++) {\n\t\t\t\t\t\t\t\tclassName = classNames[i];\n\t\t\t\t\t\t\t\tif (cur.indexOf(\" \" + className + \" \") < 0) {\n\t\t\t\t\t\t\t\t\tcur += className + \" \";\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\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\t\t\tfinalValue = stripAndCollapse(cur);\n\t\t\t\t\t\t\tif (curValue !== finalValue) {\n\t\t\t\t\t\t\t\tthis.setAttribute(\"class\", finalValue);\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\treturn this;\n\t\t\t},\n\n\t\t\tremoveClass: function removeClass(value) {\n\t\t\t\tvar classNames, cur, curValue, className, i, finalValue;\n\n\t\t\t\tif (isFunction(value)) {\n\t\t\t\t\treturn this.each(function (j) {\n\t\t\t\t\t\tjQuery(this).removeClass(value.call(this, j, getClass(this)));\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (!arguments.length) {\n\t\t\t\t\treturn this.attr(\"class\", \"\");\n\t\t\t\t}\n\n\t\t\t\tclassNames = classesToArray(value);\n\n\t\t\t\tif (classNames.length) {\n\t\t\t\t\treturn this.each(function () {\n\t\t\t\t\t\tcurValue = getClass(this);\n\n\t\t\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\t\t\tcur = this.nodeType === 1 && \" \" + stripAndCollapse(curValue) + \" \";\n\n\t\t\t\t\t\tif (cur) {\n\t\t\t\t\t\t\tfor (i = 0; i < classNames.length; i++) {\n\t\t\t\t\t\t\t\tclassName = classNames[i];\n\n\t\t\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\t\t\twhile (cur.indexOf(\" \" + className + \" \") > -1) {\n\t\t\t\t\t\t\t\t\tcur = cur.replace(\" \" + className + \" \", \" \");\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\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\t\t\tfinalValue = stripAndCollapse(cur);\n\t\t\t\t\t\t\tif (curValue !== finalValue) {\n\t\t\t\t\t\t\t\tthis.setAttribute(\"class\", finalValue);\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\treturn this;\n\t\t\t},\n\n\t\t\ttoggleClass: function toggleClass(value, stateVal) {\n\t\t\t\tvar classNames,\n\t\t\t\t className,\n\t\t\t\t i,\n\t\t\t\t self,\n\t\t\t\t type = typeof value === \"undefined\" ? \"undefined\" : _typeof(value),\n\t\t\t\t isValidValue = type === \"string\" || Array.isArray(value);\n\n\t\t\t\tif (isFunction(value)) {\n\t\t\t\t\treturn this.each(function (i) {\n\t\t\t\t\t\tjQuery(this).toggleClass(value.call(this, i, getClass(this), stateVal), stateVal);\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (typeof stateVal === \"boolean\" && isValidValue) {\n\t\t\t\t\treturn stateVal ? this.addClass(value) : this.removeClass(value);\n\t\t\t\t}\n\n\t\t\t\tclassNames = classesToArray(value);\n\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tif (isValidValue) {\n\n\t\t\t\t\t\t// Toggle individual class names\n\t\t\t\t\t\tself = jQuery(this);\n\n\t\t\t\t\t\tfor (i = 0; i < classNames.length; i++) {\n\t\t\t\t\t\t\tclassName = classNames[i];\n\n\t\t\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\t\t\tif (self.hasClass(className)) {\n\t\t\t\t\t\t\t\tself.removeClass(className);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tself.addClass(className);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Toggle whole class name\n\t\t\t\t\t} else if (value === undefined || type === \"boolean\") {\n\t\t\t\t\t\tclassName = getClass(this);\n\t\t\t\t\t\tif (className) {\n\n\t\t\t\t\t\t\t// Store className if set\n\t\t\t\t\t\t\tdataPriv.set(this, \"__className__\", className);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\t\t\tif (this.setAttribute) {\n\t\t\t\t\t\t\tthis.setAttribute(\"class\", className || value === false ? \"\" : dataPriv.get(this, \"__className__\") || \"\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\n\t\t\thasClass: function hasClass(selector) {\n\t\t\t\tvar className,\n\t\t\t\t elem,\n\t\t\t\t i = 0;\n\n\t\t\t\tclassName = \" \" + selector + \" \";\n\t\t\t\twhile (elem = this[i++]) {\n\t\t\t\t\tif (elem.nodeType === 1 && (\" \" + stripAndCollapse(getClass(elem)) + \" \").indexOf(className) > -1) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn false;\n\t\t\t}\n\t\t});\n\n\t\tvar rreturn = /\\r/g;\n\n\t\tjQuery.fn.extend({\n\t\t\tval: function val(value) {\n\t\t\t\tvar hooks,\n\t\t\t\t ret,\n\t\t\t\t valueIsFunction,\n\t\t\t\t elem = this[0];\n\n\t\t\t\tif (!arguments.length) {\n\t\t\t\t\tif (elem) {\n\t\t\t\t\t\thooks = jQuery.valHooks[elem.type] || jQuery.valHooks[elem.nodeName.toLowerCase()];\n\n\t\t\t\t\t\tif (hooks && \"get\" in hooks && (ret = hooks.get(elem, \"value\")) !== undefined) {\n\t\t\t\t\t\t\treturn ret;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tret = elem.value;\n\n\t\t\t\t\t\t// Handle most common string cases\n\t\t\t\t\t\tif (typeof ret === \"string\") {\n\t\t\t\t\t\t\treturn ret.replace(rreturn, \"\");\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tvalueIsFunction = isFunction(value);\n\n\t\t\t\treturn this.each(function (i) {\n\t\t\t\t\tvar val;\n\n\t\t\t\t\tif (this.nodeType !== 1) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (valueIsFunction) {\n\t\t\t\t\t\tval = value.call(this, i, jQuery(this).val());\n\t\t\t\t\t} else {\n\t\t\t\t\t\tval = value;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\t\t\tif (val == null) {\n\t\t\t\t\t\tval = \"\";\n\t\t\t\t\t} else if (typeof val === \"number\") {\n\t\t\t\t\t\tval += \"\";\n\t\t\t\t\t} else if (Array.isArray(val)) {\n\t\t\t\t\t\tval = jQuery.map(val, function (value) {\n\t\t\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\thooks = jQuery.valHooks[this.type] || jQuery.valHooks[this.nodeName.toLowerCase()];\n\n\t\t\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\t\t\tif (!hooks || !(\"set\" in hooks) || hooks.set(this, val, \"value\") === undefined) {\n\t\t\t\t\t\tthis.value = val;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tjQuery.extend({\n\t\t\tvalHooks: {\n\t\t\t\toption: {\n\t\t\t\t\tget: function get(elem) {\n\n\t\t\t\t\t\tvar val = jQuery.find.attr(elem, \"value\");\n\t\t\t\t\t\treturn val != null ? val :\n\n\t\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t\t// option.text throws exceptions (trac-14686, trac-14858)\n\t\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\t\tstripAndCollapse(jQuery.text(elem));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\tselect: {\n\t\t\t\t\tget: function get(elem) {\n\t\t\t\t\t\tvar value,\n\t\t\t\t\t\t option,\n\t\t\t\t\t\t i,\n\t\t\t\t\t\t options = elem.options,\n\t\t\t\t\t\t index = elem.selectedIndex,\n\t\t\t\t\t\t one = elem.type === \"select-one\",\n\t\t\t\t\t\t values = one ? null : [],\n\t\t\t\t\t\t max = one ? index + 1 : options.length;\n\n\t\t\t\t\t\tif (index < 0) {\n\t\t\t\t\t\t\ti = max;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Loop through all the selected options\n\t\t\t\t\t\tfor (; i < max; i++) {\n\t\t\t\t\t\t\toption = options[i];\n\n\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t// IE8-9 doesn't update selected after form reset (trac-2551)\n\t\t\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 && (!option.parentNode.disabled || !nodeName(option.parentNode, \"optgroup\"))) {\n\n\t\t\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\t\t\tvalue = jQuery(option).val();\n\n\t\t\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\t\t\tif (one) {\n\t\t\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\t\t\tvalues.push(value);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn values;\n\t\t\t\t\t},\n\n\t\t\t\t\tset: function set(elem, value) {\n\t\t\t\t\t\tvar optionSet,\n\t\t\t\t\t\t option,\n\t\t\t\t\t\t options = elem.options,\n\t\t\t\t\t\t values = jQuery.makeArray(value),\n\t\t\t\t\t\t i = options.length;\n\n\t\t\t\t\t\twhile (i--) {\n\t\t\t\t\t\t\toption = options[i];\n\n\t\t\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\t\t\tif (option.selected = jQuery.inArray(jQuery.valHooks.option.get(option), values) > -1) {\n\t\t\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\t\t\tif (!optionSet) {\n\t\t\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn values;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// Radios and checkboxes getter/setter\n\t\tjQuery.each([\"radio\", \"checkbox\"], function () {\n\t\t\tjQuery.valHooks[this] = {\n\t\t\t\tset: function set(elem, value) {\n\t\t\t\t\tif (Array.isArray(value)) {\n\t\t\t\t\t\treturn elem.checked = jQuery.inArray(jQuery(elem).val(), value) > -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t\tif (!support.checkOn) {\n\t\t\t\tjQuery.valHooks[this].get = function (elem) {\n\t\t\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t\t\t};\n\t\t\t}\n\t\t});\n\n\t\t// Return jQuery for attributes-only inclusion\n\t\tvar location = window.location;\n\n\t\tvar nonce = { guid: Date.now() };\n\n\t\tvar rquery = /\\?/;\n\n\t\t// Cross-browser xml parsing\n\t\tjQuery.parseXML = function (data) {\n\t\t\tvar xml, parserErrorElem;\n\t\t\tif (!data || typeof data !== \"string\") {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Support: IE 9 - 11 only\n\t\t\t// IE throws on parseFromString with invalid input.\n\t\t\ttry {\n\t\t\t\txml = new window.DOMParser().parseFromString(data, \"text/xml\");\n\t\t\t} catch (e) {}\n\n\t\t\tparserErrorElem = xml && xml.getElementsByTagName(\"parsererror\")[0];\n\t\t\tif (!xml || parserErrorElem) {\n\t\t\t\tjQuery.error(\"Invalid XML: \" + (parserErrorElem ? jQuery.map(parserErrorElem.childNodes, function (el) {\n\t\t\t\t\treturn el.textContent;\n\t\t\t\t}).join(\"\\n\") : data));\n\t\t\t}\n\t\t\treturn xml;\n\t\t};\n\n\t\tvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\t\t stopPropagationCallback = function stopPropagationCallback(e) {\n\t\t\te.stopPropagation();\n\t\t};\n\n\t\tjQuery.extend(jQuery.event, {\n\n\t\t\ttrigger: function trigger(event, data, elem, onlyHandlers) {\n\n\t\t\t\tvar i,\n\t\t\t\t cur,\n\t\t\t\t tmp,\n\t\t\t\t bubbleType,\n\t\t\t\t ontype,\n\t\t\t\t handle,\n\t\t\t\t special,\n\t\t\t\t lastElement,\n\t\t\t\t eventPath = [elem || document],\n\t\t\t\t type = hasOwn.call(event, \"type\") ? event.type : event,\n\t\t\t\t namespaces = hasOwn.call(event, \"namespace\") ? event.namespace.split(\".\") : [];\n\n\t\t\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t\t\t// Don't do events on text and comment nodes\n\t\t\t\tif (elem.nodeType === 3 || elem.nodeType === 8) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\t\t\tif (rfocusMorph.test(type + jQuery.event.triggered)) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (type.indexOf(\".\") > -1) {\n\n\t\t\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\t\t\tnamespaces = type.split(\".\");\n\t\t\t\t\ttype = namespaces.shift();\n\t\t\t\t\tnamespaces.sort();\n\t\t\t\t}\n\t\t\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\t\t\tevent = event[jQuery.expando] ? event : new jQuery.Event(type, (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\" && event);\n\n\t\t\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\t\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\t\t\tevent.namespace = namespaces.join(\".\");\n\t\t\t\tevent.rnamespace = event.namespace ? new RegExp(\"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\") : null;\n\n\t\t\t\t// Clean up the event in case it is being reused\n\t\t\t\tevent.result = undefined;\n\t\t\t\tif (!event.target) {\n\t\t\t\t\tevent.target = elem;\n\t\t\t\t}\n\n\t\t\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\t\t\tdata = data == null ? [event] : jQuery.makeArray(data, [event]);\n\n\t\t\t\t// Allow special events to draw outside the lines\n\t\t\t\tspecial = jQuery.event.special[type] || {};\n\t\t\t\tif (!onlyHandlers && special.trigger && special.trigger.apply(elem, data) === false) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Determine event propagation path in advance, per W3C events spec (trac-9951)\n\t\t\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (trac-9724)\n\t\t\t\tif (!onlyHandlers && !special.noBubble && !isWindow(elem)) {\n\n\t\t\t\t\tbubbleType = special.delegateType || type;\n\t\t\t\t\tif (!rfocusMorph.test(bubbleType + type)) {\n\t\t\t\t\t\tcur = cur.parentNode;\n\t\t\t\t\t}\n\t\t\t\t\tfor (; cur; cur = cur.parentNode) {\n\t\t\t\t\t\teventPath.push(cur);\n\t\t\t\t\t\ttmp = cur;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\t\t\tif (tmp === (elem.ownerDocument || document)) {\n\t\t\t\t\t\teventPath.push(tmp.defaultView || tmp.parentWindow || window);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fire handlers on the event path\n\t\t\t\ti = 0;\n\t\t\t\twhile ((cur = eventPath[i++]) && !event.isPropagationStopped()) {\n\t\t\t\t\tlastElement = cur;\n\t\t\t\t\tevent.type = i > 1 ? bubbleType : special.bindType || type;\n\n\t\t\t\t\t// jQuery handler\n\t\t\t\t\thandle = (dataPriv.get(cur, \"events\") || Object.create(null))[event.type] && dataPriv.get(cur, \"handle\");\n\t\t\t\t\tif (handle) {\n\t\t\t\t\t\thandle.apply(cur, data);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Native handler\n\t\t\t\t\thandle = ontype && cur[ontype];\n\t\t\t\t\tif (handle && handle.apply && acceptData(cur)) {\n\t\t\t\t\t\tevent.result = handle.apply(cur, data);\n\t\t\t\t\t\tif (event.result === false) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tevent.type = type;\n\n\t\t\t\t// If nobody prevented the default action, do it now\n\t\t\t\tif (!onlyHandlers && !event.isDefaultPrevented()) {\n\n\t\t\t\t\tif ((!special._default || special._default.apply(eventPath.pop(), data) === false) && acceptData(elem)) {\n\n\t\t\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t\t\t// Don't do default actions on window, that's where global variables be (trac-6170)\n\t\t\t\t\t\tif (ontype && isFunction(elem[type]) && !isWindow(elem)) {\n\n\t\t\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\t\t\ttmp = elem[ontype];\n\n\t\t\t\t\t\t\tif (tmp) {\n\t\t\t\t\t\t\t\telem[ontype] = null;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\t\t\tif (event.isPropagationStopped()) {\n\t\t\t\t\t\t\t\tlastElement.addEventListener(type, stopPropagationCallback);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\telem[type]();\n\n\t\t\t\t\t\t\tif (event.isPropagationStopped()) {\n\t\t\t\t\t\t\t\tlastElement.removeEventListener(type, stopPropagationCallback);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\t\t\tif (tmp) {\n\t\t\t\t\t\t\t\telem[ontype] = tmp;\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\treturn event.result;\n\t\t\t},\n\n\t\t\t// Piggyback on a donor event to simulate a different one\n\t\t\t// Used only for `focus(in | out)` events\n\t\t\tsimulate: function simulate(type, elem, event) {\n\t\t\t\tvar e = jQuery.extend(new jQuery.Event(), event, {\n\t\t\t\t\ttype: type,\n\t\t\t\t\tisSimulated: true\n\t\t\t\t});\n\n\t\t\t\tjQuery.event.trigger(e, null, elem);\n\t\t\t}\n\n\t\t});\n\n\t\tjQuery.fn.extend({\n\n\t\t\ttrigger: function trigger(type, data) {\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tjQuery.event.trigger(type, data, this);\n\t\t\t\t});\n\t\t\t},\n\t\t\ttriggerHandler: function triggerHandler(type, data) {\n\t\t\t\tvar elem = this[0];\n\t\t\t\tif (elem) {\n\t\t\t\t\treturn jQuery.event.trigger(type, data, elem, true);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tvar rbracket = /\\[\\]$/,\n\t\t rCRLF = /\\r?\\n/g,\n\t\t rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\t\t rsubmittable = /^(?:input|select|textarea|keygen)/i;\n\n\t\tfunction buildParams(prefix, obj, traditional, add) {\n\t\t\tvar name;\n\n\t\t\tif (Array.isArray(obj)) {\n\n\t\t\t\t// Serialize array item.\n\t\t\t\tjQuery.each(obj, function (i, v) {\n\t\t\t\t\tif (traditional || rbracket.test(prefix)) {\n\n\t\t\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\t\t\tadd(prefix, v);\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\t\t\tbuildParams(prefix + \"[\" + ((typeof v === \"undefined\" ? \"undefined\" : _typeof(v)) === \"object\" && v != null ? i : \"\") + \"]\", v, traditional, add);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t} else if (!traditional && toType(obj) === \"object\") {\n\n\t\t\t\t// Serialize object item.\n\t\t\t\tfor (name in obj) {\n\t\t\t\t\tbuildParams(prefix + \"[\" + name + \"]\", obj[name], traditional, add);\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Serialize scalar item.\n\t\t\t\tadd(prefix, obj);\n\t\t\t}\n\t\t}\n\n\t\t// Serialize an array of form elements or a set of\n\t\t// key/values into a query string\n\t\tjQuery.param = function (a, traditional) {\n\t\t\tvar prefix,\n\t\t\t s = [],\n\t\t\t add = function add(key, valueOrFunction) {\n\n\t\t\t\t// If value is a function, invoke it and use its return value\n\t\t\t\tvar value = isFunction(valueOrFunction) ? valueOrFunction() : valueOrFunction;\n\n\t\t\t\ts[s.length] = encodeURIComponent(key) + \"=\" + encodeURIComponent(value == null ? \"\" : value);\n\t\t\t};\n\n\t\t\tif (a == null) {\n\t\t\t\treturn \"\";\n\t\t\t}\n\n\t\t\t// If an array was passed in, assume that it is an array of form elements.\n\t\t\tif (Array.isArray(a) || a.jquery && !jQuery.isPlainObject(a)) {\n\n\t\t\t\t// Serialize the form elements\n\t\t\t\tjQuery.each(a, function () {\n\t\t\t\t\tadd(this.name, this.value);\n\t\t\t\t});\n\t\t\t} else {\n\n\t\t\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t\t\t// did it), otherwise encode params recursively.\n\t\t\t\tfor (prefix in a) {\n\t\t\t\t\tbuildParams(prefix, a[prefix], traditional, add);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Return the resulting serialization\n\t\t\treturn s.join(\"&\");\n\t\t};\n\n\t\tjQuery.fn.extend({\n\t\t\tserialize: function serialize() {\n\t\t\t\treturn jQuery.param(this.serializeArray());\n\t\t\t},\n\t\t\tserializeArray: function serializeArray() {\n\t\t\t\treturn this.map(function () {\n\n\t\t\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\t\t\tvar elements = jQuery.prop(this, \"elements\");\n\t\t\t\t\treturn elements ? jQuery.makeArray(elements) : this;\n\t\t\t\t}).filter(function () {\n\t\t\t\t\tvar type = this.type;\n\n\t\t\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\t\t\treturn this.name && !jQuery(this).is(\":disabled\") && rsubmittable.test(this.nodeName) && !rsubmitterTypes.test(type) && (this.checked || !rcheckableType.test(type));\n\t\t\t\t}).map(function (_i, elem) {\n\t\t\t\t\tvar val = jQuery(this).val();\n\n\t\t\t\t\tif (val == null) {\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (Array.isArray(val)) {\n\t\t\t\t\t\treturn jQuery.map(val, function (val) {\n\t\t\t\t\t\t\treturn { name: elem.name, value: val.replace(rCRLF, \"\\r\\n\") };\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\treturn { name: elem.name, value: val.replace(rCRLF, \"\\r\\n\") };\n\t\t\t\t}).get();\n\t\t\t}\n\t\t});\n\n\t\tvar r20 = /%20/g,\n\t\t rhash = /#.*$/,\n\t\t rantiCache = /([?&])_=[^&]*/,\n\t\t rheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\n\t\t// trac-7653, trac-8125, trac-8152: local protocol detection\n\t\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\t\t rnoContent = /^(?:GET|HEAD)$/,\n\t\t rprotocol = /^\\/\\//,\n\n\n\t\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\t\tprefilters = {},\n\n\n\t\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\t\ttransports = {},\n\n\n\t\t// Avoid comment-prolog char sequence (trac-10098); must appease lint and evade compression\n\t\tallTypes = \"*/\".concat(\"*\"),\n\n\n\t\t// Anchor tag for parsing the document origin\n\t\toriginAnchor = document.createElement(\"a\");\n\n\t\toriginAnchor.href = location.href;\n\n\t\t// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\n\t\tfunction addToPrefiltersOrTransports(structure) {\n\n\t\t\t// dataTypeExpression is optional and defaults to \"*\"\n\t\t\treturn function (dataTypeExpression, func) {\n\n\t\t\t\tif (typeof dataTypeExpression !== \"string\") {\n\t\t\t\t\tfunc = dataTypeExpression;\n\t\t\t\t\tdataTypeExpression = \"*\";\n\t\t\t\t}\n\n\t\t\t\tvar dataType,\n\t\t\t\t i = 0,\n\t\t\t\t dataTypes = dataTypeExpression.toLowerCase().match(rnothtmlwhite) || [];\n\n\t\t\t\tif (isFunction(func)) {\n\n\t\t\t\t\t// For each dataType in the dataTypeExpression\n\t\t\t\t\twhile (dataType = dataTypes[i++]) {\n\n\t\t\t\t\t\t// Prepend if requested\n\t\t\t\t\t\tif (dataType[0] === \"+\") {\n\t\t\t\t\t\t\tdataType = dataType.slice(1) || \"*\";\n\t\t\t\t\t\t\t(structure[dataType] = structure[dataType] || []).unshift(func);\n\n\t\t\t\t\t\t\t// Otherwise append\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t(structure[dataType] = structure[dataType] || []).push(func);\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// Base inspection function for prefilters and transports\n\t\tfunction inspectPrefiltersOrTransports(structure, options, originalOptions, jqXHR) {\n\n\t\t\tvar inspected = {},\n\t\t\t seekingTransport = structure === transports;\n\n\t\t\tfunction inspect(dataType) {\n\t\t\t\tvar selected;\n\t\t\t\tinspected[dataType] = true;\n\t\t\t\tjQuery.each(structure[dataType] || [], function (_, prefilterOrFactory) {\n\t\t\t\t\tvar dataTypeOrTransport = prefilterOrFactory(options, originalOptions, jqXHR);\n\t\t\t\t\tif (typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[dataTypeOrTransport]) {\n\n\t\t\t\t\t\toptions.dataTypes.unshift(dataTypeOrTransport);\n\t\t\t\t\t\tinspect(dataTypeOrTransport);\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} else if (seekingTransport) {\n\t\t\t\t\t\treturn !(selected = dataTypeOrTransport);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\treturn selected;\n\t\t\t}\n\n\t\t\treturn inspect(options.dataTypes[0]) || !inspected[\"*\"] && inspect(\"*\");\n\t\t}\n\n\t\t// A special extend for ajax options\n\t\t// that takes \"flat\" options (not to be deep extended)\n\t\t// Fixes trac-9887\n\t\tfunction ajaxExtend(target, src) {\n\t\t\tvar key,\n\t\t\t deep,\n\t\t\t flatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\t\t\tfor (key in src) {\n\t\t\t\tif (src[key] !== undefined) {\n\t\t\t\t\t(flatOptions[key] ? target : deep || (deep = {}))[key] = src[key];\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (deep) {\n\t\t\t\tjQuery.extend(true, target, deep);\n\t\t\t}\n\n\t\t\treturn target;\n\t\t}\n\n\t\t/* Handles responses to an ajax request:\n\t * - finds the right dataType (mediates between content-type and expected dataType)\n\t * - returns the corresponding response\n\t */\n\t\tfunction ajaxHandleResponses(s, jqXHR, responses) {\n\n\t\t\tvar ct,\n\t\t\t type,\n\t\t\t finalDataType,\n\t\t\t firstDataType,\n\t\t\t contents = s.contents,\n\t\t\t dataTypes = s.dataTypes;\n\n\t\t\t// Remove auto dataType and get content-type in the process\n\t\t\twhile (dataTypes[0] === \"*\") {\n\t\t\t\tdataTypes.shift();\n\t\t\t\tif (ct === undefined) {\n\t\t\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Check if we're dealing with a known content-type\n\t\t\tif (ct) {\n\t\t\t\tfor (type in contents) {\n\t\t\t\t\tif (contents[type] && contents[type].test(ct)) {\n\t\t\t\t\t\tdataTypes.unshift(type);\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Check to see if we have a response for the expected dataType\n\t\t\tif (dataTypes[0] in responses) {\n\t\t\t\tfinalDataType = dataTypes[0];\n\t\t\t} else {\n\n\t\t\t\t// Try convertible dataTypes\n\t\t\t\tfor (type in responses) {\n\t\t\t\t\tif (!dataTypes[0] || s.converters[type + \" \" + dataTypes[0]]) {\n\t\t\t\t\t\tfinalDataType = type;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tif (!firstDataType) {\n\t\t\t\t\t\tfirstDataType = type;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Or just use first one\n\t\t\t\tfinalDataType = finalDataType || firstDataType;\n\t\t\t}\n\n\t\t\t// If we found a dataType\n\t\t\t// We add the dataType to the list if needed\n\t\t\t// and return the corresponding response\n\t\t\tif (finalDataType) {\n\t\t\t\tif (finalDataType !== dataTypes[0]) {\n\t\t\t\t\tdataTypes.unshift(finalDataType);\n\t\t\t\t}\n\t\t\t\treturn responses[finalDataType];\n\t\t\t}\n\t\t}\n\n\t\t/* Chain conversions given the request and the original response\n\t * Also sets the responseXXX fields on the jqXHR instance\n\t */\n\t\tfunction ajaxConvert(s, response, jqXHR, isSuccess) {\n\t\t\tvar conv2,\n\t\t\t current,\n\t\t\t conv,\n\t\t\t tmp,\n\t\t\t prev,\n\t\t\t converters = {},\n\n\n\t\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\t\tdataTypes = s.dataTypes.slice();\n\n\t\t\t// Create converters map with lowercased keys\n\t\t\tif (dataTypes[1]) {\n\t\t\t\tfor (conv in s.converters) {\n\t\t\t\t\tconverters[conv.toLowerCase()] = s.converters[conv];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcurrent = dataTypes.shift();\n\n\t\t\t// Convert to each sequential dataType\n\t\t\twhile (current) {\n\n\t\t\t\tif (s.responseFields[current]) {\n\t\t\t\t\tjqXHR[s.responseFields[current]] = response;\n\t\t\t\t}\n\n\t\t\t\t// Apply the dataFilter if provided\n\t\t\t\tif (!prev && isSuccess && s.dataFilter) {\n\t\t\t\t\tresponse = s.dataFilter(response, s.dataType);\n\t\t\t\t}\n\n\t\t\t\tprev = current;\n\t\t\t\tcurrent = dataTypes.shift();\n\n\t\t\t\tif (current) {\n\n\t\t\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\t\t\tif (current === \"*\") {\n\n\t\t\t\t\t\tcurrent = prev;\n\n\t\t\t\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t\t\t} else if (prev !== \"*\" && prev !== current) {\n\n\t\t\t\t\t\t// Seek a direct converter\n\t\t\t\t\t\tconv = converters[prev + \" \" + current] || converters[\"* \" + current];\n\n\t\t\t\t\t\t// If none found, seek a pair\n\t\t\t\t\t\tif (!conv) {\n\t\t\t\t\t\t\tfor (conv2 in converters) {\n\n\t\t\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\t\t\ttmp = conv2.split(\" \");\n\t\t\t\t\t\t\t\tif (tmp[1] === current) {\n\n\t\t\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\t\t\tconv = converters[prev + \" \" + tmp[0]] || converters[\"* \" + tmp[0]];\n\t\t\t\t\t\t\t\t\tif (conv) {\n\n\t\t\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\t\t\tif (conv === true) {\n\t\t\t\t\t\t\t\t\t\t\tconv = converters[conv2];\n\n\t\t\t\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t\t\t} else if (converters[conv2] !== true) {\n\t\t\t\t\t\t\t\t\t\t\tcurrent = tmp[0];\n\t\t\t\t\t\t\t\t\t\t\tdataTypes.unshift(tmp[1]);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tbreak;\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// Apply converter (if not an equivalence)\n\t\t\t\t\t\tif (conv !== true) {\n\n\t\t\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\t\t\tif (conv && s.throws) {\n\t\t\t\t\t\t\t\tresponse = conv(response);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tresponse = conv(response);\n\t\t\t\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\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\t\t\t}\n\n\t\t\treturn { state: \"success\", data: response };\n\t\t}\n\n\t\tjQuery.extend({\n\n\t\t\t// Counter for holding the number of active queries\n\t\t\tactive: 0,\n\n\t\t\t// Last-Modified header cache for next request\n\t\t\tlastModified: {},\n\t\t\tetag: {},\n\n\t\t\tajaxSettings: {\n\t\t\t\turl: location.href,\n\t\t\t\ttype: \"GET\",\n\t\t\t\tisLocal: rlocalProtocol.test(location.protocol),\n\t\t\t\tglobal: true,\n\t\t\t\tprocessData: true,\n\t\t\t\tasync: true,\n\t\t\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t\t\t/*\n\t timeout: 0,\n\t data: null,\n\t dataType: null,\n\t username: null,\n\t password: null,\n\t cache: null,\n\t throws: false,\n\t traditional: false,\n\t headers: {},\n\t */\n\n\t\t\t\taccepts: {\n\t\t\t\t\t\"*\": allTypes,\n\t\t\t\t\ttext: \"text/plain\",\n\t\t\t\t\thtml: \"text/html\",\n\t\t\t\t\txml: \"application/xml, text/xml\",\n\t\t\t\t\tjson: \"application/json, text/javascript\"\n\t\t\t\t},\n\n\t\t\t\tcontents: {\n\t\t\t\t\txml: /\\bxml\\b/,\n\t\t\t\t\thtml: /\\bhtml/,\n\t\t\t\t\tjson: /\\bjson\\b/\n\t\t\t\t},\n\n\t\t\t\tresponseFields: {\n\t\t\t\t\txml: \"responseXML\",\n\t\t\t\t\ttext: \"responseText\",\n\t\t\t\t\tjson: \"responseJSON\"\n\t\t\t\t},\n\n\t\t\t\t// Data converters\n\t\t\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\t\t\tconverters: {\n\n\t\t\t\t\t// Convert anything to text\n\t\t\t\t\t\"* text\": String,\n\n\t\t\t\t\t// Text to html (true = no transformation)\n\t\t\t\t\t\"text html\": true,\n\n\t\t\t\t\t// Evaluate text as a json expression\n\t\t\t\t\t\"text json\": JSON.parse,\n\n\t\t\t\t\t// Parse text as xml\n\t\t\t\t\t\"text xml\": jQuery.parseXML\n\t\t\t\t},\n\n\t\t\t\t// For options that shouldn't be deep extended:\n\t\t\t\t// you can add your own custom options here if\n\t\t\t\t// and when you create one that shouldn't be\n\t\t\t\t// deep extended (see ajaxExtend)\n\t\t\t\tflatOptions: {\n\t\t\t\t\turl: true,\n\t\t\t\t\tcontext: true\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// Creates a full fledged settings object into target\n\t\t\t// with both ajaxSettings and settings fields.\n\t\t\t// If target is omitted, writes into ajaxSettings.\n\t\t\tajaxSetup: function ajaxSetup(target, settings) {\n\t\t\t\treturn settings ?\n\n\t\t\t\t// Building a settings object\n\t\t\t\tajaxExtend(ajaxExtend(target, jQuery.ajaxSettings), settings) :\n\n\t\t\t\t// Extending ajaxSettings\n\t\t\t\tajaxExtend(jQuery.ajaxSettings, target);\n\t\t\t},\n\n\t\t\tajaxPrefilter: addToPrefiltersOrTransports(prefilters),\n\t\t\tajaxTransport: addToPrefiltersOrTransports(transports),\n\n\t\t\t// Main method\n\t\t\tajax: function ajax(url, options) {\n\n\t\t\t\t// If url is an object, simulate pre-1.5 signature\n\t\t\t\tif ((typeof url === \"undefined\" ? \"undefined\" : _typeof(url)) === \"object\") {\n\t\t\t\t\toptions = url;\n\t\t\t\t\turl = undefined;\n\t\t\t\t}\n\n\t\t\t\t// Force options to be an object\n\t\t\t\toptions = options || {};\n\n\t\t\t\tvar transport,\n\n\n\t\t\t\t// URL without anti-cache param\n\t\t\t\tcacheURL,\n\n\n\t\t\t\t// Response headers\n\t\t\t\tresponseHeadersString,\n\t\t\t\t responseHeaders,\n\n\n\t\t\t\t// timeout handle\n\t\t\t\ttimeoutTimer,\n\n\n\t\t\t\t// Url cleanup var\n\t\t\t\turlAnchor,\n\n\n\t\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\t\tcompleted,\n\n\n\t\t\t\t// To know if global events are to be dispatched\n\t\t\t\tfireGlobals,\n\n\n\t\t\t\t// Loop variable\n\t\t\t\ti,\n\n\n\t\t\t\t// uncached part of the url\n\t\t\t\tuncached,\n\n\n\t\t\t\t// Create the final options object\n\t\t\t\ts = jQuery.ajaxSetup({}, options),\n\n\n\t\t\t\t// Callbacks context\n\t\t\t\tcallbackContext = s.context || s,\n\n\n\t\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\t\tglobalEventContext = s.context && (callbackContext.nodeType || callbackContext.jquery) ? jQuery(callbackContext) : jQuery.event,\n\n\n\t\t\t\t// Deferreds\n\t\t\t\tdeferred = jQuery.Deferred(),\n\t\t\t\t completeDeferred = jQuery.Callbacks(\"once memory\"),\n\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\t_statusCode = s.statusCode || {},\n\n\n\t\t\t\t// Headers (they are sent all at once)\n\t\t\t\trequestHeaders = {},\n\t\t\t\t requestHeadersNames = {},\n\n\n\t\t\t\t// Default abort message\n\t\t\t\tstrAbort = \"canceled\",\n\n\n\t\t\t\t// Fake xhr\n\t\t\t\tjqXHR = {\n\t\t\t\t\treadyState: 0,\n\n\t\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\t\tgetResponseHeader: function getResponseHeader(key) {\n\t\t\t\t\t\tvar match;\n\t\t\t\t\t\tif (completed) {\n\t\t\t\t\t\t\tif (!responseHeaders) {\n\t\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\t\twhile (match = rheaders.exec(responseHeadersString)) {\n\t\t\t\t\t\t\t\t\tresponseHeaders[match[1].toLowerCase() + \" \"] = (responseHeaders[match[1].toLowerCase() + \" \"] || []).concat(match[2]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tmatch = responseHeaders[key.toLowerCase() + \" \"];\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn match == null ? null : match.join(\", \");\n\t\t\t\t\t},\n\n\t\t\t\t\t// Raw string\n\t\t\t\t\tgetAllResponseHeaders: function getAllResponseHeaders() {\n\t\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t\t},\n\n\t\t\t\t\t// Caches the header\n\t\t\t\t\tsetRequestHeader: function setRequestHeader(name, value) {\n\t\t\t\t\t\tif (completed == null) {\n\t\t\t\t\t\t\tname = requestHeadersNames[name.toLowerCase()] = requestHeadersNames[name.toLowerCase()] || name;\n\t\t\t\t\t\t\trequestHeaders[name] = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t},\n\n\t\t\t\t\t// Overrides response content-type header\n\t\t\t\t\toverrideMimeType: function overrideMimeType(type) {\n\t\t\t\t\t\tif (completed == null) {\n\t\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t},\n\n\t\t\t\t\t// Status-dependent callbacks\n\t\t\t\t\tstatusCode: function statusCode(map) {\n\t\t\t\t\t\tvar code;\n\t\t\t\t\t\tif (map) {\n\t\t\t\t\t\t\tif (completed) {\n\n\t\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\t\tjqXHR.always(map[jqXHR.status]);\n\t\t\t\t\t\t\t} else {\n\n\t\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\t\tfor (code in map) {\n\t\t\t\t\t\t\t\t\t_statusCode[code] = [_statusCode[code], map[code]];\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\treturn this;\n\t\t\t\t\t},\n\n\t\t\t\t\t// Cancel the request\n\t\t\t\t\tabort: function abort(statusText) {\n\t\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\t\tif (transport) {\n\t\t\t\t\t\t\ttransport.abort(finalText);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdone(0, finalText);\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Attach deferreds\n\t\t\t\tdeferred.promise(jqXHR);\n\n\t\t\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t\t\t// Handle falsy url in the settings object (trac-10093: consistency with old signature)\n\t\t\t\t// We also use the url parameter if available\n\t\t\t\ts.url = ((url || s.url || location.href) + \"\").replace(rprotocol, location.protocol + \"//\");\n\n\t\t\t\t// Alias method option to type as per ticket trac-12004\n\t\t\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t\t\t// Extract dataTypes list\n\t\t\t\ts.dataTypes = (s.dataType || \"*\").toLowerCase().match(rnothtmlwhite) || [\"\"];\n\n\t\t\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\t\t\tif (s.crossDomain == null) {\n\t\t\t\t\turlAnchor = document.createElement(\"a\");\n\n\t\t\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t\t\t// e.g. http://example.com:80x/\n\t\t\t\t\ttry {\n\t\t\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !== urlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t\t\t} catch (e) {\n\n\t\t\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\t\t\ts.crossDomain = true;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Convert data if not already a string\n\t\t\t\tif (s.data && s.processData && typeof s.data !== \"string\") {\n\t\t\t\t\ts.data = jQuery.param(s.data, s.traditional);\n\t\t\t\t}\n\n\t\t\t\t// Apply prefilters\n\t\t\t\tinspectPrefiltersOrTransports(prefilters, s, options, jqXHR);\n\n\t\t\t\t// If request was aborted inside a prefilter, stop there\n\t\t\t\tif (completed) {\n\t\t\t\t\treturn jqXHR;\n\t\t\t\t}\n\n\t\t\t\t// We can fire global events as of now if asked to\n\t\t\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (trac-15118)\n\t\t\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t\t\t// Watch for a new set of requests\n\t\t\t\tif (fireGlobals && jQuery.active++ === 0) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t\t\t}\n\n\t\t\t\t// Uppercase the type\n\t\t\t\ts.type = s.type.toUpperCase();\n\n\t\t\t\t// Determine if request has content\n\t\t\t\ts.hasContent = !rnoContent.test(s.type);\n\n\t\t\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t\t\t// and/or If-None-Match header later on\n\t\t\t\t// Remove hash to simplify url manipulation\n\t\t\t\tcacheURL = s.url.replace(rhash, \"\");\n\n\t\t\t\t// More options handling for requests with no content\n\t\t\t\tif (!s.hasContent) {\n\n\t\t\t\t\t// Remember the hash so we can put it back\n\t\t\t\t\tuncached = s.url.slice(cacheURL.length);\n\n\t\t\t\t\t// If data is available and should be processed, append data to url\n\t\t\t\t\tif (s.data && (s.processData || typeof s.data === \"string\")) {\n\t\t\t\t\t\tcacheURL += (rquery.test(cacheURL) ? \"&\" : \"?\") + s.data;\n\n\t\t\t\t\t\t// trac-9682: remove data so that it's not used in an eventual retry\n\t\t\t\t\t\tdelete s.data;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Add or update anti-cache param if needed\n\t\t\t\t\tif (s.cache === false) {\n\t\t\t\t\t\tcacheURL = cacheURL.replace(rantiCache, \"$1\");\n\t\t\t\t\t\tuncached = (rquery.test(cacheURL) ? \"&\" : \"?\") + \"_=\" + nonce.guid++ + uncached;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\t\t\ts.url = cacheURL + uncached;\n\n\t\t\t\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t\t\t} else if (s.data && s.processData && (s.contentType || \"\").indexOf(\"application/x-www-form-urlencoded\") === 0) {\n\t\t\t\t\ts.data = s.data.replace(r20, \"+\");\n\t\t\t\t}\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\tif (jQuery.lastModified[cacheURL]) {\n\t\t\t\t\t\tjqXHR.setRequestHeader(\"If-Modified-Since\", jQuery.lastModified[cacheURL]);\n\t\t\t\t\t}\n\t\t\t\t\tif (jQuery.etag[cacheURL]) {\n\t\t\t\t\t\tjqXHR.setRequestHeader(\"If-None-Match\", jQuery.etag[cacheURL]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Set the correct header, if data is being sent\n\t\t\t\tif (s.data && s.hasContent && s.contentType !== false || options.contentType) {\n\t\t\t\t\tjqXHR.setRequestHeader(\"Content-Type\", s.contentType);\n\t\t\t\t}\n\n\t\t\t\t// Set the Accepts header for the server, depending on the dataType\n\t\t\t\tjqXHR.setRequestHeader(\"Accept\", s.dataTypes[0] && s.accepts[s.dataTypes[0]] ? s.accepts[s.dataTypes[0]] + (s.dataTypes[0] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\") : s.accepts[\"*\"]);\n\n\t\t\t\t// Check for headers option\n\t\t\t\tfor (i in s.headers) {\n\t\t\t\t\tjqXHR.setRequestHeader(i, s.headers[i]);\n\t\t\t\t}\n\n\t\t\t\t// Allow custom headers/mimetypes and early abort\n\t\t\t\tif (s.beforeSend && (s.beforeSend.call(callbackContext, jqXHR, s) === false || completed)) {\n\n\t\t\t\t\t// Abort if not done already and return\n\t\t\t\t\treturn jqXHR.abort();\n\t\t\t\t}\n\n\t\t\t\t// Aborting is no longer a cancellation\n\t\t\t\tstrAbort = \"abort\";\n\n\t\t\t\t// Install callbacks on deferreds\n\t\t\t\tcompleteDeferred.add(s.complete);\n\t\t\t\tjqXHR.done(s.success);\n\t\t\t\tjqXHR.fail(s.error);\n\n\t\t\t\t// Get transport\n\t\t\t\ttransport = inspectPrefiltersOrTransports(transports, s, options, jqXHR);\n\n\t\t\t\t// If no transport, we auto-abort\n\t\t\t\tif (!transport) {\n\t\t\t\t\tdone(-1, \"No Transport\");\n\t\t\t\t} else {\n\t\t\t\t\tjqXHR.readyState = 1;\n\n\t\t\t\t\t// Send global event\n\t\t\t\t\tif (fireGlobals) {\n\t\t\t\t\t\tglobalEventContext.trigger(\"ajaxSend\", [jqXHR, s]);\n\t\t\t\t\t}\n\n\t\t\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\t\t\tif (completed) {\n\t\t\t\t\t\treturn jqXHR;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Timeout\n\t\t\t\t\tif (s.async && s.timeout > 0) {\n\t\t\t\t\t\ttimeoutTimer = window.setTimeout(function () {\n\t\t\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t\t\t}, s.timeout);\n\t\t\t\t\t}\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tcompleted = false;\n\t\t\t\t\t\ttransport.send(requestHeaders, done);\n\t\t\t\t\t} catch (e) {\n\n\t\t\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\t\t\tif (completed) {\n\t\t\t\t\t\t\tthrow e;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Propagate others as results\n\t\t\t\t\t\tdone(-1, e);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Callback for when everything is done\n\t\t\t\tfunction done(status, nativeStatusText, responses, headers) {\n\t\t\t\t\tvar isSuccess,\n\t\t\t\t\t success,\n\t\t\t\t\t error,\n\t\t\t\t\t response,\n\t\t\t\t\t modified,\n\t\t\t\t\t statusText = nativeStatusText;\n\n\t\t\t\t\t// Ignore repeat invocations\n\t\t\t\t\tif (completed) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tcompleted = true;\n\n\t\t\t\t\t// Clear timeout if it exists\n\t\t\t\t\tif (timeoutTimer) {\n\t\t\t\t\t\twindow.clearTimeout(timeoutTimer);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Dereference transport for early garbage collection\n\t\t\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\t\t\ttransport = undefined;\n\n\t\t\t\t\t// Cache response headers\n\t\t\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t\t\t// Set readyState\n\t\t\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t\t\t// Determine if successful\n\t\t\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t\t\t// Get response data\n\t\t\t\t\tif (responses) {\n\t\t\t\t\t\tresponse = ajaxHandleResponses(s, jqXHR, responses);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Use a noop converter for missing script but not if jsonp\n\t\t\t\t\tif (!isSuccess && jQuery.inArray(\"script\", s.dataTypes) > -1 && jQuery.inArray(\"json\", s.dataTypes) < 0) {\n\t\t\t\t\t\ts.converters[\"text script\"] = function () {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\t\t\tresponse = ajaxConvert(s, response, jqXHR, isSuccess);\n\n\t\t\t\t\t// If successful, handle type chaining\n\t\t\t\t\tif (isSuccess) {\n\n\t\t\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\t\t\tif (s.ifModified) {\n\t\t\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\t\t\tif (modified) {\n\t\t\t\t\t\t\t\tjQuery.lastModified[cacheURL] = modified;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\t\t\tif (modified) {\n\t\t\t\t\t\t\t\tjQuery.etag[cacheURL] = modified;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// if no content\n\t\t\t\t\t\tif (status === 204 || s.type === \"HEAD\") {\n\t\t\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t\t\t\t// if not modified\n\t\t\t\t\t\t} else if (status === 304) {\n\t\t\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t\t\t\t// If we have data, let's convert it\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\t\t\terror = response.error;\n\t\t\t\t\t\t\tisSuccess = !error;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\t\t\terror = statusText;\n\t\t\t\t\t\tif (status || !statusText) {\n\t\t\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\t\t\tif (status < 0) {\n\t\t\t\t\t\t\t\tstatus = 0;\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// Set data for the fake xhr object\n\t\t\t\t\tjqXHR.status = status;\n\t\t\t\t\tjqXHR.statusText = (nativeStatusText || statusText) + \"\";\n\n\t\t\t\t\t// Success/Error\n\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\tdeferred.resolveWith(callbackContext, [success, statusText, jqXHR]);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdeferred.rejectWith(callbackContext, [jqXHR, statusText, error]);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Status-dependent callbacks\n\t\t\t\t\tjqXHR.statusCode(_statusCode);\n\t\t\t\t\t_statusCode = undefined;\n\n\t\t\t\t\tif (fireGlobals) {\n\t\t\t\t\t\tglobalEventContext.trigger(isSuccess ? \"ajaxSuccess\" : \"ajaxError\", [jqXHR, s, isSuccess ? success : error]);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Complete\n\t\t\t\t\tcompleteDeferred.fireWith(callbackContext, [jqXHR, statusText]);\n\n\t\t\t\t\tif (fireGlobals) {\n\t\t\t\t\t\tglobalEventContext.trigger(\"ajaxComplete\", [jqXHR, s]);\n\n\t\t\t\t\t\t// Handle the global AJAX counter\n\t\t\t\t\t\tif (! --jQuery.active) {\n\t\t\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn jqXHR;\n\t\t\t},\n\n\t\t\tgetJSON: function getJSON(url, data, callback) {\n\t\t\t\treturn jQuery.get(url, data, callback, \"json\");\n\t\t\t},\n\n\t\t\tgetScript: function getScript(url, callback) {\n\t\t\t\treturn jQuery.get(url, undefined, callback, \"script\");\n\t\t\t}\n\t\t});\n\n\t\tjQuery.each([\"get\", \"post\"], function (_i, method) {\n\t\t\tjQuery[method] = function (url, data, callback, type) {\n\n\t\t\t\t// Shift arguments if data argument was omitted\n\t\t\t\tif (isFunction(data)) {\n\t\t\t\t\ttype = type || callback;\n\t\t\t\t\tcallback = data;\n\t\t\t\t\tdata = undefined;\n\t\t\t\t}\n\n\t\t\t\t// The url can be an options object (which then must have .url)\n\t\t\t\treturn jQuery.ajax(jQuery.extend({\n\t\t\t\t\turl: url,\n\t\t\t\t\ttype: method,\n\t\t\t\t\tdataType: type,\n\t\t\t\t\tdata: data,\n\t\t\t\t\tsuccess: callback\n\t\t\t\t}, jQuery.isPlainObject(url) && url));\n\t\t\t};\n\t\t});\n\n\t\tjQuery.ajaxPrefilter(function (s) {\n\t\t\tvar i;\n\t\t\tfor (i in s.headers) {\n\t\t\t\tif (i.toLowerCase() === \"content-type\") {\n\t\t\t\t\ts.contentType = s.headers[i] || \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tjQuery._evalUrl = function (url, options, doc) {\n\t\t\treturn jQuery.ajax({\n\t\t\t\turl: url,\n\n\t\t\t\t// Make this explicit, since user can override this through ajaxSetup (trac-11264)\n\t\t\t\ttype: \"GET\",\n\t\t\t\tdataType: \"script\",\n\t\t\t\tcache: true,\n\t\t\t\tasync: false,\n\t\t\t\tglobal: false,\n\n\t\t\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t\t\t// of the default converter is kludgy but it works.\n\t\t\t\tconverters: {\n\t\t\t\t\t\"text script\": function textScript() {}\n\t\t\t\t},\n\t\t\t\tdataFilter: function dataFilter(response) {\n\t\t\t\t\tjQuery.globalEval(response, options, doc);\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\tjQuery.fn.extend({\n\t\t\twrapAll: function wrapAll(html) {\n\t\t\t\tvar wrap;\n\n\t\t\t\tif (this[0]) {\n\t\t\t\t\tif (isFunction(html)) {\n\t\t\t\t\t\thtml = html.call(this[0]);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The elements to wrap the target around\n\t\t\t\t\twrap = jQuery(html, this[0].ownerDocument).eq(0).clone(true);\n\n\t\t\t\t\tif (this[0].parentNode) {\n\t\t\t\t\t\twrap.insertBefore(this[0]);\n\t\t\t\t\t}\n\n\t\t\t\t\twrap.map(function () {\n\t\t\t\t\t\tvar elem = this;\n\n\t\t\t\t\t\twhile (elem.firstElementChild) {\n\t\t\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn elem;\n\t\t\t\t\t}).append(this);\n\t\t\t\t}\n\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\twrapInner: function wrapInner(html) {\n\t\t\t\tif (isFunction(html)) {\n\t\t\t\t\treturn this.each(function (i) {\n\t\t\t\t\t\tjQuery(this).wrapInner(html.call(this, i));\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\treturn this.each(function () {\n\t\t\t\t\tvar self = jQuery(this),\n\t\t\t\t\t contents = self.contents();\n\n\t\t\t\t\tif (contents.length) {\n\t\t\t\t\t\tcontents.wrapAll(html);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.append(html);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\n\t\t\twrap: function wrap(html) {\n\t\t\t\tvar htmlIsFunction = isFunction(html);\n\n\t\t\t\treturn this.each(function (i) {\n\t\t\t\t\tjQuery(this).wrapAll(htmlIsFunction ? html.call(this, i) : html);\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tunwrap: function unwrap(selector) {\n\t\t\t\tthis.parent(selector).not(\"body\").each(function () {\n\t\t\t\t\tjQuery(this).replaceWith(this.childNodes);\n\t\t\t\t});\n\t\t\t\treturn this;\n\t\t\t}\n\t\t});\n\n\t\tjQuery.expr.pseudos.hidden = function (elem) {\n\t\t\treturn !jQuery.expr.pseudos.visible(elem);\n\t\t};\n\t\tjQuery.expr.pseudos.visible = function (elem) {\n\t\t\treturn !!(elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length);\n\t\t};\n\n\t\tjQuery.ajaxSettings.xhr = function () {\n\t\t\ttry {\n\t\t\t\treturn new window.XMLHttpRequest();\n\t\t\t} catch (e) {}\n\t\t};\n\n\t\tvar xhrSuccessStatus = {\n\n\t\t\t// File protocol always yields status code 0, assume 200\n\t\t\t0: 200,\n\n\t\t\t// Support: IE <=9 only\n\t\t\t// trac-1450: sometimes IE returns 1223 when it should be 204\n\t\t\t1223: 204\n\t\t},\n\t\t xhrSupported = jQuery.ajaxSettings.xhr();\n\n\t\tsupport.cors = !!xhrSupported && \"withCredentials\" in xhrSupported;\n\t\tsupport.ajax = xhrSupported = !!xhrSupported;\n\n\t\tjQuery.ajaxTransport(function (options) {\n\t\t\tvar _callback, errorCallback;\n\n\t\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\t\tif (support.cors || xhrSupported && !options.crossDomain) {\n\t\t\t\treturn {\n\t\t\t\t\tsend: function send(headers, complete) {\n\t\t\t\t\t\tvar i,\n\t\t\t\t\t\t xhr = options.xhr();\n\n\t\t\t\t\t\txhr.open(options.type, options.url, options.async, options.username, options.password);\n\n\t\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\t\tif (options.xhrFields) {\n\t\t\t\t\t\t\tfor (i in options.xhrFields) {\n\t\t\t\t\t\t\t\txhr[i] = options.xhrFields[i];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\t\tif (options.mimeType && xhr.overrideMimeType) {\n\t\t\t\t\t\t\txhr.overrideMimeType(options.mimeType);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\t\tif (!options.crossDomain && !headers[\"X-Requested-With\"]) {\n\t\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Set headers\n\t\t\t\t\t\tfor (i in headers) {\n\t\t\t\t\t\t\txhr.setRequestHeader(i, headers[i]);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Callback\n\t\t\t\t\t\t_callback = function callback(type) {\n\t\t\t\t\t\t\treturn function () {\n\t\t\t\t\t\t\t\tif (_callback) {\n\t\t\t\t\t\t\t\t\t_callback = errorCallback = xhr.onload = xhr.onerror = xhr.onabort = xhr.ontimeout = xhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\t\t\tif (type === \"abort\") {\n\t\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t\t} else if (type === \"error\") {\n\n\t\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\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\t\t\tif (typeof xhr.status !== \"number\") {\n\t\t\t\t\t\t\t\t\t\t\tcomplete(0, \"error\");\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\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\t\txhr.status, xhr.statusText);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tcomplete(xhrSuccessStatus[xhr.status] || xhr.status, xhr.statusText,\n\n\t\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\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\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t\t(xhr.responseType || \"text\") !== \"text\" || typeof xhr.responseText !== \"string\" ? { binary: xhr.response } : { text: xhr.responseText }, xhr.getAllResponseHeaders());\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// Listen to events\n\t\t\t\t\t\txhr.onload = _callback();\n\t\t\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = _callback(\"error\");\n\n\t\t\t\t\t\t// Support: IE 9 only\n\t\t\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t\t\t// to handle uncaught aborts\n\t\t\t\t\t\tif (xhr.onabort !== undefined) {\n\t\t\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\txhr.onreadystatechange = function () {\n\n\t\t\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\t\t\tif (xhr.readyState === 4) {\n\n\t\t\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\t\t\twindow.setTimeout(function () {\n\t\t\t\t\t\t\t\t\t\tif (_callback) {\n\t\t\t\t\t\t\t\t\t\t\terrorCallback();\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// Create the abort callback\n\t\t\t\t\t\t_callback = _callback(\"abort\");\n\n\t\t\t\t\t\ttry {\n\n\t\t\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\t\t\txhr.send(options.hasContent && options.data || null);\n\t\t\t\t\t\t} catch (e) {\n\n\t\t\t\t\t\t\t// trac-14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\t\t\tif (_callback) {\n\t\t\t\t\t\t\t\tthrow e;\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\tabort: function abort() {\n\t\t\t\t\t\tif (_callback) {\n\t\t\t\t\t\t\t_callback();\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// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\n\t\tjQuery.ajaxPrefilter(function (s) {\n\t\t\tif (s.crossDomain) {\n\t\t\t\ts.contents.script = false;\n\t\t\t}\n\t\t});\n\n\t\t// Install script dataType\n\t\tjQuery.ajaxSetup({\n\t\t\taccepts: {\n\t\t\t\tscript: \"text/javascript, application/javascript, \" + \"application/ecmascript, application/x-ecmascript\"\n\t\t\t},\n\t\t\tcontents: {\n\t\t\t\tscript: /\\b(?:java|ecma)script\\b/\n\t\t\t},\n\t\t\tconverters: {\n\t\t\t\t\"text script\": function textScript(text) {\n\t\t\t\t\tjQuery.globalEval(text);\n\t\t\t\t\treturn text;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// Handle cache's special case and crossDomain\n\t\tjQuery.ajaxPrefilter(\"script\", function (s) {\n\t\t\tif (s.cache === undefined) {\n\t\t\t\ts.cache = false;\n\t\t\t}\n\t\t\tif (s.crossDomain) {\n\t\t\t\ts.type = \"GET\";\n\t\t\t}\n\t\t});\n\n\t\t// Bind script tag hack transport\n\t\tjQuery.ajaxTransport(\"script\", function (s) {\n\n\t\t\t// This transport only deals with cross domain or forced-by-attrs requests\n\t\t\tif (s.crossDomain || s.scriptAttrs) {\n\t\t\t\tvar script, _callback2;\n\t\t\t\treturn {\n\t\t\t\t\tsend: function send(_, complete) {\n\t\t\t\t\t\tscript = jQuery(\"