{"version":3,"file":"popper.min.js","sources":["https:\/\/edu.betha.com.br\/lib\/amd\/src\/popper.js"],"sourcesContent":["\/**!\n * @fileOverview Kickass library to create and place poppers near their reference elements.\n * @version 1.12.6\n * @license\n * Copyright (c) 2016 Federico Zivolo and contributors\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and\/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n *\/\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (global.Popper = factory());\n}(this, (function () { 'use strict';\n\nvar isBrowser = typeof window !== 'undefined' && typeof window.document !== 'undefined';\nvar longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox'];\nvar timeoutDuration = 0;\nfor (var i = 0; i < longerTimeoutBrowsers.length; i += 1) {\n if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) {\n timeoutDuration = 1;\n break;\n }\n}\n\nfunction microtaskDebounce(fn) {\n var called = false;\n return function () {\n if (called) {\n return;\n }\n called = true;\n Promise.resolve().then(function () {\n called = false;\n fn();\n });\n };\n}\n\nfunction taskDebounce(fn) {\n var scheduled = false;\n return function () {\n if (!scheduled) {\n scheduled = true;\n setTimeout(function () {\n scheduled = false;\n fn();\n }, timeoutDuration);\n }\n };\n}\n\nvar supportsMicroTasks = isBrowser && window.Promise;\n\n\/**\n* Create a debounced version of a method, that's asynchronously deferred\n* but called in the minimum time possible.\n*\n* @method\n* @memberof Popper.Utils\n* @argument {Function} fn\n* @returns {Function}\n*\/\nvar debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce;\n\n\/**\n * Check if the given variable is a function\n * @method\n * @memberof Popper.Utils\n * @argument {Any} functionToCheck - variable to check\n * @returns {Boolean} answer to: is a function?\n *\/\nfunction isFunction(functionToCheck) {\n var getType = {};\n return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';\n}\n\n\/**\n * Get CSS computed property of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Eement} element\n * @argument {String} property\n *\/\nfunction getStyleComputedProperty(element, property) {\n if (element.nodeType !== 1) {\n return [];\n }\n \/\/ NOTE: 1 DOM access here\n var css = window.getComputedStyle(element, null);\n return property ? css[property] : css;\n}\n\n\/**\n * Returns the parentNode or the host of the element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} parent\n *\/\nfunction getParentNode(element) {\n if (element.nodeName === 'HTML') {\n return element;\n }\n return element.parentNode || element.host;\n}\n\n\/**\n * Returns the scrolling parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} scroll parent\n *\/\nfunction getScrollParent(element) {\n \/\/ Return body, `getScroll` will take care to get the correct `scrollTop` from it\n if (!element) {\n return window.document.body;\n }\n\n switch (element.nodeName) {\n case 'HTML':\n case 'BODY':\n return element.ownerDocument.body;\n case '#document':\n return element.body;\n }\n\n \/\/ Firefox want us to check `-x` and `-y` variations as well\n\n var _getStyleComputedProp = getStyleComputedProperty(element),\n overflow = _getStyleComputedProp.overflow,\n overflowX = _getStyleComputedProp.overflowX,\n overflowY = _getStyleComputedProp.overflowY;\n\n if (\/(auto|scroll)\/.test(overflow + overflowY + overflowX)) {\n return element;\n }\n\n return getScrollParent(getParentNode(element));\n}\n\n\/**\n * Returns the offset parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} offset parent\n *\/\nfunction getOffsetParent(element) {\n \/\/ NOTE: 1 DOM access here\n var offsetParent = element && element.offsetParent;\n var nodeName = offsetParent && offsetParent.nodeName;\n\n if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') {\n if (element) {\n return element.ownerDocument.documentElement;\n }\n\n return window.document.documentElement;\n }\n\n \/\/ .offsetParent will return the closest TD or TABLE in case\n \/\/ no offsetParent is present, I hate this job...\n if (['TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') {\n return getOffsetParent(offsetParent);\n }\n\n return offsetParent;\n}\n\nfunction isOffsetContainer(element) {\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY') {\n return false;\n }\n return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element;\n}\n\n\/**\n * Finds the root node (document, shadowDOM root) of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} node\n * @returns {Element} root node\n *\/\nfunction getRoot(node) {\n if (node.parentNode !== null) {\n return getRoot(node.parentNode);\n }\n\n return node;\n}\n\n\/**\n * Finds the offset parent common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n *\/\nfunction findCommonOffsetParent(element1, element2) {\n \/\/ This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n return window.document.documentElement;\n }\n\n \/\/ Here we make sure to give as \"start\" the element that comes first in the DOM\n var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING;\n var start = order ? element1 : element2;\n var end = order ? element2 : element1;\n\n \/\/ Get common ancestor container\n var range = document.createRange();\n range.setStart(start, 0);\n range.setEnd(end, 0);\n var commonAncestorContainer = range.commonAncestorContainer;\n\n \/\/ Both nodes are inside #document\n\n if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) {\n if (isOffsetContainer(commonAncestorContainer)) {\n return commonAncestorContainer;\n }\n\n return getOffsetParent(commonAncestorContainer);\n }\n\n \/\/ one of the nodes is inside shadowDOM, find which one\n var element1root = getRoot(element1);\n if (element1root.host) {\n return findCommonOffsetParent(element1root.host, element2);\n } else {\n return findCommonOffsetParent(element1, getRoot(element2).host);\n }\n}\n\n\/**\n * Gets the scroll value of the given element in the given side (top and left)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {String} side `top` or `left`\n * @returns {number} amount of scrolled pixels\n *\/\nfunction getScroll(element) {\n var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top';\n\n var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n var html = element.ownerDocument.documentElement;\n var scrollingElement = element.ownerDocument.scrollingElement || html;\n return scrollingElement[upperSide];\n }\n\n return element[upperSide];\n}\n\n\/*\n * Sum or subtract the element scroll values (left and top) from a given rect object\n * @method\n * @memberof Popper.Utils\n * @param {Object} rect - Rect object you want to change\n * @param {HTMLElement} element - The element from the function reads the scroll values\n * @param {Boolean} subtract - set to true if you want to subtract the scroll values\n * @return {Object} rect - The modifier rect object\n *\/\nfunction includeScroll(rect, element) {\n var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n var modifier = subtract ? -1 : 1;\n rect.top += scrollTop * modifier;\n rect.bottom += scrollTop * modifier;\n rect.left += scrollLeft * modifier;\n rect.right += scrollLeft * modifier;\n return rect;\n}\n\n\/*\n * Helper to detect borders of a given element\n * @method\n * @memberof Popper.Utils\n * @param {CSSStyleDeclaration} styles\n * Result of `getStyleComputedProperty` on the given element\n * @param {String} axis - `x` or `y`\n * @return {number} borders - The borders size of the given axis\n *\/\n\nfunction getBordersSize(styles, axis) {\n var sideA = axis === 'x' ? 'Left' : 'Top';\n var sideB = sideA === 'Left' ? 'Right' : 'Bottom';\n\n return +styles['border' + sideA + 'Width'].split('px')[0] + +styles['border' + sideB + 'Width'].split('px')[0];\n}\n\n\/**\n * Tells if you are running Internet Explorer 10\n * @method\n * @memberof Popper.Utils\n * @returns {Boolean} isIE10\n *\/\nvar isIE10 = undefined;\n\nvar isIE10$1 = function () {\n if (isIE10 === undefined) {\n isIE10 = navigator.appVersion.indexOf('MSIE 10') !== -1;\n }\n return isIE10;\n};\n\nfunction getSize(axis, body, html, computedStyle) {\n return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE10$1() ? html['offset' + axis] + computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')] + computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')] : 0);\n}\n\nfunction getWindowSizes() {\n var body = window.document.body;\n var html = window.document.documentElement;\n var computedStyle = isIE10$1() && window.getComputedStyle(html);\n\n return {\n height: getSize('Height', body, html, computedStyle),\n width: getSize('Width', body, html, computedStyle)\n };\n}\n\nvar classCallCheck = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\nvar defineProperty = function (obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n};\n\nvar _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n\/**\n * Given element offsets, generate an output similar to getBoundingClientRect\n * @method\n * @memberof Popper.Utils\n * @argument {Object} offsets\n * @returns {Object} ClientRect like output\n *\/\nfunction getClientRect(offsets) {\n return _extends({}, offsets, {\n right: offsets.left + offsets.width,\n bottom: offsets.top + offsets.height\n });\n}\n\n\/**\n * Get bounding client rect of given element\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} element\n * @return {Object} client rect\n *\/\nfunction getBoundingClientRect(element) {\n var rect = {};\n\n \/\/ IE10 10 FIX: Please, don't ask, the element isn't\n \/\/ considered in DOM in some circumstances...\n \/\/ This isn't reproducible in IE10 compatibility mode of IE11\n if (isIE10$1()) {\n try {\n rect = element.getBoundingClientRect();\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n rect.top += scrollTop;\n rect.left += scrollLeft;\n rect.bottom += scrollTop;\n rect.right += scrollLeft;\n } catch (err) {}\n } else {\n rect = element.getBoundingClientRect();\n }\n\n var result = {\n left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top\n };\n\n \/\/ subtract scrollbar size from sizes\n var sizes = element.nodeName === 'HTML' ? getWindowSizes() : {};\n var width = sizes.width || element.clientWidth || result.right - result.left;\n var height = sizes.height || element.clientHeight || result.bottom - result.top;\n\n var horizScrollbar = element.offsetWidth - width;\n var vertScrollbar = element.offsetHeight - height;\n\n \/\/ if an hypothetical scrollbar is detected, we must be sure it's not a `border`\n \/\/ we make this check conditional for performance reasons\n if (horizScrollbar || vertScrollbar) {\n var styles = getStyleComputedProperty(element);\n horizScrollbar -= getBordersSize(styles, 'x');\n vertScrollbar -= getBordersSize(styles, 'y');\n\n result.width -= horizScrollbar;\n result.height -= vertScrollbar;\n }\n\n return getClientRect(result);\n}\n\nfunction getOffsetRectRelativeToArbitraryNode(children, parent) {\n var isIE10 = isIE10$1();\n var isHTML = parent.nodeName === 'HTML';\n var childrenRect = getBoundingClientRect(children);\n var parentRect = getBoundingClientRect(parent);\n var scrollParent = getScrollParent(children);\n\n var styles = getStyleComputedProperty(parent);\n var borderTopWidth = +styles.borderTopWidth.split('px')[0];\n var borderLeftWidth = +styles.borderLeftWidth.split('px')[0];\n\n var offsets = getClientRect({\n top: childrenRect.top - parentRect.top - borderTopWidth,\n left: childrenRect.left - parentRect.left - borderLeftWidth,\n width: childrenRect.width,\n height: childrenRect.height\n });\n offsets.marginTop = 0;\n offsets.marginLeft = 0;\n\n \/\/ Subtract margins of documentElement in case it's being used as parent\n \/\/ we do this only on HTML because it's the only element that behaves\n \/\/ differently when margins are applied to it. The margins are included in\n \/\/ the box of the documentElement, in the other cases not.\n if (!isIE10 && isHTML) {\n var marginTop = +styles.marginTop.split('px')[0];\n var marginLeft = +styles.marginLeft.split('px')[0];\n\n offsets.top -= borderTopWidth - marginTop;\n offsets.bottom -= borderTopWidth - marginTop;\n offsets.left -= borderLeftWidth - marginLeft;\n offsets.right -= borderLeftWidth - marginLeft;\n\n \/\/ Attach marginTop and marginLeft because in some circumstances we may need them\n offsets.marginTop = marginTop;\n offsets.marginLeft = marginLeft;\n }\n\n if (isIE10 ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') {\n offsets = includeScroll(offsets, parent);\n }\n\n return offsets;\n}\n\nfunction getViewportOffsetRectRelativeToArtbitraryNode(element) {\n var html = element.ownerDocument.documentElement;\n var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html);\n var width = Math.max(html.clientWidth, window.innerWidth || 0);\n var height = Math.max(html.clientHeight, window.innerHeight || 0);\n\n var scrollTop = getScroll(html);\n var scrollLeft = getScroll(html, 'left');\n\n var offset = {\n top: scrollTop - relativeOffset.top + relativeOffset.marginTop,\n left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft,\n width: width,\n height: height\n };\n\n return getClientRect(offset);\n}\n\n\/**\n * Check if the given element is fixed or is inside a fixed parent\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {Element} customContainer\n * @returns {Boolean} answer to \"isFixed?\"\n *\/\nfunction isFixed(element) {\n var nodeName = element.nodeName;\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n return false;\n }\n if (getStyleComputedProperty(element, 'position') === 'fixed') {\n return true;\n }\n return isFixed(getParentNode(element));\n}\n\n\/**\n * Computed the boundaries limits and return them\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} popper\n * @param {HTMLElement} reference\n * @param {number} padding\n * @param {HTMLElement} boundariesElement - Element used to define the boundaries\n * @returns {Object} Coordinates of the boundaries\n *\/\nfunction getBoundaries(popper, reference, padding, boundariesElement) {\n \/\/ NOTE: 1 DOM access here\n var boundaries = { top: 0, left: 0 };\n var offsetParent = findCommonOffsetParent(popper, reference);\n\n \/\/ Handle viewport case\n if (boundariesElement === 'viewport') {\n boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent);\n } else {\n \/\/ Handle other cases based on DOM element used as boundaries\n var boundariesNode = void 0;\n if (boundariesElement === 'scrollParent') {\n boundariesNode = getScrollParent(getParentNode(popper));\n if (boundariesNode.nodeName === 'BODY') {\n boundariesNode = popper.ownerDocument.documentElement;\n }\n } else if (boundariesElement === 'window') {\n boundariesNode = popper.ownerDocument.documentElement;\n } else {\n boundariesNode = boundariesElement;\n }\n\n var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent);\n\n \/\/ In case of HTML, we need a different computation\n if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) {\n var _getWindowSizes = getWindowSizes(),\n height = _getWindowSizes.height,\n width = _getWindowSizes.width;\n\n boundaries.top += offsets.top - offsets.marginTop;\n boundaries.bottom = height + offsets.top;\n boundaries.left += offsets.left - offsets.marginLeft;\n boundaries.right = width + offsets.left;\n } else {\n \/\/ for all the other DOM elements, this one is good\n boundaries = offsets;\n }\n }\n\n \/\/ Add paddings\n boundaries.left += padding;\n boundaries.top += padding;\n boundaries.right -= padding;\n boundaries.bottom -= padding;\n\n return boundaries;\n}\n\nfunction getArea(_ref) {\n var width = _ref.width,\n height = _ref.height;\n\n return width * height;\n}\n\n\/**\n * Utility used to transform the `auto` placement to the placement with more\n * available space.\n * @method\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) {\n var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0;\n\n if (placement.indexOf('auto') === -1) {\n return placement;\n }\n\n var boundaries = getBoundaries(popper, reference, padding, boundariesElement);\n\n var rects = {\n top: {\n width: boundaries.width,\n height: refRect.top - boundaries.top\n },\n right: {\n width: boundaries.right - refRect.right,\n height: boundaries.height\n },\n bottom: {\n width: boundaries.width,\n height: boundaries.bottom - refRect.bottom\n },\n left: {\n width: refRect.left - boundaries.left,\n height: boundaries.height\n }\n };\n\n var sortedAreas = Object.keys(rects).map(function (key) {\n return _extends({\n key: key\n }, rects[key], {\n area: getArea(rects[key])\n });\n }).sort(function (a, b) {\n return b.area - a.area;\n });\n\n var filteredAreas = sortedAreas.filter(function (_ref2) {\n var width = _ref2.width,\n height = _ref2.height;\n return width >= popper.clientWidth && height >= popper.clientHeight;\n });\n\n var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key;\n\n var variation = placement.split('-')[1];\n\n return computedPlacement + (variation ? '-' + variation : '');\n}\n\n\/**\n * Get offsets to the reference element\n * @method\n * @memberof Popper.Utils\n * @param {Object} state\n * @param {Element} popper - the popper element\n * @param {Element} reference - the reference element (the popper will be relative to this)\n * @returns {Object} An object containing the offsets which will be applied to the popper\n *\/\nfunction getReferenceOffsets(state, popper, reference) {\n var commonOffsetParent = findCommonOffsetParent(popper, reference);\n return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent);\n}\n\n\/**\n * Get the outer sizes of the given element (offset size + margins)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Object} object containing width and height properties\n *\/\nfunction getOuterSizes(element) {\n var styles = window.getComputedStyle(element);\n var x = parseFloat(styles.marginTop) + parseFloat(styles.marginBottom);\n var y = parseFloat(styles.marginLeft) + parseFloat(styles.marginRight);\n var result = {\n width: element.offsetWidth + y,\n height: element.offsetHeight + x\n };\n return result;\n}\n\n\/**\n * Get the opposite placement of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement\n * @returns {String} flipped placement\n *\/\nfunction getOppositePlacement(placement) {\n var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' };\n return placement.replace(\/left|right|bottom|top\/g, function (matched) {\n return hash[matched];\n });\n}\n\n\/**\n * Get offsets to the popper\n * @method\n * @memberof Popper.Utils\n * @param {Object} position - CSS position the Popper will get applied\n * @param {HTMLElement} popper - the popper element\n * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this)\n * @param {String} placement - one of the valid placement options\n * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper\n *\/\nfunction getPopperOffsets(popper, referenceOffsets, placement) {\n placement = placement.split('-')[0];\n\n \/\/ Get popper node sizes\n var popperRect = getOuterSizes(popper);\n\n \/\/ Add position, width and height to our offsets object\n var popperOffsets = {\n width: popperRect.width,\n height: popperRect.height\n };\n\n \/\/ depending by the popper placement we have to compute its offsets slightly differently\n var isHoriz = ['right', 'left'].indexOf(placement) !== -1;\n var mainSide = isHoriz ? 'top' : 'left';\n var secondarySide = isHoriz ? 'left' : 'top';\n var measurement = isHoriz ? 'height' : 'width';\n var secondaryMeasurement = !isHoriz ? 'height' : 'width';\n\n popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] \/ 2 - popperRect[measurement] \/ 2;\n if (placement === secondarySide) {\n popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement];\n } else {\n popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)];\n }\n\n return popperOffsets;\n}\n\n\/**\n * Mimics the `find` method of Array\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n *\/\nfunction find(arr, check) {\n \/\/ use native find if supported\n if (Array.prototype.find) {\n return arr.find(check);\n }\n\n \/\/ use `filter` to obtain the same behavior of `find`\n return arr.filter(check)[0];\n}\n\n\/**\n * Return the index of the matching object\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n *\/\nfunction findIndex(arr, prop, value) {\n \/\/ use native findIndex if supported\n if (Array.prototype.findIndex) {\n return arr.findIndex(function (cur) {\n return cur[prop] === value;\n });\n }\n\n \/\/ use `find` + `indexOf` if `findIndex` isn't supported\n var match = find(arr, function (obj) {\n return obj[prop] === value;\n });\n return arr.indexOf(match);\n}\n\n\/**\n * Loop trough the list of modifiers and run them in order,\n * each of them will then edit the data object.\n * @method\n * @memberof Popper.Utils\n * @param {dataObject} data\n * @param {Array} modifiers\n * @param {String} ends - Optional modifier name used as stopper\n * @returns {dataObject}\n *\/\nfunction runModifiers(modifiers, data, ends) {\n var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends));\n\n modifiersToRun.forEach(function (modifier) {\n if (modifier['function']) {\n \/\/ eslint-disable-line dot-notation\n console.warn('`modifier.function` is deprecated, use `modifier.fn`!');\n }\n var fn = modifier['function'] || modifier.fn; \/\/ eslint-disable-line dot-notation\n if (modifier.enabled && isFunction(fn)) {\n \/\/ Add properties to offsets to make them a complete clientRect object\n \/\/ we do this before each modifier to make sure the previous one doesn't\n \/\/ mess with these values\n data.offsets.popper = getClientRect(data.offsets.popper);\n data.offsets.reference = getClientRect(data.offsets.reference);\n\n data = fn(data, modifier);\n }\n });\n\n return data;\n}\n\n\/**\n * Updates the position of the popper, computing the new offsets and applying\n * the new style.
\n * Prefer `scheduleUpdate` over `update` because of performance reasons.\n * @method\n * @memberof Popper\n *\/\nfunction update() {\n \/\/ if popper is destroyed, don't perform any further update\n if (this.state.isDestroyed) {\n return;\n }\n\n var data = {\n instance: this,\n styles: {},\n arrowStyles: {},\n attributes: {},\n flipped: false,\n offsets: {}\n };\n\n \/\/ compute reference element offsets\n data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference);\n\n \/\/ compute auto placement, store placement inside the data object,\n \/\/ modifiers will be able to edit `placement` if needed\n \/\/ and refer to originalPlacement to know the original value\n data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding);\n\n \/\/ store the computed placement inside `originalPlacement`\n data.originalPlacement = data.placement;\n\n \/\/ compute the popper offsets\n data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement);\n data.offsets.popper.position = 'absolute';\n\n \/\/ run the modifiers\n data = runModifiers(this.modifiers, data);\n\n \/\/ the first `update` will call `onCreate` callback\n \/\/ the other ones will call `onUpdate` callback\n if (!this.state.isCreated) {\n this.state.isCreated = true;\n this.options.onCreate(data);\n } else {\n this.options.onUpdate(data);\n }\n}\n\n\/**\n * Helper used to know if the given modifier is enabled.\n * @method\n * @memberof Popper.Utils\n * @returns {Boolean}\n *\/\nfunction isModifierEnabled(modifiers, modifierName) {\n return modifiers.some(function (_ref) {\n var name = _ref.name,\n enabled = _ref.enabled;\n return enabled && name === modifierName;\n });\n}\n\n\/**\n * Get the prefixed supported property name\n * @method\n * @memberof Popper.Utils\n * @argument {String} property (camelCase)\n * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)\n *\/\nfunction getSupportedPropertyName(property) {\n var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];\n var upperProp = property.charAt(0).toUpperCase() + property.slice(1);\n\n for (var i = 0; i < prefixes.length - 1; i++) {\n var prefix = prefixes[i];\n var toCheck = prefix ? '' + prefix + upperProp : property;\n if (typeof window.document.body.style[toCheck] !== 'undefined') {\n return toCheck;\n }\n }\n return null;\n}\n\n\/**\n * Destroy the popper\n * @method\n * @memberof Popper\n *\/\nfunction destroy() {\n this.state.isDestroyed = true;\n\n \/\/ touch DOM only if `applyStyle` modifier is enabled\n if (isModifierEnabled(this.modifiers, 'applyStyle')) {\n this.popper.removeAttribute('x-placement');\n this.popper.style.left = '';\n this.popper.style.position = '';\n this.popper.style.top = '';\n this.popper.style[getSupportedPropertyName('transform')] = '';\n }\n\n this.disableEventListeners();\n\n \/\/ remove the popper if user explicity asked for the deletion on destroy\n \/\/ do not use `remove` because IE11 doesn't support it\n if (this.options.removeOnDestroy) {\n this.popper.parentNode.removeChild(this.popper);\n }\n return this;\n}\n\n\/**\n * Get the window associated with the element\n * @argument {Element} element\n * @returns {Window}\n *\/\nfunction getWindow(element) {\n var ownerDocument = element.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView : window;\n}\n\nfunction attachToScrollParents(scrollParent, event, callback, scrollParents) {\n var isBody = scrollParent.nodeName === 'BODY';\n var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent;\n target.addEventListener(event, callback, { passive: true });\n\n if (!isBody) {\n attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents);\n }\n scrollParents.push(target);\n}\n\n\/**\n * Setup needed event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n *\/\nfunction setupEventListeners(reference, options, state, updateBound) {\n \/\/ Resize event listener on window\n state.updateBound = updateBound;\n getWindow(reference).addEventListener('resize', state.updateBound, { passive: true });\n\n \/\/ Scroll event listener on scroll parents\n var scrollElement = getScrollParent(reference);\n attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents);\n state.scrollElement = scrollElement;\n state.eventsEnabled = true;\n\n return state;\n}\n\n\/**\n * It will add resize\/scroll events and start recalculating\n * position of the popper element when they are triggered.\n * @method\n * @memberof Popper\n *\/\nfunction enableEventListeners() {\n if (!this.state.eventsEnabled) {\n this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate);\n }\n}\n\n\/**\n * Remove event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n *\/\nfunction removeEventListeners(reference, state) {\n \/\/ Remove resize event listener on window\n getWindow(reference).removeEventListener('resize', state.updateBound);\n\n \/\/ Remove scroll event listener on scroll parents\n state.scrollParents.forEach(function (target) {\n target.removeEventListener('scroll', state.updateBound);\n });\n\n \/\/ Reset state\n state.updateBound = null;\n state.scrollParents = [];\n state.scrollElement = null;\n state.eventsEnabled = false;\n return state;\n}\n\n\/**\n * It will remove resize\/scroll events and won't recalculate popper position\n * when they are triggered. It also won't trigger onUpdate callback anymore,\n * unless you call `update` method manually.\n * @method\n * @memberof Popper\n *\/\nfunction disableEventListeners() {\n if (this.state.eventsEnabled) {\n window.cancelAnimationFrame(this.scheduleUpdate);\n this.state = removeEventListeners(this.reference, this.state);\n }\n}\n\n\/**\n * Tells if a given input is a number\n * @method\n * @memberof Popper.Utils\n * @param {*} input to check\n * @return {Boolean}\n *\/\nfunction isNumeric(n) {\n return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);\n}\n\n\/**\n * Set the style to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the style to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n *\/\nfunction setStyles(element, styles) {\n Object.keys(styles).forEach(function (prop) {\n var unit = '';\n \/\/ add unit if the value is numeric and is one of the following\n if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) {\n unit = 'px';\n }\n element.style[prop] = styles[prop] + unit;\n });\n}\n\n\/**\n * Set the attributes to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the attributes to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n *\/\nfunction setAttributes(element, attributes) {\n Object.keys(attributes).forEach(function (prop) {\n var value = attributes[prop];\n if (value !== false) {\n element.setAttribute(prop, attributes[prop]);\n } else {\n element.removeAttribute(prop);\n }\n });\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} data.styles - List of style properties - values to apply to popper element\n * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The same data object\n *\/\nfunction applyStyle(data) {\n \/\/ any property present in `data.styles` will be applied to the popper,\n \/\/ in this way we can make the 3rd party modifiers add custom styles to it\n \/\/ Be aware, modifiers could override the properties defined in the previous\n \/\/ lines of this modifier!\n setStyles(data.instance.popper, data.styles);\n\n \/\/ any property present in `data.attributes` will be applied to the popper,\n \/\/ they will be set as HTML attributes of the element\n setAttributes(data.instance.popper, data.attributes);\n\n \/\/ if arrowElement is defined and arrowStyles has some properties\n if (data.arrowElement && Object.keys(data.arrowStyles).length) {\n setStyles(data.arrowElement, data.arrowStyles);\n }\n\n return data;\n}\n\n\/**\n * Set the x-placement attribute before everything else because it could be used\n * to add margins to the popper margins needs to be calculated to get the\n * correct popper offsets.\n * @method\n * @memberof Popper.modifiers\n * @param {HTMLElement} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper.\n * @param {Object} options - Popper.js options\n *\/\nfunction applyStyleOnLoad(reference, popper, options, modifierOptions, state) {\n \/\/ compute reference element offsets\n var referenceOffsets = getReferenceOffsets(state, popper, reference);\n\n \/\/ compute auto placement, store placement inside the data object,\n \/\/ modifiers will be able to edit `placement` if needed\n \/\/ and refer to originalPlacement to know the original value\n var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding);\n\n popper.setAttribute('x-placement', placement);\n\n \/\/ Apply `position` to popper before anything else because\n \/\/ without the position applied we can't guarantee correct computations\n setStyles(popper, { position: 'absolute' });\n\n return options;\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction computeStyle(data, options) {\n var x = options.x,\n y = options.y;\n var popper = data.offsets.popper;\n\n \/\/ Remove this legacy support in Popper.js v2\n\n var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'applyStyle';\n }).gpuAcceleration;\n if (legacyGpuAccelerationOption !== undefined) {\n console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');\n }\n var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration;\n\n var offsetParent = getOffsetParent(data.instance.popper);\n var offsetParentRect = getBoundingClientRect(offsetParent);\n\n \/\/ Styles\n var styles = {\n position: popper.position\n };\n\n \/\/ floor sides to avoid blurry text\n var offsets = {\n left: Math.floor(popper.left),\n top: Math.floor(popper.top),\n bottom: Math.floor(popper.bottom),\n right: Math.floor(popper.right)\n };\n\n var sideA = x === 'bottom' ? 'top' : 'bottom';\n var sideB = y === 'right' ? 'left' : 'right';\n\n \/\/ if gpuAcceleration is set to `true` and transform is supported,\n \/\/ we use `translate3d` to apply the position to the popper we\n \/\/ automatically use the supported prefixed version if needed\n var prefixedProperty = getSupportedPropertyName('transform');\n\n \/\/ now, let's make a step back and look at this code closely (wtf?)\n \/\/ If the content of the popper grows once it's been positioned, it\n \/\/ may happen that the popper gets misplaced because of the new content\n \/\/ overflowing its reference element\n \/\/ To avoid this problem, we provide two options (x and y), which allow\n \/\/ the consumer to define the offset origin.\n \/\/ If we position a popper on top of a reference element, we can set\n \/\/ `x` to `top` to make the popper grow towards its top instead of\n \/\/ its bottom.\n var left = void 0,\n top = void 0;\n if (sideA === 'bottom') {\n top = -offsetParentRect.height + offsets.bottom;\n } else {\n top = offsets.top;\n }\n if (sideB === 'right') {\n left = -offsetParentRect.width + offsets.right;\n } else {\n left = offsets.left;\n }\n if (gpuAcceleration && prefixedProperty) {\n styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)';\n styles[sideA] = 0;\n styles[sideB] = 0;\n styles.willChange = 'transform';\n } else {\n \/\/ othwerise, we use the standard `top`, `left`, `bottom` and `right` properties\n var invertTop = sideA === 'bottom' ? -1 : 1;\n var invertLeft = sideB === 'right' ? -1 : 1;\n styles[sideA] = top * invertTop;\n styles[sideB] = left * invertLeft;\n styles.willChange = sideA + ', ' + sideB;\n }\n\n \/\/ Attributes\n var attributes = {\n 'x-placement': data.placement\n };\n\n \/\/ Update `data` attributes, styles and arrowStyles\n data.attributes = _extends({}, attributes, data.attributes);\n data.styles = _extends({}, styles, data.styles);\n data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles);\n\n return data;\n}\n\n\/**\n * Helper used to know if the given modifier depends from another one.
\n * It checks if the needed modifier is listed and enabled.\n * @method\n * @memberof Popper.Utils\n * @param {Array} modifiers - list of modifiers\n * @param {String} requestingName - name of requesting modifier\n * @param {String} requestedName - name of requested modifier\n * @returns {Boolean}\n *\/\nfunction isModifierRequired(modifiers, requestingName, requestedName) {\n var requesting = find(modifiers, function (_ref) {\n var name = _ref.name;\n return name === requestingName;\n });\n\n var isRequired = !!requesting && modifiers.some(function (modifier) {\n return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order;\n });\n\n if (!isRequired) {\n var _requesting = '`' + requestingName + '`';\n var requested = '`' + requestedName + '`';\n console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!');\n }\n return isRequired;\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction arrow(data, options) {\n \/\/ arrow depends on keepTogether in order to work\n if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) {\n return data;\n }\n\n var arrowElement = options.element;\n\n \/\/ if arrowElement is a string, suppose it's a CSS selector\n if (typeof arrowElement === 'string') {\n arrowElement = data.instance.popper.querySelector(arrowElement);\n\n \/\/ if arrowElement is not found, don't run the modifier\n if (!arrowElement) {\n return data;\n }\n } else {\n \/\/ if the arrowElement isn't a query selector we must check that the\n \/\/ provided DOM node is child of its popper node\n if (!data.instance.popper.contains(arrowElement)) {\n console.warn('WARNING: `arrow.element` must be child of its popper element!');\n return data;\n }\n }\n\n var placement = data.placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isVertical = ['left', 'right'].indexOf(placement) !== -1;\n\n var len = isVertical ? 'height' : 'width';\n var sideCapitalized = isVertical ? 'Top' : 'Left';\n var side = sideCapitalized.toLowerCase();\n var altSide = isVertical ? 'left' : 'top';\n var opSide = isVertical ? 'bottom' : 'right';\n var arrowElementSize = getOuterSizes(arrowElement)[len];\n\n \/\/\n \/\/ extends keepTogether behavior making sure the popper and its\n \/\/ reference have enough pixels in conjuction\n \/\/\n\n \/\/ top\/left side\n if (reference[opSide] - arrowElementSize < popper[side]) {\n data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize);\n }\n \/\/ bottom\/right side\n if (reference[side] + arrowElementSize > popper[opSide]) {\n data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide];\n }\n\n \/\/ compute center of the popper\n var center = reference[side] + reference[len] \/ 2 - arrowElementSize \/ 2;\n\n \/\/ Compute the sideValue using the updated popper offsets\n \/\/ take popper margin in account because we don't have this info available\n var popperMarginSide = getStyleComputedProperty(data.instance.popper, 'margin' + sideCapitalized).replace('px', '');\n var sideValue = center - getClientRect(data.offsets.popper)[side] - popperMarginSide;\n\n \/\/ prevent arrowElement from being placed not contiguously to its popper\n sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);\n\n data.arrowElement = arrowElement;\n data.offsets.arrow = {};\n data.offsets.arrow[side] = Math.round(sideValue);\n data.offsets.arrow[altSide] = ''; \/\/ make sure to unset any eventual altSide value from the DOM node\n\n return data;\n}\n\n\/**\n * Get the opposite placement variation of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement variation\n * @returns {String} flipped placement variation\n *\/\nfunction getOppositeVariation(variation) {\n if (variation === 'end') {\n return 'start';\n } else if (variation === 'start') {\n return 'end';\n }\n return variation;\n}\n\n\/**\n * List of accepted placements to use as values of the `placement` option.
\n * Valid placements are:\n * - `auto`\n * - `top`\n * - `right`\n * - `bottom`\n * - `left`\n *\n * Each placement can have a variation from this list:\n * - `-start`\n * - `-end`\n *\n * Variations are interpreted easily if you think of them as the left to right\n * written languages. Horizontally (`top` and `bottom`), `start` is left and `end`\n * is right.
\n * Vertically (`left` and `right`), `start` is top and `end` is bottom.\n *\n * Some valid examples are:\n * - `top-end` (on top of reference, right aligned)\n * - `right-start` (on right of reference, top aligned)\n * - `bottom` (on bottom, centered)\n * - `auto-right` (on the side with more space available, alignment depends by placement)\n *\n * @static\n * @type {Array}\n * @enum {String}\n * @readonly\n * @method placements\n * @memberof Popper\n *\/\nvar placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];\n\n\/\/ Get rid of `auto` `auto-start` and `auto-end`\nvar validPlacements = placements.slice(3);\n\n\/**\n * Given an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts variations)\n * @argument {Boolean} counter - Set to true to walk the placements counterclockwise\n * @returns {Array} placements including their variations\n *\/\nfunction clockwise(placement) {\n var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var index = validPlacements.indexOf(placement);\n var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index));\n return counter ? arr.reverse() : arr;\n}\n\nvar BEHAVIORS = {\n FLIP: 'flip',\n CLOCKWISE: 'clockwise',\n COUNTERCLOCKWISE: 'counterclockwise'\n};\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction flip(data, options) {\n \/\/ if `inner` modifier is enabled, we can't use the `flip` modifier\n if (isModifierEnabled(data.instance.modifiers, 'inner')) {\n return data;\n }\n\n if (data.flipped && data.placement === data.originalPlacement) {\n \/\/ seems like flip is trying to loop, probably there's not enough space on any of the flippable sides\n return data;\n }\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement);\n\n var placement = data.placement.split('-')[0];\n var placementOpposite = getOppositePlacement(placement);\n var variation = data.placement.split('-')[1] || '';\n\n var flipOrder = [];\n\n switch (options.behavior) {\n case BEHAVIORS.FLIP:\n flipOrder = [placement, placementOpposite];\n break;\n case BEHAVIORS.CLOCKWISE:\n flipOrder = clockwise(placement);\n break;\n case BEHAVIORS.COUNTERCLOCKWISE:\n flipOrder = clockwise(placement, true);\n break;\n default:\n flipOrder = options.behavior;\n }\n\n flipOrder.forEach(function (step, index) {\n if (placement !== step || flipOrder.length === index + 1) {\n return data;\n }\n\n placement = data.placement.split('-')[0];\n placementOpposite = getOppositePlacement(placement);\n\n var popperOffsets = data.offsets.popper;\n var refOffsets = data.offsets.reference;\n\n \/\/ using floor because the reference offsets may contain decimals we are not going to consider here\n var floor = Math.floor;\n var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom);\n\n var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left);\n var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right);\n var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top);\n var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom);\n\n var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom;\n\n \/\/ flip the variation if required\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var flippedVariation = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom);\n\n if (overlapsRef || overflowsBoundaries || flippedVariation) {\n \/\/ this boolean to detect any flip loop\n data.flipped = true;\n\n if (overlapsRef || overflowsBoundaries) {\n placement = flipOrder[index + 1];\n }\n\n if (flippedVariation) {\n variation = getOppositeVariation(variation);\n }\n\n data.placement = placement + (variation ? '-' + variation : '');\n\n \/\/ this object contains `position`, we want to preserve it along with\n \/\/ any additional property we may add in the future\n data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement));\n\n data = runModifiers(data.instance.modifiers, data, 'flip');\n }\n });\n return data;\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction keepTogether(data) {\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var placement = data.placement.split('-')[0];\n var floor = Math.floor;\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var side = isVertical ? 'right' : 'bottom';\n var opSide = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n if (popper[side] < floor(reference[opSide])) {\n data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement];\n }\n if (popper[opSide] > floor(reference[side])) {\n data.offsets.popper[opSide] = floor(reference[side]);\n }\n\n return data;\n}\n\n\/**\n * Converts a string containing value + unit into a px value number\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} str - Value + unit string\n * @argument {String} measurement - `height` or `width`\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @returns {Number|String}\n * Value in pixels, or original string if no values were extracted\n *\/\nfunction toValue(str, measurement, popperOffsets, referenceOffsets) {\n \/\/ separate value from unit\n var split = str.match(\/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)\/);\n var value = +split[1];\n var unit = split[2];\n\n \/\/ If it's not a number it's an operator, I guess\n if (!value) {\n return str;\n }\n\n if (unit.indexOf('%') === 0) {\n var element = void 0;\n switch (unit) {\n case '%p':\n element = popperOffsets;\n break;\n case '%':\n case '%r':\n default:\n element = referenceOffsets;\n }\n\n var rect = getClientRect(element);\n return rect[measurement] \/ 100 * value;\n } else if (unit === 'vh' || unit === 'vw') {\n \/\/ if is a vh or vw, we calculate the size based on the viewport\n var size = void 0;\n if (unit === 'vh') {\n size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);\n } else {\n size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);\n }\n return size \/ 100 * value;\n } else {\n \/\/ if is an explicit pixel unit, we get rid of the unit and keep the value\n \/\/ if is an implicit unit, it's px, and we return just the value\n return value;\n }\n}\n\n\/**\n * Parse an `offset` string to extrapolate `x` and `y` numeric offsets.\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} offset\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @argument {String} basePlacement\n * @returns {Array} a two cells array with x and y offsets in numbers\n *\/\nfunction parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) {\n var offsets = [0, 0];\n\n \/\/ Use height if placement is left or right and index is 0 otherwise use width\n \/\/ in this way the first offset will use an axis and the second one\n \/\/ will use the other one\n var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1;\n\n \/\/ Split the offset string to obtain a list of values and operands\n \/\/ The regex addresses values with the plus or minus sign in front (+10, -20, etc)\n var fragments = offset.split(\/(\\+|\\-)\/).map(function (frag) {\n return frag.trim();\n });\n\n \/\/ Detect if the offset string contains a pair of values or a single one\n \/\/ they could be separated by comma or space\n var divider = fragments.indexOf(find(fragments, function (frag) {\n return frag.search(\/,|\\s\/) !== -1;\n }));\n\n if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');\n }\n\n \/\/ If divider is found, we divide the list of values and operands to divide\n \/\/ them by ofset X and Y.\n var splitRegex = \/\\s*,\\s*|\\s+\/;\n var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments];\n\n \/\/ Convert the values with units to absolute pixels to allow our computations\n ops = ops.map(function (op, index) {\n \/\/ Most of the units rely on the orientation of the popper\n var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width';\n var mergeWithPrevious = false;\n return op\n \/\/ This aggregates any `+` or `-` sign that aren't considered operators\n \/\/ e.g.: 10 + +5 => [10, +, +5]\n .reduce(function (a, b) {\n if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) {\n a[a.length - 1] = b;\n mergeWithPrevious = true;\n return a;\n } else if (mergeWithPrevious) {\n a[a.length - 1] += b;\n mergeWithPrevious = false;\n return a;\n } else {\n return a.concat(b);\n }\n }, [])\n \/\/ Here we convert the string values into number values (in px)\n .map(function (str) {\n return toValue(str, measurement, popperOffsets, referenceOffsets);\n });\n });\n\n \/\/ Loop trough the offsets arrays and execute the operations\n ops.forEach(function (op, index) {\n op.forEach(function (frag, index2) {\n if (isNumeric(frag)) {\n offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n }\n });\n });\n return offsets;\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @argument {Number|String} options.offset=0\n * The offset value as described in the modifier description\n * @returns {Object} The data object, properly modified\n *\/\nfunction offset(data, _ref) {\n var offset = _ref.offset;\n var placement = data.placement,\n _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var basePlacement = placement.split('-')[0];\n\n var offsets = void 0;\n if (isNumeric(+offset)) {\n offsets = [+offset, 0];\n } else {\n offsets = parseOffset(offset, popper, reference, basePlacement);\n }\n\n if (basePlacement === 'left') {\n popper.top += offsets[0];\n popper.left -= offsets[1];\n } else if (basePlacement === 'right') {\n popper.top += offsets[0];\n popper.left += offsets[1];\n } else if (basePlacement === 'top') {\n popper.left += offsets[0];\n popper.top -= offsets[1];\n } else if (basePlacement === 'bottom') {\n popper.left += offsets[0];\n popper.top += offsets[1];\n }\n\n data.popper = popper;\n return data;\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction preventOverflow(data, options) {\n var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper);\n\n \/\/ If offsetParent is the reference element, we really want to\n \/\/ go one step up and use the next offsetParent as reference to\n \/\/ avoid to make this modifier completely useless and look like broken\n if (data.instance.reference === boundariesElement) {\n boundariesElement = getOffsetParent(boundariesElement);\n }\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement);\n options.boundaries = boundaries;\n\n var order = options.priority;\n var popper = data.offsets.popper;\n\n var check = {\n primary: function primary(placement) {\n var value = popper[placement];\n if (popper[placement] < boundaries[placement] && !options.escapeWithReference) {\n value = Math.max(popper[placement], boundaries[placement]);\n }\n return defineProperty({}, placement, value);\n },\n secondary: function secondary(placement) {\n var mainSide = placement === 'right' ? 'left' : 'top';\n var value = popper[mainSide];\n if (popper[placement] > boundaries[placement] && !options.escapeWithReference) {\n value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height));\n }\n return defineProperty({}, mainSide, value);\n }\n };\n\n order.forEach(function (placement) {\n var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary';\n popper = _extends({}, popper, check[side](placement));\n });\n\n data.offsets.popper = popper;\n\n return data;\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction shift(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var shiftvariation = placement.split('-')[1];\n\n \/\/ if shift shiftvariation is specified, run the modifier\n if (shiftvariation) {\n var _data$offsets = data.offsets,\n reference = _data$offsets.reference,\n popper = _data$offsets.popper;\n\n var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1;\n var side = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n var shiftOffsets = {\n start: defineProperty({}, side, reference[side]),\n end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement])\n };\n\n data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]);\n }\n\n return data;\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction hide(data) {\n if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) {\n return data;\n }\n\n var refRect = data.offsets.reference;\n var bound = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'preventOverflow';\n }).boundaries;\n\n if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) {\n \/\/ Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === true) {\n return data;\n }\n\n data.hide = true;\n data.attributes['x-out-of-boundaries'] = '';\n } else {\n \/\/ Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === false) {\n return data;\n }\n\n data.hide = false;\n data.attributes['x-out-of-boundaries'] = false;\n }\n\n return data;\n}\n\n\/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n *\/\nfunction inner(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1;\n\n var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1;\n\n popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0);\n\n data.placement = getOppositePlacement(placement);\n data.offsets.popper = getClientRect(popper);\n\n return data;\n}\n\n\/**\n * Modifier function, each modifier can have a function of this type assigned\n * to its `fn` property.
\n * These functions will be called on each update, this means that you must\n * make sure they are performant enough to avoid performance bottlenecks.\n *\n * @function ModifierFn\n * @argument {dataObject} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {dataObject} The data object, properly modified\n *\/\n\n\/**\n * Modifiers are plugins used to alter the behavior of your poppers.
\n * Popper.js uses a set of 9 modifiers to provide all the basic functionalities\n * needed by the library.\n *\n * Usually you don't want to override the `order`, `fn` and `onLoad` props.\n * All the other properties are configurations that could be tweaked.\n * @namespace modifiers\n *\/\nvar modifiers = {\n \/**\n * Modifier used to shift the popper on the start or end of its reference\n * element.
\n * It will read the variation of the `placement` property.
\n * It can be one either `-end` or `-start`.\n * @memberof modifiers\n * @inner\n *\/\n shift: {\n \/** @prop {number} order=100 - Index used to define the order of execution *\/\n order: 100,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: shift\n },\n\n \/**\n * The `offset` modifier can shift your popper on both its axis.\n *\n * It accepts the following units:\n * - `px` or unitless, interpreted as pixels\n * - `%` or `%r`, percentage relative to the length of the reference element\n * - `%p`, percentage relative to the length of the popper element\n * - `vw`, CSS viewport width unit\n * - `vh`, CSS viewport height unit\n *\n * For length is intended the main axis relative to the placement of the popper.
\n * This means that if the placement is `top` or `bottom`, the length will be the\n * `width`. In case of `left` or `right`, it will be the height.\n *\n * You can provide a single value (as `Number` or `String`), or a pair of values\n * as `String` divided by a comma or one (or more) white spaces.
\n * The latter is a deprecated method because it leads to confusion and will be\n * removed in v2.
\n * Additionally, it accepts additions and subtractions between different units.\n * Note that multiplications and divisions aren't supported.\n *\n * Valid examples are:\n * ```\n * 10\n * '10%'\n * '10, 10'\n * '10%, 10'\n * '10 + 10%'\n * '10 - 5vh + 3%'\n * '-10px + 5vh, 5px - 6%'\n * ```\n * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap\n * > with their reference element, unfortunately, you will have to disable the `flip` modifier.\n * > More on this [reading this issue](https:\/\/github.com\/FezVrasta\/popper.js\/issues\/373)\n *\n * @memberof modifiers\n * @inner\n *\/\n offset: {\n \/** @prop {number} order=200 - Index used to define the order of execution *\/\n order: 200,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: offset,\n \/** @prop {Number|String} offset=0\n * The offset value as described in the modifier description\n *\/\n offset: 0\n },\n\n \/**\n * Modifier used to prevent the popper from being positioned outside the boundary.\n *\n * An scenario exists where the reference itself is not within the boundaries.
\n * We can say it has \"escaped the boundaries\" \u2014 or just \"escaped\".
\n * In this case we need to decide whether the popper should either:\n *\n * - detach from the reference and remain \"trapped\" in the boundaries, or\n * - if it should ignore the boundary and \"escape with its reference\"\n *\n * When `escapeWithReference` is set to`true` and reference is completely\n * outside its boundaries, the popper will overflow (or completely leave)\n * the boundaries in order to remain attached to the edge of the reference.\n *\n * @memberof modifiers\n * @inner\n *\/\n preventOverflow: {\n \/** @prop {number} order=300 - Index used to define the order of execution *\/\n order: 300,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: preventOverflow,\n \/**\n * @prop {Array} [priority=['left','right','top','bottom']]\n * Popper will try to prevent overflow following these priorities by default,\n * then, it could overflow on the left and on top of the `boundariesElement`\n *\/\n priority: ['left', 'right', 'top', 'bottom'],\n \/**\n * @prop {number} padding=5\n * Amount of pixel used to define a minimum distance between the boundaries\n * and the popper this makes sure the popper has always a little padding\n * between the edges of its container\n *\/\n padding: 5,\n \/**\n * @prop {String|HTMLElement} boundariesElement='scrollParent'\n * Boundaries used by the modifier, can be `scrollParent`, `window`,\n * `viewport` or any DOM element.\n *\/\n boundariesElement: 'scrollParent'\n },\n\n \/**\n * Modifier used to make sure the reference and its popper stay near eachothers\n * without leaving any gap between the two. Expecially useful when the arrow is\n * enabled and you want to assure it to point to its reference element.\n * It cares only about the first axis, you can still have poppers with margin\n * between the popper and its reference element.\n * @memberof modifiers\n * @inner\n *\/\n keepTogether: {\n \/** @prop {number} order=400 - Index used to define the order of execution *\/\n order: 400,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: keepTogether\n },\n\n \/**\n * This modifier is used to move the `arrowElement` of the popper to make\n * sure it is positioned between the reference element and its popper element.\n * It will read the outer size of the `arrowElement` node to detect how many\n * pixels of conjuction are needed.\n *\n * It has no effect if no `arrowElement` is provided.\n * @memberof modifiers\n * @inner\n *\/\n arrow: {\n \/** @prop {number} order=500 - Index used to define the order of execution *\/\n order: 500,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: arrow,\n \/** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow *\/\n element: '[x-arrow]'\n },\n\n \/**\n * Modifier used to flip the popper's placement when it starts to overlap its\n * reference element.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n *\n * **NOTE:** this modifier will interrupt the current update cycle and will\n * restart it if it detects the need to flip the placement.\n * @memberof modifiers\n * @inner\n *\/\n flip: {\n \/** @prop {number} order=600 - Index used to define the order of execution *\/\n order: 600,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: flip,\n \/**\n * @prop {String|Array} behavior='flip'\n * The behavior used to change the popper's placement. It can be one of\n * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid\n * placements (with optional variations).\n *\/\n behavior: 'flip',\n \/**\n * @prop {number} padding=5\n * The popper will flip if it hits the edges of the `boundariesElement`\n *\/\n padding: 5,\n \/**\n * @prop {String|HTMLElement} boundariesElement='viewport'\n * The element which will define the boundaries of the popper position,\n * the popper will never be placed outside of the defined boundaries\n * (except if keepTogether is enabled)\n *\/\n boundariesElement: 'viewport'\n },\n\n \/**\n * Modifier used to make the popper flow toward the inner of the reference element.\n * By default, when this modifier is disabled, the popper will be placed outside\n * the reference element.\n * @memberof modifiers\n * @inner\n *\/\n inner: {\n \/** @prop {number} order=700 - Index used to define the order of execution *\/\n order: 700,\n \/** @prop {Boolean} enabled=false - Whether the modifier is enabled or not *\/\n enabled: false,\n \/** @prop {ModifierFn} *\/\n fn: inner\n },\n\n \/**\n * Modifier used to hide the popper when its reference element is outside of the\n * popper boundaries. It will set a `x-out-of-boundaries` attribute which can\n * be used to hide with a CSS selector the popper when its reference is\n * out of boundaries.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n * @memberof modifiers\n * @inner\n *\/\n hide: {\n \/** @prop {number} order=800 - Index used to define the order of execution *\/\n order: 800,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: hide\n },\n\n \/**\n * Computes the style that will be applied to the popper element to gets\n * properly positioned.\n *\n * Note that this modifier will not touch the DOM, it just prepares the styles\n * so that `applyStyle` modifier can apply it. This separation is useful\n * in case you need to replace `applyStyle` with a custom implementation.\n *\n * This modifier has `850` as `order` value to maintain backward compatibility\n * with previous versions of Popper.js. Expect the modifiers ordering method\n * to change in future major versions of the library.\n *\n * @memberof modifiers\n * @inner\n *\/\n computeStyle: {\n \/** @prop {number} order=850 - Index used to define the order of execution *\/\n order: 850,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: computeStyle,\n \/**\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3d transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties.\n *\/\n gpuAcceleration: true,\n \/**\n * @prop {string} [x='bottom']\n * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n * Change this if your popper should grow in a direction different from `bottom`\n *\/\n x: 'bottom',\n \/**\n * @prop {string} [x='left']\n * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n * Change this if your popper should grow in a direction different from `right`\n *\/\n y: 'right'\n },\n\n \/**\n * Applies the computed styles to the popper element.\n *\n * All the DOM manipulations are limited to this modifier. This is useful in case\n * you want to integrate Popper.js inside a framework or view library and you\n * want to delegate all the DOM manipulations to it.\n *\n * Note that if you disable this modifier, you must make sure the popper element\n * has its position set to `absolute` before Popper.js can do its work!\n *\n * Just disable this modifier and define you own to achieve the desired effect.\n *\n * @memberof modifiers\n * @inner\n *\/\n applyStyle: {\n \/** @prop {number} order=900 - Index used to define the order of execution *\/\n order: 900,\n \/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not *\/\n enabled: true,\n \/** @prop {ModifierFn} *\/\n fn: applyStyle,\n \/** @prop {Function} *\/\n onLoad: applyStyleOnLoad,\n \/**\n * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3d transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties.\n *\/\n gpuAcceleration: undefined\n }\n};\n\n\/**\n * The `dataObject` is an object containing all the informations used by Popper.js\n * this object get passed to modifiers and to the `onCreate` and `onUpdate` callbacks.\n * @name dataObject\n * @property {Object} data.instance The Popper.js instance\n * @property {String} data.placement Placement applied to popper\n * @property {String} data.originalPlacement Placement originally defined on init\n * @property {Boolean} data.flipped True if popper has been flipped by flip modifier\n * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper.\n * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier\n * @property {Object} data.styles Any CSS property defined here will be applied to the popper, it expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow, it expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.boundaries Offsets of the popper boundaries\n * @property {Object} data.offsets The measurements of popper, reference and arrow elements.\n * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0\n *\/\n\n\/**\n * Default options provided to Popper.js constructor.
\n * These can be overriden using the `options` argument of Popper.js.
\n * To override an option, simply pass as 3rd argument an object with the same\n * structure of this object, example:\n * ```\n * new Popper(ref, pop, {\n * modifiers: {\n * preventOverflow: { enabled: false }\n * }\n * })\n * ```\n * @type {Object}\n * @static\n * @memberof Popper\n *\/\nvar Defaults = {\n \/**\n * Popper's placement\n * @prop {Popper.placements} placement='bottom'\n *\/\n placement: 'bottom',\n\n \/**\n * Whether events (resize, scroll) are initially enabled\n * @prop {Boolean} eventsEnabled=true\n *\/\n eventsEnabled: true,\n\n \/**\n * Set to true if you want to automatically remove the popper when\n * you call the `destroy` method.\n * @prop {Boolean} removeOnDestroy=false\n *\/\n removeOnDestroy: false,\n\n \/**\n * Callback called when the popper is created.
\n * By default, is set to no-op.
\n * Access Popper.js instance with `data.instance`.\n * @prop {onCreate}\n *\/\n onCreate: function onCreate() {},\n\n \/**\n * Callback called when the popper is updated, this callback is not called\n * on the initialization\/creation of the popper, but only on subsequent\n * updates.
\n * By default, is set to no-op.
\n * Access Popper.js instance with `data.instance`.\n * @prop {onUpdate}\n *\/\n onUpdate: function onUpdate() {},\n\n \/**\n * List of modifiers used to modify the offsets before they are applied to the popper.\n * They provide most of the functionalities of Popper.js\n * @prop {modifiers}\n *\/\n modifiers: modifiers\n};\n\n\/**\n * @callback onCreate\n * @param {dataObject} data\n *\/\n\n\/**\n * @callback onUpdate\n * @param {dataObject} data\n *\/\n\n\/\/ Utils\n\/\/ Methods\nvar Popper = function () {\n \/**\n * Create a new Popper.js instance\n * @class Popper\n * @param {HTMLElement|referenceObject} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper.\n * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults)\n * @return {Object} instance - The generated Popper.js instance\n *\/\n function Popper(reference, popper) {\n var _this = this;\n\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n classCallCheck(this, Popper);\n\n this.scheduleUpdate = function () {\n return requestAnimationFrame(_this.update);\n };\n\n \/\/ make update() debounced, so that it only runs at most once-per-tick\n this.update = debounce(this.update.bind(this));\n\n \/\/ with {} we create a new object with the options inside it\n this.options = _extends({}, Popper.Defaults, options);\n\n \/\/ init state\n this.state = {\n isDestroyed: false,\n isCreated: false,\n scrollParents: []\n };\n\n \/\/ get reference and popper elements (allow jQuery wrappers)\n this.reference = reference && reference.jquery ? reference[0] : reference;\n this.popper = popper && popper.jquery ? popper[0] : popper;\n\n \/\/ Deep merge modifiers options\n this.options.modifiers = {};\n Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) {\n _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {});\n });\n\n \/\/ Refactoring modifiers' list (Object => Array)\n this.modifiers = Object.keys(this.options.modifiers).map(function (name) {\n return _extends({\n name: name\n }, _this.options.modifiers[name]);\n })\n \/\/ sort the modifiers by order\n .sort(function (a, b) {\n return a.order - b.order;\n });\n\n \/\/ modifiers have the ability to execute arbitrary code when Popper.js get inited\n \/\/ such code is executed in the same order of its modifier\n \/\/ they could add new properties to their options configuration\n \/\/ BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n this.modifiers.forEach(function (modifierOptions) {\n if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) {\n modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state);\n }\n });\n\n \/\/ fire the first update to position the popper in the right place\n this.update();\n\n var eventsEnabled = this.options.eventsEnabled;\n if (eventsEnabled) {\n \/\/ setup event listeners, they will take care of update the position in specific situations\n this.enableEventListeners();\n }\n\n this.state.eventsEnabled = eventsEnabled;\n }\n\n \/\/ We can't use class properties because they don't get listed in the\n \/\/ class prototype and break stuff like Sinon stubs\n\n\n createClass(Popper, [{\n key: 'update',\n value: function update$$1() {\n return update.call(this);\n }\n }, {\n key: 'destroy',\n value: function destroy$$1() {\n return destroy.call(this);\n }\n }, {\n key: 'enableEventListeners',\n value: function enableEventListeners$$1() {\n return enableEventListeners.call(this);\n }\n }, {\n key: 'disableEventListeners',\n value: function disableEventListeners$$1() {\n return disableEventListeners.call(this);\n }\n\n \/**\n * Schedule an update, it will run on the next UI update available\n * @method scheduleUpdate\n * @memberof Popper\n *\/\n\n\n \/**\n * Collection of utilities useful when writing custom modifiers.\n * Starting from version 1.7, this method is available only if you\n * include `popper-utils.js` before `popper.js`.\n *\n * **DEPRECATION**: This way to access PopperUtils is deprecated\n * and will be removed in v2! Use the PopperUtils module directly instead.\n * Due to the high instability of the methods contained in Utils, we can't\n * guarantee them to follow semver. Use them at your own risk!\n * @static\n * @private\n * @type {Object}\n * @deprecated since version 1.8\n * @member Utils\n * @memberof Popper\n *\/\n\n }]);\n return Popper;\n}();\n\n\/**\n * The `referenceObject` is an object that provides an interface compatible with Popper.js\n * and lets you use it as replacement of a real DOM node.
\n * You can use this method to position a popper relatively to a set of coordinates\n * in case you don't have a DOM node to use as reference.\n *\n * ```\n * new Popper(referenceObject, popperNode);\n * ```\n *\n * NB: This feature isn't supported in Internet Explorer 10\n * @name referenceObject\n * @property {Function} data.getBoundingClientRect\n * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.\n * @property {number} data.clientWidth\n * An ES6 getter that will return the width of the virtual reference element.\n * @property {number} data.clientHeight\n * An ES6 getter that will return the height of the virtual reference element.\n *\/\n\n\nPopper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils;\nPopper.placements = placements;\nPopper.Defaults = Defaults;\n\nreturn Popper;\n\n})));\n\/\/# sourceMappingURL=popper.js.map\n"],"names":["global","factory","exports","module","define","amd","Popper","this","isBrowser","window","document","longerTimeoutBrowsers","timeoutDuration","i","length","navigator","userAgent","indexOf","debounce","Promise","fn","called","resolve","then","scheduled","setTimeout","isFunction","functionToCheck","toString","call","getStyleComputedProperty","element","property","nodeType","css","getComputedStyle","getParentNode","nodeName","parentNode","host","getScrollParent","body","ownerDocument","_getStyleComputedProp","overflow","overflowX","overflowY","test","getOffsetParent","offsetParent","documentElement","getRoot","node","findCommonOffsetParent","element1","element2","order","compareDocumentPosition","Node","DOCUMENT_POSITION_FOLLOWING","start","end","range","createRange","setStart","setEnd","commonAncestorContainer","contains","firstElementChild","element1root","getScroll","upperSide","arguments","undefined","html","scrollingElement","getBordersSize","styles","axis","sideA","sideB","split","isIE10","isIE10$1","appVersion","getSize","computedStyle","Math","max","getWindowSizes","height","width","createClass","defineProperties","target","props","descriptor","enumerable","configurable","writable","Object","defineProperty","key","Constructor","protoProps","staticProps","prototype","obj","value","_extends","assign","source","hasOwnProperty","getClientRect","offsets","right","left","bottom","top","getBoundingClientRect","rect","scrollTop","scrollLeft","err","result","sizes","clientWidth","clientHeight","horizScrollbar","offsetWidth","vertScrollbar","offsetHeight","getOffsetRectRelativeToArbitraryNode","children","parent","isHTML","childrenRect","parentRect","scrollParent","borderTopWidth","borderLeftWidth","marginTop","marginLeft","subtract","modifier","includeScroll","isFixed","getBoundaries","popper","reference","padding","boundariesElement","boundaries","relativeOffset","innerWidth","innerHeight","getViewportOffsetRectRelativeToArtbitraryNode","boundariesNode","_getWindowSizes","computeAutoPlacement","placement","refRect","rects","sortedAreas","keys","map","area","_ref","sort","a","b","filteredAreas","filter","_ref2","computedPlacement","variation","getReferenceOffsets","state","getOuterSizes","x","parseFloat","marginBottom","y","marginRight","getOppositePlacement","hash","replace","matched","getPopperOffsets","referenceOffsets","popperRect","popperOffsets","isHoriz","mainSide","secondarySide","measurement","secondaryMeasurement","find","arr","check","Array","runModifiers","modifiers","data","ends","slice","prop","findIndex","cur","match","forEach","console","warn","enabled","update","isDestroyed","instance","arrowStyles","attributes","flipped","options","flip","originalPlacement","position","isCreated","onUpdate","onCreate","isModifierEnabled","modifierName","some","name","getSupportedPropertyName","prefixes","upperProp","charAt","toUpperCase","prefix","toCheck","style","destroy","removeAttribute","disableEventListeners","removeOnDestroy","removeChild","getWindow","defaultView","attachToScrollParents","event","callback","scrollParents","isBody","addEventListener","passive","push","setupEventListeners","updateBound","scrollElement","eventsEnabled","enableEventListeners","scheduleUpdate","cancelAnimationFrame","removeEventListener","isNumeric","n","isNaN","isFinite","setStyles","unit","isModifierRequired","requestingName","requestedName","requesting","isRequired","_requesting","requested","placements","validPlacements","clockwise","counter","index","concat","reverse","BEHAVIORS","parseOffset","offset","basePlacement","useHeight","fragments","frag","trim","divider","search","splitRegex","ops","op","mergeWithPrevious","reduce","str","toValue","index2","shift","shiftvariation","_data$offsets","isVertical","side","shiftOffsets","preventOverflow","priority","primary","escapeWithReference","secondary","min","keepTogether","floor","opSide","arrow","arrowElement","querySelector","len","sideCapitalized","toLowerCase","altSide","arrowElementSize","center","popperMarginSide","sideValue","round","placementOpposite","flipOrder","behavior","step","refOffsets","overlapsRef","overflowsLeft","overflowsRight","overflowsTop","overflowsBottom","overflowsBoundaries","flippedVariation","flipVariations","getOppositeVariation","inner","subtractLength","hide","bound","computeStyle","legacyGpuAccelerationOption","gpuAcceleration","offsetParentRect","prefixedProperty","willChange","invertTop","invertLeft","applyStyle","setAttribute","onLoad","modifierOptions","Defaults","_this","TypeError","classCallCheck","requestAnimationFrame","bind","jquery","Utils","PopperUtils"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;CAwBC,SAAUA,OAAQC,SACE,iBAAZC,SAA0C,oBAAXC,OAAyBA,OAAOD,QAAUD,UAC9D,mBAAXG,QAAyBA,OAAOC,IAAMD,qBAAOH,SACnDD,OAAOM,OAASL,SAHlB,CAAA,CAICM,QAAO,mBAELC,UAA8B,oBAAXC,aAAqD,IAApBA,OAAOC,SAC3DC,sBAAwB,CAAC,OAAQ,UAAW,WAC5CC,gBAAkB,EACbC,EAAI,EAAGA,EAAIF,sBAAsBG,OAAQD,GAAK,KACjDL,WAAaO,UAAUC,UAAUC,QAAQN,sBAAsBE,KAAO,EAAG,CAC3ED,gBAAkB,YA2ClBM,SAXqBV,WAAaC,OAAOU,iBA3BlBC,QACrBC,QAAS,SACN,WACDA,SAGJA,QAAS,EACTF,QAAQG,UAAUC,MAAK,WACrBF,QAAS,EACTD,oBAKgBA,QAChBI,WAAY,SACT,WACAA,YACHA,WAAY,EACZC,YAAW,WACTD,WAAY,EACZJ,OACCR,6BAyBAc,WAAWC,wBAEXA,iBAA8D,sBADvD,GACoBC,SAASC,KAAKF,0BAUzCG,yBAAyBC,QAASC,aAChB,IAArBD,QAAQE,eACH,OAGLC,IAAMzB,OAAO0B,iBAAiBJ,QAAS,aACpCC,SAAWE,IAAIF,UAAYE,aAU3BE,cAAcL,eACI,SAArBA,QAAQM,SACHN,QAEFA,QAAQO,YAAcP,QAAQQ,cAU9BC,gBAAgBT,aAElBA,eACItB,OAAOC,SAAS+B,YAGjBV,QAAQM,cACT,WACA,cACIN,QAAQW,cAAcD,SAC1B,mBACIV,QAAQU,SAKfE,sBAAwBb,yBAAyBC,SACjDa,SAAWD,sBAAsBC,SACjCC,UAAYF,sBAAsBE,UAClCC,UAAYH,sBAAsBG,gBAElC,gBAAgBC,KAAKH,SAAWE,UAAYD,WACvCd,QAGFS,gBAAgBJ,cAAcL,mBAU9BiB,gBAAgBjB,aAEnBkB,aAAelB,SAAWA,QAAQkB,aAClCZ,SAAWY,cAAgBA,aAAaZ,gBAEvCA,UAAyB,SAAbA,UAAoC,SAAbA,UAUgB,IAApD,CAAC,KAAM,SAASpB,QAAQgC,aAAaZ,WAA2E,WAAvDP,yBAAyBmB,aAAc,YAC3FD,gBAAgBC,cAGlBA,aAbDlB,QACKA,QAAQW,cAAcQ,gBAGxBzC,OAAOC,SAASwC,yBA4BlBC,QAAQC,aACS,OAApBA,KAAKd,WACAa,QAAQC,KAAKd,YAGfc,cAWAC,uBAAuBC,SAAUC,eAEnCD,UAAaA,SAASrB,UAAasB,UAAaA,SAAStB,iBACrDxB,OAAOC,SAASwC,oBAIrBM,MAAQF,SAASG,wBAAwBF,UAAYG,KAAKC,4BAC1DC,MAAQJ,MAAQF,SAAWC,SAC3BM,IAAML,MAAQD,SAAWD,SAGzBQ,MAAQpD,SAASqD,cACrBD,MAAME,SAASJ,MAAO,GACtBE,MAAMG,OAAOJ,IAAK,OA9CO9B,QACrBM,SA8CA6B,wBAA0BJ,MAAMI,2BAIhCZ,WAAaY,yBAA2BX,WAAaW,yBAA2BN,MAAMO,SAASN,WAhDlF,UAFbxB,UADqBN,QAoDDmC,yBAnDD7B,WAKH,SAAbA,UAAuBW,gBAAgBjB,QAAQqC,qBAAuBrC,QAkDpEiB,gBAAgBkB,yBAHdA,4BAOPG,aAAelB,QAAQG,iBACvBe,aAAa9B,KACRc,uBAAuBgB,aAAa9B,KAAMgB,UAE1CF,uBAAuBC,SAAUH,QAAQI,UAAUhB,eAYrD+B,UAAUvC,aAGbwC,UAAqB,SAFdC,UAAU1D,OAAS,QAAsB2D,IAAjBD,UAAU,GAAmBA,UAAU,GAAK,OAE9C,YAAc,aAC3CnC,SAAWN,QAAQM,YAEN,SAAbA,UAAoC,SAAbA,SAAqB,KAC1CqC,KAAO3C,QAAQW,cAAcQ,uBACVnB,QAAQW,cAAciC,kBAAoBD,MACzCH,kBAGnBxC,QAAQwC,oBAmCRK,eAAeC,OAAQC,UAC1BC,MAAiB,MAATD,KAAe,OAAS,MAChCE,MAAkB,SAAVD,MAAmB,QAAU,gBAEjCF,OAAO,SAAWE,MAAQ,SAASE,MAAM,MAAM,KAAMJ,OAAO,SAAWG,MAAQ,SAASC,MAAM,MAAM,OAS1GC,YAAST,EAETU,SAAW,uBACEV,IAAXS,SACFA,QAAsD,IAA7CnE,UAAUqE,WAAWnE,QAAQ,YAEjCiE,iBAGAG,QAAQP,KAAMrC,KAAMiC,KAAMY,sBAC1BC,KAAKC,IAAI\/C,KAAK,SAAWqC,MAAOrC,KAAK,SAAWqC,MAAOJ,KAAK,SAAWI,MAAOJ,KAAK,SAAWI,MAAOJ,KAAK,SAAWI,MAAOK,WAAaT,KAAK,SAAWI,MAAQQ,cAAc,UAAqB,WAATR,KAAoB,MAAQ,SAAWQ,cAAc,UAAqB,WAATR,KAAoB,SAAW,UAAY,YAGvSW,qBACHhD,KAAOhC,OAAOC,SAAS+B,KACvBiC,KAAOjE,OAAOC,SAASwC,gBACvBoC,cAAgBH,YAAc1E,OAAO0B,iBAAiBuC,YAEnD,CACLgB,OAAQL,QAAQ,SAAU5C,KAAMiC,KAAMY,eACtCK,MAAON,QAAQ,QAAS5C,KAAMiC,KAAMY,oBAUpCM,YAAc,oBACPC,iBAAiBC,OAAQC,WAC3B,IAAIlF,EAAI,EAAGA,EAAIkF,MAAMjF,OAAQD,IAAK,KACjCmF,WAAaD,MAAMlF,GACvBmF,WAAWC,WAAaD,WAAWC,aAAc,EACjDD,WAAWE,cAAe,EACtB,UAAWF,aAAYA,WAAWG,UAAW,GACjDC,OAAOC,eAAeP,OAAQE,WAAWM,IAAKN,oBAI3C,SAAUO,YAAaC,WAAYC,oBACpCD,YAAYX,iBAAiBU,YAAYG,UAAWF,YACpDC,aAAaZ,iBAAiBU,YAAaE,aACxCF,aAdO,GAsBdF,eAAiB,SAAUM,IAAKL,IAAKM,cACnCN,OAAOK,IACTP,OAAOC,eAAeM,IAAKL,IAAK,CAC9BM,MAAOA,MACPX,YAAY,EACZC,cAAc,EACdC,UAAU,IAGZQ,IAAIL,KAAOM,MAGND,KAGLE,SAAWT,OAAOU,QAAU,SAAUhB,YACnC,IAAIjF,EAAI,EAAGA,EAAI2D,UAAU1D,OAAQD,IAAK,KACrCkG,OAASvC,UAAU3D,OAElB,IAAIyF,OAAOS,OACVX,OAAOM,UAAUM,eAAenF,KAAKkF,OAAQT,OAC\/CR,OAAOQ,KAAOS,OAAOT,aAKpBR,iBAUAmB,cAAcC,gBACdL,SAAS,GAAIK,QAAS,CAC3BC,MAAOD,QAAQE,KAAOF,QAAQvB,MAC9B0B,OAAQH,QAAQI,IAAMJ,QAAQxB,kBAWzB6B,sBAAsBxF,aACzByF,KAAO,MAKPrC,eAEAqC,KAAOzF,QAAQwF,4BACXE,UAAYnD,UAAUvC,QAAS,OAC\/B2F,WAAapD,UAAUvC,QAAS,QACpCyF,KAAKF,KAAOG,UACZD,KAAKJ,MAAQM,WACbF,KAAKH,QAAUI,UACfD,KAAKL,OAASO,WACd,MAAOC,WAETH,KAAOzF,QAAQwF,4BAGbK,OAAS,CACXR,KAAMI,KAAKJ,KACXE,IAAKE,KAAKF,IACV3B,MAAO6B,KAAKL,MAAQK,KAAKJ,KACzB1B,OAAQ8B,KAAKH,OAASG,KAAKF,KAIzBO,MAA6B,SAArB9F,QAAQM,SAAsBoD,iBAAmB,GACzDE,MAAQkC,MAAMlC,OAAS5D,QAAQ+F,aAAeF,OAAOT,MAAQS,OAAOR,KACpE1B,OAASmC,MAAMnC,QAAU3D,QAAQgG,cAAgBH,OAAOP,OAASO,OAAON,IAExEU,eAAiBjG,QAAQkG,YAActC,MACvCuC,cAAgBnG,QAAQoG,aAAezC,UAIvCsC,gBAAkBE,cAAe,KAC\/BrD,OAAS\/C,yBAAyBC,SACtCiG,gBAAkBpD,eAAeC,OAAQ,KACzCqD,eAAiBtD,eAAeC,OAAQ,KAExC+C,OAAOjC,OAASqC,eAChBJ,OAAOlC,QAAUwC,qBAGZjB,cAAcW,iBAGdQ,qCAAqCC,SAAUC,YAClDpD,OAASC,WACToD,OAA6B,SAApBD,OAAOjG,SAChBmG,aAAejB,sBAAsBc,UACrCI,WAAalB,sBAAsBe,QACnCI,aAAelG,gBAAgB6F,UAE\/BxD,OAAS\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\/C,IAA\/BwF,UAAU\/I,QAAQ,eACb+I,cAGLR,WAAaL,cAAcC,OAAQC,UAAWC,QAASC,mBAEvDW,MAAQ,CACV5C,IAAK,CACH3B,MAAO6D,WAAW7D,MAClBD,OAAQuE,QAAQ3C,IAAMkC,WAAWlC,KAEnCH,MAAO,CACLxB,MAAO6D,WAAWrC,MAAQ8C,QAAQ9C,MAClCzB,OAAQ8D,WAAW9D,QAErB2B,OAAQ,CACN1B,MAAO6D,WAAW7D,MAClBD,OAAQ8D,WAAWnC,OAAS4C,QAAQ5C,QAEtCD,KAAM,CACJzB,MAAOsE,QAAQ7C,KAAOoC,WAAWpC,KACjC1B,OAAQ8D,WAAW9D,SAInByE,YAAc\/D,OAAOgE,KAAKF,OAAOG,KAAI,SAAU\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\/BpB,KAAOF,aAAalM,KAAKmM,UAAWC,MAI\/BpM,KAAK0K,MAAM+C,eAITJ,QAAQK,SAAStB,YAHjB1B,MAAM+C,WAAY,OAClBJ,QAAQM,SAASvB,iBAYjBwB,kBAAkBzB,UAAW0B,qBAC7B1B,UAAU2B,MAAK,SAAU9D,UAC1B+D,KAAO\/D,KAAK+D,YACF\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\/E,MAAM,KAAK,GACrC4N,eAAiB7I,UAAU\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\/E,MAAM,KAAK,GACtCsP,kBAAoB\/I,qBAAqBxB,WACzCe,UAAY4B,KAAK3C,UAAU\/E,MAAM,KAAK,IAAM,GAE5CuP,UAAY,UAER5G,QAAQ6G,eACT\/C,eACH8C,UAAY,CAACxK,UAAWuK,8BAErB7C,oBACH8C,UAAYnD,UAAUrH,sBAEnB0H,2BACH8C,UAAYnD,UAAUrH,WAAW,iBAGjCwK,UAAY5G,QAAQ6G,gBAGxBD,UAAUtH,SAAQ,SAAUwH,KAAMnD,UAC5BvH,YAAc0K,MAAQF,UAAU1T,SAAWyQ,MAAQ,SAC9C5E,KAGT3C,UAAY2C,KAAK3C,UAAU\/E,MAAM,KAAK,GACtCsP,kBAAoB\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\/K,QAAQmU,aAAapJ,KAAMY,WAAWZ,OAEtC\/K,QAAQiN,gBAAgBlC,SA0BxBH,KAAKiH,cAAgBxN,OAAOgE,KAAKuC,KAAKc,aAAa3M,QACrD4P,UAAU\/D,KAAKiH,aAAcjH,KAAKc,aAG7Bd,MAsiCLwJ,gBAzhCsB9M,UAAWD,OAAQwE,QAASwI,gBAAiBnL,WAEjEY,iBAAmBb,oBAAoBC,EAAO7B,OAAQC,WAKtDW,UAAYD,qBAAqB6D,QAAQ5D,UAAW6B,iBAAkBzC,OAAQC,UAAWuE,QAAQlB,UAAUmB,KAAKtE,kBAAmBqE,QAAQlB,UAAUmB,KAAKvE,gBAE9JF,OAAO8M,aAAa,cAAelM,WAInC0G,UAAUtH,OAAQ,CAAE2E,SAAU,aAEvBH,SAihCL+H,qBAAiBlR,IAuCjB4R,SAAW,CAKbrM,UAAW,SAMXiG,eAAe,EAOff,iBAAiB,EAQjBhB,SAAU,aAUVD,SAAU,aAOVvB,UAAWA,WAeTpM,OAAS,oBASFA,OAAO+I,UAAWD,YACrBkN,MAAQ\/V,KAERqN,QAAUpJ,UAAU1D,OAAS,QAAsB2D,IAAjBD,UAAU,GAAmBA,UAAU,GAAK,IA\/5DjE,SAAUgJ,SAAUjH,kBACjCiH,oBAAoBjH,mBAClB,IAAIgQ,UAAU,qCA85DpBC,CAAejW,KAAMD,aAEhB6P,eAAiB,kBACbsG,sBAAsBH,MAAMhJ,cAIhCA,OAASpM,SAASX,KAAK+M,OAAOoJ,KAAKnW,YAGnCqN,QAAU\/G,SAAS,GAAIvG,OAAO+V,SAAUzI,cAGxC3C,MAAQ,CACXsC,aAAa,EACbS,WAAW,EACXyB,cAAe,SAIZpG,UAAYA,WAAaA,UAAUsN,OAAStN,UAAU,GAAKA,eAC3DD,OAASA,QAAUA,OAAOuN,OAASvN,OAAO,GAAKA,YAG\/CwE,QAAQlB,UAAY,GACzBtG,OAAOgE,KAAKvD,SAAS,GAAIvG,OAAO+V,SAAS3J,UAAWkB,QAAQlB,YAAYQ,SAAQ,SAAUoB,MACxFgI,MAAM1I,QAAQlB,UAAU4B,MAAQzH,SAAS,GAAIvG,OAAO+V,SAAS3J,UAAU4B,OAAS,GAAIV,QAAQlB,UAAYkB,QAAQlB,UAAU4B,MAAQ,YAI\/H5B,UAAYtG,OAAOgE,KAAK7J,KAAKqN,QAAQlB,WAAWrC,KAAI,SAAUiE,aAC1DzH,SAAS,CACdyH,KAAMA,MACLgI,MAAM1I,QAAQlB,UAAU4B,UAG5B9D,MAAK,SAAUC,EAAGC,UACVD,EAAEjH,MAAQkH,EAAElH,cAOhBkJ,UAAUQ,SAAQ,SAAUkJ,iBAC3BA,gBAAgB\/I,SAAW3L,WAAW0U,gBAAgBD,SACxDC,gBAAgBD,OAAOG,MAAMjN,UAAWiN,MAAMlN,OAAQkN,MAAM1I,QAASwI,gBAAiBE,MAAMrL,eAK3FqC,aAED2C,cAAgB1P,KAAKqN,QAAQqC,cAC7BA,oBAEGC,4BAGFjF,MAAMgF,cAAgBA,qBAO7BrK,YAAYtF,OAAQ,CAAC,CACnBgG,IAAK,SACLM,MAAO,kBACE0G,OAAOzL,KAAKtB,QAEpB,CACD+F,IAAK,UACLM,MAAO,kBACEmI,QAAQlN,KAAKtB,QAErB,CACD+F,IAAK,uBACLM,MAAO,kBACEsJ,qBAAqBrO,KAAKtB,QAElC,CACD+F,IAAK,wBACLM,MAAO,kBACEqI,sBAAsBpN,KAAKtB,UA4B\/BD,OA7HI,UAqJbA,OAAOsW,OAA2B,oBAAXnW,OAAyBA,OAAST,QAAQ6W,YACjEvW,OAAO6Q,WAAaA,WACpB7Q,OAAO+V,SAAWA,SAEX\/V,MAEN"}