`.\r\n\t * @returns {Function} A `useDispatch` hook bound to the specified context.\r\n\t */\n\tfunction createDispatchHook(context) {\n\t if (context === void 0) {\n\t context = _Context.ReactReduxContext;\n\t }\n\t\n\t var useStore = context === _Context.ReactReduxContext ? _useStore.useStore : (0, _useStore.createStoreHook)(context);\n\t return function useDispatch() {\n\t var store = useStore();\n\t return store.dispatch;\n\t };\n\t}\n\t/**\r\n\t * A hook to access the redux `dispatch` function.\r\n\t *\r\n\t * @returns {any|function} redux store's `dispatch` function\r\n\t *\r\n\t * @example\r\n\t *\r\n\t * import React, { useCallback } from 'react'\r\n\t * import { useDispatch } from 'react-redux'\r\n\t *\r\n\t * export const CounterComponent = ({ value }) => {\r\n\t * const dispatch = useDispatch()\r\n\t * const increaseCounter = useCallback(() => dispatch({ type: 'increase-counter' }), [])\r\n\t * return (\r\n\t * \r\n\t * {value}\r\n\t * \r\n\t *
\r\n\t * )\r\n\t * }\r\n\t */\n\t\n\t\n\tvar useDispatch = /*#__PURE__*/createDispatchHook();\n\texports.useDispatch = useDispatch;\n\n/***/ }),\n/* 81 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\t\n\texports.__esModule = true;\n\texports.createStoreHook = createStoreHook;\n\texports.useStore = void 0;\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _Context = __webpack_require__(56);\n\t\n\tvar _useReduxContext2 = __webpack_require__(82);\n\t\n\t/**\r\n\t * Hook factory, which creates a `useStore` hook bound to a given context.\r\n\t *\r\n\t * @param {React.Context} [context=ReactReduxContext] Context passed to your ``.\r\n\t * @returns {Function} A `useStore` hook bound to the specified context.\r\n\t */\n\tfunction createStoreHook(context) {\n\t if (context === void 0) {\n\t context = _Context.ReactReduxContext;\n\t }\n\t\n\t var useReduxContext = context === _Context.ReactReduxContext ? _useReduxContext2.useReduxContext : function () {\n\t return (0, _react.useContext)(context);\n\t };\n\t return function useStore() {\n\t var _useReduxContext = useReduxContext(),\n\t store = _useReduxContext.store;\n\t\n\t return store;\n\t };\n\t}\n\t/**\r\n\t * A hook to access the redux store.\r\n\t *\r\n\t * @returns {any} the redux store\r\n\t *\r\n\t * @example\r\n\t *\r\n\t * import React from 'react'\r\n\t * import { useStore } from 'react-redux'\r\n\t *\r\n\t * export const ExampleComponent = () => {\r\n\t * const store = useStore()\r\n\t * return {store.getState()}
\r\n\t * }\r\n\t */\n\t\n\t\n\tvar useStore = /*#__PURE__*/createStoreHook();\n\texports.useStore = useStore;\n\n/***/ }),\n/* 82 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\t\n\texports.__esModule = true;\n\texports.useReduxContext = useReduxContext;\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _Context = __webpack_require__(56);\n\t\n\t/**\r\n\t * A hook to access the value of the `ReactReduxContext`. This is a low-level\r\n\t * hook that you should usually not need to call directly.\r\n\t *\r\n\t * @returns {any} the value of the `ReactReduxContext`\r\n\t *\r\n\t * @example\r\n\t *\r\n\t * import React from 'react'\r\n\t * import { useReduxContext } from 'react-redux'\r\n\t *\r\n\t * export const CounterComponent = ({ value }) => {\r\n\t * const { store } = useReduxContext()\r\n\t * return {store.getState()}
\r\n\t * }\r\n\t */\n\tfunction useReduxContext() {\n\t var contextValue = (0, _react.useContext)(_Context.ReactReduxContext);\n\t\n\t if (false) {\n\t throw new Error('could not find react-redux context value; please ensure the component is wrapped in a ');\n\t }\n\t\n\t return contextValue;\n\t}\n\n/***/ }),\n/* 83 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\t\n\texports.__esModule = true;\n\texports.createSelectorHook = createSelectorHook;\n\texports.useSelector = void 0;\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _useReduxContext2 = __webpack_require__(82);\n\t\n\tvar _Subscription = __webpack_require__(57);\n\t\n\tvar _useIsomorphicLayoutEffect = __webpack_require__(59);\n\t\n\tvar _Context = __webpack_require__(56);\n\t\n\tvar refEquality = function refEquality(a, b) {\n\t return a === b;\n\t};\n\t\n\tfunction useSelectorWithStoreAndSubscription(selector, equalityFn, store, contextSub) {\n\t var _useReducer = (0, _react.useReducer)(function (s) {\n\t return s + 1;\n\t }, 0),\n\t forceRender = _useReducer[1];\n\t\n\t var subscription = (0, _react.useMemo)(function () {\n\t return (0, _Subscription.createSubscription)(store, contextSub);\n\t }, [store, contextSub]);\n\t var latestSubscriptionCallbackError = (0, _react.useRef)();\n\t var latestSelector = (0, _react.useRef)();\n\t var latestStoreState = (0, _react.useRef)();\n\t var latestSelectedState = (0, _react.useRef)();\n\t var storeState = store.getState();\n\t var selectedState;\n\t\n\t try {\n\t if (selector !== latestSelector.current || storeState !== latestStoreState.current || latestSubscriptionCallbackError.current) {\n\t var newSelectedState = selector(storeState); // ensure latest selected state is reused so that a custom equality function can result in identical references\n\t\n\t if (latestSelectedState.current === undefined || !equalityFn(newSelectedState, latestSelectedState.current)) {\n\t selectedState = newSelectedState;\n\t } else {\n\t selectedState = latestSelectedState.current;\n\t }\n\t } else {\n\t selectedState = latestSelectedState.current;\n\t }\n\t } catch (err) {\n\t if (latestSubscriptionCallbackError.current) {\n\t err.message += \"\\nThe error may be correlated with this previous error:\\n\" + latestSubscriptionCallbackError.current.stack + \"\\n\\n\";\n\t }\n\t\n\t throw err;\n\t }\n\t\n\t (0, _useIsomorphicLayoutEffect.useIsomorphicLayoutEffect)(function () {\n\t latestSelector.current = selector;\n\t latestStoreState.current = storeState;\n\t latestSelectedState.current = selectedState;\n\t latestSubscriptionCallbackError.current = undefined;\n\t });\n\t (0, _useIsomorphicLayoutEffect.useIsomorphicLayoutEffect)(function () {\n\t function checkForUpdates() {\n\t try {\n\t var newStoreState = store.getState(); // Avoid calling selector multiple times if the store's state has not changed\n\t\n\t if (newStoreState === latestStoreState.current) {\n\t return;\n\t }\n\t\n\t var _newSelectedState = latestSelector.current(newStoreState);\n\t\n\t if (equalityFn(_newSelectedState, latestSelectedState.current)) {\n\t return;\n\t }\n\t\n\t latestSelectedState.current = _newSelectedState;\n\t latestStoreState.current = newStoreState;\n\t } catch (err) {\n\t // we ignore all errors here, since when the component\n\t // is re-rendered, the selectors are called again, and\n\t // will throw again, if neither props nor store state\n\t // changed\n\t latestSubscriptionCallbackError.current = err;\n\t }\n\t\n\t forceRender();\n\t }\n\t\n\t subscription.onStateChange = checkForUpdates;\n\t subscription.trySubscribe();\n\t checkForUpdates();\n\t return function () {\n\t return subscription.tryUnsubscribe();\n\t };\n\t }, [store, subscription]);\n\t return selectedState;\n\t}\n\t/**\r\n\t * Hook factory, which creates a `useSelector` hook bound to a given context.\r\n\t *\r\n\t * @param {React.Context} [context=ReactReduxContext] Context passed to your ``.\r\n\t * @returns {Function} A `useSelector` hook bound to the specified context.\r\n\t */\n\t\n\t\n\tfunction createSelectorHook(context) {\n\t if (context === void 0) {\n\t context = _Context.ReactReduxContext;\n\t }\n\t\n\t var useReduxContext = context === _Context.ReactReduxContext ? _useReduxContext2.useReduxContext : function () {\n\t return (0, _react.useContext)(context);\n\t };\n\t return function useSelector(selector, equalityFn) {\n\t if (equalityFn === void 0) {\n\t equalityFn = refEquality;\n\t }\n\t\n\t if (false) {\n\t if (!selector) {\n\t throw new Error(\"You must pass a selector to useSelector\");\n\t }\n\t\n\t if (typeof selector !== 'function') {\n\t throw new Error(\"You must pass a function as a selector to useSelector\");\n\t }\n\t\n\t if (typeof equalityFn !== 'function') {\n\t throw new Error(\"You must pass a function as an equality function to useSelector\");\n\t }\n\t }\n\t\n\t var _useReduxContext = useReduxContext(),\n\t store = _useReduxContext.store,\n\t contextSub = _useReduxContext.subscription;\n\t\n\t var selectedState = useSelectorWithStoreAndSubscription(selector, equalityFn, store, contextSub);\n\t (0, _react.useDebugValue)(selectedState);\n\t return selectedState;\n\t };\n\t}\n\t/**\r\n\t * A hook to access the redux store's state. This hook takes a selector function\r\n\t * as an argument. The selector is called with the store state.\r\n\t *\r\n\t * This hook takes an optional equality comparison function as the second parameter\r\n\t * that allows you to customize the way the selected state is compared to determine\r\n\t * whether the component needs to be re-rendered.\r\n\t *\r\n\t * @param {Function} selector the selector function\r\n\t * @param {Function=} equalityFn the function that will be used to determine equality\r\n\t *\r\n\t * @returns {any} the selected state\r\n\t *\r\n\t * @example\r\n\t *\r\n\t * import React from 'react'\r\n\t * import { useSelector } from 'react-redux'\r\n\t *\r\n\t * export const CounterComponent = () => {\r\n\t * const counter = useSelector(state => state.counter)\r\n\t * return {counter}
\r\n\t * }\r\n\t */\n\t\n\t\n\tvar useSelector = /*#__PURE__*/createSelectorHook();\n\texports.useSelector = useSelector;\n\n/***/ }),\n/* 84 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\t\n\texports.__esModule = true;\n\texports.unstable_batchedUpdates = void 0;\n\t\n\tvar _reactDom = __webpack_require__(41);\n\t\n\texports.unstable_batchedUpdates = _reactDom.unstable_batchedUpdates;\n\n/***/ }),\n/* 85 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, '__esModule', {\n\t value: true\n\t});\n\t\n\tvar _reactRouter = __webpack_require__(86);\n\t\n\tvar _history = __webpack_require__(142);\n\t\n\tvar appHistory = (0, _reactRouter.useRouterHistory)(_history.createHashHistory)();\n\texports['default'] = appHistory;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 86 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.createMemoryHistory = exports.hashHistory = exports.browserHistory = exports.applyRouterMiddleware = exports.formatPattern = exports.useRouterHistory = exports.match = exports.routerShape = exports.locationShape = exports.RouterContext = exports.createRoutes = exports.Route = exports.Redirect = exports.IndexRoute = exports.IndexRedirect = exports.withRouter = exports.IndexLink = exports.Link = exports.Router = undefined;\n\t\n\tvar _RouteUtils = __webpack_require__(87);\n\t\n\tObject.defineProperty(exports, 'createRoutes', {\n\t enumerable: true,\n\t get: function get() {\n\t return _RouteUtils.createRoutes;\n\t }\n\t});\n\t\n\tvar _PropTypes = __webpack_require__(88);\n\t\n\tObject.defineProperty(exports, 'locationShape', {\n\t enumerable: true,\n\t get: function get() {\n\t return _PropTypes.locationShape;\n\t }\n\t});\n\tObject.defineProperty(exports, 'routerShape', {\n\t enumerable: true,\n\t get: function get() {\n\t return _PropTypes.routerShape;\n\t }\n\t});\n\t\n\tvar _PatternUtils = __webpack_require__(89);\n\t\n\tObject.defineProperty(exports, 'formatPattern', {\n\t enumerable: true,\n\t get: function get() {\n\t return _PatternUtils.formatPattern;\n\t }\n\t});\n\t\n\tvar _Router2 = __webpack_require__(91);\n\t\n\tvar _Router3 = _interopRequireDefault(_Router2);\n\t\n\tvar _Link2 = __webpack_require__(109);\n\t\n\tvar _Link3 = _interopRequireDefault(_Link2);\n\t\n\tvar _IndexLink2 = __webpack_require__(110);\n\t\n\tvar _IndexLink3 = _interopRequireDefault(_IndexLink2);\n\t\n\tvar _withRouter2 = __webpack_require__(111);\n\t\n\tvar _withRouter3 = _interopRequireDefault(_withRouter2);\n\t\n\tvar _IndexRedirect2 = __webpack_require__(112);\n\t\n\tvar _IndexRedirect3 = _interopRequireDefault(_IndexRedirect2);\n\t\n\tvar _IndexRoute2 = __webpack_require__(114);\n\t\n\tvar _IndexRoute3 = _interopRequireDefault(_IndexRoute2);\n\t\n\tvar _Redirect2 = __webpack_require__(113);\n\t\n\tvar _Redirect3 = _interopRequireDefault(_Redirect2);\n\t\n\tvar _Route2 = __webpack_require__(115);\n\t\n\tvar _Route3 = _interopRequireDefault(_Route2);\n\t\n\tvar _RouterContext2 = __webpack_require__(105);\n\t\n\tvar _RouterContext3 = _interopRequireDefault(_RouterContext2);\n\t\n\tvar _match2 = __webpack_require__(116);\n\t\n\tvar _match3 = _interopRequireDefault(_match2);\n\t\n\tvar _useRouterHistory2 = __webpack_require__(129);\n\t\n\tvar _useRouterHistory3 = _interopRequireDefault(_useRouterHistory2);\n\t\n\tvar _applyRouterMiddleware2 = __webpack_require__(130);\n\t\n\tvar _applyRouterMiddleware3 = _interopRequireDefault(_applyRouterMiddleware2);\n\t\n\tvar _browserHistory2 = __webpack_require__(131);\n\t\n\tvar _browserHistory3 = _interopRequireDefault(_browserHistory2);\n\t\n\tvar _hashHistory2 = __webpack_require__(139);\n\t\n\tvar _hashHistory3 = _interopRequireDefault(_hashHistory2);\n\t\n\tvar _createMemoryHistory2 = __webpack_require__(118);\n\t\n\tvar _createMemoryHistory3 = _interopRequireDefault(_createMemoryHistory2);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.Router = _Router3.default; /* components */\n\t\n\texports.Link = _Link3.default;\n\texports.IndexLink = _IndexLink3.default;\n\texports.withRouter = _withRouter3.default;\n\t\n\t/* components (configuration) */\n\t\n\texports.IndexRedirect = _IndexRedirect3.default;\n\texports.IndexRoute = _IndexRoute3.default;\n\texports.Redirect = _Redirect3.default;\n\texports.Route = _Route3.default;\n\t\n\t/* utils */\n\t\n\texports.RouterContext = _RouterContext3.default;\n\texports.match = _match3.default;\n\texports.useRouterHistory = _useRouterHistory3.default;\n\texports.applyRouterMiddleware = _applyRouterMiddleware3.default;\n\t\n\t/* histories */\n\t\n\texports.browserHistory = _browserHistory3.default;\n\texports.hashHistory = _hashHistory3.default;\n\texports.createMemoryHistory = _createMemoryHistory3.default;\n\n/***/ }),\n/* 87 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\texports.isReactChildren = isReactChildren;\n\texports.createRouteFromReactElement = createRouteFromReactElement;\n\texports.createRoutesFromReactChildren = createRoutesFromReactChildren;\n\texports.createRoutes = createRoutes;\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction isValidChild(object) {\n\t return object == null || _react2.default.isValidElement(object);\n\t}\n\t\n\tfunction isReactChildren(object) {\n\t return isValidChild(object) || Array.isArray(object) && object.every(isValidChild);\n\t}\n\t\n\tfunction createRoute(defaultProps, props) {\n\t return _extends({}, defaultProps, props);\n\t}\n\t\n\tfunction createRouteFromReactElement(element) {\n\t var type = element.type;\n\t var route = createRoute(type.defaultProps, element.props);\n\t\n\t if (route.children) {\n\t var childRoutes = createRoutesFromReactChildren(route.children, route);\n\t\n\t if (childRoutes.length) route.childRoutes = childRoutes;\n\t\n\t delete route.children;\n\t }\n\t\n\t return route;\n\t}\n\t\n\t/**\n\t * Creates and returns a routes object from the given ReactChildren. JSX\n\t * provides a convenient way to visualize how routes in the hierarchy are\n\t * nested.\n\t *\n\t * import { Route, createRoutesFromReactChildren } from 'react-router'\n\t *\n\t * const routes = createRoutesFromReactChildren(\n\t * \n\t * \n\t * \n\t * \n\t * )\n\t *\n\t * Note: This method is automatically used when you provide children\n\t * to a component.\n\t */\n\tfunction createRoutesFromReactChildren(children, parentRoute) {\n\t var routes = [];\n\t\n\t _react2.default.Children.forEach(children, function (element) {\n\t if (_react2.default.isValidElement(element)) {\n\t // Component classes may have a static create* method.\n\t if (element.type.createRouteFromReactElement) {\n\t var route = element.type.createRouteFromReactElement(element, parentRoute);\n\t\n\t if (route) routes.push(route);\n\t } else {\n\t routes.push(createRouteFromReactElement(element));\n\t }\n\t }\n\t });\n\t\n\t return routes;\n\t}\n\t\n\t/**\n\t * Creates and returns an array of routes from the given object which\n\t * may be a JSX route, a plain object route, or an array of either.\n\t */\n\tfunction createRoutes(routes) {\n\t if (isReactChildren(routes)) {\n\t routes = createRoutesFromReactChildren(routes);\n\t } else if (routes && !Array.isArray(routes)) {\n\t routes = [routes];\n\t }\n\t\n\t return routes;\n\t}\n\n/***/ }),\n/* 88 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.locationShape = exports.routerShape = undefined;\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar routerShape = exports.routerShape = (0, _propTypes.shape)({\n\t push: _propTypes.func.isRequired,\n\t replace: _propTypes.func.isRequired,\n\t go: _propTypes.func.isRequired,\n\t goBack: _propTypes.func.isRequired,\n\t goForward: _propTypes.func.isRequired,\n\t setRouteLeaveHook: _propTypes.func.isRequired,\n\t isActive: _propTypes.func.isRequired\n\t});\n\t\n\tvar locationShape = exports.locationShape = (0, _propTypes.shape)({\n\t pathname: _propTypes.string.isRequired,\n\t search: _propTypes.string.isRequired,\n\t state: _propTypes.object,\n\t action: _propTypes.string.isRequired,\n\t key: _propTypes.string\n\t});\n\n/***/ }),\n/* 89 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.compilePattern = compilePattern;\n\texports.matchPattern = matchPattern;\n\texports.getParamNames = getParamNames;\n\texports.getParams = getParams;\n\texports.formatPattern = formatPattern;\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction escapeRegExp(string) {\n\t return string.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\$&');\n\t}\n\t\n\tfunction _compilePattern(pattern) {\n\t var regexpSource = '';\n\t var paramNames = [];\n\t var tokens = [];\n\t\n\t var match = void 0,\n\t lastIndex = 0,\n\t matcher = /:([a-zA-Z_$][a-zA-Z0-9_$]*)|\\*\\*|\\*|\\(|\\)|\\\\\\(|\\\\\\)/g;\n\t while (match = matcher.exec(pattern)) {\n\t if (match.index !== lastIndex) {\n\t tokens.push(pattern.slice(lastIndex, match.index));\n\t regexpSource += escapeRegExp(pattern.slice(lastIndex, match.index));\n\t }\n\t\n\t if (match[1]) {\n\t regexpSource += '([^/]+)';\n\t paramNames.push(match[1]);\n\t } else if (match[0] === '**') {\n\t regexpSource += '(.*)';\n\t paramNames.push('splat');\n\t } else if (match[0] === '*') {\n\t regexpSource += '(.*?)';\n\t paramNames.push('splat');\n\t } else if (match[0] === '(') {\n\t regexpSource += '(?:';\n\t } else if (match[0] === ')') {\n\t regexpSource += ')?';\n\t } else if (match[0] === '\\\\(') {\n\t regexpSource += '\\\\(';\n\t } else if (match[0] === '\\\\)') {\n\t regexpSource += '\\\\)';\n\t }\n\t\n\t tokens.push(match[0]);\n\t\n\t lastIndex = matcher.lastIndex;\n\t }\n\t\n\t if (lastIndex !== pattern.length) {\n\t tokens.push(pattern.slice(lastIndex, pattern.length));\n\t regexpSource += escapeRegExp(pattern.slice(lastIndex, pattern.length));\n\t }\n\t\n\t return {\n\t pattern: pattern,\n\t regexpSource: regexpSource,\n\t paramNames: paramNames,\n\t tokens: tokens\n\t };\n\t}\n\t\n\tvar CompiledPatternsCache = Object.create(null);\n\t\n\tfunction compilePattern(pattern) {\n\t if (!CompiledPatternsCache[pattern]) CompiledPatternsCache[pattern] = _compilePattern(pattern);\n\t\n\t return CompiledPatternsCache[pattern];\n\t}\n\t\n\t/**\n\t * Attempts to match a pattern on the given pathname. Patterns may use\n\t * the following special characters:\n\t *\n\t * - :paramName Matches a URL segment up to the next /, ?, or #. The\n\t * captured string is considered a \"param\"\n\t * - () Wraps a segment of the URL that is optional\n\t * - * Consumes (non-greedy) all characters up to the next\n\t * character in the pattern, or to the end of the URL if\n\t * there is none\n\t * - ** Consumes (greedy) all characters up to the next character\n\t * in the pattern, or to the end of the URL if there is none\n\t *\n\t * The function calls callback(error, matched) when finished.\n\t * The return value is an object with the following properties:\n\t *\n\t * - remainingPathname\n\t * - paramNames\n\t * - paramValues\n\t */\n\tfunction matchPattern(pattern, pathname) {\n\t // Ensure pattern starts with leading slash for consistency with pathname.\n\t if (pattern.charAt(0) !== '/') {\n\t pattern = '/' + pattern;\n\t }\n\t\n\t var _compilePattern2 = compilePattern(pattern),\n\t regexpSource = _compilePattern2.regexpSource,\n\t paramNames = _compilePattern2.paramNames,\n\t tokens = _compilePattern2.tokens;\n\t\n\t if (pattern.charAt(pattern.length - 1) !== '/') {\n\t regexpSource += '/?'; // Allow optional path separator at end.\n\t }\n\t\n\t // Special-case patterns like '*' for catch-all routes.\n\t if (tokens[tokens.length - 1] === '*') {\n\t regexpSource += '$';\n\t }\n\t\n\t var match = pathname.match(new RegExp('^' + regexpSource, 'i'));\n\t if (match == null) {\n\t return null;\n\t }\n\t\n\t var matchedPath = match[0];\n\t var remainingPathname = pathname.substr(matchedPath.length);\n\t\n\t if (remainingPathname) {\n\t // Require that the match ends at a path separator, if we didn't match\n\t // the full path, so any remaining pathname is a new path segment.\n\t if (matchedPath.charAt(matchedPath.length - 1) !== '/') {\n\t return null;\n\t }\n\t\n\t // If there is a remaining pathname, treat the path separator as part of\n\t // the remaining pathname for properly continuing the match.\n\t remainingPathname = '/' + remainingPathname;\n\t }\n\t\n\t return {\n\t remainingPathname: remainingPathname,\n\t paramNames: paramNames,\n\t paramValues: match.slice(1).map(function (v) {\n\t return v && decodeURIComponent(v);\n\t })\n\t };\n\t}\n\t\n\tfunction getParamNames(pattern) {\n\t return compilePattern(pattern).paramNames;\n\t}\n\t\n\tfunction getParams(pattern, pathname) {\n\t var match = matchPattern(pattern, pathname);\n\t if (!match) {\n\t return null;\n\t }\n\t\n\t var paramNames = match.paramNames,\n\t paramValues = match.paramValues;\n\t\n\t var params = {};\n\t\n\t paramNames.forEach(function (paramName, index) {\n\t params[paramName] = paramValues[index];\n\t });\n\t\n\t return params;\n\t}\n\t\n\t/**\n\t * Returns a version of the given pattern with params interpolated. Throws\n\t * if there is a dynamic segment of the pattern for which there is no param.\n\t */\n\tfunction formatPattern(pattern, params) {\n\t params = params || {};\n\t\n\t var _compilePattern3 = compilePattern(pattern),\n\t tokens = _compilePattern3.tokens;\n\t\n\t var parenCount = 0,\n\t pathname = '',\n\t splatIndex = 0,\n\t parenHistory = [];\n\t\n\t var token = void 0,\n\t paramName = void 0,\n\t paramValue = void 0;\n\t for (var i = 0, len = tokens.length; i < len; ++i) {\n\t token = tokens[i];\n\t\n\t if (token === '*' || token === '**') {\n\t paramValue = Array.isArray(params.splat) ? params.splat[splatIndex++] : params.splat;\n\t\n\t !(paramValue != null || parenCount > 0) ? false ? (0, _invariant2.default)(false, 'Missing splat #%s for path \"%s\"', splatIndex, pattern) : (0, _invariant2.default)(false) : void 0;\n\t\n\t if (paramValue != null) pathname += encodeURI(paramValue);\n\t } else if (token === '(') {\n\t parenHistory[parenCount] = '';\n\t parenCount += 1;\n\t } else if (token === ')') {\n\t var parenText = parenHistory.pop();\n\t parenCount -= 1;\n\t\n\t if (parenCount) parenHistory[parenCount - 1] += parenText;else pathname += parenText;\n\t } else if (token === '\\\\(') {\n\t pathname += '(';\n\t } else if (token === '\\\\)') {\n\t pathname += ')';\n\t } else if (token.charAt(0) === ':') {\n\t paramName = token.substring(1);\n\t paramValue = params[paramName];\n\t\n\t !(paramValue != null || parenCount > 0) ? false ? (0, _invariant2.default)(false, 'Missing \"%s\" parameter for path \"%s\"', paramName, pattern) : (0, _invariant2.default)(false) : void 0;\n\t\n\t if (paramValue == null) {\n\t if (parenCount) {\n\t parenHistory[parenCount - 1] = '';\n\t\n\t var curTokenIdx = tokens.indexOf(token);\n\t var tokensSubset = tokens.slice(curTokenIdx, tokens.length);\n\t var nextParenIdx = -1;\n\t\n\t for (var _i = 0; _i < tokensSubset.length; _i++) {\n\t if (tokensSubset[_i] == ')') {\n\t nextParenIdx = _i;\n\t break;\n\t }\n\t }\n\t\n\t !(nextParenIdx > 0) ? false ? (0, _invariant2.default)(false, 'Path \"%s\" is missing end paren at segment \"%s\"', pattern, tokensSubset.join('')) : (0, _invariant2.default)(false) : void 0;\n\t\n\t // jump to ending paren\n\t i = curTokenIdx + nextParenIdx - 1;\n\t }\n\t } else if (parenCount) parenHistory[parenCount - 1] += encodeURIComponent(paramValue);else pathname += encodeURIComponent(paramValue);\n\t } else {\n\t if (parenCount) parenHistory[parenCount - 1] += token;else pathname += token;\n\t }\n\t }\n\t\n\t !(parenCount <= 0) ? false ? (0, _invariant2.default)(false, 'Path \"%s\" is missing end paren', pattern) : (0, _invariant2.default)(false) : void 0;\n\t\n\t return pathname.replace(/\\/+/g, '/');\n\t}\n\n/***/ }),\n/* 90 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t *\n\t * This source code is licensed under the MIT license found in the\n\t * LICENSE file in the root directory of this source tree.\n\t */\n\t\n\t'use strict';\n\t\n\t/**\n\t * Use invariant() to assert state which your program assumes to be true.\n\t *\n\t * Provide sprintf-style format (only %s is supported) and arguments\n\t * to provide information about what broke and what you were\n\t * expecting.\n\t *\n\t * The invariant message will be stripped in production, but the invariant\n\t * will remain to ensure logic does not differ in production.\n\t */\n\t\n\tvar invariant = function(condition, format, a, b, c, d, e, f) {\n\t if (false) {\n\t if (format === undefined) {\n\t throw new Error('invariant requires an error message argument');\n\t }\n\t }\n\t\n\t if (!condition) {\n\t var error;\n\t if (format === undefined) {\n\t error = new Error(\n\t 'Minified exception occurred; use the non-minified dev environment ' +\n\t 'for the full error message and additional helpful warnings.'\n\t );\n\t } else {\n\t var args = [a, b, c, d, e, f];\n\t var argIndex = 0;\n\t error = new Error(\n\t format.replace(/%s/g, function() { return args[argIndex++]; })\n\t );\n\t error.name = 'Invariant Violation';\n\t }\n\t\n\t error.framesToPop = 1; // we don't care about invariant's own frame\n\t throw error;\n\t }\n\t};\n\t\n\tmodule.exports = invariant;\n\n\n/***/ }),\n/* 91 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar _createTransitionManager2 = __webpack_require__(94);\n\t\n\tvar _createTransitionManager3 = _interopRequireDefault(_createTransitionManager2);\n\t\n\tvar _InternalPropTypes = __webpack_require__(104);\n\t\n\tvar _RouterContext = __webpack_require__(105);\n\t\n\tvar _RouterContext2 = _interopRequireDefault(_RouterContext);\n\t\n\tvar _RouteUtils = __webpack_require__(87);\n\t\n\tvar _RouterUtils = __webpack_require__(108);\n\t\n\tvar _routerWarning = __webpack_require__(95);\n\t\n\tvar _routerWarning2 = _interopRequireDefault(_routerWarning);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }\n\t\n\tvar propTypes = {\n\t history: _propTypes.object,\n\t children: _InternalPropTypes.routes,\n\t routes: _InternalPropTypes.routes, // alias for children\n\t render: _propTypes.func,\n\t createElement: _propTypes.func,\n\t onError: _propTypes.func,\n\t onUpdate: _propTypes.func,\n\t\n\t // PRIVATE: For client-side rehydration of server match.\n\t matchContext: _propTypes.object\n\t};\n\t\n\tvar prefixUnsafeLifecycleMethods = typeof _react2.default.forwardRef !== 'undefined';\n\t\n\t/**\n\t * A is a high-level API for automatically setting up\n\t * a router that renders a with all the props\n\t * it needs each time the URL changes.\n\t */\n\tvar Router = (0, _createReactClass2.default)({\n\t displayName: 'Router',\n\t\n\t propTypes: propTypes,\n\t\n\t getDefaultProps: function getDefaultProps() {\n\t return {\n\t render: function render(props) {\n\t return _react2.default.createElement(_RouterContext2.default, props);\n\t }\n\t };\n\t },\n\t getInitialState: function getInitialState() {\n\t return {\n\t location: null,\n\t routes: null,\n\t params: null,\n\t components: null\n\t };\n\t },\n\t handleError: function handleError(error) {\n\t if (this.props.onError) {\n\t this.props.onError.call(this, error);\n\t } else {\n\t // Throw errors by default so we don't silently swallow them!\n\t throw error; // This error probably occurred in getChildRoutes or getComponents.\n\t }\n\t },\n\t createRouterObject: function createRouterObject(state) {\n\t var matchContext = this.props.matchContext;\n\t\n\t if (matchContext) {\n\t return matchContext.router;\n\t }\n\t\n\t var history = this.props.history;\n\t\n\t return (0, _RouterUtils.createRouterObject)(history, this.transitionManager, state);\n\t },\n\t createTransitionManager: function createTransitionManager() {\n\t var matchContext = this.props.matchContext;\n\t\n\t if (matchContext) {\n\t return matchContext.transitionManager;\n\t }\n\t\n\t var history = this.props.history;\n\t var _props = this.props,\n\t routes = _props.routes,\n\t children = _props.children;\n\t\n\t\n\t !history.getCurrentLocation ? false ? (0, _invariant2.default)(false, 'You have provided a history object created with history v4.x or v2.x ' + 'and earlier. This version of React Router is only compatible with v3 ' + 'history objects. Please change to history v3.x.') : (0, _invariant2.default)(false) : void 0;\n\t\n\t return (0, _createTransitionManager3.default)(history, (0, _RouteUtils.createRoutes)(routes || children));\n\t },\n\t\n\t\n\t // this method will be updated to UNSAFE_componentWillMount below for React versions >= 16.3\n\t componentWillMount: function componentWillMount() {\n\t var _this = this;\n\t\n\t this.transitionManager = this.createTransitionManager();\n\t this.router = this.createRouterObject(this.state);\n\t\n\t this._unlisten = this.transitionManager.listen(function (error, state) {\n\t if (error) {\n\t _this.handleError(error);\n\t } else {\n\t // Keep the identity of this.router because of a caveat in ContextUtils:\n\t // they only work if the object identity is preserved.\n\t (0, _RouterUtils.assignRouterState)(_this.router, state);\n\t _this.setState(state, _this.props.onUpdate);\n\t }\n\t });\n\t },\n\t\n\t\n\t // this method will be updated to UNSAFE_componentWillReceiveProps below for React versions >= 16.3\n\t /* istanbul ignore next: sanity check */\n\t componentWillReceiveProps: function componentWillReceiveProps(nextProps) {\n\t false ? (0, _routerWarning2.default)(nextProps.history === this.props.history, 'You cannot change ; it will be ignored') : void 0;\n\t\n\t false ? (0, _routerWarning2.default)((nextProps.routes || nextProps.children) === (this.props.routes || this.props.children), 'You cannot change ; it will be ignored') : void 0;\n\t },\n\t componentWillUnmount: function componentWillUnmount() {\n\t if (this._unlisten) this._unlisten();\n\t },\n\t render: function render() {\n\t var _state = this.state,\n\t location = _state.location,\n\t routes = _state.routes,\n\t params = _state.params,\n\t components = _state.components;\n\t\n\t var _props2 = this.props,\n\t createElement = _props2.createElement,\n\t render = _props2.render,\n\t props = _objectWithoutProperties(_props2, ['createElement', 'render']);\n\t\n\t if (location == null) return null; // Async match\n\t\n\t // Only forward non-Router-specific props to routing context, as those are\n\t // the only ones that might be custom routing context props.\n\t Object.keys(propTypes).forEach(function (propType) {\n\t return delete props[propType];\n\t });\n\t\n\t return render(_extends({}, props, {\n\t router: this.router,\n\t location: location,\n\t routes: routes,\n\t params: params,\n\t components: components,\n\t createElement: createElement\n\t }));\n\t }\n\t});\n\t\n\tif (prefixUnsafeLifecycleMethods) {\n\t Router.prototype.UNSAFE_componentWillReceiveProps = Router.prototype.componentWillReceiveProps;\n\t Router.prototype.UNSAFE_componentWillMount = Router.prototype.componentWillMount;\n\t delete Router.prototype.componentWillReceiveProps;\n\t delete Router.prototype.componentWillMount;\n\t}\n\t\n\texports.default = Router;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 92 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t *\n\t * This source code is licensed under the MIT license found in the\n\t * LICENSE file in the root directory of this source tree.\n\t *\n\t */\n\t\n\t'use strict';\n\t\n\tvar React = __webpack_require__(38);\n\tvar factory = __webpack_require__(93);\n\t\n\tif (typeof React === 'undefined') {\n\t throw Error(\n\t 'create-react-class could not find the React object. If you are using script tags, ' +\n\t 'make sure that React is being loaded before create-react-class.'\n\t );\n\t}\n\t\n\t// Hack to grab NoopUpdateQueue from isomorphic React\n\tvar ReactNoopUpdateQueue = new React.Component().updater;\n\t\n\tmodule.exports = factory(\n\t React.Component,\n\t React.isValidElement,\n\t ReactNoopUpdateQueue\n\t);\n\n\n/***/ }),\n/* 93 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t *\n\t * This source code is licensed under the MIT license found in the\n\t * LICENSE file in the root directory of this source tree.\n\t *\n\t */\n\t\n\t'use strict';\n\t\n\tvar _assign = __webpack_require__(40);\n\t\n\t// -- Inlined from fbjs --\n\t\n\tvar emptyObject = {};\n\t\n\tif (false) {\n\t Object.freeze(emptyObject);\n\t}\n\t\n\tvar validateFormat = function validateFormat(format) {};\n\t\n\tif (false) {\n\t validateFormat = function validateFormat(format) {\n\t if (format === undefined) {\n\t throw new Error('invariant requires an error message argument');\n\t }\n\t };\n\t}\n\t\n\tfunction _invariant(condition, format, a, b, c, d, e, f) {\n\t validateFormat(format);\n\t\n\t if (!condition) {\n\t var error;\n\t if (format === undefined) {\n\t error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n\t } else {\n\t var args = [a, b, c, d, e, f];\n\t var argIndex = 0;\n\t error = new Error(format.replace(/%s/g, function () {\n\t return args[argIndex++];\n\t }));\n\t error.name = 'Invariant Violation';\n\t }\n\t\n\t error.framesToPop = 1; // we don't care about invariant's own frame\n\t throw error;\n\t }\n\t}\n\t\n\tvar warning = function(){};\n\t\n\tif (false) {\n\t var printWarning = function printWarning(format) {\n\t for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n\t args[_key - 1] = arguments[_key];\n\t }\n\t\n\t var argIndex = 0;\n\t var message = 'Warning: ' + format.replace(/%s/g, function () {\n\t return args[argIndex++];\n\t });\n\t if (typeof console !== 'undefined') {\n\t console.error(message);\n\t }\n\t try {\n\t // --- Welcome to debugging React ---\n\t // This error was thrown as a convenience so that you can use this stack\n\t // to find the callsite that caused this warning to fire.\n\t throw new Error(message);\n\t } catch (x) {}\n\t };\n\t\n\t warning = function warning(condition, format) {\n\t if (format === undefined) {\n\t throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument');\n\t }\n\t\n\t if (format.indexOf('Failed Composite propType: ') === 0) {\n\t return; // Ignore CompositeComponent proptype check.\n\t }\n\t\n\t if (!condition) {\n\t for (var _len2 = arguments.length, args = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {\n\t args[_key2 - 2] = arguments[_key2];\n\t }\n\t\n\t printWarning.apply(undefined, [format].concat(args));\n\t }\n\t };\n\t}\n\t\n\t// /-- Inlined from fbjs --\n\t\n\tvar MIXINS_KEY = 'mixins';\n\t\n\t// Helper function to allow the creation of anonymous functions which do not\n\t// have .name set to the name of the variable being assigned to.\n\tfunction identity(fn) {\n\t return fn;\n\t}\n\t\n\tvar ReactPropTypeLocationNames;\n\tif (false) {\n\t ReactPropTypeLocationNames = {\n\t prop: 'prop',\n\t context: 'context',\n\t childContext: 'child context'\n\t };\n\t} else {\n\t ReactPropTypeLocationNames = {};\n\t}\n\t\n\tfunction factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) {\n\t /**\n\t * Policies that describe methods in `ReactClassInterface`.\n\t */\n\t\n\t var injectedMixins = [];\n\t\n\t /**\n\t * Composite components are higher-level components that compose other composite\n\t * or host components.\n\t *\n\t * To create a new type of `ReactClass`, pass a specification of\n\t * your new class to `React.createClass`. The only requirement of your class\n\t * specification is that you implement a `render` method.\n\t *\n\t * var MyComponent = React.createClass({\n\t * render: function() {\n\t * return Hello World
;\n\t * }\n\t * });\n\t *\n\t * The class specification supports a specific protocol of methods that have\n\t * special meaning (e.g. `render`). See `ReactClassInterface` for\n\t * more the comprehensive protocol. Any other properties and methods in the\n\t * class specification will be available on the prototype.\n\t *\n\t * @interface ReactClassInterface\n\t * @internal\n\t */\n\t var ReactClassInterface = {\n\t /**\n\t * An array of Mixin objects to include when defining your component.\n\t *\n\t * @type {array}\n\t * @optional\n\t */\n\t mixins: 'DEFINE_MANY',\n\t\n\t /**\n\t * An object containing properties and methods that should be defined on\n\t * the component's constructor instead of its prototype (static methods).\n\t *\n\t * @type {object}\n\t * @optional\n\t */\n\t statics: 'DEFINE_MANY',\n\t\n\t /**\n\t * Definition of prop types for this component.\n\t *\n\t * @type {object}\n\t * @optional\n\t */\n\t propTypes: 'DEFINE_MANY',\n\t\n\t /**\n\t * Definition of context types for this component.\n\t *\n\t * @type {object}\n\t * @optional\n\t */\n\t contextTypes: 'DEFINE_MANY',\n\t\n\t /**\n\t * Definition of context types this component sets for its children.\n\t *\n\t * @type {object}\n\t * @optional\n\t */\n\t childContextTypes: 'DEFINE_MANY',\n\t\n\t // ==== Definition methods ====\n\t\n\t /**\n\t * Invoked when the component is mounted. Values in the mapping will be set on\n\t * `this.props` if that prop is not specified (i.e. using an `in` check).\n\t *\n\t * This method is invoked before `getInitialState` and therefore cannot rely\n\t * on `this.state` or use `this.setState`.\n\t *\n\t * @return {object}\n\t * @optional\n\t */\n\t getDefaultProps: 'DEFINE_MANY_MERGED',\n\t\n\t /**\n\t * Invoked once before the component is mounted. The return value will be used\n\t * as the initial value of `this.state`.\n\t *\n\t * getInitialState: function() {\n\t * return {\n\t * isOn: false,\n\t * fooBaz: new BazFoo()\n\t * }\n\t * }\n\t *\n\t * @return {object}\n\t * @optional\n\t */\n\t getInitialState: 'DEFINE_MANY_MERGED',\n\t\n\t /**\n\t * @return {object}\n\t * @optional\n\t */\n\t getChildContext: 'DEFINE_MANY_MERGED',\n\t\n\t /**\n\t * Uses props from `this.props` and state from `this.state` to render the\n\t * structure of the component.\n\t *\n\t * No guarantees are made about when or how often this method is invoked, so\n\t * it must not have side effects.\n\t *\n\t * render: function() {\n\t * var name = this.props.name;\n\t * return Hello, {name}!
;\n\t * }\n\t *\n\t * @return {ReactComponent}\n\t * @required\n\t */\n\t render: 'DEFINE_ONCE',\n\t\n\t // ==== Delegate methods ====\n\t\n\t /**\n\t * Invoked when the component is initially created and about to be mounted.\n\t * This may have side effects, but any external subscriptions or data created\n\t * by this method must be cleaned up in `componentWillUnmount`.\n\t *\n\t * @optional\n\t */\n\t componentWillMount: 'DEFINE_MANY',\n\t\n\t /**\n\t * Invoked when the component has been mounted and has a DOM representation.\n\t * However, there is no guarantee that the DOM node is in the document.\n\t *\n\t * Use this as an opportunity to operate on the DOM when the component has\n\t * been mounted (initialized and rendered) for the first time.\n\t *\n\t * @param {DOMElement} rootNode DOM element representing the component.\n\t * @optional\n\t */\n\t componentDidMount: 'DEFINE_MANY',\n\t\n\t /**\n\t * Invoked before the component receives new props.\n\t *\n\t * Use this as an opportunity to react to a prop transition by updating the\n\t * state using `this.setState`. Current props are accessed via `this.props`.\n\t *\n\t * componentWillReceiveProps: function(nextProps, nextContext) {\n\t * this.setState({\n\t * likesIncreasing: nextProps.likeCount > this.props.likeCount\n\t * });\n\t * }\n\t *\n\t * NOTE: There is no equivalent `componentWillReceiveState`. An incoming prop\n\t * transition may cause a state change, but the opposite is not true. If you\n\t * need it, you are probably looking for `componentWillUpdate`.\n\t *\n\t * @param {object} nextProps\n\t * @optional\n\t */\n\t componentWillReceiveProps: 'DEFINE_MANY',\n\t\n\t /**\n\t * Invoked while deciding if the component should be updated as a result of\n\t * receiving new props, state and/or context.\n\t *\n\t * Use this as an opportunity to `return false` when you're certain that the\n\t * transition to the new props/state/context will not require a component\n\t * update.\n\t *\n\t * shouldComponentUpdate: function(nextProps, nextState, nextContext) {\n\t * return !equal(nextProps, this.props) ||\n\t * !equal(nextState, this.state) ||\n\t * !equal(nextContext, this.context);\n\t * }\n\t *\n\t * @param {object} nextProps\n\t * @param {?object} nextState\n\t * @param {?object} nextContext\n\t * @return {boolean} True if the component should update.\n\t * @optional\n\t */\n\t shouldComponentUpdate: 'DEFINE_ONCE',\n\t\n\t /**\n\t * Invoked when the component is about to update due to a transition from\n\t * `this.props`, `this.state` and `this.context` to `nextProps`, `nextState`\n\t * and `nextContext`.\n\t *\n\t * Use this as an opportunity to perform preparation before an update occurs.\n\t *\n\t * NOTE: You **cannot** use `this.setState()` in this method.\n\t *\n\t * @param {object} nextProps\n\t * @param {?object} nextState\n\t * @param {?object} nextContext\n\t * @param {ReactReconcileTransaction} transaction\n\t * @optional\n\t */\n\t componentWillUpdate: 'DEFINE_MANY',\n\t\n\t /**\n\t * Invoked when the component's DOM representation has been updated.\n\t *\n\t * Use this as an opportunity to operate on the DOM when the component has\n\t * been updated.\n\t *\n\t * @param {object} prevProps\n\t * @param {?object} prevState\n\t * @param {?object} prevContext\n\t * @param {DOMElement} rootNode DOM element representing the component.\n\t * @optional\n\t */\n\t componentDidUpdate: 'DEFINE_MANY',\n\t\n\t /**\n\t * Invoked when the component is about to be removed from its parent and have\n\t * its DOM representation destroyed.\n\t *\n\t * Use this as an opportunity to deallocate any external resources.\n\t *\n\t * NOTE: There is no `componentDidUnmount` since your component will have been\n\t * destroyed by that point.\n\t *\n\t * @optional\n\t */\n\t componentWillUnmount: 'DEFINE_MANY',\n\t\n\t /**\n\t * Replacement for (deprecated) `componentWillMount`.\n\t *\n\t * @optional\n\t */\n\t UNSAFE_componentWillMount: 'DEFINE_MANY',\n\t\n\t /**\n\t * Replacement for (deprecated) `componentWillReceiveProps`.\n\t *\n\t * @optional\n\t */\n\t UNSAFE_componentWillReceiveProps: 'DEFINE_MANY',\n\t\n\t /**\n\t * Replacement for (deprecated) `componentWillUpdate`.\n\t *\n\t * @optional\n\t */\n\t UNSAFE_componentWillUpdate: 'DEFINE_MANY',\n\t\n\t // ==== Advanced methods ====\n\t\n\t /**\n\t * Updates the component's currently mounted DOM representation.\n\t *\n\t * By default, this implements React's rendering and reconciliation algorithm.\n\t * Sophisticated clients may wish to override this.\n\t *\n\t * @param {ReactReconcileTransaction} transaction\n\t * @internal\n\t * @overridable\n\t */\n\t updateComponent: 'OVERRIDE_BASE'\n\t };\n\t\n\t /**\n\t * Similar to ReactClassInterface but for static methods.\n\t */\n\t var ReactClassStaticInterface = {\n\t /**\n\t * This method is invoked after a component is instantiated and when it\n\t * receives new props. Return an object to update state in response to\n\t * prop changes. Return null to indicate no change to state.\n\t *\n\t * If an object is returned, its keys will be merged into the existing state.\n\t *\n\t * @return {object || null}\n\t * @optional\n\t */\n\t getDerivedStateFromProps: 'DEFINE_MANY_MERGED'\n\t };\n\t\n\t /**\n\t * Mapping from class specification keys to special processing functions.\n\t *\n\t * Although these are declared like instance properties in the specification\n\t * when defining classes using `React.createClass`, they are actually static\n\t * and are accessible on the constructor instead of the prototype. Despite\n\t * being static, they must be defined outside of the \"statics\" key under\n\t * which all other static methods are defined.\n\t */\n\t var RESERVED_SPEC_KEYS = {\n\t displayName: function(Constructor, displayName) {\n\t Constructor.displayName = displayName;\n\t },\n\t mixins: function(Constructor, mixins) {\n\t if (mixins) {\n\t for (var i = 0; i < mixins.length; i++) {\n\t mixSpecIntoComponent(Constructor, mixins[i]);\n\t }\n\t }\n\t },\n\t childContextTypes: function(Constructor, childContextTypes) {\n\t if (false) {\n\t validateTypeDef(Constructor, childContextTypes, 'childContext');\n\t }\n\t Constructor.childContextTypes = _assign(\n\t {},\n\t Constructor.childContextTypes,\n\t childContextTypes\n\t );\n\t },\n\t contextTypes: function(Constructor, contextTypes) {\n\t if (false) {\n\t validateTypeDef(Constructor, contextTypes, 'context');\n\t }\n\t Constructor.contextTypes = _assign(\n\t {},\n\t Constructor.contextTypes,\n\t contextTypes\n\t );\n\t },\n\t /**\n\t * Special case getDefaultProps which should move into statics but requires\n\t * automatic merging.\n\t */\n\t getDefaultProps: function(Constructor, getDefaultProps) {\n\t if (Constructor.getDefaultProps) {\n\t Constructor.getDefaultProps = createMergedResultFunction(\n\t Constructor.getDefaultProps,\n\t getDefaultProps\n\t );\n\t } else {\n\t Constructor.getDefaultProps = getDefaultProps;\n\t }\n\t },\n\t propTypes: function(Constructor, propTypes) {\n\t if (false) {\n\t validateTypeDef(Constructor, propTypes, 'prop');\n\t }\n\t Constructor.propTypes = _assign({}, Constructor.propTypes, propTypes);\n\t },\n\t statics: function(Constructor, statics) {\n\t mixStaticSpecIntoComponent(Constructor, statics);\n\t },\n\t autobind: function() {}\n\t };\n\t\n\t function validateTypeDef(Constructor, typeDef, location) {\n\t for (var propName in typeDef) {\n\t if (typeDef.hasOwnProperty(propName)) {\n\t // use a warning instead of an _invariant so components\n\t // don't show up in prod but only in __DEV__\n\t if (false) {\n\t warning(\n\t typeof typeDef[propName] === 'function',\n\t '%s: %s type `%s` is invalid; it must be a function, usually from ' +\n\t 'React.PropTypes.',\n\t Constructor.displayName || 'ReactClass',\n\t ReactPropTypeLocationNames[location],\n\t propName\n\t );\n\t }\n\t }\n\t }\n\t }\n\t\n\t function validateMethodOverride(isAlreadyDefined, name) {\n\t var specPolicy = ReactClassInterface.hasOwnProperty(name)\n\t ? ReactClassInterface[name]\n\t : null;\n\t\n\t // Disallow overriding of base class methods unless explicitly allowed.\n\t if (ReactClassMixin.hasOwnProperty(name)) {\n\t _invariant(\n\t specPolicy === 'OVERRIDE_BASE',\n\t 'ReactClassInterface: You are attempting to override ' +\n\t '`%s` from your class specification. Ensure that your method names ' +\n\t 'do not overlap with React methods.',\n\t name\n\t );\n\t }\n\t\n\t // Disallow defining methods more than once unless explicitly allowed.\n\t if (isAlreadyDefined) {\n\t _invariant(\n\t specPolicy === 'DEFINE_MANY' || specPolicy === 'DEFINE_MANY_MERGED',\n\t 'ReactClassInterface: You are attempting to define ' +\n\t '`%s` on your component more than once. This conflict may be due ' +\n\t 'to a mixin.',\n\t name\n\t );\n\t }\n\t }\n\t\n\t /**\n\t * Mixin helper which handles policy validation and reserved\n\t * specification keys when building React classes.\n\t */\n\t function mixSpecIntoComponent(Constructor, spec) {\n\t if (!spec) {\n\t if (false) {\n\t var typeofSpec = typeof spec;\n\t var isMixinValid = typeofSpec === 'object' && spec !== null;\n\t\n\t if (process.env.NODE_ENV !== 'production') {\n\t warning(\n\t isMixinValid,\n\t \"%s: You're attempting to include a mixin that is either null \" +\n\t 'or not an object. Check the mixins included by the component, ' +\n\t 'as well as any mixins they include themselves. ' +\n\t 'Expected object but got %s.',\n\t Constructor.displayName || 'ReactClass',\n\t spec === null ? null : typeofSpec\n\t );\n\t }\n\t }\n\t\n\t return;\n\t }\n\t\n\t _invariant(\n\t typeof spec !== 'function',\n\t \"ReactClass: You're attempting to \" +\n\t 'use a component class or function as a mixin. Instead, just use a ' +\n\t 'regular object.'\n\t );\n\t _invariant(\n\t !isValidElement(spec),\n\t \"ReactClass: You're attempting to \" +\n\t 'use a component as a mixin. Instead, just use a regular object.'\n\t );\n\t\n\t var proto = Constructor.prototype;\n\t var autoBindPairs = proto.__reactAutoBindPairs;\n\t\n\t // By handling mixins before any other properties, we ensure the same\n\t // chaining order is applied to methods with DEFINE_MANY policy, whether\n\t // mixins are listed before or after these methods in the spec.\n\t if (spec.hasOwnProperty(MIXINS_KEY)) {\n\t RESERVED_SPEC_KEYS.mixins(Constructor, spec.mixins);\n\t }\n\t\n\t for (var name in spec) {\n\t if (!spec.hasOwnProperty(name)) {\n\t continue;\n\t }\n\t\n\t if (name === MIXINS_KEY) {\n\t // We have already handled mixins in a special case above.\n\t continue;\n\t }\n\t\n\t var property = spec[name];\n\t var isAlreadyDefined = proto.hasOwnProperty(name);\n\t validateMethodOverride(isAlreadyDefined, name);\n\t\n\t if (RESERVED_SPEC_KEYS.hasOwnProperty(name)) {\n\t RESERVED_SPEC_KEYS[name](Constructor, property);\n\t } else {\n\t // Setup methods on prototype:\n\t // The following member methods should not be automatically bound:\n\t // 1. Expected ReactClass methods (in the \"interface\").\n\t // 2. Overridden methods (that were mixed in).\n\t var isReactClassMethod = ReactClassInterface.hasOwnProperty(name);\n\t var isFunction = typeof property === 'function';\n\t var shouldAutoBind =\n\t isFunction &&\n\t !isReactClassMethod &&\n\t !isAlreadyDefined &&\n\t spec.autobind !== false;\n\t\n\t if (shouldAutoBind) {\n\t autoBindPairs.push(name, property);\n\t proto[name] = property;\n\t } else {\n\t if (isAlreadyDefined) {\n\t var specPolicy = ReactClassInterface[name];\n\t\n\t // These cases should already be caught by validateMethodOverride.\n\t _invariant(\n\t isReactClassMethod &&\n\t (specPolicy === 'DEFINE_MANY_MERGED' ||\n\t specPolicy === 'DEFINE_MANY'),\n\t 'ReactClass: Unexpected spec policy %s for key %s ' +\n\t 'when mixing in component specs.',\n\t specPolicy,\n\t name\n\t );\n\t\n\t // For methods which are defined more than once, call the existing\n\t // methods before calling the new property, merging if appropriate.\n\t if (specPolicy === 'DEFINE_MANY_MERGED') {\n\t proto[name] = createMergedResultFunction(proto[name], property);\n\t } else if (specPolicy === 'DEFINE_MANY') {\n\t proto[name] = createChainedFunction(proto[name], property);\n\t }\n\t } else {\n\t proto[name] = property;\n\t if (false) {\n\t // Add verbose displayName to the function, which helps when looking\n\t // at profiling tools.\n\t if (typeof property === 'function' && spec.displayName) {\n\t proto[name].displayName = spec.displayName + '_' + name;\n\t }\n\t }\n\t }\n\t }\n\t }\n\t }\n\t }\n\t\n\t function mixStaticSpecIntoComponent(Constructor, statics) {\n\t if (!statics) {\n\t return;\n\t }\n\t\n\t for (var name in statics) {\n\t var property = statics[name];\n\t if (!statics.hasOwnProperty(name)) {\n\t continue;\n\t }\n\t\n\t var isReserved = name in RESERVED_SPEC_KEYS;\n\t _invariant(\n\t !isReserved,\n\t 'ReactClass: You are attempting to define a reserved ' +\n\t 'property, `%s`, that shouldn\\'t be on the \"statics\" key. Define it ' +\n\t 'as an instance property instead; it will still be accessible on the ' +\n\t 'constructor.',\n\t name\n\t );\n\t\n\t var isAlreadyDefined = name in Constructor;\n\t if (isAlreadyDefined) {\n\t var specPolicy = ReactClassStaticInterface.hasOwnProperty(name)\n\t ? ReactClassStaticInterface[name]\n\t : null;\n\t\n\t _invariant(\n\t specPolicy === 'DEFINE_MANY_MERGED',\n\t 'ReactClass: You are attempting to define ' +\n\t '`%s` on your component more than once. This conflict may be ' +\n\t 'due to a mixin.',\n\t name\n\t );\n\t\n\t Constructor[name] = createMergedResultFunction(Constructor[name], property);\n\t\n\t return;\n\t }\n\t\n\t Constructor[name] = property;\n\t }\n\t }\n\t\n\t /**\n\t * Merge two objects, but throw if both contain the same key.\n\t *\n\t * @param {object} one The first object, which is mutated.\n\t * @param {object} two The second object\n\t * @return {object} one after it has been mutated to contain everything in two.\n\t */\n\t function mergeIntoWithNoDuplicateKeys(one, two) {\n\t _invariant(\n\t one && two && typeof one === 'object' && typeof two === 'object',\n\t 'mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects.'\n\t );\n\t\n\t for (var key in two) {\n\t if (two.hasOwnProperty(key)) {\n\t _invariant(\n\t one[key] === undefined,\n\t 'mergeIntoWithNoDuplicateKeys(): ' +\n\t 'Tried to merge two objects with the same key: `%s`. This conflict ' +\n\t 'may be due to a mixin; in particular, this may be caused by two ' +\n\t 'getInitialState() or getDefaultProps() methods returning objects ' +\n\t 'with clashing keys.',\n\t key\n\t );\n\t one[key] = two[key];\n\t }\n\t }\n\t return one;\n\t }\n\t\n\t /**\n\t * Creates a function that invokes two functions and merges their return values.\n\t *\n\t * @param {function} one Function to invoke first.\n\t * @param {function} two Function to invoke second.\n\t * @return {function} Function that invokes the two argument functions.\n\t * @private\n\t */\n\t function createMergedResultFunction(one, two) {\n\t return function mergedResult() {\n\t var a = one.apply(this, arguments);\n\t var b = two.apply(this, arguments);\n\t if (a == null) {\n\t return b;\n\t } else if (b == null) {\n\t return a;\n\t }\n\t var c = {};\n\t mergeIntoWithNoDuplicateKeys(c, a);\n\t mergeIntoWithNoDuplicateKeys(c, b);\n\t return c;\n\t };\n\t }\n\t\n\t /**\n\t * Creates a function that invokes two functions and ignores their return vales.\n\t *\n\t * @param {function} one Function to invoke first.\n\t * @param {function} two Function to invoke second.\n\t * @return {function} Function that invokes the two argument functions.\n\t * @private\n\t */\n\t function createChainedFunction(one, two) {\n\t return function chainedFunction() {\n\t one.apply(this, arguments);\n\t two.apply(this, arguments);\n\t };\n\t }\n\t\n\t /**\n\t * Binds a method to the component.\n\t *\n\t * @param {object} component Component whose method is going to be bound.\n\t * @param {function} method Method to be bound.\n\t * @return {function} The bound method.\n\t */\n\t function bindAutoBindMethod(component, method) {\n\t var boundMethod = method.bind(component);\n\t if (false) {\n\t boundMethod.__reactBoundContext = component;\n\t boundMethod.__reactBoundMethod = method;\n\t boundMethod.__reactBoundArguments = null;\n\t var componentName = component.constructor.displayName;\n\t var _bind = boundMethod.bind;\n\t boundMethod.bind = function(newThis) {\n\t for (\n\t var _len = arguments.length,\n\t args = Array(_len > 1 ? _len - 1 : 0),\n\t _key = 1;\n\t _key < _len;\n\t _key++\n\t ) {\n\t args[_key - 1] = arguments[_key];\n\t }\n\t\n\t // User is trying to bind() an autobound method; we effectively will\n\t // ignore the value of \"this\" that the user is trying to use, so\n\t // let's warn.\n\t if (newThis !== component && newThis !== null) {\n\t if (process.env.NODE_ENV !== 'production') {\n\t warning(\n\t false,\n\t 'bind(): React component methods may only be bound to the ' +\n\t 'component instance. See %s',\n\t componentName\n\t );\n\t }\n\t } else if (!args.length) {\n\t if (process.env.NODE_ENV !== 'production') {\n\t warning(\n\t false,\n\t 'bind(): You are binding a component method to the component. ' +\n\t 'React does this for you automatically in a high-performance ' +\n\t 'way, so you can safely remove this call. See %s',\n\t componentName\n\t );\n\t }\n\t return boundMethod;\n\t }\n\t var reboundMethod = _bind.apply(boundMethod, arguments);\n\t reboundMethod.__reactBoundContext = component;\n\t reboundMethod.__reactBoundMethod = method;\n\t reboundMethod.__reactBoundArguments = args;\n\t return reboundMethod;\n\t };\n\t }\n\t return boundMethod;\n\t }\n\t\n\t /**\n\t * Binds all auto-bound methods in a component.\n\t *\n\t * @param {object} component Component whose method is going to be bound.\n\t */\n\t function bindAutoBindMethods(component) {\n\t var pairs = component.__reactAutoBindPairs;\n\t for (var i = 0; i < pairs.length; i += 2) {\n\t var autoBindKey = pairs[i];\n\t var method = pairs[i + 1];\n\t component[autoBindKey] = bindAutoBindMethod(component, method);\n\t }\n\t }\n\t\n\t var IsMountedPreMixin = {\n\t componentDidMount: function() {\n\t this.__isMounted = true;\n\t }\n\t };\n\t\n\t var IsMountedPostMixin = {\n\t componentWillUnmount: function() {\n\t this.__isMounted = false;\n\t }\n\t };\n\t\n\t /**\n\t * Add more to the ReactClass base class. These are all legacy features and\n\t * therefore not already part of the modern ReactComponent.\n\t */\n\t var ReactClassMixin = {\n\t /**\n\t * TODO: This will be deprecated because state should always keep a consistent\n\t * type signature and the only use case for this, is to avoid that.\n\t */\n\t replaceState: function(newState, callback) {\n\t this.updater.enqueueReplaceState(this, newState, callback);\n\t },\n\t\n\t /**\n\t * Checks whether or not this composite component is mounted.\n\t * @return {boolean} True if mounted, false otherwise.\n\t * @protected\n\t * @final\n\t */\n\t isMounted: function() {\n\t if (false) {\n\t warning(\n\t this.__didWarnIsMounted,\n\t '%s: isMounted is deprecated. Instead, make sure to clean up ' +\n\t 'subscriptions and pending requests in componentWillUnmount to ' +\n\t 'prevent memory leaks.',\n\t (this.constructor && this.constructor.displayName) ||\n\t this.name ||\n\t 'Component'\n\t );\n\t this.__didWarnIsMounted = true;\n\t }\n\t return !!this.__isMounted;\n\t }\n\t };\n\t\n\t var ReactClassComponent = function() {};\n\t _assign(\n\t ReactClassComponent.prototype,\n\t ReactComponent.prototype,\n\t ReactClassMixin\n\t );\n\t\n\t /**\n\t * Creates a composite component class given a class specification.\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.createclass\n\t *\n\t * @param {object} spec Class specification (which must define `render`).\n\t * @return {function} Component constructor function.\n\t * @public\n\t */\n\t function createClass(spec) {\n\t // To keep our warnings more understandable, we'll use a little hack here to\n\t // ensure that Constructor.name !== 'Constructor'. This makes sure we don't\n\t // unnecessarily identify a class without displayName as 'Constructor'.\n\t var Constructor = identity(function(props, context, updater) {\n\t // This constructor gets overridden by mocks. The argument is used\n\t // by mocks to assert on what gets mounted.\n\t\n\t if (false) {\n\t warning(\n\t this instanceof Constructor,\n\t 'Something is calling a React component directly. Use a factory or ' +\n\t 'JSX instead. See: https://fb.me/react-legacyfactory'\n\t );\n\t }\n\t\n\t // Wire up auto-binding\n\t if (this.__reactAutoBindPairs.length) {\n\t bindAutoBindMethods(this);\n\t }\n\t\n\t this.props = props;\n\t this.context = context;\n\t this.refs = emptyObject;\n\t this.updater = updater || ReactNoopUpdateQueue;\n\t\n\t this.state = null;\n\t\n\t // ReactClasses doesn't have constructors. Instead, they use the\n\t // getInitialState and componentWillMount methods for initialization.\n\t\n\t var initialState = this.getInitialState ? this.getInitialState() : null;\n\t if (false) {\n\t // We allow auto-mocks to proceed as if they're returning null.\n\t if (\n\t initialState === undefined &&\n\t this.getInitialState._isMockFunction\n\t ) {\n\t // This is probably bad practice. Consider warning here and\n\t // deprecating this convenience.\n\t initialState = null;\n\t }\n\t }\n\t _invariant(\n\t typeof initialState === 'object' && !Array.isArray(initialState),\n\t '%s.getInitialState(): must return an object or null',\n\t Constructor.displayName || 'ReactCompositeComponent'\n\t );\n\t\n\t this.state = initialState;\n\t });\n\t Constructor.prototype = new ReactClassComponent();\n\t Constructor.prototype.constructor = Constructor;\n\t Constructor.prototype.__reactAutoBindPairs = [];\n\t\n\t injectedMixins.forEach(mixSpecIntoComponent.bind(null, Constructor));\n\t\n\t mixSpecIntoComponent(Constructor, IsMountedPreMixin);\n\t mixSpecIntoComponent(Constructor, spec);\n\t mixSpecIntoComponent(Constructor, IsMountedPostMixin);\n\t\n\t // Initialize the defaultProps property after all mixins have been merged.\n\t if (Constructor.getDefaultProps) {\n\t Constructor.defaultProps = Constructor.getDefaultProps();\n\t }\n\t\n\t if (false) {\n\t // This is a tag to indicate that the use of these method names is ok,\n\t // since it's used with createClass. If it's not, then it's likely a\n\t // mistake so we'll warn you to use the static property, property\n\t // initializer or constructor respectively.\n\t if (Constructor.getDefaultProps) {\n\t Constructor.getDefaultProps.isReactClassApproved = {};\n\t }\n\t if (Constructor.prototype.getInitialState) {\n\t Constructor.prototype.getInitialState.isReactClassApproved = {};\n\t }\n\t }\n\t\n\t _invariant(\n\t Constructor.prototype.render,\n\t 'createClass(...): Class specification must implement a `render` method.'\n\t );\n\t\n\t if (false) {\n\t warning(\n\t !Constructor.prototype.componentShouldUpdate,\n\t '%s has a method called ' +\n\t 'componentShouldUpdate(). Did you mean shouldComponentUpdate()? ' +\n\t 'The name is phrased as a question because the function is ' +\n\t 'expected to return a value.',\n\t spec.displayName || 'A component'\n\t );\n\t warning(\n\t !Constructor.prototype.componentWillRecieveProps,\n\t '%s has a method called ' +\n\t 'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?',\n\t spec.displayName || 'A component'\n\t );\n\t warning(\n\t !Constructor.prototype.UNSAFE_componentWillRecieveProps,\n\t '%s has a method called UNSAFE_componentWillRecieveProps(). ' +\n\t 'Did you mean UNSAFE_componentWillReceiveProps()?',\n\t spec.displayName || 'A component'\n\t );\n\t }\n\t\n\t // Reduce time spent doing lookups by setting these on the prototype.\n\t for (var methodName in ReactClassInterface) {\n\t if (!Constructor.prototype[methodName]) {\n\t Constructor.prototype[methodName] = null;\n\t }\n\t }\n\t\n\t return Constructor;\n\t }\n\t\n\t return createClass;\n\t}\n\t\n\tmodule.exports = factory;\n\n\n/***/ }),\n/* 94 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\texports.default = createTransitionManager;\n\t\n\tvar _routerWarning = __webpack_require__(95);\n\t\n\tvar _routerWarning2 = _interopRequireDefault(_routerWarning);\n\t\n\tvar _computeChangedRoutes2 = __webpack_require__(97);\n\t\n\tvar _computeChangedRoutes3 = _interopRequireDefault(_computeChangedRoutes2);\n\t\n\tvar _TransitionUtils = __webpack_require__(98);\n\t\n\tvar _TransitionUtils2 = _interopRequireDefault(_TransitionUtils);\n\t\n\tvar _isActive2 = __webpack_require__(100);\n\t\n\tvar _isActive3 = _interopRequireDefault(_isActive2);\n\t\n\tvar _getComponents = __webpack_require__(101);\n\t\n\tvar _getComponents2 = _interopRequireDefault(_getComponents);\n\t\n\tvar _matchRoutes = __webpack_require__(103);\n\t\n\tvar _matchRoutes2 = _interopRequireDefault(_matchRoutes);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction hasAnyProperties(object) {\n\t for (var p in object) {\n\t if (Object.prototype.hasOwnProperty.call(object, p)) return true;\n\t }return false;\n\t}\n\t\n\tfunction createTransitionManager(history, routes) {\n\t var state = {};\n\t\n\t var _getTransitionUtils = (0, _TransitionUtils2.default)(),\n\t runEnterHooks = _getTransitionUtils.runEnterHooks,\n\t runChangeHooks = _getTransitionUtils.runChangeHooks,\n\t runLeaveHooks = _getTransitionUtils.runLeaveHooks;\n\t\n\t // Signature should be (location, indexOnly), but needs to support (path,\n\t // query, indexOnly)\n\t\n\t\n\t function isActive(location, indexOnly) {\n\t location = history.createLocation(location);\n\t\n\t return (0, _isActive3.default)(location, indexOnly, state.location, state.routes, state.params);\n\t }\n\t\n\t var partialNextState = void 0;\n\t\n\t function match(location, callback) {\n\t if (partialNextState && partialNextState.location === location) {\n\t // Continue from where we left off.\n\t finishMatch(partialNextState, callback);\n\t } else {\n\t (0, _matchRoutes2.default)(routes, location, function (error, nextState) {\n\t if (error) {\n\t callback(error);\n\t } else if (nextState) {\n\t finishMatch(_extends({}, nextState, { location: location }), callback);\n\t } else {\n\t callback();\n\t }\n\t });\n\t }\n\t }\n\t\n\t function finishMatch(nextState, callback) {\n\t var _computeChangedRoutes = (0, _computeChangedRoutes3.default)(state, nextState),\n\t leaveRoutes = _computeChangedRoutes.leaveRoutes,\n\t changeRoutes = _computeChangedRoutes.changeRoutes,\n\t enterRoutes = _computeChangedRoutes.enterRoutes;\n\t\n\t runLeaveHooks(leaveRoutes, state);\n\t\n\t // Tear down confirmation hooks for left routes\n\t leaveRoutes.filter(function (route) {\n\t return enterRoutes.indexOf(route) === -1;\n\t }).forEach(removeListenBeforeHooksForRoute);\n\t\n\t // change and enter hooks are run in series\n\t runChangeHooks(changeRoutes, state, nextState, function (error, redirectInfo) {\n\t if (error || redirectInfo) return handleErrorOrRedirect(error, redirectInfo);\n\t\n\t runEnterHooks(enterRoutes, nextState, finishEnterHooks);\n\t });\n\t\n\t function finishEnterHooks(error, redirectInfo) {\n\t if (error || redirectInfo) return handleErrorOrRedirect(error, redirectInfo);\n\t\n\t // TODO: Fetch components after state is updated.\n\t (0, _getComponents2.default)(nextState, function (error, components) {\n\t if (error) {\n\t callback(error);\n\t } else {\n\t // TODO: Make match a pure function and have some other API\n\t // for \"match and update state\".\n\t callback(null, null, state = _extends({}, nextState, { components: components }));\n\t }\n\t });\n\t }\n\t\n\t function handleErrorOrRedirect(error, redirectInfo) {\n\t if (error) callback(error);else callback(null, redirectInfo);\n\t }\n\t }\n\t\n\t var RouteGuid = 1;\n\t\n\t function getRouteID(route) {\n\t var create = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\t\n\t return route.__id__ || create && (route.__id__ = RouteGuid++);\n\t }\n\t\n\t var RouteHooks = Object.create(null);\n\t\n\t function getRouteHooksForRoutes(routes) {\n\t return routes.map(function (route) {\n\t return RouteHooks[getRouteID(route)];\n\t }).filter(function (hook) {\n\t return hook;\n\t });\n\t }\n\t\n\t function transitionHook(location, callback) {\n\t (0, _matchRoutes2.default)(routes, location, function (error, nextState) {\n\t if (nextState == null) {\n\t // TODO: We didn't actually match anything, but hang\n\t // onto error/nextState so we don't have to matchRoutes\n\t // again in the listen callback.\n\t callback();\n\t return;\n\t }\n\t\n\t // Cache some state here so we don't have to\n\t // matchRoutes() again in the listen callback.\n\t partialNextState = _extends({}, nextState, { location: location });\n\t\n\t var hooks = getRouteHooksForRoutes((0, _computeChangedRoutes3.default)(state, partialNextState).leaveRoutes);\n\t\n\t var result = void 0;\n\t for (var i = 0, len = hooks.length; result == null && i < len; ++i) {\n\t // Passing the location arg here indicates to\n\t // the user that this is a transition hook.\n\t result = hooks[i](location);\n\t }\n\t\n\t callback(result);\n\t });\n\t }\n\t\n\t /* istanbul ignore next: untestable with Karma */\n\t function beforeUnloadHook() {\n\t // Synchronously check to see if any route hooks want\n\t // to prevent the current window/tab from closing.\n\t if (state.routes) {\n\t var hooks = getRouteHooksForRoutes(state.routes);\n\t\n\t var message = void 0;\n\t for (var i = 0, len = hooks.length; typeof message !== 'string' && i < len; ++i) {\n\t // Passing no args indicates to the user that this is a\n\t // beforeunload hook. We don't know the next location.\n\t message = hooks[i]();\n\t }\n\t\n\t return message;\n\t }\n\t }\n\t\n\t var unlistenBefore = void 0,\n\t unlistenBeforeUnload = void 0;\n\t\n\t function removeListenBeforeHooksForRoute(route) {\n\t var routeID = getRouteID(route);\n\t if (!routeID) {\n\t return;\n\t }\n\t\n\t delete RouteHooks[routeID];\n\t\n\t if (!hasAnyProperties(RouteHooks)) {\n\t // teardown transition & beforeunload hooks\n\t if (unlistenBefore) {\n\t unlistenBefore();\n\t unlistenBefore = null;\n\t }\n\t\n\t if (unlistenBeforeUnload) {\n\t unlistenBeforeUnload();\n\t unlistenBeforeUnload = null;\n\t }\n\t }\n\t }\n\t\n\t /**\n\t * Registers the given hook function to run before leaving the given route.\n\t *\n\t * During a normal transition, the hook function receives the next location\n\t * as its only argument and can return either a prompt message (string) to show the user,\n\t * to make sure they want to leave the page; or `false`, to prevent the transition.\n\t * Any other return value will have no effect.\n\t *\n\t * During the beforeunload event (in browsers) the hook receives no arguments.\n\t * In this case it must return a prompt message to prevent the transition.\n\t *\n\t * Returns a function that may be used to unbind the listener.\n\t */\n\t function listenBeforeLeavingRoute(route, hook) {\n\t var thereWereNoRouteHooks = !hasAnyProperties(RouteHooks);\n\t var routeID = getRouteID(route, true);\n\t\n\t RouteHooks[routeID] = hook;\n\t\n\t if (thereWereNoRouteHooks) {\n\t // setup transition & beforeunload hooks\n\t unlistenBefore = history.listenBefore(transitionHook);\n\t\n\t if (history.listenBeforeUnload) unlistenBeforeUnload = history.listenBeforeUnload(beforeUnloadHook);\n\t }\n\t\n\t return function () {\n\t removeListenBeforeHooksForRoute(route);\n\t };\n\t }\n\t\n\t /**\n\t * This is the API for stateful environments. As the location\n\t * changes, we update state and call the listener. We can also\n\t * gracefully handle errors and redirects.\n\t */\n\t function listen(listener) {\n\t function historyListener(location) {\n\t if (state.location === location) {\n\t listener(null, state);\n\t } else {\n\t match(location, function (error, redirectLocation, nextState) {\n\t if (error) {\n\t listener(error);\n\t } else if (redirectLocation) {\n\t history.replace(redirectLocation);\n\t } else if (nextState) {\n\t listener(null, nextState);\n\t } else {\n\t false ? (0, _routerWarning2.default)(false, 'Location \"%s\" did not match any routes', location.pathname + location.search + location.hash) : void 0;\n\t }\n\t });\n\t }\n\t }\n\t\n\t // TODO: Only use a single history listener. Otherwise we'll end up with\n\t // multiple concurrent calls to match.\n\t\n\t // Set up the history listener first in case the initial match redirects.\n\t var unsubscribe = history.listen(historyListener);\n\t\n\t if (state.location) {\n\t // Picking up on a matchContext.\n\t listener(null, state);\n\t } else {\n\t historyListener(history.getCurrentLocation());\n\t }\n\t\n\t return unsubscribe;\n\t }\n\t\n\t return {\n\t isActive: isActive,\n\t match: match,\n\t listenBeforeLeavingRoute: listenBeforeLeavingRoute,\n\t listen: listen\n\t };\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 95 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.default = routerWarning;\n\texports._resetWarned = _resetWarned;\n\t\n\tvar _warning = __webpack_require__(96);\n\t\n\tvar _warning2 = _interopRequireDefault(_warning);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar warned = {};\n\t\n\tfunction routerWarning(falseToWarn, message) {\n\t // Only issue deprecation warnings once.\n\t if (message.indexOf('deprecated') !== -1) {\n\t if (warned[message]) {\n\t return;\n\t }\n\t\n\t warned[message] = true;\n\t }\n\t\n\t message = '[react-router] ' + message;\n\t\n\t for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n\t args[_key - 2] = arguments[_key];\n\t }\n\t\n\t _warning2.default.apply(undefined, [falseToWarn, message].concat(args));\n\t}\n\t\n\tfunction _resetWarned() {\n\t warned = {};\n\t}\n\n/***/ }),\n/* 96 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-2015, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\t\n\t'use strict';\n\t\n\t/**\n\t * Similar to invariant but only logs a warning if the condition is not met.\n\t * This can be used to log issues in development environments in critical\n\t * paths. Removing the logging code for production environments will keep the\n\t * same logic and follow the same code paths.\n\t */\n\t\n\tvar warning = function() {};\n\t\n\tif (false) {\n\t warning = function(condition, format, args) {\n\t var len = arguments.length;\n\t args = new Array(len > 2 ? len - 2 : 0);\n\t for (var key = 2; key < len; key++) {\n\t args[key - 2] = arguments[key];\n\t }\n\t if (format === undefined) {\n\t throw new Error(\n\t '`warning(condition, format, ...args)` requires a warning ' +\n\t 'message argument'\n\t );\n\t }\n\t\n\t if (format.length < 10 || (/^[s\\W]*$/).test(format)) {\n\t throw new Error(\n\t 'The warning format should be able to uniquely identify this ' +\n\t 'warning. Please, use a more descriptive format than: ' + format\n\t );\n\t }\n\t\n\t if (!condition) {\n\t var argIndex = 0;\n\t var message = 'Warning: ' +\n\t format.replace(/%s/g, function() {\n\t return args[argIndex++];\n\t });\n\t if (typeof console !== 'undefined') {\n\t console.error(message);\n\t }\n\t try {\n\t // This error was thrown as a convenience so that you can use this stack\n\t // to find the callsite that caused this warning to fire.\n\t throw new Error(message);\n\t } catch(x) {}\n\t }\n\t };\n\t}\n\t\n\tmodule.exports = warning;\n\n\n/***/ }),\n/* 97 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _PatternUtils = __webpack_require__(89);\n\t\n\tfunction routeParamsChanged(route, prevState, nextState) {\n\t if (!route.path) return false;\n\t\n\t var paramNames = (0, _PatternUtils.getParamNames)(route.path);\n\t\n\t return paramNames.some(function (paramName) {\n\t return prevState.params[paramName] !== nextState.params[paramName];\n\t });\n\t}\n\t\n\t/**\n\t * Returns an object of { leaveRoutes, changeRoutes, enterRoutes } determined by\n\t * the change from prevState to nextState. We leave routes if either\n\t * 1) they are not in the next state or 2) they are in the next state\n\t * but their params have changed (i.e. /users/123 => /users/456).\n\t *\n\t * leaveRoutes are ordered starting at the leaf route of the tree\n\t * we're leaving up to the common parent route. enterRoutes are ordered\n\t * from the top of the tree we're entering down to the leaf route.\n\t *\n\t * changeRoutes are any routes that didn't leave or enter during\n\t * the transition.\n\t */\n\tfunction computeChangedRoutes(prevState, nextState) {\n\t var prevRoutes = prevState && prevState.routes;\n\t var nextRoutes = nextState.routes;\n\t\n\t var leaveRoutes = void 0,\n\t changeRoutes = void 0,\n\t enterRoutes = void 0;\n\t if (prevRoutes) {\n\t var parentIsLeaving = false;\n\t leaveRoutes = prevRoutes.filter(function (route) {\n\t if (parentIsLeaving) {\n\t return true;\n\t } else {\n\t var isLeaving = nextRoutes.indexOf(route) === -1 || routeParamsChanged(route, prevState, nextState);\n\t if (isLeaving) parentIsLeaving = true;\n\t return isLeaving;\n\t }\n\t });\n\t\n\t // onLeave hooks start at the leaf route.\n\t leaveRoutes.reverse();\n\t\n\t enterRoutes = [];\n\t changeRoutes = [];\n\t\n\t nextRoutes.forEach(function (route) {\n\t var isNew = prevRoutes.indexOf(route) === -1;\n\t var paramsChanged = leaveRoutes.indexOf(route) !== -1;\n\t\n\t if (isNew || paramsChanged) enterRoutes.push(route);else changeRoutes.push(route);\n\t });\n\t } else {\n\t leaveRoutes = [];\n\t changeRoutes = [];\n\t enterRoutes = nextRoutes;\n\t }\n\t\n\t return {\n\t leaveRoutes: leaveRoutes,\n\t changeRoutes: changeRoutes,\n\t enterRoutes: enterRoutes\n\t };\n\t}\n\t\n\texports.default = computeChangedRoutes;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 98 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.default = getTransitionUtils;\n\t\n\tvar _AsyncUtils = __webpack_require__(99);\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tvar PendingHooks = function PendingHooks() {\n\t var _this = this;\n\t\n\t _classCallCheck(this, PendingHooks);\n\t\n\t this.hooks = [];\n\t\n\t this.add = function (hook) {\n\t return _this.hooks.push(hook);\n\t };\n\t\n\t this.remove = function (hook) {\n\t return _this.hooks = _this.hooks.filter(function (h) {\n\t return h !== hook;\n\t });\n\t };\n\t\n\t this.has = function (hook) {\n\t return _this.hooks.indexOf(hook) !== -1;\n\t };\n\t\n\t this.clear = function () {\n\t return _this.hooks = [];\n\t };\n\t};\n\t\n\tfunction getTransitionUtils() {\n\t var enterHooks = new PendingHooks();\n\t var changeHooks = new PendingHooks();\n\t\n\t function createTransitionHook(hook, route, asyncArity, pendingHooks) {\n\t var isSync = hook.length < asyncArity;\n\t\n\t var transitionHook = function transitionHook() {\n\t for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t args[_key] = arguments[_key];\n\t }\n\t\n\t hook.apply(route, args);\n\t\n\t if (isSync) {\n\t var callback = args[args.length - 1];\n\t // Assume hook executes synchronously and\n\t // automatically call the callback.\n\t callback();\n\t }\n\t };\n\t\n\t pendingHooks.add(transitionHook);\n\t\n\t return transitionHook;\n\t }\n\t\n\t function getEnterHooks(routes) {\n\t return routes.reduce(function (hooks, route) {\n\t if (route.onEnter) hooks.push(createTransitionHook(route.onEnter, route, 3, enterHooks));\n\t return hooks;\n\t }, []);\n\t }\n\t\n\t function getChangeHooks(routes) {\n\t return routes.reduce(function (hooks, route) {\n\t if (route.onChange) hooks.push(createTransitionHook(route.onChange, route, 4, changeHooks));\n\t return hooks;\n\t }, []);\n\t }\n\t\n\t function runTransitionHooks(length, iter, callback) {\n\t if (!length) {\n\t callback();\n\t return;\n\t }\n\t\n\t var redirectInfo = void 0;\n\t function replace(location) {\n\t redirectInfo = location;\n\t }\n\t\n\t (0, _AsyncUtils.loopAsync)(length, function (index, next, done) {\n\t iter(index, replace, function (error) {\n\t if (error || redirectInfo) {\n\t done(error, redirectInfo); // No need to continue.\n\t } else {\n\t next();\n\t }\n\t });\n\t }, callback);\n\t }\n\t\n\t /**\n\t * Runs all onEnter hooks in the given array of routes in order\n\t * with onEnter(nextState, replace, callback) and calls\n\t * callback(error, redirectInfo) when finished. The first hook\n\t * to use replace short-circuits the loop.\n\t *\n\t * If a hook needs to run asynchronously, it may use the callback\n\t * function. However, doing so will cause the transition to pause,\n\t * which could lead to a non-responsive UI if the hook is slow.\n\t */\n\t function runEnterHooks(routes, nextState, callback) {\n\t enterHooks.clear();\n\t var hooks = getEnterHooks(routes);\n\t return runTransitionHooks(hooks.length, function (index, replace, next) {\n\t var wrappedNext = function wrappedNext() {\n\t if (enterHooks.has(hooks[index])) {\n\t next.apply(undefined, arguments);\n\t enterHooks.remove(hooks[index]);\n\t }\n\t };\n\t hooks[index](nextState, replace, wrappedNext);\n\t }, callback);\n\t }\n\t\n\t /**\n\t * Runs all onChange hooks in the given array of routes in order\n\t * with onChange(prevState, nextState, replace, callback) and calls\n\t * callback(error, redirectInfo) when finished. The first hook\n\t * to use replace short-circuits the loop.\n\t *\n\t * If a hook needs to run asynchronously, it may use the callback\n\t * function. However, doing so will cause the transition to pause,\n\t * which could lead to a non-responsive UI if the hook is slow.\n\t */\n\t function runChangeHooks(routes, state, nextState, callback) {\n\t changeHooks.clear();\n\t var hooks = getChangeHooks(routes);\n\t return runTransitionHooks(hooks.length, function (index, replace, next) {\n\t var wrappedNext = function wrappedNext() {\n\t if (changeHooks.has(hooks[index])) {\n\t next.apply(undefined, arguments);\n\t changeHooks.remove(hooks[index]);\n\t }\n\t };\n\t hooks[index](state, nextState, replace, wrappedNext);\n\t }, callback);\n\t }\n\t\n\t /**\n\t * Runs all onLeave hooks in the given array of routes in order.\n\t */\n\t function runLeaveHooks(routes, prevState) {\n\t for (var i = 0, len = routes.length; i < len; ++i) {\n\t if (routes[i].onLeave) routes[i].onLeave.call(routes[i], prevState);\n\t }\n\t }\n\t\n\t return {\n\t runEnterHooks: runEnterHooks,\n\t runChangeHooks: runChangeHooks,\n\t runLeaveHooks: runLeaveHooks\n\t };\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 99 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\t\n\texports.__esModule = true;\n\texports.loopAsync = loopAsync;\n\texports.mapAsync = mapAsync;\n\tfunction loopAsync(turns, work, callback) {\n\t var currentTurn = 0,\n\t isDone = false;\n\t var sync = false,\n\t hasNext = false,\n\t doneArgs = void 0;\n\t\n\t function done() {\n\t isDone = true;\n\t if (sync) {\n\t // Iterate instead of recursing if possible.\n\t doneArgs = [].concat(Array.prototype.slice.call(arguments));\n\t return;\n\t }\n\t\n\t callback.apply(this, arguments);\n\t }\n\t\n\t function next() {\n\t if (isDone) {\n\t return;\n\t }\n\t\n\t hasNext = true;\n\t if (sync) {\n\t // Iterate instead of recursing if possible.\n\t return;\n\t }\n\t\n\t sync = true;\n\t\n\t while (!isDone && currentTurn < turns && hasNext) {\n\t hasNext = false;\n\t work.call(this, currentTurn++, next, done);\n\t }\n\t\n\t sync = false;\n\t\n\t if (isDone) {\n\t // This means the loop finished synchronously.\n\t callback.apply(this, doneArgs);\n\t return;\n\t }\n\t\n\t if (currentTurn >= turns && hasNext) {\n\t isDone = true;\n\t callback();\n\t }\n\t }\n\t\n\t next();\n\t}\n\t\n\tfunction mapAsync(array, work, callback) {\n\t var length = array.length;\n\t var values = [];\n\t\n\t if (length === 0) return callback(null, values);\n\t\n\t var isDone = false,\n\t doneCount = 0;\n\t\n\t function done(index, error, value) {\n\t if (isDone) return;\n\t\n\t if (error) {\n\t isDone = true;\n\t callback(error);\n\t } else {\n\t values[index] = value;\n\t\n\t isDone = ++doneCount === length;\n\t\n\t if (isDone) callback(null, values);\n\t }\n\t }\n\t\n\t array.forEach(function (item, index) {\n\t work(item, index, function (error, value) {\n\t done(index, error, value);\n\t });\n\t });\n\t}\n\n/***/ }),\n/* 100 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\t\n\texports.default = isActive;\n\t\n\tvar _PatternUtils = __webpack_require__(89);\n\t\n\tfunction deepEqual(a, b) {\n\t if (a == b) return true;\n\t\n\t if (a == null || b == null) return false;\n\t\n\t if (Array.isArray(a)) {\n\t return Array.isArray(b) && a.length === b.length && a.every(function (item, index) {\n\t return deepEqual(item, b[index]);\n\t });\n\t }\n\t\n\t if ((typeof a === 'undefined' ? 'undefined' : _typeof(a)) === 'object') {\n\t for (var p in a) {\n\t if (!Object.prototype.hasOwnProperty.call(a, p)) {\n\t continue;\n\t }\n\t\n\t if (a[p] === undefined) {\n\t if (b[p] !== undefined) {\n\t return false;\n\t }\n\t } else if (!Object.prototype.hasOwnProperty.call(b, p)) {\n\t return false;\n\t } else if (!deepEqual(a[p], b[p])) {\n\t return false;\n\t }\n\t }\n\t\n\t return true;\n\t }\n\t\n\t return String(a) === String(b);\n\t}\n\t\n\t/**\n\t * Returns true if the current pathname matches the supplied one, net of\n\t * leading and trailing slash normalization. This is sufficient for an\n\t * indexOnly route match.\n\t */\n\tfunction pathIsActive(pathname, currentPathname) {\n\t // Normalize leading slash for consistency. Leading slash on pathname has\n\t // already been normalized in isActive. See caveat there.\n\t if (currentPathname.charAt(0) !== '/') {\n\t currentPathname = '/' + currentPathname;\n\t }\n\t\n\t // Normalize the end of both path names too. Maybe `/foo/` shouldn't show\n\t // `/foo` as active, but in this case, we would already have failed the\n\t // match.\n\t if (pathname.charAt(pathname.length - 1) !== '/') {\n\t pathname += '/';\n\t }\n\t if (currentPathname.charAt(currentPathname.length - 1) !== '/') {\n\t currentPathname += '/';\n\t }\n\t\n\t return currentPathname === pathname;\n\t}\n\t\n\t/**\n\t * Returns true if the given pathname matches the active routes and params.\n\t */\n\tfunction routeIsActive(pathname, routes, params) {\n\t var remainingPathname = pathname,\n\t paramNames = [],\n\t paramValues = [];\n\t\n\t // for...of would work here but it's probably slower post-transpilation.\n\t for (var i = 0, len = routes.length; i < len; ++i) {\n\t var route = routes[i];\n\t var pattern = route.path || '';\n\t\n\t if (pattern.charAt(0) === '/') {\n\t remainingPathname = pathname;\n\t paramNames = [];\n\t paramValues = [];\n\t }\n\t\n\t if (remainingPathname !== null && pattern) {\n\t var matched = (0, _PatternUtils.matchPattern)(pattern, remainingPathname);\n\t if (matched) {\n\t remainingPathname = matched.remainingPathname;\n\t paramNames = [].concat(paramNames, matched.paramNames);\n\t paramValues = [].concat(paramValues, matched.paramValues);\n\t } else {\n\t remainingPathname = null;\n\t }\n\t\n\t if (remainingPathname === '') {\n\t // We have an exact match on the route. Just check that all the params\n\t // match.\n\t // FIXME: This doesn't work on repeated params.\n\t return paramNames.every(function (paramName, index) {\n\t return String(paramValues[index]) === String(params[paramName]);\n\t });\n\t }\n\t }\n\t }\n\t\n\t return false;\n\t}\n\t\n\t/**\n\t * Returns true if all key/value pairs in the given query are\n\t * currently active.\n\t */\n\tfunction queryIsActive(query, activeQuery) {\n\t if (activeQuery == null) return query == null;\n\t\n\t if (query == null) return true;\n\t\n\t return deepEqual(query, activeQuery);\n\t}\n\t\n\t/**\n\t * Returns true if a to the given pathname/query combination is\n\t * currently active.\n\t */\n\tfunction isActive(_ref, indexOnly, currentLocation, routes, params) {\n\t var pathname = _ref.pathname,\n\t query = _ref.query;\n\t\n\t if (currentLocation == null) return false;\n\t\n\t // TODO: This is a bit ugly. It keeps around support for treating pathnames\n\t // without preceding slashes as absolute paths, but possibly also works\n\t // around the same quirks with basenames as in matchRoutes.\n\t if (pathname.charAt(0) !== '/') {\n\t pathname = '/' + pathname;\n\t }\n\t\n\t if (!pathIsActive(pathname, currentLocation.pathname)) {\n\t // The path check is necessary and sufficient for indexOnly, but otherwise\n\t // we still need to check the routes.\n\t if (indexOnly || !routeIsActive(pathname, routes, params)) {\n\t return false;\n\t }\n\t }\n\t\n\t return queryIsActive(query, currentLocation.query);\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 101 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _AsyncUtils = __webpack_require__(99);\n\t\n\tvar _PromiseUtils = __webpack_require__(102);\n\t\n\tfunction getComponentsForRoute(nextState, route, callback) {\n\t if (route.component || route.components) {\n\t callback(null, route.component || route.components);\n\t return;\n\t }\n\t\n\t var getComponent = route.getComponent || route.getComponents;\n\t if (getComponent) {\n\t var componentReturn = getComponent.call(route, nextState, callback);\n\t if ((0, _PromiseUtils.isPromise)(componentReturn)) componentReturn.then(function (component) {\n\t return callback(null, component);\n\t }, callback);\n\t } else {\n\t callback();\n\t }\n\t}\n\t\n\t/**\n\t * Asynchronously fetches all components needed for the given router\n\t * state and calls callback(error, components) when finished.\n\t *\n\t * Note: This operation may finish synchronously if no routes have an\n\t * asynchronous getComponents method.\n\t */\n\tfunction getComponents(nextState, callback) {\n\t (0, _AsyncUtils.mapAsync)(nextState.routes, function (route, index, callback) {\n\t getComponentsForRoute(nextState, route, callback);\n\t }, callback);\n\t}\n\t\n\texports.default = getComponents;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 102 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.isPromise = isPromise;\n\tfunction isPromise(obj) {\n\t return obj && typeof obj.then === 'function';\n\t}\n\n/***/ }),\n/* 103 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\texports.default = matchRoutes;\n\t\n\tvar _AsyncUtils = __webpack_require__(99);\n\t\n\tvar _PromiseUtils = __webpack_require__(102);\n\t\n\tvar _PatternUtils = __webpack_require__(89);\n\t\n\tvar _routerWarning = __webpack_require__(95);\n\t\n\tvar _routerWarning2 = _interopRequireDefault(_routerWarning);\n\t\n\tvar _RouteUtils = __webpack_require__(87);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction getChildRoutes(route, location, paramNames, paramValues, callback) {\n\t if (route.childRoutes) {\n\t return [null, route.childRoutes];\n\t }\n\t if (!route.getChildRoutes) {\n\t return [];\n\t }\n\t\n\t var sync = true,\n\t result = void 0;\n\t\n\t var partialNextState = {\n\t location: location,\n\t params: createParams(paramNames, paramValues)\n\t };\n\t\n\t var childRoutesReturn = route.getChildRoutes(partialNextState, function (error, childRoutes) {\n\t childRoutes = !error && (0, _RouteUtils.createRoutes)(childRoutes);\n\t if (sync) {\n\t result = [error, childRoutes];\n\t return;\n\t }\n\t\n\t callback(error, childRoutes);\n\t });\n\t\n\t if ((0, _PromiseUtils.isPromise)(childRoutesReturn)) childRoutesReturn.then(function (childRoutes) {\n\t return callback(null, (0, _RouteUtils.createRoutes)(childRoutes));\n\t }, callback);\n\t\n\t sync = false;\n\t return result; // Might be undefined.\n\t}\n\t\n\tfunction getIndexRoute(route, location, paramNames, paramValues, callback) {\n\t if (route.indexRoute) {\n\t callback(null, route.indexRoute);\n\t } else if (route.getIndexRoute) {\n\t var partialNextState = {\n\t location: location,\n\t params: createParams(paramNames, paramValues)\n\t };\n\t\n\t var indexRoutesReturn = route.getIndexRoute(partialNextState, function (error, indexRoute) {\n\t callback(error, !error && (0, _RouteUtils.createRoutes)(indexRoute)[0]);\n\t });\n\t\n\t if ((0, _PromiseUtils.isPromise)(indexRoutesReturn)) indexRoutesReturn.then(function (indexRoute) {\n\t return callback(null, (0, _RouteUtils.createRoutes)(indexRoute)[0]);\n\t }, callback);\n\t } else if (route.childRoutes || route.getChildRoutes) {\n\t var onChildRoutes = function onChildRoutes(error, childRoutes) {\n\t if (error) {\n\t callback(error);\n\t return;\n\t }\n\t\n\t var pathless = childRoutes.filter(function (childRoute) {\n\t return !childRoute.path;\n\t });\n\t\n\t (0, _AsyncUtils.loopAsync)(pathless.length, function (index, next, done) {\n\t getIndexRoute(pathless[index], location, paramNames, paramValues, function (error, indexRoute) {\n\t if (error || indexRoute) {\n\t var routes = [pathless[index]].concat(Array.isArray(indexRoute) ? indexRoute : [indexRoute]);\n\t done(error, routes);\n\t } else {\n\t next();\n\t }\n\t });\n\t }, function (err, routes) {\n\t callback(null, routes);\n\t });\n\t };\n\t\n\t var result = getChildRoutes(route, location, paramNames, paramValues, onChildRoutes);\n\t if (result) {\n\t onChildRoutes.apply(undefined, result);\n\t }\n\t } else {\n\t callback();\n\t }\n\t}\n\t\n\tfunction assignParams(params, paramNames, paramValues) {\n\t return paramNames.reduce(function (params, paramName, index) {\n\t var paramValue = paramValues && paramValues[index];\n\t\n\t if (Array.isArray(params[paramName])) {\n\t params[paramName].push(paramValue);\n\t } else if (paramName in params) {\n\t params[paramName] = [params[paramName], paramValue];\n\t } else {\n\t params[paramName] = paramValue;\n\t }\n\t\n\t return params;\n\t }, params);\n\t}\n\t\n\tfunction createParams(paramNames, paramValues) {\n\t return assignParams({}, paramNames, paramValues);\n\t}\n\t\n\tfunction matchRouteDeep(route, location, remainingPathname, paramNames, paramValues, callback) {\n\t var pattern = route.path || '';\n\t\n\t if (pattern.charAt(0) === '/') {\n\t remainingPathname = location.pathname;\n\t paramNames = [];\n\t paramValues = [];\n\t }\n\t\n\t // Only try to match the path if the route actually has a pattern, and if\n\t // we're not just searching for potential nested absolute paths.\n\t if (remainingPathname !== null && pattern) {\n\t try {\n\t var matched = (0, _PatternUtils.matchPattern)(pattern, remainingPathname);\n\t if (matched) {\n\t remainingPathname = matched.remainingPathname;\n\t paramNames = [].concat(paramNames, matched.paramNames);\n\t paramValues = [].concat(paramValues, matched.paramValues);\n\t } else {\n\t remainingPathname = null;\n\t }\n\t } catch (error) {\n\t callback(error);\n\t }\n\t\n\t // By assumption, pattern is non-empty here, which is the prerequisite for\n\t // actually terminating a match.\n\t if (remainingPathname === '') {\n\t var match = {\n\t routes: [route],\n\t params: createParams(paramNames, paramValues)\n\t };\n\t\n\t getIndexRoute(route, location, paramNames, paramValues, function (error, indexRoute) {\n\t if (error) {\n\t callback(error);\n\t } else {\n\t if (Array.isArray(indexRoute)) {\n\t var _match$routes;\n\t\n\t false ? (0, _routerWarning2.default)(indexRoute.every(function (route) {\n\t return !route.path;\n\t }), 'Index routes should not have paths') : void 0;\n\t (_match$routes = match.routes).push.apply(_match$routes, indexRoute);\n\t } else if (indexRoute) {\n\t false ? (0, _routerWarning2.default)(!indexRoute.path, 'Index routes should not have paths') : void 0;\n\t match.routes.push(indexRoute);\n\t }\n\t\n\t callback(null, match);\n\t }\n\t });\n\t\n\t return;\n\t }\n\t }\n\t\n\t if (remainingPathname != null || route.childRoutes) {\n\t // Either a) this route matched at least some of the path or b)\n\t // we don't have to load this route's children asynchronously. In\n\t // either case continue checking for matches in the subtree.\n\t var onChildRoutes = function onChildRoutes(error, childRoutes) {\n\t if (error) {\n\t callback(error);\n\t } else if (childRoutes) {\n\t // Check the child routes to see if any of them match.\n\t matchRoutes(childRoutes, location, function (error, match) {\n\t if (error) {\n\t callback(error);\n\t } else if (match) {\n\t // A child route matched! Augment the match and pass it up the stack.\n\t match.routes.unshift(route);\n\t callback(null, match);\n\t } else {\n\t callback();\n\t }\n\t }, remainingPathname, paramNames, paramValues);\n\t } else {\n\t callback();\n\t }\n\t };\n\t\n\t var result = getChildRoutes(route, location, paramNames, paramValues, onChildRoutes);\n\t if (result) {\n\t onChildRoutes.apply(undefined, result);\n\t }\n\t } else {\n\t callback();\n\t }\n\t}\n\t\n\t/**\n\t * Asynchronously matches the given location to a set of routes and calls\n\t * callback(error, state) when finished. The state object will have the\n\t * following properties:\n\t *\n\t * - routes An array of routes that matched, in hierarchical order\n\t * - params An object of URL parameters\n\t *\n\t * Note: This operation may finish synchronously if no routes have an\n\t * asynchronous getChildRoutes method.\n\t */\n\tfunction matchRoutes(routes, location, callback, remainingPathname) {\n\t var paramNames = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : [];\n\t var paramValues = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : [];\n\t\n\t if (remainingPathname === undefined) {\n\t // TODO: This is a little bit ugly, but it works around a quirk in history\n\t // that strips the leading slash from pathnames when using basenames with\n\t // trailing slashes.\n\t if (location.pathname.charAt(0) !== '/') {\n\t location = _extends({}, location, {\n\t pathname: '/' + location.pathname\n\t });\n\t }\n\t remainingPathname = location.pathname;\n\t }\n\t\n\t (0, _AsyncUtils.loopAsync)(routes.length, function (index, next, done) {\n\t matchRouteDeep(routes[index], location, remainingPathname, paramNames, paramValues, function (error, match) {\n\t if (error || match) {\n\t done(error, match);\n\t } else {\n\t next();\n\t }\n\t });\n\t }, callback);\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 104 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.routes = exports.route = exports.components = exports.component = exports.history = undefined;\n\texports.falsy = falsy;\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tfunction falsy(props, propName, componentName) {\n\t if (props[propName]) return new Error('<' + componentName + '> should not have a \"' + propName + '\" prop');\n\t}\n\t\n\tvar history = exports.history = (0, _propTypes.shape)({\n\t listen: _propTypes.func.isRequired,\n\t push: _propTypes.func.isRequired,\n\t replace: _propTypes.func.isRequired,\n\t go: _propTypes.func.isRequired,\n\t goBack: _propTypes.func.isRequired,\n\t goForward: _propTypes.func.isRequired\n\t});\n\t\n\tvar component = exports.component = _propTypes.elementType;\n\tvar components = exports.components = (0, _propTypes.oneOfType)([component, _propTypes.object]);\n\tvar route = exports.route = (0, _propTypes.oneOfType)([_propTypes.object, _propTypes.element]);\n\tvar routes = exports.routes = (0, _propTypes.oneOfType)([route, (0, _propTypes.arrayOf)(route)]);\n\n/***/ }),\n/* 105 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactIs = __webpack_require__(64);\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar _getRouteParams = __webpack_require__(106);\n\t\n\tvar _getRouteParams2 = _interopRequireDefault(_getRouteParams);\n\t\n\tvar _ContextUtils = __webpack_require__(107);\n\t\n\tvar _RouteUtils = __webpack_require__(87);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t/**\n\t * A renders the component tree for a given router state\n\t * and sets the history object and the current location in context.\n\t */\n\tvar RouterContext = (0, _createReactClass2.default)({\n\t displayName: 'RouterContext',\n\t\n\t mixins: [(0, _ContextUtils.ContextProvider)('router')],\n\t\n\t propTypes: {\n\t router: _propTypes.object.isRequired,\n\t location: _propTypes.object.isRequired,\n\t routes: _propTypes.array.isRequired,\n\t params: _propTypes.object.isRequired,\n\t components: _propTypes.array.isRequired,\n\t createElement: _propTypes.func.isRequired\n\t },\n\t\n\t getDefaultProps: function getDefaultProps() {\n\t return {\n\t createElement: _react2.default.createElement\n\t };\n\t },\n\t\n\t\n\t childContextTypes: {\n\t router: _propTypes.object.isRequired\n\t },\n\t\n\t getChildContext: function getChildContext() {\n\t return {\n\t router: this.props.router\n\t };\n\t },\n\t createElement: function createElement(component, props) {\n\t return component == null ? null : this.props.createElement(component, props);\n\t },\n\t render: function render() {\n\t var _this = this;\n\t\n\t var _props = this.props,\n\t location = _props.location,\n\t routes = _props.routes,\n\t params = _props.params,\n\t components = _props.components,\n\t router = _props.router;\n\t\n\t var element = null;\n\t\n\t if (components) {\n\t element = components.reduceRight(function (element, components, index) {\n\t if (components == null) return element; // Don't create new children; use the grandchildren.\n\t\n\t var route = routes[index];\n\t var routeParams = (0, _getRouteParams2.default)(route, params);\n\t var props = {\n\t location: location,\n\t params: params,\n\t route: route,\n\t router: router,\n\t routeParams: routeParams,\n\t routes: routes\n\t };\n\t\n\t if ((0, _RouteUtils.isReactChildren)(element)) {\n\t props.children = element;\n\t } else if (element) {\n\t for (var prop in element) {\n\t if (Object.prototype.hasOwnProperty.call(element, prop)) props[prop] = element[prop];\n\t }\n\t }\n\t\n\t // Handle components is object for { [name]: component } but not valid element\n\t // type of react, such as React.memo, React.lazy and so on.\n\t if ((typeof components === 'undefined' ? 'undefined' : _typeof(components)) === 'object' && !(0, _reactIs.isValidElementType)(components)) {\n\t var elements = {};\n\t\n\t for (var key in components) {\n\t if (Object.prototype.hasOwnProperty.call(components, key)) {\n\t // Pass through the key as a prop to createElement to allow\n\t // custom createElement functions to know which named component\n\t // they're rendering, for e.g. matching up to fetched data.\n\t elements[key] = _this.createElement(components[key], _extends({\n\t key: key }, props));\n\t }\n\t }\n\t\n\t return elements;\n\t }\n\t\n\t return _this.createElement(components, props);\n\t }, element);\n\t }\n\t\n\t !(element === null || element === false || _react2.default.isValidElement(element)) ? false ? (0, _invariant2.default)(false, 'The root route must render a single element') : (0, _invariant2.default)(false) : void 0;\n\t\n\t return element;\n\t }\n\t});\n\t\n\texports.default = RouterContext;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 106 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _PatternUtils = __webpack_require__(89);\n\t\n\t/**\n\t * Extracts an object of params the given route cares about from\n\t * the given params object.\n\t */\n\tfunction getRouteParams(route, params) {\n\t var routeParams = {};\n\t\n\t if (!route.path) return routeParams;\n\t\n\t (0, _PatternUtils.getParamNames)(route.path).forEach(function (p) {\n\t if (Object.prototype.hasOwnProperty.call(params, p)) {\n\t routeParams[p] = params[p];\n\t }\n\t });\n\t\n\t return routeParams;\n\t}\n\t\n\texports.default = getRouteParams;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 107 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.ContextProvider = ContextProvider;\n\texports.ContextSubscriber = ContextSubscriber;\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar _propTypes2 = _interopRequireDefault(_propTypes);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t// Works around issues with context updates failing to propagate.\n\t// Caveat: the context value is expected to never change its identity.\n\t// https://github.com/facebook/react/issues/2517\n\t// https://github.com/reactjs/react-router/issues/470\n\t\n\tvar contextProviderShape = _propTypes2.default.shape({\n\t subscribe: _propTypes2.default.func.isRequired,\n\t eventIndex: _propTypes2.default.number.isRequired\n\t});\n\t\n\tfunction makeContextName(name) {\n\t return '@@contextSubscriber/' + name;\n\t}\n\t\n\tvar prefixUnsafeLifecycleMethods = typeof _react2.default.forwardRef !== 'undefined';\n\t\n\tfunction ContextProvider(name) {\n\t var _childContextTypes, _config;\n\t\n\t var contextName = makeContextName(name);\n\t var listenersKey = contextName + '/listeners';\n\t var eventIndexKey = contextName + '/eventIndex';\n\t var subscribeKey = contextName + '/subscribe';\n\t\n\t var config = (_config = {\n\t childContextTypes: (_childContextTypes = {}, _childContextTypes[contextName] = contextProviderShape.isRequired, _childContextTypes),\n\t\n\t getChildContext: function getChildContext() {\n\t var _ref;\n\t\n\t return _ref = {}, _ref[contextName] = {\n\t eventIndex: this[eventIndexKey],\n\t subscribe: this[subscribeKey]\n\t }, _ref;\n\t },\n\t\n\t\n\t // this method will be updated to UNSAFE_componentWillMount below for React versions >= 16.3\n\t componentWillMount: function componentWillMount() {\n\t this[listenersKey] = [];\n\t this[eventIndexKey] = 0;\n\t },\n\t\n\t\n\t // this method will be updated to UNSAFE_componentWillReceiveProps below for React versions >= 16.3\n\t componentWillReceiveProps: function componentWillReceiveProps() {\n\t this[eventIndexKey]++;\n\t },\n\t componentDidUpdate: function componentDidUpdate() {\n\t var _this = this;\n\t\n\t this[listenersKey].forEach(function (listener) {\n\t return listener(_this[eventIndexKey]);\n\t });\n\t }\n\t }, _config[subscribeKey] = function (listener) {\n\t var _this2 = this;\n\t\n\t // No need to immediately call listener here.\n\t this[listenersKey].push(listener);\n\t\n\t return function () {\n\t _this2[listenersKey] = _this2[listenersKey].filter(function (item) {\n\t return item !== listener;\n\t });\n\t };\n\t }, _config);\n\t\n\t if (prefixUnsafeLifecycleMethods) {\n\t config.UNSAFE_componentWillMount = config.componentWillMount;\n\t config.UNSAFE_componentWillReceiveProps = config.componentWillReceiveProps;\n\t delete config.componentWillMount;\n\t delete config.componentWillReceiveProps;\n\t }\n\t return config;\n\t}\n\t\n\tfunction ContextSubscriber(name) {\n\t var _contextTypes, _config2;\n\t\n\t var contextName = makeContextName(name);\n\t var lastRenderedEventIndexKey = contextName + '/lastRenderedEventIndex';\n\t var handleContextUpdateKey = contextName + '/handleContextUpdate';\n\t var unsubscribeKey = contextName + '/unsubscribe';\n\t\n\t var config = (_config2 = {\n\t contextTypes: (_contextTypes = {}, _contextTypes[contextName] = contextProviderShape, _contextTypes),\n\t\n\t getInitialState: function getInitialState() {\n\t var _ref2;\n\t\n\t if (!this.context[contextName]) {\n\t return {};\n\t }\n\t\n\t return _ref2 = {}, _ref2[lastRenderedEventIndexKey] = this.context[contextName].eventIndex, _ref2;\n\t },\n\t componentDidMount: function componentDidMount() {\n\t if (!this.context[contextName]) {\n\t return;\n\t }\n\t\n\t this[unsubscribeKey] = this.context[contextName].subscribe(this[handleContextUpdateKey]);\n\t },\n\t\n\t\n\t // this method will be updated to UNSAFE_componentWillReceiveProps below for React versions >= 16.3\n\t componentWillReceiveProps: function componentWillReceiveProps() {\n\t var _setState;\n\t\n\t if (!this.context[contextName]) {\n\t return;\n\t }\n\t\n\t this.setState((_setState = {}, _setState[lastRenderedEventIndexKey] = this.context[contextName].eventIndex, _setState));\n\t },\n\t componentWillUnmount: function componentWillUnmount() {\n\t if (!this[unsubscribeKey]) {\n\t return;\n\t }\n\t\n\t this[unsubscribeKey]();\n\t this[unsubscribeKey] = null;\n\t }\n\t }, _config2[handleContextUpdateKey] = function (eventIndex) {\n\t if (eventIndex !== this.state[lastRenderedEventIndexKey]) {\n\t var _setState2;\n\t\n\t this.setState((_setState2 = {}, _setState2[lastRenderedEventIndexKey] = eventIndex, _setState2));\n\t }\n\t }, _config2);\n\t\n\t if (prefixUnsafeLifecycleMethods) {\n\t config.UNSAFE_componentWillReceiveProps = config.componentWillReceiveProps;\n\t delete config.componentWillReceiveProps;\n\t }\n\t return config;\n\t}\n\n/***/ }),\n/* 108 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\texports.createRouterObject = createRouterObject;\n\texports.assignRouterState = assignRouterState;\n\tfunction createRouterObject(history, transitionManager, state) {\n\t var router = _extends({}, history, {\n\t setRouteLeaveHook: transitionManager.listenBeforeLeavingRoute,\n\t isActive: transitionManager.isActive\n\t });\n\t\n\t return assignRouterState(router, state);\n\t}\n\t\n\tfunction assignRouterState(router, _ref) {\n\t var location = _ref.location,\n\t params = _ref.params,\n\t routes = _ref.routes;\n\t\n\t router.location = location;\n\t router.params = params;\n\t router.routes = routes;\n\t\n\t return router;\n\t}\n\n/***/ }),\n/* 109 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _PropTypes = __webpack_require__(88);\n\t\n\tvar _ContextUtils = __webpack_require__(107);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }\n\t\n\tfunction isLeftClickEvent(event) {\n\t return event.button === 0;\n\t}\n\t\n\tfunction isModifiedEvent(event) {\n\t return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n\t}\n\t\n\t// TODO: De-duplicate against hasAnyProperties in createTransitionManager.\n\tfunction isEmptyObject(object) {\n\t for (var p in object) {\n\t if (Object.prototype.hasOwnProperty.call(object, p)) return false;\n\t }return true;\n\t}\n\t\n\tfunction resolveToLocation(to, router) {\n\t return typeof to === 'function' ? to(router.location) : to;\n\t}\n\t\n\t/**\n\t * A is used to create an element that links to a route.\n\t * When that route is active, the link gets the value of its\n\t * activeClassName prop.\n\t *\n\t * For example, assuming you have the following route:\n\t *\n\t * \n\t *\n\t * You could use the following component to link to that route:\n\t *\n\t * \n\t */\n\tvar Link = (0, _createReactClass2.default)({\n\t displayName: 'Link',\n\t\n\t mixins: [(0, _ContextUtils.ContextSubscriber)('router')],\n\t\n\t contextTypes: {\n\t router: _PropTypes.routerShape\n\t },\n\t\n\t propTypes: {\n\t to: (0, _propTypes.oneOfType)([_propTypes.string, _propTypes.object, _propTypes.func]),\n\t activeStyle: _propTypes.object,\n\t activeClassName: _propTypes.string,\n\t onlyActiveOnIndex: _propTypes.bool.isRequired,\n\t onClick: _propTypes.func,\n\t target: _propTypes.string,\n\t innerRef: (0, _propTypes.oneOfType)([_propTypes.string, _propTypes.func, (0, _propTypes.shape)({ current: _propTypes.elementType })])\n\t },\n\t\n\t getDefaultProps: function getDefaultProps() {\n\t return {\n\t onlyActiveOnIndex: false,\n\t style: {}\n\t };\n\t },\n\t handleClick: function handleClick(event) {\n\t if (this.props.onClick) this.props.onClick(event);\n\t\n\t if (event.defaultPrevented) return;\n\t\n\t var router = this.context.router;\n\t\n\t !router ? false ? (0, _invariant2.default)(false, 's rendered outside of a router context cannot navigate.') : (0, _invariant2.default)(false) : void 0;\n\t\n\t if (isModifiedEvent(event) || !isLeftClickEvent(event)) return;\n\t\n\t // If target prop is set (e.g. to \"_blank\"), let browser handle link.\n\t /* istanbul ignore if: untestable with Karma */\n\t if (this.props.target) return;\n\t\n\t event.preventDefault();\n\t\n\t router.push(resolveToLocation(this.props.to, router));\n\t },\n\t render: function render() {\n\t var _props = this.props,\n\t to = _props.to,\n\t activeClassName = _props.activeClassName,\n\t activeStyle = _props.activeStyle,\n\t onlyActiveOnIndex = _props.onlyActiveOnIndex,\n\t innerRef = _props.innerRef,\n\t props = _objectWithoutProperties(_props, ['to', 'activeClassName', 'activeStyle', 'onlyActiveOnIndex', 'innerRef']);\n\t\n\t // Ignore if rendered outside the context of router to simplify unit testing.\n\t\n\t\n\t var router = this.context.router;\n\t\n\t\n\t if (router) {\n\t // If user does not specify a `to` prop, return an empty anchor tag.\n\t if (!to) {\n\t return _react2.default.createElement('a', _extends({}, props, { ref: innerRef }));\n\t }\n\t\n\t var toLocation = resolveToLocation(to, router);\n\t props.href = router.createHref(toLocation);\n\t\n\t if (activeClassName || activeStyle != null && !isEmptyObject(activeStyle)) {\n\t if (router.isActive(toLocation, onlyActiveOnIndex)) {\n\t if (activeClassName) {\n\t if (props.className) {\n\t props.className += ' ' + activeClassName;\n\t } else {\n\t props.className = activeClassName;\n\t }\n\t }\n\t\n\t if (activeStyle) props.style = _extends({}, props.style, activeStyle);\n\t }\n\t }\n\t }\n\t\n\t return _react2.default.createElement('a', _extends({}, props, { onClick: this.handleClick, ref: innerRef }));\n\t }\n\t});\n\t\n\texports.default = Link;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 110 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _Link = __webpack_require__(109);\n\t\n\tvar _Link2 = _interopRequireDefault(_Link);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t/**\n\t * An is used to link to an .\n\t */\n\tvar IndexLink = (0, _createReactClass2.default)({\n\t displayName: 'IndexLink',\n\t\n\t render: function render() {\n\t return _react2.default.createElement(_Link2.default, _extends({}, this.props, { onlyActiveOnIndex: true }));\n\t }\n\t});\n\t\n\texports.default = IndexLink;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 111 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\texports.default = withRouter;\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _hoistNonReactStatics = __webpack_require__(63);\n\t\n\tvar _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics);\n\t\n\tvar _ContextUtils = __webpack_require__(107);\n\t\n\tvar _PropTypes = __webpack_require__(88);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction getDisplayName(WrappedComponent) {\n\t return WrappedComponent.displayName || WrappedComponent.name || 'Component';\n\t}\n\t\n\tfunction withRouter(WrappedComponent, options) {\n\t var withRef = options && options.withRef;\n\t\n\t var WithRouter = (0, _createReactClass2.default)({\n\t displayName: 'WithRouter',\n\t\n\t mixins: [(0, _ContextUtils.ContextSubscriber)('router')],\n\t\n\t contextTypes: { router: _PropTypes.routerShape },\n\t propTypes: { router: _PropTypes.routerShape },\n\t\n\t getWrappedInstance: function getWrappedInstance() {\n\t !withRef ? false ? (0, _invariant2.default)(false, 'To access the wrapped instance, you need to specify ' + '`{ withRef: true }` as the second argument of the withRouter() call.') : (0, _invariant2.default)(false) : void 0;\n\t\n\t return this.wrappedInstance;\n\t },\n\t render: function render() {\n\t var _this = this;\n\t\n\t var router = this.props.router || this.context.router;\n\t if (!router) {\n\t return _react2.default.createElement(WrappedComponent, this.props);\n\t }\n\t\n\t var params = router.params,\n\t location = router.location,\n\t routes = router.routes;\n\t\n\t var props = _extends({}, this.props, { router: router, params: params, location: location, routes: routes });\n\t\n\t if (withRef) {\n\t props.ref = function (c) {\n\t _this.wrappedInstance = c;\n\t };\n\t }\n\t\n\t return _react2.default.createElement(WrappedComponent, props);\n\t }\n\t });\n\t\n\t WithRouter.displayName = 'withRouter(' + getDisplayName(WrappedComponent) + ')';\n\t WithRouter.WrappedComponent = WrappedComponent;\n\t\n\t return (0, _hoistNonReactStatics2.default)(WithRouter, WrappedComponent);\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 112 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar _routerWarning = __webpack_require__(95);\n\t\n\tvar _routerWarning2 = _interopRequireDefault(_routerWarning);\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _Redirect = __webpack_require__(113);\n\t\n\tvar _Redirect2 = _interopRequireDefault(_Redirect);\n\t\n\tvar _InternalPropTypes = __webpack_require__(104);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t/**\n\t * An is used to redirect from an indexRoute.\n\t */\n\t/* eslint-disable react/require-render-return */\n\tvar IndexRedirect = (0, _createReactClass2.default)({\n\t displayName: 'IndexRedirect',\n\t\n\t statics: {\n\t createRouteFromReactElement: function createRouteFromReactElement(element, parentRoute) {\n\t /* istanbul ignore else: sanity check */\n\t if (parentRoute) {\n\t parentRoute.indexRoute = _Redirect2.default.createRouteFromReactElement(element);\n\t } else {\n\t false ? (0, _routerWarning2.default)(false, 'An does not make sense at the root of your route config') : void 0;\n\t }\n\t }\n\t },\n\t\n\t propTypes: {\n\t to: _propTypes.string.isRequired,\n\t query: _propTypes.object,\n\t state: _propTypes.object,\n\t onEnter: _InternalPropTypes.falsy,\n\t children: _InternalPropTypes.falsy\n\t },\n\t\n\t /* istanbul ignore next: sanity check */\n\t render: function render() {\n\t true ? false ? (0, _invariant2.default)(false, ' elements are for router configuration only and should not be rendered') : (0, _invariant2.default)(false) : void 0;\n\t }\n\t});\n\t\n\texports.default = IndexRedirect;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 113 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _RouteUtils = __webpack_require__(87);\n\t\n\tvar _PatternUtils = __webpack_require__(89);\n\t\n\tvar _InternalPropTypes = __webpack_require__(104);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t/**\n\t * A is used to declare another URL path a client should\n\t * be sent to when they request a given URL.\n\t *\n\t * Redirects are placed alongside routes in the route configuration\n\t * and are traversed in the same manner.\n\t */\n\t/* eslint-disable react/require-render-return */\n\tvar Redirect = (0, _createReactClass2.default)({\n\t displayName: 'Redirect',\n\t\n\t statics: {\n\t createRouteFromReactElement: function createRouteFromReactElement(element) {\n\t var route = (0, _RouteUtils.createRouteFromReactElement)(element);\n\t\n\t if (route.from) route.path = route.from;\n\t\n\t route.onEnter = function (nextState, replace) {\n\t var location = nextState.location,\n\t params = nextState.params;\n\t\n\t\n\t var pathname = void 0;\n\t if (route.to.charAt(0) === '/') {\n\t pathname = (0, _PatternUtils.formatPattern)(route.to, params);\n\t } else if (!route.to) {\n\t pathname = location.pathname;\n\t } else {\n\t var routeIndex = nextState.routes.indexOf(route);\n\t var parentPattern = Redirect.getRoutePattern(nextState.routes, routeIndex - 1);\n\t var pattern = parentPattern.replace(/\\/*$/, '/') + route.to;\n\t pathname = (0, _PatternUtils.formatPattern)(pattern, params);\n\t }\n\t\n\t replace({\n\t pathname: pathname,\n\t query: route.query || location.query,\n\t state: route.state || location.state\n\t });\n\t };\n\t\n\t return route;\n\t },\n\t getRoutePattern: function getRoutePattern(routes, routeIndex) {\n\t var parentPattern = '';\n\t\n\t for (var i = routeIndex; i >= 0; i--) {\n\t var route = routes[i];\n\t var pattern = route.path || '';\n\t\n\t parentPattern = pattern.replace(/\\/*$/, '/') + parentPattern;\n\t\n\t if (pattern.indexOf('/') === 0) break;\n\t }\n\t\n\t return '/' + parentPattern;\n\t }\n\t },\n\t\n\t propTypes: {\n\t path: _propTypes.string,\n\t from: _propTypes.string, // Alias for path\n\t to: _propTypes.string.isRequired,\n\t query: _propTypes.object,\n\t state: _propTypes.object,\n\t onEnter: _InternalPropTypes.falsy,\n\t children: _InternalPropTypes.falsy\n\t },\n\t\n\t /* istanbul ignore next: sanity check */\n\t render: function render() {\n\t true ? false ? (0, _invariant2.default)(false, ' elements are for router configuration only and should not be rendered') : (0, _invariant2.default)(false) : void 0;\n\t }\n\t});\n\t\n\texports.default = Redirect;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 114 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar _routerWarning = __webpack_require__(95);\n\t\n\tvar _routerWarning2 = _interopRequireDefault(_routerWarning);\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _RouteUtils = __webpack_require__(87);\n\t\n\tvar _InternalPropTypes = __webpack_require__(104);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t/**\n\t * An is used to specify its parent's in\n\t * a JSX route config.\n\t */\n\t/* eslint-disable react/require-render-return */\n\tvar IndexRoute = (0, _createReactClass2.default)({\n\t displayName: 'IndexRoute',\n\t\n\t statics: {\n\t createRouteFromReactElement: function createRouteFromReactElement(element, parentRoute) {\n\t /* istanbul ignore else: sanity check */\n\t if (parentRoute) {\n\t parentRoute.indexRoute = (0, _RouteUtils.createRouteFromReactElement)(element);\n\t } else {\n\t false ? (0, _routerWarning2.default)(false, 'An does not make sense at the root of your route config') : void 0;\n\t }\n\t }\n\t },\n\t\n\t propTypes: {\n\t path: _InternalPropTypes.falsy,\n\t component: _InternalPropTypes.component,\n\t components: _InternalPropTypes.components,\n\t getComponent: _propTypes.func,\n\t getComponents: _propTypes.func\n\t },\n\t\n\t /* istanbul ignore next: sanity check */\n\t render: function render() {\n\t true ? false ? (0, _invariant2.default)(false, ' elements are for router configuration only and should not be rendered') : (0, _invariant2.default)(false) : void 0;\n\t }\n\t});\n\t\n\texports.default = IndexRoute;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 115 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _createReactClass = __webpack_require__(92);\n\t\n\tvar _createReactClass2 = _interopRequireDefault(_createReactClass);\n\t\n\tvar _propTypes = __webpack_require__(53);\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _RouteUtils = __webpack_require__(87);\n\t\n\tvar _InternalPropTypes = __webpack_require__(104);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t/**\n\t * A is used to declare which components are rendered to the\n\t * page when the URL matches a given pattern.\n\t *\n\t * Routes are arranged in a nested tree structure. When a new URL is\n\t * requested, the tree is searched depth-first to find a route whose\n\t * path matches the URL. When one is found, all routes in the tree\n\t * that lead to it are considered \"active\" and their components are\n\t * rendered into the DOM, nested in the same order as in the tree.\n\t */\n\t/* eslint-disable react/require-render-return */\n\tvar Route = (0, _createReactClass2.default)({\n\t displayName: 'Route',\n\t\n\t statics: {\n\t createRouteFromReactElement: _RouteUtils.createRouteFromReactElement\n\t },\n\t\n\t propTypes: {\n\t path: _propTypes.string,\n\t component: _InternalPropTypes.component,\n\t components: _InternalPropTypes.components,\n\t getComponent: _propTypes.func,\n\t getComponents: _propTypes.func\n\t },\n\t\n\t /* istanbul ignore next: sanity check */\n\t render: function render() {\n\t true ? false ? (0, _invariant2.default)(false, ' elements are for router configuration only and should not be rendered') : (0, _invariant2.default)(false) : void 0;\n\t }\n\t});\n\t\n\texports.default = Route;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 116 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _Actions = __webpack_require__(117);\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _createMemoryHistory = __webpack_require__(118);\n\t\n\tvar _createMemoryHistory2 = _interopRequireDefault(_createMemoryHistory);\n\t\n\tvar _createTransitionManager = __webpack_require__(94);\n\t\n\tvar _createTransitionManager2 = _interopRequireDefault(_createTransitionManager);\n\t\n\tvar _RouteUtils = __webpack_require__(87);\n\t\n\tvar _RouterUtils = __webpack_require__(108);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }\n\t\n\t/**\n\t * A high-level API to be used for server-side rendering.\n\t *\n\t * This function matches a location to a set of routes and calls\n\t * callback(error, redirectLocation, renderProps) when finished.\n\t *\n\t * Note: You probably don't want to use this in a browser unless you're using\n\t * server-side rendering with async routes.\n\t */\n\tfunction match(_ref, callback) {\n\t var history = _ref.history,\n\t routes = _ref.routes,\n\t location = _ref.location,\n\t options = _objectWithoutProperties(_ref, ['history', 'routes', 'location']);\n\t\n\t !(history || location) ? false ? (0, _invariant2.default)(false, 'match needs a history or a location') : (0, _invariant2.default)(false) : void 0;\n\t\n\t history = history ? history : (0, _createMemoryHistory2.default)(options);\n\t var transitionManager = (0, _createTransitionManager2.default)(history, (0, _RouteUtils.createRoutes)(routes));\n\t\n\t if (location) {\n\t // Allow match({ location: '/the/path', ... })\n\t location = history.createLocation(location);\n\t } else {\n\t location = history.getCurrentLocation();\n\t }\n\t\n\t transitionManager.match(location, function (error, redirectLocation, nextState) {\n\t var renderProps = void 0;\n\t\n\t if (nextState) {\n\t var router = (0, _RouterUtils.createRouterObject)(history, transitionManager, nextState);\n\t renderProps = _extends({}, nextState, {\n\t router: router,\n\t matchContext: { transitionManager: transitionManager, router: router }\n\t });\n\t }\n\t\n\t callback(error, redirectLocation && history.createLocation(redirectLocation, _Actions.REPLACE), renderProps);\n\t });\n\t}\n\t\n\texports.default = match;\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 117 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t/**\n\t * Indicates that navigation was caused by a call to history.push.\n\t */\n\tvar PUSH = exports.PUSH = 'PUSH';\n\t\n\t/**\n\t * Indicates that navigation was caused by a call to history.replace.\n\t */\n\tvar REPLACE = exports.REPLACE = 'REPLACE';\n\t\n\t/**\n\t * Indicates that navigation was caused by some other action such\n\t * as using a browser's back/forward buttons and/or manually manipulating\n\t * the URL in a browser's location bar. This is the default.\n\t *\n\t * See https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onpopstate\n\t * for more information.\n\t */\n\tvar POP = exports.POP = 'POP';\n\n/***/ }),\n/* 118 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.default = createMemoryHistory;\n\t\n\tvar _useQueries = __webpack_require__(119);\n\t\n\tvar _useQueries2 = _interopRequireDefault(_useQueries);\n\t\n\tvar _useBasename = __webpack_require__(125);\n\t\n\tvar _useBasename2 = _interopRequireDefault(_useBasename);\n\t\n\tvar _createMemoryHistory = __webpack_require__(126);\n\t\n\tvar _createMemoryHistory2 = _interopRequireDefault(_createMemoryHistory);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction createMemoryHistory(options) {\n\t // signatures and type checking differ between `useQueries` and\n\t // `createMemoryHistory`, have to create `memoryHistory` first because\n\t // `useQueries` doesn't understand the signature\n\t var memoryHistory = (0, _createMemoryHistory2.default)(options);\n\t var createHistory = function createHistory() {\n\t return memoryHistory;\n\t };\n\t var history = (0, _useQueries2.default)((0, _useBasename2.default)(createHistory))(options);\n\t return history;\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 119 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _queryString = __webpack_require__(120);\n\t\n\tvar _runTransitionHook = __webpack_require__(122);\n\t\n\tvar _runTransitionHook2 = _interopRequireDefault(_runTransitionHook);\n\t\n\tvar _LocationUtils = __webpack_require__(123);\n\t\n\tvar _PathUtils = __webpack_require__(124);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar defaultStringifyQuery = function defaultStringifyQuery(query) {\n\t return (0, _queryString.stringify)(query).replace(/%20/g, '+');\n\t};\n\t\n\tvar defaultParseQueryString = _queryString.parse;\n\t\n\t/**\n\t * Returns a new createHistory function that may be used to create\n\t * history objects that know how to handle URL queries.\n\t */\n\tvar useQueries = function useQueries(createHistory) {\n\t return function () {\n\t var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t\n\t var history = createHistory(options);\n\t var stringifyQuery = options.stringifyQuery,\n\t parseQueryString = options.parseQueryString;\n\t\n\t\n\t if (typeof stringifyQuery !== 'function') stringifyQuery = defaultStringifyQuery;\n\t\n\t if (typeof parseQueryString !== 'function') parseQueryString = defaultParseQueryString;\n\t\n\t var decodeQuery = function decodeQuery(location) {\n\t if (!location) return location;\n\t\n\t if (location.query == null) location.query = parseQueryString(location.search.substring(1));\n\t\n\t return location;\n\t };\n\t\n\t var encodeQuery = function encodeQuery(location, query) {\n\t if (query == null) return location;\n\t\n\t var object = typeof location === 'string' ? (0, _PathUtils.parsePath)(location) : location;\n\t var queryString = stringifyQuery(query);\n\t var search = queryString ? '?' + queryString : '';\n\t\n\t return _extends({}, object, {\n\t search: search\n\t });\n\t };\n\t\n\t // Override all read methods with query-aware versions.\n\t var getCurrentLocation = function getCurrentLocation() {\n\t return decodeQuery(history.getCurrentLocation());\n\t };\n\t\n\t var listenBefore = function listenBefore(hook) {\n\t return history.listenBefore(function (location, callback) {\n\t return (0, _runTransitionHook2.default)(hook, decodeQuery(location), callback);\n\t });\n\t };\n\t\n\t var listen = function listen(listener) {\n\t return history.listen(function (location) {\n\t return listener(decodeQuery(location));\n\t });\n\t };\n\t\n\t // Override all write methods with query-aware versions.\n\t var push = function push(location) {\n\t return history.push(encodeQuery(location, location.query));\n\t };\n\t\n\t var replace = function replace(location) {\n\t return history.replace(encodeQuery(location, location.query));\n\t };\n\t\n\t var createPath = function createPath(location) {\n\t return history.createPath(encodeQuery(location, location.query));\n\t };\n\t\n\t var createHref = function createHref(location) {\n\t return history.createHref(encodeQuery(location, location.query));\n\t };\n\t\n\t var createLocation = function createLocation(location) {\n\t for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n\t args[_key - 1] = arguments[_key];\n\t }\n\t\n\t var newLocation = history.createLocation.apply(history, [encodeQuery(location, location.query)].concat(args));\n\t\n\t if (location.query) newLocation.query = (0, _LocationUtils.createQuery)(location.query);\n\t\n\t return decodeQuery(newLocation);\n\t };\n\t\n\t return _extends({}, history, {\n\t getCurrentLocation: getCurrentLocation,\n\t listenBefore: listenBefore,\n\t listen: listen,\n\t push: push,\n\t replace: replace,\n\t createPath: createPath,\n\t createHref: createHref,\n\t createLocation: createLocation\n\t });\n\t };\n\t};\n\t\n\texports.default = useQueries;\n\n/***/ }),\n/* 120 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar strictUriEncode = __webpack_require__(121);\n\tvar objectAssign = __webpack_require__(40);\n\t\n\tfunction encoderForArrayFormat(opts) {\n\t\tswitch (opts.arrayFormat) {\n\t\t\tcase 'index':\n\t\t\t\treturn function (key, value, index) {\n\t\t\t\t\treturn value === null ? [\n\t\t\t\t\t\tencode(key, opts),\n\t\t\t\t\t\t'[',\n\t\t\t\t\t\tindex,\n\t\t\t\t\t\t']'\n\t\t\t\t\t].join('') : [\n\t\t\t\t\t\tencode(key, opts),\n\t\t\t\t\t\t'[',\n\t\t\t\t\t\tencode(index, opts),\n\t\t\t\t\t\t']=',\n\t\t\t\t\t\tencode(value, opts)\n\t\t\t\t\t].join('');\n\t\t\t\t};\n\t\n\t\t\tcase 'bracket':\n\t\t\t\treturn function (key, value) {\n\t\t\t\t\treturn value === null ? encode(key, opts) : [\n\t\t\t\t\t\tencode(key, opts),\n\t\t\t\t\t\t'[]=',\n\t\t\t\t\t\tencode(value, opts)\n\t\t\t\t\t].join('');\n\t\t\t\t};\n\t\n\t\t\tdefault:\n\t\t\t\treturn function (key, value) {\n\t\t\t\t\treturn value === null ? encode(key, opts) : [\n\t\t\t\t\t\tencode(key, opts),\n\t\t\t\t\t\t'=',\n\t\t\t\t\t\tencode(value, opts)\n\t\t\t\t\t].join('');\n\t\t\t\t};\n\t\t}\n\t}\n\t\n\tfunction parserForArrayFormat(opts) {\n\t\tvar result;\n\t\n\t\tswitch (opts.arrayFormat) {\n\t\t\tcase 'index':\n\t\t\t\treturn function (key, value, accumulator) {\n\t\t\t\t\tresult = /\\[(\\d*)\\]$/.exec(key);\n\t\n\t\t\t\t\tkey = key.replace(/\\[\\d*\\]$/, '');\n\t\n\t\t\t\t\tif (!result) {\n\t\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\n\t\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\t\taccumulator[key] = {};\n\t\t\t\t\t}\n\t\n\t\t\t\t\taccumulator[key][result[1]] = value;\n\t\t\t\t};\n\t\n\t\t\tcase 'bracket':\n\t\t\t\treturn function (key, value, accumulator) {\n\t\t\t\t\tresult = /(\\[\\])$/.exec(key);\n\t\t\t\t\tkey = key.replace(/\\[\\]$/, '');\n\t\n\t\t\t\t\tif (!result) {\n\t\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\t\treturn;\n\t\t\t\t\t} else if (accumulator[key] === undefined) {\n\t\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\n\t\t\t\t\taccumulator[key] = [].concat(accumulator[key], value);\n\t\t\t\t};\n\t\n\t\t\tdefault:\n\t\t\t\treturn function (key, value, accumulator) {\n\t\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\n\t\t\t\t\taccumulator[key] = [].concat(accumulator[key], value);\n\t\t\t\t};\n\t\t}\n\t}\n\t\n\tfunction encode(value, opts) {\n\t\tif (opts.encode) {\n\t\t\treturn opts.strict ? strictUriEncode(value) : encodeURIComponent(value);\n\t\t}\n\t\n\t\treturn value;\n\t}\n\t\n\tfunction keysSorter(input) {\n\t\tif (Array.isArray(input)) {\n\t\t\treturn input.sort();\n\t\t} else if (typeof input === 'object') {\n\t\t\treturn keysSorter(Object.keys(input)).sort(function (a, b) {\n\t\t\t\treturn Number(a) - Number(b);\n\t\t\t}).map(function (key) {\n\t\t\t\treturn input[key];\n\t\t\t});\n\t\t}\n\t\n\t\treturn input;\n\t}\n\t\n\texports.extract = function (str) {\n\t\treturn str.split('?')[1] || '';\n\t};\n\t\n\texports.parse = function (str, opts) {\n\t\topts = objectAssign({arrayFormat: 'none'}, opts);\n\t\n\t\tvar formatter = parserForArrayFormat(opts);\n\t\n\t\t// Create an object with no prototype\n\t\t// https://github.com/sindresorhus/query-string/issues/47\n\t\tvar ret = Object.create(null);\n\t\n\t\tif (typeof str !== 'string') {\n\t\t\treturn ret;\n\t\t}\n\t\n\t\tstr = str.trim().replace(/^(\\?|#|&)/, '');\n\t\n\t\tif (!str) {\n\t\t\treturn ret;\n\t\t}\n\t\n\t\tstr.split('&').forEach(function (param) {\n\t\t\tvar parts = param.replace(/\\+/g, ' ').split('=');\n\t\t\t// Firefox (pre 40) decodes `%3D` to `=`\n\t\t\t// https://github.com/sindresorhus/query-string/pull/37\n\t\t\tvar key = parts.shift();\n\t\t\tvar val = parts.length > 0 ? parts.join('=') : undefined;\n\t\n\t\t\t// missing `=` should be `null`:\n\t\t\t// http://w3.org/TR/2012/WD-url-20120524/#collect-url-parameters\n\t\t\tval = val === undefined ? null : decodeURIComponent(val);\n\t\n\t\t\tformatter(decodeURIComponent(key), val, ret);\n\t\t});\n\t\n\t\treturn Object.keys(ret).sort().reduce(function (result, key) {\n\t\t\tvar val = ret[key];\n\t\t\tif (Boolean(val) && typeof val === 'object' && !Array.isArray(val)) {\n\t\t\t\t// Sort object keys, not values\n\t\t\t\tresult[key] = keysSorter(val);\n\t\t\t} else {\n\t\t\t\tresult[key] = val;\n\t\t\t}\n\t\n\t\t\treturn result;\n\t\t}, Object.create(null));\n\t};\n\t\n\texports.stringify = function (obj, opts) {\n\t\tvar defaults = {\n\t\t\tencode: true,\n\t\t\tstrict: true,\n\t\t\tarrayFormat: 'none'\n\t\t};\n\t\n\t\topts = objectAssign(defaults, opts);\n\t\n\t\tvar formatter = encoderForArrayFormat(opts);\n\t\n\t\treturn obj ? Object.keys(obj).sort().map(function (key) {\n\t\t\tvar val = obj[key];\n\t\n\t\t\tif (val === undefined) {\n\t\t\t\treturn '';\n\t\t\t}\n\t\n\t\t\tif (val === null) {\n\t\t\t\treturn encode(key, opts);\n\t\t\t}\n\t\n\t\t\tif (Array.isArray(val)) {\n\t\t\t\tvar result = [];\n\t\n\t\t\t\tval.slice().forEach(function (val2) {\n\t\t\t\t\tif (val2 === undefined) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\n\t\t\t\t\tresult.push(formatter(key, val2, result.length));\n\t\t\t\t});\n\t\n\t\t\t\treturn result.join('&');\n\t\t\t}\n\t\n\t\t\treturn encode(key, opts) + '=' + encode(val, opts);\n\t\t}).filter(function (x) {\n\t\t\treturn x.length > 0;\n\t\t}).join('&') : '';\n\t};\n\n\n/***/ }),\n/* 121 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\tmodule.exports = function (str) {\n\t\treturn encodeURIComponent(str).replace(/[!'()*]/g, function (c) {\n\t\t\treturn '%' + c.charCodeAt(0).toString(16).toUpperCase();\n\t\t});\n\t};\n\n\n/***/ }),\n/* 122 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _warning = __webpack_require__(96);\n\t\n\tvar _warning2 = _interopRequireDefault(_warning);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar runTransitionHook = function runTransitionHook(hook, location, callback) {\n\t var result = hook(location, callback);\n\t\n\t if (hook.length < 2) {\n\t // Assume the hook runs synchronously and automatically\n\t // call the callback with the return value.\n\t callback(result);\n\t } else {\n\t false ? (0, _warning2.default)(result === undefined, 'You should not \"return\" in a transition hook with a callback argument; ' + 'call the callback instead') : void 0;\n\t }\n\t};\n\t\n\texports.default = runTransitionHook;\n\n/***/ }),\n/* 123 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.locationsAreEqual = exports.statesAreEqual = exports.createLocation = exports.createQuery = undefined;\n\t\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _warning = __webpack_require__(96);\n\t\n\tvar _warning2 = _interopRequireDefault(_warning);\n\t\n\tvar _PathUtils = __webpack_require__(124);\n\t\n\tvar _Actions = __webpack_require__(117);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar createQuery = exports.createQuery = function createQuery(props) {\n\t return _extends(Object.create(null), props);\n\t};\n\t\n\tvar createLocation = exports.createLocation = function createLocation() {\n\t var input = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '/';\n\t var action = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _Actions.POP;\n\t var key = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;\n\t\n\t var object = typeof input === 'string' ? (0, _PathUtils.parsePath)(input) : input;\n\t\n\t false ? (0, _warning2.default)(!object.path, 'Location descriptor objects should have a `pathname`, not a `path`.') : void 0;\n\t\n\t var pathname = object.pathname || '/';\n\t var search = object.search || '';\n\t var hash = object.hash || '';\n\t var state = object.state;\n\t\n\t return {\n\t pathname: pathname,\n\t search: search,\n\t hash: hash,\n\t state: state,\n\t action: action,\n\t key: key\n\t };\n\t};\n\t\n\tvar isDate = function isDate(object) {\n\t return Object.prototype.toString.call(object) === '[object Date]';\n\t};\n\t\n\tvar statesAreEqual = exports.statesAreEqual = function statesAreEqual(a, b) {\n\t if (a === b) return true;\n\t\n\t var typeofA = typeof a === 'undefined' ? 'undefined' : _typeof(a);\n\t var typeofB = typeof b === 'undefined' ? 'undefined' : _typeof(b);\n\t\n\t if (typeofA !== typeofB) return false;\n\t\n\t !(typeofA !== 'function') ? false ? (0, _invariant2.default)(false, 'You must not store functions in location state') : (0, _invariant2.default)(false) : void 0;\n\t\n\t // Not the same object, but same type.\n\t if (typeofA === 'object') {\n\t !!(isDate(a) && isDate(b)) ? false ? (0, _invariant2.default)(false, 'You must not store Date objects in location state') : (0, _invariant2.default)(false) : void 0;\n\t\n\t if (!Array.isArray(a)) {\n\t var keysofA = Object.keys(a);\n\t var keysofB = Object.keys(b);\n\t return keysofA.length === keysofB.length && keysofA.every(function (key) {\n\t return statesAreEqual(a[key], b[key]);\n\t });\n\t }\n\t\n\t return Array.isArray(b) && a.length === b.length && a.every(function (item, index) {\n\t return statesAreEqual(item, b[index]);\n\t });\n\t }\n\t\n\t // All other serializable types (string, number, boolean)\n\t // should be strict equal.\n\t return false;\n\t};\n\t\n\tvar locationsAreEqual = exports.locationsAreEqual = function locationsAreEqual(a, b) {\n\t return a.key === b.key &&\n\t // a.action === b.action && // Different action !== location change.\n\t a.pathname === b.pathname && a.search === b.search && a.hash === b.hash && statesAreEqual(a.state, b.state);\n\t};\n\n/***/ }),\n/* 124 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.createPath = exports.parsePath = exports.getQueryStringValueFromPath = exports.stripQueryStringValueFromPath = exports.addQueryStringValueToPath = undefined;\n\t\n\tvar _warning = __webpack_require__(96);\n\t\n\tvar _warning2 = _interopRequireDefault(_warning);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar addQueryStringValueToPath = exports.addQueryStringValueToPath = function addQueryStringValueToPath(path, key, value) {\n\t var _parsePath = parsePath(path),\n\t pathname = _parsePath.pathname,\n\t search = _parsePath.search,\n\t hash = _parsePath.hash;\n\t\n\t return createPath({\n\t pathname: pathname,\n\t search: search + (search.indexOf('?') === -1 ? '?' : '&') + key + '=' + value,\n\t hash: hash\n\t });\n\t};\n\t\n\tvar stripQueryStringValueFromPath = exports.stripQueryStringValueFromPath = function stripQueryStringValueFromPath(path, key) {\n\t var _parsePath2 = parsePath(path),\n\t pathname = _parsePath2.pathname,\n\t search = _parsePath2.search,\n\t hash = _parsePath2.hash;\n\t\n\t return createPath({\n\t pathname: pathname,\n\t search: search.replace(new RegExp('([?&])' + key + '=[a-zA-Z0-9]+(&?)'), function (match, prefix, suffix) {\n\t return prefix === '?' ? prefix : suffix;\n\t }),\n\t hash: hash\n\t });\n\t};\n\t\n\tvar getQueryStringValueFromPath = exports.getQueryStringValueFromPath = function getQueryStringValueFromPath(path, key) {\n\t var _parsePath3 = parsePath(path),\n\t search = _parsePath3.search;\n\t\n\t var match = search.match(new RegExp('[?&]' + key + '=([a-zA-Z0-9]+)'));\n\t return match && match[1];\n\t};\n\t\n\tvar extractPath = function extractPath(string) {\n\t var match = string.match(/^(https?:)?\\/\\/[^\\/]*/);\n\t return match == null ? string : string.substring(match[0].length);\n\t};\n\t\n\tvar parsePath = exports.parsePath = function parsePath(path) {\n\t var pathname = extractPath(path);\n\t var search = '';\n\t var hash = '';\n\t\n\t false ? (0, _warning2.default)(path === pathname, 'A path must be pathname + search + hash only, not a full URL like \"%s\"', path) : void 0;\n\t\n\t var hashIndex = pathname.indexOf('#');\n\t if (hashIndex !== -1) {\n\t hash = pathname.substring(hashIndex);\n\t pathname = pathname.substring(0, hashIndex);\n\t }\n\t\n\t var searchIndex = pathname.indexOf('?');\n\t if (searchIndex !== -1) {\n\t search = pathname.substring(searchIndex);\n\t pathname = pathname.substring(0, searchIndex);\n\t }\n\t\n\t if (pathname === '') pathname = '/';\n\t\n\t return {\n\t pathname: pathname,\n\t search: search,\n\t hash: hash\n\t };\n\t};\n\t\n\tvar createPath = exports.createPath = function createPath(location) {\n\t if (location == null || typeof location === 'string') return location;\n\t\n\t var basename = location.basename,\n\t pathname = location.pathname,\n\t search = location.search,\n\t hash = location.hash;\n\t\n\t var path = (basename || '') + pathname;\n\t\n\t if (search && search !== '?') path += search;\n\t\n\t if (hash) path += hash;\n\t\n\t return path;\n\t};\n\n/***/ }),\n/* 125 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _runTransitionHook = __webpack_require__(122);\n\t\n\tvar _runTransitionHook2 = _interopRequireDefault(_runTransitionHook);\n\t\n\tvar _PathUtils = __webpack_require__(124);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar useBasename = function useBasename(createHistory) {\n\t return function () {\n\t var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t\n\t var history = createHistory(options);\n\t var basename = options.basename;\n\t\n\t\n\t var addBasename = function addBasename(location) {\n\t if (!location) return location;\n\t\n\t if (basename && location.basename == null) {\n\t if (location.pathname.toLowerCase().indexOf(basename.toLowerCase()) === 0) {\n\t location.pathname = location.pathname.substring(basename.length);\n\t location.basename = basename;\n\t\n\t if (location.pathname === '') location.pathname = '/';\n\t } else {\n\t location.basename = '';\n\t }\n\t }\n\t\n\t return location;\n\t };\n\t\n\t var prependBasename = function prependBasename(location) {\n\t if (!basename) return location;\n\t\n\t var object = typeof location === 'string' ? (0, _PathUtils.parsePath)(location) : location;\n\t var pname = object.pathname;\n\t var normalizedBasename = basename.slice(-1) === '/' ? basename : basename + '/';\n\t var normalizedPathname = pname.charAt(0) === '/' ? pname.slice(1) : pname;\n\t var pathname = normalizedBasename + normalizedPathname;\n\t\n\t return _extends({}, object, {\n\t pathname: pathname\n\t });\n\t };\n\t\n\t // Override all read methods with basename-aware versions.\n\t var getCurrentLocation = function getCurrentLocation() {\n\t return addBasename(history.getCurrentLocation());\n\t };\n\t\n\t var listenBefore = function listenBefore(hook) {\n\t return history.listenBefore(function (location, callback) {\n\t return (0, _runTransitionHook2.default)(hook, addBasename(location), callback);\n\t });\n\t };\n\t\n\t var listen = function listen(listener) {\n\t return history.listen(function (location) {\n\t return listener(addBasename(location));\n\t });\n\t };\n\t\n\t // Override all write methods with basename-aware versions.\n\t var push = function push(location) {\n\t return history.push(prependBasename(location));\n\t };\n\t\n\t var replace = function replace(location) {\n\t return history.replace(prependBasename(location));\n\t };\n\t\n\t var createPath = function createPath(location) {\n\t return history.createPath(prependBasename(location));\n\t };\n\t\n\t var createHref = function createHref(location) {\n\t return history.createHref(prependBasename(location));\n\t };\n\t\n\t var createLocation = function createLocation(location) {\n\t for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n\t args[_key - 1] = arguments[_key];\n\t }\n\t\n\t return addBasename(history.createLocation.apply(history, [prependBasename(location)].concat(args)));\n\t };\n\t\n\t return _extends({}, history, {\n\t getCurrentLocation: getCurrentLocation,\n\t listenBefore: listenBefore,\n\t listen: listen,\n\t push: push,\n\t replace: replace,\n\t createPath: createPath,\n\t createHref: createHref,\n\t createLocation: createLocation\n\t });\n\t };\n\t};\n\t\n\texports.default = useBasename;\n\n/***/ }),\n/* 126 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _warning = __webpack_require__(96);\n\t\n\tvar _warning2 = _interopRequireDefault(_warning);\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _LocationUtils = __webpack_require__(123);\n\t\n\tvar _PathUtils = __webpack_require__(124);\n\t\n\tvar _createHistory = __webpack_require__(127);\n\t\n\tvar _createHistory2 = _interopRequireDefault(_createHistory);\n\t\n\tvar _Actions = __webpack_require__(117);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar createStateStorage = function createStateStorage(entries) {\n\t return entries.filter(function (entry) {\n\t return entry.state;\n\t }).reduce(function (memo, entry) {\n\t memo[entry.key] = entry.state;\n\t return memo;\n\t }, {});\n\t};\n\t\n\tvar createMemoryHistory = function createMemoryHistory() {\n\t var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t\n\t if (Array.isArray(options)) {\n\t options = { entries: options };\n\t } else if (typeof options === 'string') {\n\t options = { entries: [options] };\n\t }\n\t\n\t var getCurrentLocation = function getCurrentLocation() {\n\t var entry = entries[current];\n\t var path = (0, _PathUtils.createPath)(entry);\n\t\n\t var key = void 0,\n\t state = void 0;\n\t if (entry.key) {\n\t key = entry.key;\n\t state = readState(key);\n\t }\n\t\n\t var init = (0, _PathUtils.parsePath)(path);\n\t\n\t return (0, _LocationUtils.createLocation)(_extends({}, init, { state: state }), undefined, key);\n\t };\n\t\n\t var canGo = function canGo(n) {\n\t var index = current + n;\n\t return index >= 0 && index < entries.length;\n\t };\n\t\n\t var go = function go(n) {\n\t if (!n) return;\n\t\n\t if (!canGo(n)) {\n\t false ? (0, _warning2.default)(false, 'Cannot go(%s) there is not enough history', n) : void 0;\n\t\n\t return;\n\t }\n\t\n\t current += n;\n\t var currentLocation = getCurrentLocation();\n\t\n\t // Change action to POP\n\t history.transitionTo(_extends({}, currentLocation, { action: _Actions.POP }));\n\t };\n\t\n\t var pushLocation = function pushLocation(location) {\n\t current += 1;\n\t\n\t if (current < entries.length) entries.splice(current);\n\t\n\t entries.push(location);\n\t\n\t saveState(location.key, location.state);\n\t };\n\t\n\t var replaceLocation = function replaceLocation(location) {\n\t entries[current] = location;\n\t saveState(location.key, location.state);\n\t };\n\t\n\t var history = (0, _createHistory2.default)(_extends({}, options, {\n\t getCurrentLocation: getCurrentLocation,\n\t pushLocation: pushLocation,\n\t replaceLocation: replaceLocation,\n\t go: go\n\t }));\n\t\n\t var _options = options,\n\t entries = _options.entries,\n\t current = _options.current;\n\t\n\t\n\t if (typeof entries === 'string') {\n\t entries = [entries];\n\t } else if (!Array.isArray(entries)) {\n\t entries = ['/'];\n\t }\n\t\n\t entries = entries.map(function (entry) {\n\t return (0, _LocationUtils.createLocation)(entry);\n\t });\n\t\n\t if (current == null) {\n\t current = entries.length - 1;\n\t } else {\n\t !(current >= 0 && current < entries.length) ? false ? (0, _invariant2.default)(false, 'Current index must be >= 0 and < %s, was %s', entries.length, current) : (0, _invariant2.default)(false) : void 0;\n\t }\n\t\n\t var storage = createStateStorage(entries);\n\t\n\t var saveState = function saveState(key, state) {\n\t return storage[key] = state;\n\t };\n\t\n\t var readState = function readState(key) {\n\t return storage[key];\n\t };\n\t\n\t return _extends({}, history, {\n\t canGo: canGo\n\t });\n\t};\n\t\n\texports.default = createMemoryHistory;\n\n/***/ }),\n/* 127 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _AsyncUtils = __webpack_require__(128);\n\t\n\tvar _PathUtils = __webpack_require__(124);\n\t\n\tvar _runTransitionHook = __webpack_require__(122);\n\t\n\tvar _runTransitionHook2 = _interopRequireDefault(_runTransitionHook);\n\t\n\tvar _Actions = __webpack_require__(117);\n\t\n\tvar _LocationUtils = __webpack_require__(123);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar createHistory = function createHistory() {\n\t var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t var getCurrentLocation = options.getCurrentLocation,\n\t getUserConfirmation = options.getUserConfirmation,\n\t pushLocation = options.pushLocation,\n\t replaceLocation = options.replaceLocation,\n\t go = options.go,\n\t keyLength = options.keyLength;\n\t\n\t\n\t var currentLocation = void 0;\n\t var pendingLocation = void 0;\n\t var beforeListeners = [];\n\t var listeners = [];\n\t var allKeys = [];\n\t\n\t var getCurrentIndex = function getCurrentIndex() {\n\t if (pendingLocation && pendingLocation.action === _Actions.POP) return allKeys.indexOf(pendingLocation.key);\n\t\n\t if (currentLocation) return allKeys.indexOf(currentLocation.key);\n\t\n\t return -1;\n\t };\n\t\n\t var updateLocation = function updateLocation(nextLocation) {\n\t var currentIndex = getCurrentIndex();\n\t\n\t currentLocation = nextLocation;\n\t\n\t if (currentLocation.action === _Actions.PUSH) {\n\t allKeys = [].concat(allKeys.slice(0, currentIndex + 1), [currentLocation.key]);\n\t } else if (currentLocation.action === _Actions.REPLACE) {\n\t allKeys[currentIndex] = currentLocation.key;\n\t }\n\t\n\t listeners.forEach(function (listener) {\n\t return listener(currentLocation);\n\t });\n\t };\n\t\n\t var listenBefore = function listenBefore(listener) {\n\t beforeListeners.push(listener);\n\t\n\t return function () {\n\t return beforeListeners = beforeListeners.filter(function (item) {\n\t return item !== listener;\n\t });\n\t };\n\t };\n\t\n\t var listen = function listen(listener) {\n\t listeners.push(listener);\n\t\n\t return function () {\n\t return listeners = listeners.filter(function (item) {\n\t return item !== listener;\n\t });\n\t };\n\t };\n\t\n\t var confirmTransitionTo = function confirmTransitionTo(location, callback) {\n\t (0, _AsyncUtils.loopAsync)(beforeListeners.length, function (index, next, done) {\n\t (0, _runTransitionHook2.default)(beforeListeners[index], location, function (result) {\n\t return result != null ? done(result) : next();\n\t });\n\t }, function (message) {\n\t if (getUserConfirmation && typeof message === 'string') {\n\t getUserConfirmation(message, function (ok) {\n\t return callback(ok !== false);\n\t });\n\t } else {\n\t callback(message !== false);\n\t }\n\t });\n\t };\n\t\n\t var transitionTo = function transitionTo(nextLocation) {\n\t if (currentLocation && (0, _LocationUtils.locationsAreEqual)(currentLocation, nextLocation) || pendingLocation && (0, _LocationUtils.locationsAreEqual)(pendingLocation, nextLocation)) return; // Nothing to do\n\t\n\t pendingLocation = nextLocation;\n\t\n\t confirmTransitionTo(nextLocation, function (ok) {\n\t if (pendingLocation !== nextLocation) return; // Transition was interrupted during confirmation\n\t\n\t pendingLocation = null;\n\t\n\t if (ok) {\n\t // Treat PUSH to same path like REPLACE to be consistent with browsers\n\t if (nextLocation.action === _Actions.PUSH) {\n\t var prevPath = (0, _PathUtils.createPath)(currentLocation);\n\t var nextPath = (0, _PathUtils.createPath)(nextLocation);\n\t\n\t if (nextPath === prevPath && (0, _LocationUtils.statesAreEqual)(currentLocation.state, nextLocation.state)) nextLocation.action = _Actions.REPLACE;\n\t }\n\t\n\t if (nextLocation.action === _Actions.POP) {\n\t updateLocation(nextLocation);\n\t } else if (nextLocation.action === _Actions.PUSH) {\n\t if (pushLocation(nextLocation) !== false) updateLocation(nextLocation);\n\t } else if (nextLocation.action === _Actions.REPLACE) {\n\t if (replaceLocation(nextLocation) !== false) updateLocation(nextLocation);\n\t }\n\t } else if (currentLocation && nextLocation.action === _Actions.POP) {\n\t var prevIndex = allKeys.indexOf(currentLocation.key);\n\t var nextIndex = allKeys.indexOf(nextLocation.key);\n\t\n\t if (prevIndex !== -1 && nextIndex !== -1) go(prevIndex - nextIndex); // Restore the URL\n\t }\n\t });\n\t };\n\t\n\t var push = function push(input) {\n\t return transitionTo(createLocation(input, _Actions.PUSH));\n\t };\n\t\n\t var replace = function replace(input) {\n\t return transitionTo(createLocation(input, _Actions.REPLACE));\n\t };\n\t\n\t var goBack = function goBack() {\n\t return go(-1);\n\t };\n\t\n\t var goForward = function goForward() {\n\t return go(1);\n\t };\n\t\n\t var createKey = function createKey() {\n\t return Math.random().toString(36).substr(2, keyLength || 6);\n\t };\n\t\n\t var createHref = function createHref(location) {\n\t return (0, _PathUtils.createPath)(location);\n\t };\n\t\n\t var createLocation = function createLocation(location, action) {\n\t var key = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : createKey();\n\t return (0, _LocationUtils.createLocation)(location, action, key);\n\t };\n\t\n\t return {\n\t getCurrentLocation: getCurrentLocation,\n\t listenBefore: listenBefore,\n\t listen: listen,\n\t transitionTo: transitionTo,\n\t push: push,\n\t replace: replace,\n\t go: go,\n\t goBack: goBack,\n\t goForward: goForward,\n\t createKey: createKey,\n\t createPath: _PathUtils.createPath,\n\t createHref: createHref,\n\t createLocation: createLocation\n\t };\n\t};\n\t\n\texports.default = createHistory;\n\n/***/ }),\n/* 128 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\t\n\texports.__esModule = true;\n\tvar loopAsync = exports.loopAsync = function loopAsync(turns, work, callback) {\n\t var currentTurn = 0,\n\t isDone = false;\n\t var isSync = false,\n\t hasNext = false,\n\t doneArgs = void 0;\n\t\n\t var done = function done() {\n\t for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t args[_key] = arguments[_key];\n\t }\n\t\n\t isDone = true;\n\t\n\t if (isSync) {\n\t // Iterate instead of recursing if possible.\n\t doneArgs = args;\n\t return;\n\t }\n\t\n\t callback.apply(undefined, args);\n\t };\n\t\n\t var next = function next() {\n\t if (isDone) return;\n\t\n\t hasNext = true;\n\t\n\t if (isSync) return; // Iterate instead of recursing if possible.\n\t\n\t isSync = true;\n\t\n\t while (!isDone && currentTurn < turns && hasNext) {\n\t hasNext = false;\n\t work(currentTurn++, next, done);\n\t }\n\t\n\t isSync = false;\n\t\n\t if (isDone) {\n\t // This means the loop finished synchronously.\n\t callback.apply(undefined, doneArgs);\n\t return;\n\t }\n\t\n\t if (currentTurn >= turns && hasNext) {\n\t isDone = true;\n\t callback();\n\t }\n\t };\n\t\n\t next();\n\t};\n\n/***/ }),\n/* 129 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.default = useRouterHistory;\n\t\n\tvar _useQueries = __webpack_require__(119);\n\t\n\tvar _useQueries2 = _interopRequireDefault(_useQueries);\n\t\n\tvar _useBasename = __webpack_require__(125);\n\t\n\tvar _useBasename2 = _interopRequireDefault(_useBasename);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction useRouterHistory(createHistory) {\n\t return function (options) {\n\t var history = (0, _useQueries2.default)((0, _useBasename2.default)(createHistory))(options);\n\t return history;\n\t };\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 130 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _react = __webpack_require__(38);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _RouterContext = __webpack_require__(105);\n\t\n\tvar _RouterContext2 = _interopRequireDefault(_RouterContext);\n\t\n\tvar _routerWarning = __webpack_require__(95);\n\t\n\tvar _routerWarning2 = _interopRequireDefault(_routerWarning);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = function () {\n\t for (var _len = arguments.length, middlewares = Array(_len), _key = 0; _key < _len; _key++) {\n\t middlewares[_key] = arguments[_key];\n\t }\n\t\n\t if (false) {\n\t middlewares.forEach(function (middleware, index) {\n\t process.env.NODE_ENV !== 'production' ? (0, _routerWarning2.default)(middleware.renderRouterContext || middleware.renderRouteComponent, 'The middleware specified at index ' + index + ' does not appear to be ' + 'a valid React Router middleware.') : void 0;\n\t });\n\t }\n\t\n\t var withContext = middlewares.map(function (middleware) {\n\t return middleware.renderRouterContext;\n\t }).filter(Boolean);\n\t var withComponent = middlewares.map(function (middleware) {\n\t return middleware.renderRouteComponent;\n\t }).filter(Boolean);\n\t\n\t var makeCreateElement = function makeCreateElement() {\n\t var baseCreateElement = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : _react.createElement;\n\t return function (Component, props) {\n\t return withComponent.reduceRight(function (previous, renderRouteComponent) {\n\t return renderRouteComponent(previous, props);\n\t }, baseCreateElement(Component, props));\n\t };\n\t };\n\t\n\t return function (renderProps) {\n\t return withContext.reduceRight(function (previous, renderRouterContext) {\n\t return renderRouterContext(previous, renderProps);\n\t }, _react2.default.createElement(_RouterContext2.default, _extends({}, renderProps, {\n\t createElement: makeCreateElement(renderProps.createElement)\n\t })));\n\t };\n\t};\n\t\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 131 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _createBrowserHistory = __webpack_require__(132);\n\t\n\tvar _createBrowserHistory2 = _interopRequireDefault(_createBrowserHistory);\n\t\n\tvar _createRouterHistory = __webpack_require__(138);\n\t\n\tvar _createRouterHistory2 = _interopRequireDefault(_createRouterHistory);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = (0, _createRouterHistory2.default)(_createBrowserHistory2.default);\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 132 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _ExecutionEnvironment = __webpack_require__(133);\n\t\n\tvar _BrowserProtocol = __webpack_require__(134);\n\t\n\tvar BrowserProtocol = _interopRequireWildcard(_BrowserProtocol);\n\t\n\tvar _RefreshProtocol = __webpack_require__(137);\n\t\n\tvar RefreshProtocol = _interopRequireWildcard(_RefreshProtocol);\n\t\n\tvar _DOMUtils = __webpack_require__(135);\n\t\n\tvar _createHistory = __webpack_require__(127);\n\t\n\tvar _createHistory2 = _interopRequireDefault(_createHistory);\n\t\n\tfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t/**\n\t * Creates and returns a history object that uses HTML5's history API\n\t * (pushState, replaceState, and the popstate event) to manage history.\n\t * This is the recommended method of managing history in browsers because\n\t * it provides the cleanest URLs.\n\t *\n\t * Note: In browsers that do not support the HTML5 history API full\n\t * page reloads will be used to preserve clean URLs. You can force this\n\t * behavior using { forceRefresh: true } in options.\n\t */\n\tvar createBrowserHistory = function createBrowserHistory() {\n\t var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t\n\t !_ExecutionEnvironment.canUseDOM ? false ? (0, _invariant2.default)(false, 'Browser history needs a DOM') : (0, _invariant2.default)(false) : void 0;\n\t\n\t var useRefresh = options.forceRefresh || !(0, _DOMUtils.supportsHistory)();\n\t var Protocol = useRefresh ? RefreshProtocol : BrowserProtocol;\n\t\n\t var getUserConfirmation = Protocol.getUserConfirmation,\n\t getCurrentLocation = Protocol.getCurrentLocation,\n\t pushLocation = Protocol.pushLocation,\n\t replaceLocation = Protocol.replaceLocation,\n\t go = Protocol.go;\n\t\n\t\n\t var history = (0, _createHistory2.default)(_extends({\n\t getUserConfirmation: getUserConfirmation }, options, {\n\t getCurrentLocation: getCurrentLocation,\n\t pushLocation: pushLocation,\n\t replaceLocation: replaceLocation,\n\t go: go\n\t }));\n\t\n\t var listenerCount = 0,\n\t stopListener = void 0;\n\t\n\t var startListener = function startListener(listener, before) {\n\t if (++listenerCount === 1) stopListener = BrowserProtocol.startListener(history.transitionTo);\n\t\n\t var unlisten = before ? history.listenBefore(listener) : history.listen(listener);\n\t\n\t return function () {\n\t unlisten();\n\t\n\t if (--listenerCount === 0) stopListener();\n\t };\n\t };\n\t\n\t var listenBefore = function listenBefore(listener) {\n\t return startListener(listener, true);\n\t };\n\t\n\t var listen = function listen(listener) {\n\t return startListener(listener, false);\n\t };\n\t\n\t return _extends({}, history, {\n\t listenBefore: listenBefore,\n\t listen: listen\n\t });\n\t};\n\t\n\texports.default = createBrowserHistory;\n\n/***/ }),\n/* 133 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\tvar canUseDOM = exports.canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);\n\n/***/ }),\n/* 134 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.go = exports.replaceLocation = exports.pushLocation = exports.startListener = exports.getUserConfirmation = exports.getCurrentLocation = undefined;\n\t\n\tvar _LocationUtils = __webpack_require__(123);\n\t\n\tvar _DOMUtils = __webpack_require__(135);\n\t\n\tvar _DOMStateStorage = __webpack_require__(136);\n\t\n\tvar _PathUtils = __webpack_require__(124);\n\t\n\tvar _ExecutionEnvironment = __webpack_require__(133);\n\t\n\tvar PopStateEvent = 'popstate';\n\tvar HashChangeEvent = 'hashchange';\n\t\n\tvar needsHashchangeListener = _ExecutionEnvironment.canUseDOM && !(0, _DOMUtils.supportsPopstateOnHashchange)();\n\t\n\tvar _createLocation = function _createLocation(historyState) {\n\t var key = historyState && historyState.key;\n\t\n\t return (0, _LocationUtils.createLocation)({\n\t pathname: window.location.pathname,\n\t search: window.location.search,\n\t hash: window.location.hash,\n\t state: key ? (0, _DOMStateStorage.readState)(key) : undefined\n\t }, undefined, key);\n\t};\n\t\n\tvar getCurrentLocation = exports.getCurrentLocation = function getCurrentLocation() {\n\t var historyState = void 0;\n\t try {\n\t historyState = window.history.state || {};\n\t } catch (error) {\n\t // IE 11 sometimes throws when accessing window.history.state\n\t // See https://github.com/ReactTraining/history/pull/289\n\t historyState = {};\n\t }\n\t\n\t return _createLocation(historyState);\n\t};\n\t\n\tvar getUserConfirmation = exports.getUserConfirmation = function getUserConfirmation(message, callback) {\n\t return callback(window.confirm(message));\n\t}; // eslint-disable-line no-alert\n\t\n\tvar startListener = exports.startListener = function startListener(listener) {\n\t var handlePopState = function handlePopState(event) {\n\t if ((0, _DOMUtils.isExtraneousPopstateEvent)(event)) // Ignore extraneous popstate events in WebKit\n\t return;\n\t listener(_createLocation(event.state));\n\t };\n\t\n\t (0, _DOMUtils.addEventListener)(window, PopStateEvent, handlePopState);\n\t\n\t var handleUnpoppedHashChange = function handleUnpoppedHashChange() {\n\t return listener(getCurrentLocation());\n\t };\n\t\n\t if (needsHashchangeListener) {\n\t (0, _DOMUtils.addEventListener)(window, HashChangeEvent, handleUnpoppedHashChange);\n\t }\n\t\n\t return function () {\n\t (0, _DOMUtils.removeEventListener)(window, PopStateEvent, handlePopState);\n\t\n\t if (needsHashchangeListener) {\n\t (0, _DOMUtils.removeEventListener)(window, HashChangeEvent, handleUnpoppedHashChange);\n\t }\n\t };\n\t};\n\t\n\tvar updateLocation = function updateLocation(location, updateState) {\n\t var state = location.state,\n\t key = location.key;\n\t\n\t\n\t if (state !== undefined) (0, _DOMStateStorage.saveState)(key, state);\n\t\n\t updateState({ key: key }, (0, _PathUtils.createPath)(location));\n\t};\n\t\n\tvar pushLocation = exports.pushLocation = function pushLocation(location) {\n\t return updateLocation(location, function (state, path) {\n\t return window.history.pushState(state, null, path);\n\t });\n\t};\n\t\n\tvar replaceLocation = exports.replaceLocation = function replaceLocation(location) {\n\t return updateLocation(location, function (state, path) {\n\t return window.history.replaceState(state, null, path);\n\t });\n\t};\n\t\n\tvar go = exports.go = function go(n) {\n\t if (n) window.history.go(n);\n\t};\n\n/***/ }),\n/* 135 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\tvar addEventListener = exports.addEventListener = function addEventListener(node, event, listener) {\n\t return node.addEventListener ? node.addEventListener(event, listener, false) : node.attachEvent('on' + event, listener);\n\t};\n\t\n\tvar removeEventListener = exports.removeEventListener = function removeEventListener(node, event, listener) {\n\t return node.removeEventListener ? node.removeEventListener(event, listener, false) : node.detachEvent('on' + event, listener);\n\t};\n\t\n\t/**\n\t * Returns true if the HTML5 history API is supported. Taken from Modernizr.\n\t *\n\t * https://github.com/Modernizr/Modernizr/blob/master/LICENSE\n\t * https://github.com/Modernizr/Modernizr/blob/master/feature-detects/history.js\n\t * changed to avoid false negatives for Windows Phones: https://github.com/reactjs/react-router/issues/586\n\t */\n\tvar supportsHistory = exports.supportsHistory = function supportsHistory() {\n\t var ua = window.navigator.userAgent;\n\t\n\t if ((ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) && ua.indexOf('Mobile Safari') !== -1 && ua.indexOf('Chrome') === -1 && ua.indexOf('Windows Phone') === -1) return false;\n\t\n\t return window.history && 'pushState' in window.history;\n\t};\n\t\n\t/**\n\t * Returns false if using go(n) with hash history causes a full page reload.\n\t */\n\tvar supportsGoWithoutReloadUsingHash = exports.supportsGoWithoutReloadUsingHash = function supportsGoWithoutReloadUsingHash() {\n\t return window.navigator.userAgent.indexOf('Firefox') === -1;\n\t};\n\t\n\t/**\n\t * Returns true if browser fires popstate on hash change.\n\t * IE10 and IE11 do not.\n\t */\n\tvar supportsPopstateOnHashchange = exports.supportsPopstateOnHashchange = function supportsPopstateOnHashchange() {\n\t return window.navigator.userAgent.indexOf('Trident') === -1;\n\t};\n\t\n\t/**\n\t * Returns true if a given popstate event is an extraneous WebKit event.\n\t * Accounts for the fact that Chrome on iOS fires real popstate events\n\t * containing undefined state when pressing the back button.\n\t */\n\tvar isExtraneousPopstateEvent = exports.isExtraneousPopstateEvent = function isExtraneousPopstateEvent(event) {\n\t return event.state === undefined && navigator.userAgent.indexOf('CriOS') === -1;\n\t};\n\n/***/ }),\n/* 136 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.readState = exports.saveState = undefined;\n\t\n\tvar _warning = __webpack_require__(96);\n\t\n\tvar _warning2 = _interopRequireDefault(_warning);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar QuotaExceededErrors = {\n\t QuotaExceededError: true,\n\t QUOTA_EXCEEDED_ERR: true\n\t};\n\t\n\tvar SecurityErrors = {\n\t SecurityError: true\n\t};\n\t\n\tvar KeyPrefix = '@@History/';\n\t\n\tvar createKey = function createKey(key) {\n\t return KeyPrefix + key;\n\t};\n\t\n\tvar saveState = exports.saveState = function saveState(key, state) {\n\t if (!window.sessionStorage) {\n\t // Session storage is not available or hidden.\n\t // sessionStorage is undefined in Internet Explorer when served via file protocol.\n\t false ? (0, _warning2.default)(false, '[history] Unable to save state; sessionStorage is not available') : void 0;\n\t\n\t return;\n\t }\n\t\n\t try {\n\t if (state == null) {\n\t window.sessionStorage.removeItem(createKey(key));\n\t } else {\n\t window.sessionStorage.setItem(createKey(key), JSON.stringify(state));\n\t }\n\t } catch (error) {\n\t if (SecurityErrors[error.name]) {\n\t // Blocking cookies in Chrome/Firefox/Safari throws SecurityError on any\n\t // attempt to access window.sessionStorage.\n\t false ? (0, _warning2.default)(false, '[history] Unable to save state; sessionStorage is not available due to security settings') : void 0;\n\t\n\t return;\n\t }\n\t\n\t if (QuotaExceededErrors[error.name] && window.sessionStorage.length === 0) {\n\t // Safari \"private mode\" throws QuotaExceededError.\n\t false ? (0, _warning2.default)(false, '[history] Unable to save state; sessionStorage is not available in Safari private mode') : void 0;\n\t\n\t return;\n\t }\n\t\n\t throw error;\n\t }\n\t};\n\t\n\tvar readState = exports.readState = function readState(key) {\n\t var json = void 0;\n\t try {\n\t json = window.sessionStorage.getItem(createKey(key));\n\t } catch (error) {\n\t if (SecurityErrors[error.name]) {\n\t // Blocking cookies in Chrome/Firefox/Safari throws SecurityError on any\n\t // attempt to access window.sessionStorage.\n\t false ? (0, _warning2.default)(false, '[history] Unable to read state; sessionStorage is not available due to security settings') : void 0;\n\t\n\t return undefined;\n\t }\n\t }\n\t\n\t if (json) {\n\t try {\n\t return JSON.parse(json);\n\t } catch (error) {\n\t // Ignore invalid JSON.\n\t }\n\t }\n\t\n\t return undefined;\n\t};\n\n/***/ }),\n/* 137 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.replaceLocation = exports.pushLocation = exports.getCurrentLocation = exports.go = exports.getUserConfirmation = undefined;\n\t\n\tvar _BrowserProtocol = __webpack_require__(134);\n\t\n\tObject.defineProperty(exports, 'getUserConfirmation', {\n\t enumerable: true,\n\t get: function get() {\n\t return _BrowserProtocol.getUserConfirmation;\n\t }\n\t});\n\tObject.defineProperty(exports, 'go', {\n\t enumerable: true,\n\t get: function get() {\n\t return _BrowserProtocol.go;\n\t }\n\t});\n\t\n\tvar _LocationUtils = __webpack_require__(123);\n\t\n\tvar _PathUtils = __webpack_require__(124);\n\t\n\tvar getCurrentLocation = exports.getCurrentLocation = function getCurrentLocation() {\n\t return (0, _LocationUtils.createLocation)(window.location);\n\t};\n\t\n\tvar pushLocation = exports.pushLocation = function pushLocation(location) {\n\t window.location.href = (0, _PathUtils.createPath)(location);\n\t return false; // Don't update location\n\t};\n\t\n\tvar replaceLocation = exports.replaceLocation = function replaceLocation(location) {\n\t window.location.replace((0, _PathUtils.createPath)(location));\n\t return false; // Don't update location\n\t};\n\n/***/ }),\n/* 138 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.default = createRouterHistory;\n\t\n\tvar _useRouterHistory = __webpack_require__(129);\n\t\n\tvar _useRouterHistory2 = _interopRequireDefault(_useRouterHistory);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);\n\t\n\tfunction createRouterHistory(createHistory) {\n\t var history = void 0;\n\t if (canUseDOM) history = (0, _useRouterHistory2.default)(createHistory)();\n\t return history;\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 139 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _createHashHistory = __webpack_require__(140);\n\t\n\tvar _createHashHistory2 = _interopRequireDefault(_createHashHistory);\n\t\n\tvar _createRouterHistory = __webpack_require__(138);\n\t\n\tvar _createRouterHistory2 = _interopRequireDefault(_createRouterHistory);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = (0, _createRouterHistory2.default)(_createHashHistory2.default);\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 140 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _warning = __webpack_require__(96);\n\t\n\tvar _warning2 = _interopRequireDefault(_warning);\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _ExecutionEnvironment = __webpack_require__(133);\n\t\n\tvar _DOMUtils = __webpack_require__(135);\n\t\n\tvar _HashProtocol = __webpack_require__(141);\n\t\n\tvar HashProtocol = _interopRequireWildcard(_HashProtocol);\n\t\n\tvar _createHistory = __webpack_require__(127);\n\t\n\tvar _createHistory2 = _interopRequireDefault(_createHistory);\n\t\n\tfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar DefaultQueryKey = '_k';\n\t\n\tvar addLeadingSlash = function addLeadingSlash(path) {\n\t return path.charAt(0) === '/' ? path : '/' + path;\n\t};\n\t\n\tvar HashPathCoders = {\n\t hashbang: {\n\t encodePath: function encodePath(path) {\n\t return path.charAt(0) === '!' ? path : '!' + path;\n\t },\n\t decodePath: function decodePath(path) {\n\t return path.charAt(0) === '!' ? path.substring(1) : path;\n\t }\n\t },\n\t noslash: {\n\t encodePath: function encodePath(path) {\n\t return path.charAt(0) === '/' ? path.substring(1) : path;\n\t },\n\t decodePath: addLeadingSlash\n\t },\n\t slash: {\n\t encodePath: addLeadingSlash,\n\t decodePath: addLeadingSlash\n\t }\n\t};\n\t\n\tvar createHashHistory = function createHashHistory() {\n\t var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t\n\t !_ExecutionEnvironment.canUseDOM ? false ? (0, _invariant2.default)(false, 'Hash history needs a DOM') : (0, _invariant2.default)(false) : void 0;\n\t\n\t var queryKey = options.queryKey,\n\t hashType = options.hashType;\n\t\n\t\n\t false ? (0, _warning2.default)(queryKey !== false, 'Using { queryKey: false } no longer works. Instead, just don\\'t ' + 'use location state if you don\\'t want a key in your URL query string') : void 0;\n\t\n\t if (typeof queryKey !== 'string') queryKey = DefaultQueryKey;\n\t\n\t if (hashType == null) hashType = 'slash';\n\t\n\t if (!(hashType in HashPathCoders)) {\n\t false ? (0, _warning2.default)(false, 'Invalid hash type: %s', hashType) : void 0;\n\t\n\t hashType = 'slash';\n\t }\n\t\n\t var pathCoder = HashPathCoders[hashType];\n\t\n\t var getUserConfirmation = HashProtocol.getUserConfirmation;\n\t\n\t\n\t var getCurrentLocation = function getCurrentLocation() {\n\t return HashProtocol.getCurrentLocation(pathCoder, queryKey);\n\t };\n\t\n\t var pushLocation = function pushLocation(location) {\n\t return HashProtocol.pushLocation(location, pathCoder, queryKey);\n\t };\n\t\n\t var replaceLocation = function replaceLocation(location) {\n\t return HashProtocol.replaceLocation(location, pathCoder, queryKey);\n\t };\n\t\n\t var history = (0, _createHistory2.default)(_extends({\n\t getUserConfirmation: getUserConfirmation }, options, {\n\t getCurrentLocation: getCurrentLocation,\n\t pushLocation: pushLocation,\n\t replaceLocation: replaceLocation,\n\t go: HashProtocol.go\n\t }));\n\t\n\t var listenerCount = 0,\n\t stopListener = void 0;\n\t\n\t var startListener = function startListener(listener, before) {\n\t if (++listenerCount === 1) stopListener = HashProtocol.startListener(history.transitionTo, pathCoder, queryKey);\n\t\n\t var unlisten = before ? history.listenBefore(listener) : history.listen(listener);\n\t\n\t return function () {\n\t unlisten();\n\t\n\t if (--listenerCount === 0) stopListener();\n\t };\n\t };\n\t\n\t var listenBefore = function listenBefore(listener) {\n\t return startListener(listener, true);\n\t };\n\t\n\t var listen = function listen(listener) {\n\t return startListener(listener, false);\n\t };\n\t\n\t var goIsSupportedWithoutReload = (0, _DOMUtils.supportsGoWithoutReloadUsingHash)();\n\t\n\t var go = function go(n) {\n\t false ? (0, _warning2.default)(goIsSupportedWithoutReload, 'Hash history go(n) causes a full page reload in this browser') : void 0;\n\t\n\t history.go(n);\n\t };\n\t\n\t var createHref = function createHref(path) {\n\t return '#' + pathCoder.encodePath(history.createHref(path));\n\t };\n\t\n\t return _extends({}, history, {\n\t listenBefore: listenBefore,\n\t listen: listen,\n\t go: go,\n\t createHref: createHref\n\t });\n\t};\n\t\n\texports.default = createHashHistory;\n\n/***/ }),\n/* 141 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.replaceLocation = exports.pushLocation = exports.startListener = exports.getCurrentLocation = exports.go = exports.getUserConfirmation = undefined;\n\t\n\tvar _BrowserProtocol = __webpack_require__(134);\n\t\n\tObject.defineProperty(exports, 'getUserConfirmation', {\n\t enumerable: true,\n\t get: function get() {\n\t return _BrowserProtocol.getUserConfirmation;\n\t }\n\t});\n\tObject.defineProperty(exports, 'go', {\n\t enumerable: true,\n\t get: function get() {\n\t return _BrowserProtocol.go;\n\t }\n\t});\n\t\n\tvar _warning = __webpack_require__(96);\n\t\n\tvar _warning2 = _interopRequireDefault(_warning);\n\t\n\tvar _LocationUtils = __webpack_require__(123);\n\t\n\tvar _DOMUtils = __webpack_require__(135);\n\t\n\tvar _DOMStateStorage = __webpack_require__(136);\n\t\n\tvar _PathUtils = __webpack_require__(124);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar HashChangeEvent = 'hashchange';\n\t\n\tvar getHashPath = function getHashPath() {\n\t // We can't use window.location.hash here because it's not\n\t // consistent across browsers - Firefox will pre-decode it!\n\t var href = window.location.href;\n\t var hashIndex = href.indexOf('#');\n\t return hashIndex === -1 ? '' : href.substring(hashIndex + 1);\n\t};\n\t\n\tvar pushHashPath = function pushHashPath(path) {\n\t return window.location.hash = path;\n\t};\n\t\n\tvar replaceHashPath = function replaceHashPath(path) {\n\t var hashIndex = window.location.href.indexOf('#');\n\t\n\t window.location.replace(window.location.href.slice(0, hashIndex >= 0 ? hashIndex : 0) + '#' + path);\n\t};\n\t\n\tvar getCurrentLocation = exports.getCurrentLocation = function getCurrentLocation(pathCoder, queryKey) {\n\t var path = pathCoder.decodePath(getHashPath());\n\t var key = (0, _PathUtils.getQueryStringValueFromPath)(path, queryKey);\n\t\n\t var state = void 0;\n\t if (key) {\n\t path = (0, _PathUtils.stripQueryStringValueFromPath)(path, queryKey);\n\t state = (0, _DOMStateStorage.readState)(key);\n\t }\n\t\n\t var init = (0, _PathUtils.parsePath)(path);\n\t init.state = state;\n\t\n\t return (0, _LocationUtils.createLocation)(init, undefined, key);\n\t};\n\t\n\tvar prevLocation = void 0;\n\t\n\tvar startListener = exports.startListener = function startListener(listener, pathCoder, queryKey) {\n\t var handleHashChange = function handleHashChange() {\n\t var path = getHashPath();\n\t var encodedPath = pathCoder.encodePath(path);\n\t\n\t if (path !== encodedPath) {\n\t // Always be sure we have a properly-encoded hash.\n\t replaceHashPath(encodedPath);\n\t } else {\n\t var currentLocation = getCurrentLocation(pathCoder, queryKey);\n\t\n\t if (prevLocation && currentLocation.key && prevLocation.key === currentLocation.key) return; // Ignore extraneous hashchange events\n\t\n\t prevLocation = currentLocation;\n\t\n\t listener(currentLocation);\n\t }\n\t };\n\t\n\t // Ensure the hash is encoded properly.\n\t var path = getHashPath();\n\t var encodedPath = pathCoder.encodePath(path);\n\t\n\t if (path !== encodedPath) replaceHashPath(encodedPath);\n\t\n\t (0, _DOMUtils.addEventListener)(window, HashChangeEvent, handleHashChange);\n\t\n\t return function () {\n\t return (0, _DOMUtils.removeEventListener)(window, HashChangeEvent, handleHashChange);\n\t };\n\t};\n\t\n\tvar updateLocation = function updateLocation(location, pathCoder, queryKey, updateHash) {\n\t var state = location.state,\n\t key = location.key;\n\t\n\t\n\t var path = pathCoder.encodePath((0, _PathUtils.createPath)(location));\n\t\n\t if (state !== undefined) {\n\t path = (0, _PathUtils.addQueryStringValueToPath)(path, queryKey, key);\n\t (0, _DOMStateStorage.saveState)(key, state);\n\t }\n\t\n\t prevLocation = location;\n\t\n\t updateHash(path);\n\t};\n\t\n\tvar pushLocation = exports.pushLocation = function pushLocation(location, pathCoder, queryKey) {\n\t return updateLocation(location, pathCoder, queryKey, function (path) {\n\t if (getHashPath() !== path) {\n\t pushHashPath(path);\n\t } else {\n\t false ? (0, _warning2.default)(false, 'You cannot PUSH the same path using hash history') : void 0;\n\t }\n\t });\n\t};\n\t\n\tvar replaceLocation = exports.replaceLocation = function replaceLocation(location, pathCoder, queryKey) {\n\t return updateLocation(location, pathCoder, queryKey, function (path) {\n\t if (getHashPath() !== path) replaceHashPath(path);\n\t });\n\t};\n\n/***/ }),\n/* 142 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.locationsAreEqual = exports.Actions = exports.useQueries = exports.useBeforeUnload = exports.useBasename = exports.createMemoryHistory = exports.createHashHistory = exports.createHistory = undefined;\n\t\n\tvar _LocationUtils = __webpack_require__(123);\n\t\n\tObject.defineProperty(exports, 'locationsAreEqual', {\n\t enumerable: true,\n\t get: function get() {\n\t return _LocationUtils.locationsAreEqual;\n\t }\n\t});\n\t\n\tvar _createBrowserHistory = __webpack_require__(132);\n\t\n\tvar _createBrowserHistory2 = _interopRequireDefault(_createBrowserHistory);\n\t\n\tvar _createHashHistory2 = __webpack_require__(140);\n\t\n\tvar _createHashHistory3 = _interopRequireDefault(_createHashHistory2);\n\t\n\tvar _createMemoryHistory2 = __webpack_require__(126);\n\t\n\tvar _createMemoryHistory3 = _interopRequireDefault(_createMemoryHistory2);\n\t\n\tvar _useBasename2 = __webpack_require__(125);\n\t\n\tvar _useBasename3 = _interopRequireDefault(_useBasename2);\n\t\n\tvar _useBeforeUnload2 = __webpack_require__(143);\n\t\n\tvar _useBeforeUnload3 = _interopRequireDefault(_useBeforeUnload2);\n\t\n\tvar _useQueries2 = __webpack_require__(119);\n\t\n\tvar _useQueries3 = _interopRequireDefault(_useQueries2);\n\t\n\tvar _Actions2 = __webpack_require__(117);\n\t\n\tvar _Actions = _interopRequireWildcard(_Actions2);\n\t\n\tfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.createHistory = _createBrowserHistory2.default;\n\texports.createHashHistory = _createHashHistory3.default;\n\texports.createMemoryHistory = _createMemoryHistory3.default;\n\texports.useBasename = _useBasename3.default;\n\texports.useBeforeUnload = _useBeforeUnload3.default;\n\texports.useQueries = _useQueries3.default;\n\texports.Actions = _Actions;\n\n/***/ }),\n/* 143 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _invariant = __webpack_require__(90);\n\t\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\t\n\tvar _DOMUtils = __webpack_require__(135);\n\t\n\tvar _ExecutionEnvironment = __webpack_require__(133);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar startListener = function startListener(getPromptMessage) {\n\t var handleBeforeUnload = function handleBeforeUnload(event) {\n\t var message = getPromptMessage();\n\t\n\t if (typeof message === 'string') {\n\t (event || window.event).returnValue = message;\n\t return message;\n\t }\n\t\n\t return undefined;\n\t };\n\t\n\t (0, _DOMUtils.addEventListener)(window, 'beforeunload', handleBeforeUnload);\n\t\n\t return function () {\n\t return (0, _DOMUtils.removeEventListener)(window, 'beforeunload', handleBeforeUnload);\n\t };\n\t};\n\t\n\t/**\n\t * Returns a new createHistory function that can be used to create\n\t * history objects that know how to use the beforeunload event in web\n\t * browsers to cancel navigation.\n\t */\n\tvar useBeforeUnload = function useBeforeUnload(createHistory) {\n\t !_ExecutionEnvironment.canUseDOM ? false ? (0, _invariant2.default)(false, 'useBeforeUnload only works in DOM environments') : (0, _invariant2.default)(false) : void 0;\n\t\n\t return function (options) {\n\t var history = createHistory(options);\n\t\n\t var listeners = [];\n\t var stopListener = void 0;\n\t\n\t var getPromptMessage = function getPromptMessage() {\n\t var message = void 0;\n\t for (var i = 0, len = listeners.length; message == null && i < len; ++i) {\n\t message = listeners[i].call();\n\t }return message;\n\t };\n\t\n\t var listenBeforeUnload = function listenBeforeUnload(listener) {\n\t if (listeners.push(listener) === 1) stopListener = startListener(getPromptMessage);\n\t\n\t return function () {\n\t listeners = listeners.filter(function (item) {\n\t return item !== listener;\n\t });\n\t\n\t if (listeners.length === 0 && stopListener) {\n\t stopListener();\n\t stopListener = null;\n\t }\n\t };\n\t };\n\t\n\t return _extends({}, history, {\n\t listenBeforeUnload: listenBeforeUnload\n\t });\n\t };\n\t};\n\t\n\texports.default = useBeforeUnload;\n\n/***/ }),\n/* 144 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, '__esModule', {\n\t value: true\n\t});\n\texports.checkIfAuthenticated = checkIfAuthenticated;\n\texports.clearToken = clearToken;\n\texports.loginOk = loginOk;\n\texports.login = login;\n\texports.setAPIKey = setAPIKey;\n\texports.sendResetPWOk = sendResetPWOk;\n\texports.sendResetPWFailed = sendResetPWFailed;\n\texports.sendResetPW = sendResetPW;\n\texports.resetPWGetUserOk = resetPWGetUserOk;\n\texports.resetPWGetUserFailed = resetPWGetUserFailed;\n\texports.resetPWGetUser = resetPWGetUser;\n\texports.resetPassword = resetPassword;\n\texports.redirectToLogin = redirectToLogin;\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\t\n\tvar _axios = __webpack_require__(145);\n\t\n\tvar _axios2 = _interopRequireDefault(_axios);\n\t\n\tvar _config = __webpack_require__(163);\n\t\n\tvar _config2 = _interopRequireDefault(_config);\n\t\n\tvar _componentsCommonAppHistory = __webpack_require__(85);\n\t\n\tvar _componentsCommonAppHistory2 = _interopRequireDefault(_componentsCommonAppHistory);\n\t\n\tvar _toastr = __webpack_require__(165);\n\t\n\tvar _toastr2 = _interopRequireDefault(_toastr);\n\t\n\tvar _actionsURLfinalizer = __webpack_require__(168);\n\t\n\tvar CHECK_IF_AUTHENTICATED = 'CHECK_IF_AUTHENTICATED';\n\texports.CHECK_IF_AUTHENTICATED = CHECK_IF_AUTHENTICATED;\n\tvar CLEAR_TOKEN = 'CLEAR_TOKEN';\n\t\n\texports.CLEAR_TOKEN = CLEAR_TOKEN;\n\tvar LOGIN = 'LOGIN';\n\texports.LOGIN = LOGIN;\n\tvar LOGIN_OK = 'LOGIN_OK';\n\texports.LOGIN_OK = LOGIN_OK;\n\tvar LOGIN_FAILED = 'LOGIN_FAILED';\n\t\n\texports.LOGIN_FAILED = LOGIN_FAILED;\n\tvar SEND_RESET_PW = 'SEND_RESET_PW';\n\texports.SEND_RESET_PW = SEND_RESET_PW;\n\tvar SEND_RESET_PW_OK = 'SEND_RESET_PW_OK';\n\texports.SEND_RESET_PW_OK = SEND_RESET_PW_OK;\n\tvar SEND_RESET_PW_FAILED = 'SEND_RESET_PW_FAILED';\n\t\n\texports.SEND_RESET_PW_FAILED = SEND_RESET_PW_FAILED;\n\tvar RESET_PW_GET_USER = 'RESET_PW_GET_USER';\n\texports.RESET_PW_GET_USER = RESET_PW_GET_USER;\n\tvar RESET_PW_GET_USER_OK = 'RESET_PW_GET_USER_OK';\n\texports.RESET_PW_GET_USER_OK = RESET_PW_GET_USER_OK;\n\tvar RESET_PW_GET_USER_FAILED = 'RESET_PW_GET_USER_FAILED';\n\t\n\texports.RESET_PW_GET_USER_FAILED = RESET_PW_GET_USER_FAILED;\n\tvar RESET_PASSWORD = 'RESET_PASSWORD';\n\t\n\texports.RESET_PASSWORD = RESET_PASSWORD;\n\t\n\tfunction checkIfAuthenticated() {\n\t return {\n\t type: CHECK_IF_AUTHENTICATED\n\t };\n\t}\n\t\n\tfunction clearToken() {\n\t return {\n\t type: CLEAR_TOKEN\n\t };\n\t}\n\t\n\t// Login\n\t\n\tfunction loginOk(token) {\n\t return {\n\t type: LOGIN_OK,\n\t token: token\n\t };\n\t}\n\t\n\tfunction loginFailed(data) {\n\t return {\n\t type: LOGIN_FAILED,\n\t data: data\n\t };\n\t}\n\t\n\tfunction login(credentials) {\n\t return function (dispatch) {\n\t dispatch({ type: LOGIN, credentials: credentials });\n\t return _axios2['default'].post((0, _actionsURLfinalizer.finalize)(_config2['default'].api.root + '/login'), credentials).then(function (response) {\n\t dispatch(loginOk(response.data.token));\n\t _componentsCommonAppHistory2['default'].push('/');\n\t })['catch'](function (response) {\n\t dispatch(loginFailed(response.data || response.statusText));\n\t });\n\t };\n\t}\n\t\n\tvar SET_API_KEY = \"SET_API_KEY\";\n\texports.SET_API_KEY = SET_API_KEY;\n\t\n\tfunction setAPIKey(apikey) {\n\t return {\n\t type: SET_API_KEY,\n\t apikey: apikey\n\t };\n\t}\n\t\n\t// Forgot password\n\t\n\tfunction sendResetPWOk(data) {\n\t return {\n\t type: SEND_RESET_PW_OK,\n\t data: data\n\t };\n\t}\n\t\n\tfunction sendResetPWFailed(data) {\n\t return {\n\t type: SEND_RESET_PW_FAILED,\n\t data: data\n\t };\n\t}\n\t\n\tfunction sendResetPW(data) {\n\t return function (dispatch) {\n\t dispatch({ type: SEND_RESET_PW, data: data });\n\t return _axios2['default'].post((0, _actionsURLfinalizer.finalize)(_config2['default'].api.root + '/user/resetpassword/send'), data).then(function (response) {\n\t dispatch(sendResetPWOk(response));\n\t return response;\n\t })['catch'](function (response) {\n\t dispatch(sendResetPWFailed(response.data || response.statusText.data));\n\t return response;\n\t });\n\t };\n\t}\n\t\n\t// Get user to reset Password\n\t\n\tfunction resetPWGetUserOk(data) {\n\t return {\n\t type: RESET_PW_GET_USER_OK,\n\t data: data\n\t };\n\t}\n\t\n\tfunction resetPWGetUserFailed(data) {\n\t return {\n\t type: RESET_PW_GET_USER_FAILED,\n\t data: data\n\t };\n\t}\n\t\n\tfunction resetPWGetUser(key) {\n\t return function (dispatch) {\n\t dispatch({ type: RESET_PW_GET_USER, key: key });\n\t return _axios2['default'].get((0, _actionsURLfinalizer.finalize)(_config2['default'].api.root + '/user/resetpassword/check/' + key)).then(function (response) {\n\t dispatch(resetPWGetUserOk(response.data));\n\t return response;\n\t })['catch'](function (response) {\n\t console.log(response);\n\t dispatch(resetPWGetUserFailed(response.data));\n\t return response;\n\t });\n\t };\n\t}\n\t\n\t// Reset password\n\t\n\tfunction resetPassword(key, username, newPassword) {\n\t return function (dispatch) {\n\t dispatch({ type: RESET_PASSWORD, key: key, newPassword: newPassword });\n\t return _axios2['default'].put((0, _actionsURLfinalizer.finalize)(_config2['default'].api.root + '/user/resetpassword/reset/' + key), { 'new': newPassword }).then(function (response) {\n\t dispatch(login({ username: username, password: newPassword }));\n\t return response;\n\t })['catch'](function (response) {\n\t console.log(response);\n\t _toastr2['default'].error(response.data);\n\t return response;\n\t });\n\t };\n\t}\n\t\n\t// ---\n\t\n\tfunction redirectToLogin() {\n\t return function (dispatch) {\n\t _componentsCommonAppHistory2['default'].push('/login');\n\t };\n\t}\n\n/***/ }),\n/* 145 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tmodule.exports = __webpack_require__(146);\n\n/***/ }),\n/* 146 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar defaults = __webpack_require__(147);\n\tvar utils = __webpack_require__(148);\n\tvar dispatchRequest = __webpack_require__(149);\n\tvar InterceptorManager = __webpack_require__(158);\n\tvar isAbsoluteURL = __webpack_require__(159);\n\tvar combineURLs = __webpack_require__(160);\n\tvar bind = __webpack_require__(161);\n\tvar transformData = __webpack_require__(154);\n\t\n\tfunction Axios(defaultConfig) {\n\t this.defaults = utils.merge({}, defaultConfig);\n\t this.interceptors = {\n\t request: new InterceptorManager(),\n\t response: new InterceptorManager()\n\t };\n\t}\n\t\n\tAxios.prototype.request = function request(config) {\n\t /*eslint no-param-reassign:0*/\n\t // Allow for axios('example/url'[, config]) a la fetch API\n\t if (typeof config === 'string') {\n\t config = utils.merge({\n\t url: arguments[0]\n\t }, arguments[1]);\n\t }\n\t\n\t config = utils.merge(defaults, this.defaults, { method: 'get' }, config);\n\t\n\t // Support baseURL config\n\t if (config.baseURL && !isAbsoluteURL(config.url)) {\n\t config.url = combineURLs(config.baseURL, config.url);\n\t }\n\t\n\t // Don't allow overriding defaults.withCredentials\n\t config.withCredentials = config.withCredentials || this.defaults.withCredentials;\n\t\n\t // Transform request data\n\t config.data = transformData(\n\t config.data,\n\t config.headers,\n\t config.transformRequest\n\t );\n\t\n\t // Flatten headers\n\t config.headers = utils.merge(\n\t config.headers.common || {},\n\t config.headers[config.method] || {},\n\t config.headers || {}\n\t );\n\t\n\t utils.forEach(\n\t ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n\t function cleanHeaderConfig(method) {\n\t delete config.headers[method];\n\t }\n\t );\n\t\n\t // Hook up interceptors middleware\n\t var chain = [dispatchRequest, undefined];\n\t var promise = Promise.resolve(config);\n\t\n\t this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n\t chain.unshift(interceptor.fulfilled, interceptor.rejected);\n\t });\n\t\n\t this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n\t chain.push(interceptor.fulfilled, interceptor.rejected);\n\t });\n\t\n\t while (chain.length) {\n\t promise = promise.then(chain.shift(), chain.shift());\n\t }\n\t\n\t return promise;\n\t};\n\t\n\tvar defaultInstance = new Axios(defaults);\n\tvar axios = module.exports = bind(Axios.prototype.request, defaultInstance);\n\t\n\taxios.create = function create(defaultConfig) {\n\t return new Axios(defaultConfig);\n\t};\n\t\n\t// Expose defaults\n\taxios.defaults = defaultInstance.defaults;\n\t\n\t// Expose all/spread\n\taxios.all = function all(promises) {\n\t return Promise.all(promises);\n\t};\n\taxios.spread = __webpack_require__(162);\n\t\n\t// Expose interceptors\n\taxios.interceptors = defaultInstance.interceptors;\n\t\n\t// Provide aliases for supported request methods\n\tutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n\t /*eslint func-names:0*/\n\t Axios.prototype[method] = function(url, config) {\n\t return this.request(utils.merge(config || {}, {\n\t method: method,\n\t url: url\n\t }));\n\t };\n\t axios[method] = bind(Axios.prototype[method], defaultInstance);\n\t});\n\t\n\tutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n\t /*eslint func-names:0*/\n\t Axios.prototype[method] = function(url, data, config) {\n\t return this.request(utils.merge(config || {}, {\n\t method: method,\n\t url: url,\n\t data: data\n\t }));\n\t };\n\t axios[method] = bind(Axios.prototype[method], defaultInstance);\n\t});\n\n\n/***/ }),\n/* 147 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(148);\n\t\n\tvar PROTECTION_PREFIX = /^\\)\\]\\}',?\\n/;\n\tvar DEFAULT_CONTENT_TYPE = {\n\t 'Content-Type': 'application/x-www-form-urlencoded'\n\t};\n\t\n\tmodule.exports = {\n\t transformRequest: [function transformResponseJSON(data, headers) {\n\t if (utils.isFormData(data)) {\n\t return data;\n\t }\n\t if (utils.isArrayBuffer(data)) {\n\t return data;\n\t }\n\t if (utils.isArrayBufferView(data)) {\n\t return data.buffer;\n\t }\n\t if (utils.isObject(data) && !utils.isFile(data) && !utils.isBlob(data)) {\n\t // Set application/json if no Content-Type has been specified\n\t if (!utils.isUndefined(headers)) {\n\t utils.forEach(headers, function processContentTypeHeader(val, key) {\n\t if (key.toLowerCase() === 'content-type') {\n\t headers['Content-Type'] = val;\n\t }\n\t });\n\t\n\t if (utils.isUndefined(headers['Content-Type'])) {\n\t headers['Content-Type'] = 'application/json;charset=utf-8';\n\t }\n\t }\n\t return JSON.stringify(data);\n\t }\n\t return data;\n\t }],\n\t\n\t transformResponse: [function transformResponseJSON(data) {\n\t /*eslint no-param-reassign:0*/\n\t if (typeof data === 'string') {\n\t data = data.replace(PROTECTION_PREFIX, '');\n\t try {\n\t data = JSON.parse(data);\n\t } catch (e) { /* Ignore */ }\n\t }\n\t return data;\n\t }],\n\t\n\t headers: {\n\t common: {\n\t 'Accept': 'application/json, text/plain, */*'\n\t },\n\t patch: utils.merge(DEFAULT_CONTENT_TYPE),\n\t post: utils.merge(DEFAULT_CONTENT_TYPE),\n\t put: utils.merge(DEFAULT_CONTENT_TYPE)\n\t },\n\t\n\t timeout: 0,\n\t\n\t xsrfCookieName: 'XSRF-TOKEN',\n\t xsrfHeaderName: 'X-XSRF-TOKEN'\n\t};\n\n\n/***/ }),\n/* 148 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\t/*global toString:true*/\n\t\n\t// utils is a library of generic helper functions non-specific to axios\n\t\n\tvar toString = Object.prototype.toString;\n\t\n\t/**\n\t * Determine if a value is an Array\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is an Array, otherwise false\n\t */\n\tfunction isArray(val) {\n\t return toString.call(val) === '[object Array]';\n\t}\n\t\n\t/**\n\t * Determine if a value is an ArrayBuffer\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n\t */\n\tfunction isArrayBuffer(val) {\n\t return toString.call(val) === '[object ArrayBuffer]';\n\t}\n\t\n\t/**\n\t * Determine if a value is a FormData\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is an FormData, otherwise false\n\t */\n\tfunction isFormData(val) {\n\t return toString.call(val) === '[object FormData]';\n\t}\n\t\n\t/**\n\t * Determine if a value is a view on an ArrayBuffer\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n\t */\n\tfunction isArrayBufferView(val) {\n\t var result;\n\t if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n\t result = ArrayBuffer.isView(val);\n\t } else {\n\t result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n\t }\n\t return result;\n\t}\n\t\n\t/**\n\t * Determine if a value is a String\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is a String, otherwise false\n\t */\n\tfunction isString(val) {\n\t return typeof val === 'string';\n\t}\n\t\n\t/**\n\t * Determine if a value is a Number\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is a Number, otherwise false\n\t */\n\tfunction isNumber(val) {\n\t return typeof val === 'number';\n\t}\n\t\n\t/**\n\t * Determine if a value is undefined\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if the value is undefined, otherwise false\n\t */\n\tfunction isUndefined(val) {\n\t return typeof val === 'undefined';\n\t}\n\t\n\t/**\n\t * Determine if a value is an Object\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is an Object, otherwise false\n\t */\n\tfunction isObject(val) {\n\t return val !== null && typeof val === 'object';\n\t}\n\t\n\t/**\n\t * Determine if a value is a Date\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is a Date, otherwise false\n\t */\n\tfunction isDate(val) {\n\t return toString.call(val) === '[object Date]';\n\t}\n\t\n\t/**\n\t * Determine if a value is a File\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is a File, otherwise false\n\t */\n\tfunction isFile(val) {\n\t return toString.call(val) === '[object File]';\n\t}\n\t\n\t/**\n\t * Determine if a value is a Blob\n\t *\n\t * @param {Object} val The value to test\n\t * @returns {boolean} True if value is a Blob, otherwise false\n\t */\n\tfunction isBlob(val) {\n\t return toString.call(val) === '[object Blob]';\n\t}\n\t\n\t/**\n\t * Trim excess whitespace off the beginning and end of a string\n\t *\n\t * @param {String} str The String to trim\n\t * @returns {String} The String freed of excess whitespace\n\t */\n\tfunction trim(str) {\n\t return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n\t}\n\t\n\t/**\n\t * Determine if we're running in a standard browser environment\n\t *\n\t * This allows axios to run in a web worker, and react-native.\n\t * Both environments support XMLHttpRequest, but not fully standard globals.\n\t *\n\t * web workers:\n\t * typeof window -> undefined\n\t * typeof document -> undefined\n\t *\n\t * react-native:\n\t * typeof document.createElement -> undefined\n\t */\n\tfunction isStandardBrowserEnv() {\n\t return (\n\t typeof window !== 'undefined' &&\n\t typeof document !== 'undefined' &&\n\t typeof document.createElement === 'function'\n\t );\n\t}\n\t\n\t/**\n\t * Iterate over an Array or an Object invoking a function for each item.\n\t *\n\t * If `obj` is an Array callback will be called passing\n\t * the value, index, and complete array for each item.\n\t *\n\t * If 'obj' is an Object callback will be called passing\n\t * the value, key, and complete object for each property.\n\t *\n\t * @param {Object|Array} obj The object to iterate\n\t * @param {Function} fn The callback to invoke for each item\n\t */\n\tfunction forEach(obj, fn) {\n\t // Don't bother if no value provided\n\t if (obj === null || typeof obj === 'undefined') {\n\t return;\n\t }\n\t\n\t // Force an array if not already something iterable\n\t if (typeof obj !== 'object' && !isArray(obj)) {\n\t /*eslint no-param-reassign:0*/\n\t obj = [obj];\n\t }\n\t\n\t if (isArray(obj)) {\n\t // Iterate over array values\n\t for (var i = 0, l = obj.length; i < l; i++) {\n\t fn.call(null, obj[i], i, obj);\n\t }\n\t } else {\n\t // Iterate over object keys\n\t for (var key in obj) {\n\t if (obj.hasOwnProperty(key)) {\n\t fn.call(null, obj[key], key, obj);\n\t }\n\t }\n\t }\n\t}\n\t\n\t/**\n\t * Accepts varargs expecting each argument to be an object, then\n\t * immutably merges the properties of each object and returns result.\n\t *\n\t * When multiple objects contain the same key the later object in\n\t * the arguments list will take precedence.\n\t *\n\t * Example:\n\t *\n\t * ```js\n\t * var result = merge({foo: 123}, {foo: 456});\n\t * console.log(result.foo); // outputs 456\n\t * ```\n\t *\n\t * @param {Object} obj1 Object to merge\n\t * @returns {Object} Result of all merge properties\n\t */\n\tfunction merge(/* obj1, obj2, obj3, ... */) {\n\t var result = {};\n\t function assignValue(val, key) {\n\t if (typeof result[key] === 'object' && typeof val === 'object') {\n\t result[key] = merge(result[key], val);\n\t } else {\n\t result[key] = val;\n\t }\n\t }\n\t\n\t for (var i = 0, l = arguments.length; i < l; i++) {\n\t forEach(arguments[i], assignValue);\n\t }\n\t return result;\n\t}\n\t\n\tmodule.exports = {\n\t isArray: isArray,\n\t isArrayBuffer: isArrayBuffer,\n\t isFormData: isFormData,\n\t isArrayBufferView: isArrayBufferView,\n\t isString: isString,\n\t isNumber: isNumber,\n\t isObject: isObject,\n\t isUndefined: isUndefined,\n\t isDate: isDate,\n\t isFile: isFile,\n\t isBlob: isBlob,\n\t isStandardBrowserEnv: isStandardBrowserEnv,\n\t forEach: forEach,\n\t merge: merge,\n\t trim: trim\n\t};\n\n\n/***/ }),\n/* 149 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\t\n\t/**\n\t * Dispatch a request to the server using whichever adapter\n\t * is supported by the current environment.\n\t *\n\t * @param {object} config The config that is to be used for the request\n\t * @returns {Promise} The Promise to be fulfilled\n\t */\n\tmodule.exports = function dispatchRequest(config) {\n\t return new Promise(function executor(resolve, reject) {\n\t try {\n\t var adapter;\n\t\n\t if (typeof config.adapter === 'function') {\n\t // For custom adapter support\n\t adapter = config.adapter;\n\t } else if (typeof XMLHttpRequest !== 'undefined') {\n\t // For browsers use XHR adapter\n\t adapter = __webpack_require__(151);\n\t } else if (typeof process !== 'undefined') {\n\t // For node use HTTP adapter\n\t adapter = __webpack_require__(151);\n\t }\n\t\n\t if (typeof adapter === 'function') {\n\t adapter(resolve, reject, config);\n\t }\n\t } catch (e) {\n\t reject(e);\n\t }\n\t });\n\t};\n\t\n\t\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(150)))\n\n/***/ }),\n/* 150 */\n/***/ (function(module, exports) {\n\n\t// shim for using process in browser\n\tvar process = module.exports = {};\n\t\n\t// cached from whatever global is present so that test runners that stub it\n\t// don't break things. But we need to wrap it in a try catch in case it is\n\t// wrapped in strict mode code which doesn't define any globals. It's inside a\n\t// function because try/catches deoptimize in certain engines.\n\t\n\tvar cachedSetTimeout;\n\tvar cachedClearTimeout;\n\t\n\tfunction defaultSetTimout() {\n\t throw new Error('setTimeout has not been defined');\n\t}\n\tfunction defaultClearTimeout () {\n\t throw new Error('clearTimeout has not been defined');\n\t}\n\t(function () {\n\t try {\n\t if (typeof setTimeout === 'function') {\n\t cachedSetTimeout = setTimeout;\n\t } else {\n\t cachedSetTimeout = defaultSetTimout;\n\t }\n\t } catch (e) {\n\t cachedSetTimeout = defaultSetTimout;\n\t }\n\t try {\n\t if (typeof clearTimeout === 'function') {\n\t cachedClearTimeout = clearTimeout;\n\t } else {\n\t cachedClearTimeout = defaultClearTimeout;\n\t }\n\t } catch (e) {\n\t cachedClearTimeout = defaultClearTimeout;\n\t }\n\t} ())\n\tfunction runTimeout(fun) {\n\t if (cachedSetTimeout === setTimeout) {\n\t //normal enviroments in sane situations\n\t return setTimeout(fun, 0);\n\t }\n\t // if setTimeout wasn't available but was latter defined\n\t if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n\t cachedSetTimeout = setTimeout;\n\t return setTimeout(fun, 0);\n\t }\n\t try {\n\t // when when somebody has screwed with setTimeout but no I.E. maddness\n\t return cachedSetTimeout(fun, 0);\n\t } catch(e){\n\t try {\n\t // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n\t return cachedSetTimeout.call(null, fun, 0);\n\t } catch(e){\n\t // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n\t return cachedSetTimeout.call(this, fun, 0);\n\t }\n\t }\n\t\n\t\n\t}\n\tfunction runClearTimeout(marker) {\n\t if (cachedClearTimeout === clearTimeout) {\n\t //normal enviroments in sane situations\n\t return clearTimeout(marker);\n\t }\n\t // if clearTimeout wasn't available but was latter defined\n\t if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n\t cachedClearTimeout = clearTimeout;\n\t return clearTimeout(marker);\n\t }\n\t try {\n\t // when when somebody has screwed with setTimeout but no I.E. maddness\n\t return cachedClearTimeout(marker);\n\t } catch (e){\n\t try {\n\t // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n\t return cachedClearTimeout.call(null, marker);\n\t } catch (e){\n\t // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n\t // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n\t return cachedClearTimeout.call(this, marker);\n\t }\n\t }\n\t\n\t\n\t\n\t}\n\tvar queue = [];\n\tvar draining = false;\n\tvar currentQueue;\n\tvar queueIndex = -1;\n\t\n\tfunction cleanUpNextTick() {\n\t if (!draining || !currentQueue) {\n\t return;\n\t }\n\t draining = false;\n\t if (currentQueue.length) {\n\t queue = currentQueue.concat(queue);\n\t } else {\n\t queueIndex = -1;\n\t }\n\t if (queue.length) {\n\t drainQueue();\n\t }\n\t}\n\t\n\tfunction drainQueue() {\n\t if (draining) {\n\t return;\n\t }\n\t var timeout = runTimeout(cleanUpNextTick);\n\t draining = true;\n\t\n\t var len = queue.length;\n\t while(len) {\n\t currentQueue = queue;\n\t queue = [];\n\t while (++queueIndex < len) {\n\t if (currentQueue) {\n\t currentQueue[queueIndex].run();\n\t }\n\t }\n\t queueIndex = -1;\n\t len = queue.length;\n\t }\n\t currentQueue = null;\n\t draining = false;\n\t runClearTimeout(timeout);\n\t}\n\t\n\tprocess.nextTick = function (fun) {\n\t var args = new Array(arguments.length - 1);\n\t if (arguments.length > 1) {\n\t for (var i = 1; i < arguments.length; i++) {\n\t args[i - 1] = arguments[i];\n\t }\n\t }\n\t queue.push(new Item(fun, args));\n\t if (queue.length === 1 && !draining) {\n\t runTimeout(drainQueue);\n\t }\n\t};\n\t\n\t// v8 likes predictible objects\n\tfunction Item(fun, array) {\n\t this.fun = fun;\n\t this.array = array;\n\t}\n\tItem.prototype.run = function () {\n\t this.fun.apply(null, this.array);\n\t};\n\tprocess.title = 'browser';\n\tprocess.browser = true;\n\tprocess.env = {};\n\tprocess.argv = [];\n\tprocess.version = ''; // empty string to avoid regexp issues\n\tprocess.versions = {};\n\t\n\tfunction noop() {}\n\t\n\tprocess.on = noop;\n\tprocess.addListener = noop;\n\tprocess.once = noop;\n\tprocess.off = noop;\n\tprocess.removeListener = noop;\n\tprocess.removeAllListeners = noop;\n\tprocess.emit = noop;\n\tprocess.prependListener = noop;\n\tprocess.prependOnceListener = noop;\n\t\n\tprocess.listeners = function (name) { return [] }\n\t\n\tprocess.binding = function (name) {\n\t throw new Error('process.binding is not supported');\n\t};\n\t\n\tprocess.cwd = function () { return '/' };\n\tprocess.chdir = function (dir) {\n\t throw new Error('process.chdir is not supported');\n\t};\n\tprocess.umask = function() { return 0; };\n\n\n/***/ }),\n/* 151 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(148);\n\tvar buildURL = __webpack_require__(152);\n\tvar parseHeaders = __webpack_require__(153);\n\tvar transformData = __webpack_require__(154);\n\tvar isURLSameOrigin = __webpack_require__(155);\n\tvar btoa = window.btoa || __webpack_require__(156);\n\t\n\tmodule.exports = function xhrAdapter(resolve, reject, config) {\n\t var requestData = config.data;\n\t var requestHeaders = config.headers;\n\t\n\t if (utils.isFormData(requestData)) {\n\t delete requestHeaders['Content-Type']; // Let the browser set it\n\t }\n\t\n\t var request = new XMLHttpRequest();\n\t\n\t // For IE 8/9 CORS support\n\t // Only supports POST and GET calls and doesn't returns the response headers.\n\t if (window.XDomainRequest && !('withCredentials' in request) && !isURLSameOrigin(config.url)) {\n\t request = new window.XDomainRequest();\n\t }\n\t\n\t // HTTP basic authentication\n\t if (config.auth) {\n\t var username = config.auth.username || '';\n\t var password = config.auth.password || '';\n\t requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n\t }\n\t\n\t request.open(config.method.toUpperCase(), buildURL(config.url, config.params, config.paramsSerializer), true);\n\t\n\t // Set the request timeout in MS\n\t request.timeout = config.timeout;\n\t\n\t // Listen for ready state\n\t request.onload = function handleLoad() {\n\t if (!request) {\n\t return;\n\t }\n\t // Prepare the response\n\t var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n\t var responseData = ['text', ''].indexOf(config.responseType || '') !== -1 ? request.responseText : request.response;\n\t var response = {\n\t data: transformData(\n\t responseData,\n\t responseHeaders,\n\t config.transformResponse\n\t ),\n\t // IE sends 1223 instead of 204 (https://github.com/mzabriskie/axios/issues/201)\n\t status: request.status === 1223 ? 204 : request.status,\n\t statusText: request.status === 1223 ? 'No Content' : request.statusText,\n\t headers: responseHeaders,\n\t config: config\n\t };\n\t\n\t // Resolve or reject the Promise based on the status\n\t ((response.status >= 200 && response.status < 300) ||\n\t (!('status' in request) && response.responseText) ?\n\t resolve :\n\t reject)(response);\n\t\n\t // Clean up request\n\t request = null;\n\t };\n\t\n\t // Handle low level network errors\n\t request.onerror = function handleError() {\n\t // Real errors are hidden from us by the browser\n\t // onerror should only fire if it's a network error\n\t reject(new Error('Network Error'));\n\t\n\t // Clean up request\n\t request = null;\n\t };\n\t\n\t // Add xsrf header\n\t // This is only done if running in a standard browser environment.\n\t // Specifically not if we're in a web worker, or react-native.\n\t if (utils.isStandardBrowserEnv()) {\n\t var cookies = __webpack_require__(157);\n\t\n\t // Add xsrf header\n\t var xsrfValue = config.withCredentials || isURLSameOrigin(config.url) ?\n\t cookies.read(config.xsrfCookieName) :\n\t undefined;\n\t\n\t if (xsrfValue) {\n\t requestHeaders[config.xsrfHeaderName] = xsrfValue;\n\t }\n\t }\n\t\n\t // Add headers to the request\n\t if ('setRequestHeader' in request) {\n\t utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n\t if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n\t // Remove Content-Type if data is undefined\n\t delete requestHeaders[key];\n\t } else {\n\t // Otherwise add header to the request\n\t request.setRequestHeader(key, val);\n\t }\n\t });\n\t }\n\t\n\t // Add withCredentials to request if needed\n\t if (config.withCredentials) {\n\t request.withCredentials = true;\n\t }\n\t\n\t // Add responseType to request if needed\n\t if (config.responseType) {\n\t try {\n\t request.responseType = config.responseType;\n\t } catch (e) {\n\t if (request.responseType !== 'json') {\n\t throw e;\n\t }\n\t }\n\t }\n\t\n\t if (utils.isArrayBuffer(requestData)) {\n\t requestData = new DataView(requestData);\n\t }\n\t\n\t // Send the request\n\t request.send(requestData);\n\t};\n\n\n/***/ }),\n/* 152 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(148);\n\t\n\tfunction encode(val) {\n\t return encodeURIComponent(val).\n\t replace(/%40/gi, '@').\n\t replace(/%3A/gi, ':').\n\t replace(/%24/g, '$').\n\t replace(/%2C/gi, ',').\n\t replace(/%20/g, '+').\n\t replace(/%5B/gi, '[').\n\t replace(/%5D/gi, ']');\n\t}\n\t\n\t/**\n\t * Build a URL by appending params to the end\n\t *\n\t * @param {string} url The base of the url (e.g., http://www.google.com)\n\t * @param {object} [params] The params to be appended\n\t * @returns {string} The formatted url\n\t */\n\tmodule.exports = function buildURL(url, params, paramsSerializer) {\n\t /*eslint no-param-reassign:0*/\n\t if (!params) {\n\t return url;\n\t }\n\t\n\t var serializedParams;\n\t if (paramsSerializer) {\n\t serializedParams = paramsSerializer(params);\n\t } else {\n\t var parts = [];\n\t\n\t utils.forEach(params, function serialize(val, key) {\n\t if (val === null || typeof val === 'undefined') {\n\t return;\n\t }\n\t\n\t if (utils.isArray(val)) {\n\t key = key + '[]';\n\t }\n\t\n\t if (!utils.isArray(val)) {\n\t val = [val];\n\t }\n\t\n\t utils.forEach(val, function parseValue(v) {\n\t if (utils.isDate(v)) {\n\t v = v.toISOString();\n\t } else if (utils.isObject(v)) {\n\t v = JSON.stringify(v);\n\t }\n\t parts.push(encode(key) + '=' + encode(v));\n\t });\n\t });\n\t\n\t serializedParams = parts.join('&');\n\t }\n\t\n\t if (serializedParams) {\n\t url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n\t }\n\t\n\t return url;\n\t};\n\t\n\n\n/***/ }),\n/* 153 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(148);\n\t\n\t/**\n\t * Parse headers into an object\n\t *\n\t * ```\n\t * Date: Wed, 27 Aug 2014 08:58:49 GMT\n\t * Content-Type: application/json\n\t * Connection: keep-alive\n\t * Transfer-Encoding: chunked\n\t * ```\n\t *\n\t * @param {String} headers Headers needing to be parsed\n\t * @returns {Object} Headers parsed into an object\n\t */\n\tmodule.exports = function parseHeaders(headers) {\n\t var parsed = {};\n\t var key;\n\t var val;\n\t var i;\n\t\n\t if (!headers) { return parsed; }\n\t\n\t utils.forEach(headers.split('\\n'), function parser(line) {\n\t i = line.indexOf(':');\n\t key = utils.trim(line.substr(0, i)).toLowerCase();\n\t val = utils.trim(line.substr(i + 1));\n\t\n\t if (key) {\n\t parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n\t }\n\t });\n\t\n\t return parsed;\n\t};\n\n\n/***/ }),\n/* 154 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(148);\n\t\n\t/**\n\t * Transform the data for a request or a response\n\t *\n\t * @param {Object|String} data The data to be transformed\n\t * @param {Array} headers The headers for the request or response\n\t * @param {Array|Function} fns A single function or Array of functions\n\t * @returns {*} The resulting transformed data\n\t */\n\tmodule.exports = function transformData(data, headers, fns) {\n\t /*eslint no-param-reassign:0*/\n\t utils.forEach(fns, function transform(fn) {\n\t data = fn(data, headers);\n\t });\n\t\n\t return data;\n\t};\n\n\n/***/ }),\n/* 155 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(148);\n\t\n\tmodule.exports = (\n\t utils.isStandardBrowserEnv() ?\n\t\n\t // Standard browser envs have full support of the APIs needed to test\n\t // whether the request URL is of the same origin as current location.\n\t (function standardBrowserEnv() {\n\t var msie = /(msie|trident)/i.test(navigator.userAgent);\n\t var urlParsingNode = document.createElement('a');\n\t var originURL;\n\t\n\t /**\n\t * Parse a URL to discover it's components\n\t *\n\t * @param {String} url The URL to be parsed\n\t * @returns {Object}\n\t */\n\t function resolveURL(url) {\n\t var href = url;\n\t\n\t if (msie) {\n\t // IE needs attribute set twice to normalize properties\n\t urlParsingNode.setAttribute('href', href);\n\t href = urlParsingNode.href;\n\t }\n\t\n\t urlParsingNode.setAttribute('href', href);\n\t\n\t // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n\t return {\n\t href: urlParsingNode.href,\n\t protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n\t host: urlParsingNode.host,\n\t search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n\t hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n\t hostname: urlParsingNode.hostname,\n\t port: urlParsingNode.port,\n\t pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n\t urlParsingNode.pathname :\n\t '/' + urlParsingNode.pathname\n\t };\n\t }\n\t\n\t originURL = resolveURL(window.location.href);\n\t\n\t /**\n\t * Determine if a URL shares the same origin as the current location\n\t *\n\t * @param {String} requestURL The URL to test\n\t * @returns {boolean} True if URL shares the same origin, otherwise false\n\t */\n\t return function isURLSameOrigin(requestURL) {\n\t var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n\t return (parsed.protocol === originURL.protocol &&\n\t parsed.host === originURL.host);\n\t };\n\t })() :\n\t\n\t // Non standard browser envs (web workers, react-native) lack needed support.\n\t (function nonStandardBrowserEnv() {\n\t return function isURLSameOrigin() {\n\t return true;\n\t };\n\t })()\n\t);\n\n\n/***/ }),\n/* 156 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\t// btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js\n\t\n\tvar chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n\t\n\tfunction InvalidCharacterError(message) {\n\t this.message = message;\n\t}\n\tInvalidCharacterError.prototype = new Error;\n\tInvalidCharacterError.prototype.code = 5;\n\tInvalidCharacterError.prototype.name = 'InvalidCharacterError';\n\t\n\tfunction btoa(input) {\n\t var str = String(input);\n\t var output = '';\n\t for (\n\t // initialize result and counter\n\t var block, charCode, idx = 0, map = chars;\n\t // if the next str index does not exist:\n\t // change the mapping table to \"=\"\n\t // check if d has no fractional digits\n\t str.charAt(idx | 0) || (map = '=', idx % 1);\n\t // \"8 - idx % 1 * 8\" generates the sequence 2, 4, 6, 8\n\t output += map.charAt(63 & block >> 8 - idx % 1 * 8)\n\t ) {\n\t charCode = str.charCodeAt(idx += 3 / 4);\n\t if (charCode > 0xFF) {\n\t throw new InvalidCharacterError('INVALID_CHARACTER_ERR: DOM Exception 5');\n\t }\n\t block = block << 8 | charCode;\n\t }\n\t return output;\n\t}\n\t\n\tmodule.exports = btoa;\n\n\n/***/ }),\n/* 157 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(148);\n\t\n\tmodule.exports = (\n\t utils.isStandardBrowserEnv() ?\n\t\n\t // Standard browser envs support document.cookie\n\t (function standardBrowserEnv() {\n\t return {\n\t write: function write(name, value, expires, path, domain, secure) {\n\t var cookie = [];\n\t cookie.push(name + '=' + encodeURIComponent(value));\n\t\n\t if (utils.isNumber(expires)) {\n\t cookie.push('expires=' + new Date(expires).toGMTString());\n\t }\n\t\n\t if (utils.isString(path)) {\n\t cookie.push('path=' + path);\n\t }\n\t\n\t if (utils.isString(domain)) {\n\t cookie.push('domain=' + domain);\n\t }\n\t\n\t if (secure === true) {\n\t cookie.push('secure');\n\t }\n\t\n\t document.cookie = cookie.join('; ');\n\t },\n\t\n\t read: function read(name) {\n\t var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n\t return (match ? decodeURIComponent(match[3]) : null);\n\t },\n\t\n\t remove: function remove(name) {\n\t this.write(name, '', Date.now() - 86400000);\n\t }\n\t };\n\t })() :\n\t\n\t // Non standard browser env (web workers, react-native) lack needed support.\n\t (function nonStandardBrowserEnv() {\n\t return {\n\t write: function write() {},\n\t read: function read() { return null; },\n\t remove: function remove() {}\n\t };\n\t })()\n\t);\n\n\n/***/ }),\n/* 158 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(148);\n\t\n\tfunction InterceptorManager() {\n\t this.handlers = [];\n\t}\n\t\n\t/**\n\t * Add a new interceptor to the stack\n\t *\n\t * @param {Function} fulfilled The function to handle `then` for a `Promise`\n\t * @param {Function} rejected The function to handle `reject` for a `Promise`\n\t *\n\t * @return {Number} An ID used to remove interceptor later\n\t */\n\tInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n\t this.handlers.push({\n\t fulfilled: fulfilled,\n\t rejected: rejected\n\t });\n\t return this.handlers.length - 1;\n\t};\n\t\n\t/**\n\t * Remove an interceptor from the stack\n\t *\n\t * @param {Number} id The ID that was returned by `use`\n\t */\n\tInterceptorManager.prototype.eject = function eject(id) {\n\t if (this.handlers[id]) {\n\t this.handlers[id] = null;\n\t }\n\t};\n\t\n\t/**\n\t * Iterate over all the registered interceptors\n\t *\n\t * This method is particularly useful for skipping over any\n\t * interceptors that may have become `null` calling `eject`.\n\t *\n\t * @param {Function} fn The function to call for each interceptor\n\t */\n\tInterceptorManager.prototype.forEach = function forEach(fn) {\n\t utils.forEach(this.handlers, function forEachHandler(h) {\n\t if (h !== null) {\n\t fn(h);\n\t }\n\t });\n\t};\n\t\n\tmodule.exports = InterceptorManager;\n\n\n/***/ }),\n/* 159 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\t/**\n\t * Determines whether the specified URL is absolute\n\t *\n\t * @param {string} url The URL to test\n\t * @returns {boolean} True if the specified URL is absolute, otherwise false\n\t */\n\tmodule.exports = function isAbsoluteURL(url) {\n\t // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n\t // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n\t // by any combination of letters, digits, plus, period, or hyphen.\n\t return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n\t};\n\n\n/***/ }),\n/* 160 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\t/**\n\t * Creates a new URL by combining the specified URLs\n\t *\n\t * @param {string} baseURL The base URL\n\t * @param {string} relativeURL The relative URL\n\t * @returns {string} The combined URL\n\t */\n\tmodule.exports = function combineURLs(baseURL, relativeURL) {\n\t return baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '');\n\t};\n\n\n/***/ }),\n/* 161 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\tmodule.exports = function bind(fn, thisArg) {\n\t return function wrap() {\n\t var args = new Array(arguments.length);\n\t for (var i = 0; i < args.length; i++) {\n\t args[i] = arguments[i];\n\t }\n\t return fn.apply(thisArg, args);\n\t };\n\t};\n\n\n/***/ }),\n/* 162 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\t/**\n\t * Syntactic sugar for invoking a function and expanding an array for arguments.\n\t *\n\t * Common use case would be to use `Function.prototype.apply`.\n\t *\n\t * ```js\n\t * function f(x, y, z) {}\n\t * var args = [1, 2, 3];\n\t * f.apply(null, args);\n\t * ```\n\t *\n\t * With `spread` this example can be re-written.\n\t *\n\t * ```js\n\t * spread(function(x, y, z) {})([1, 2, 3]);\n\t * ```\n\t *\n\t * @param {Function} callback\n\t * @returns {Function}\n\t */\n\tmodule.exports = function spread(callback) {\n\t return function wrap(arr) {\n\t return callback.apply(null, arr);\n\t };\n\t};\n\n\n/***/ }),\n/* 163 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, '__esModule', {\n\t value: true\n\t});\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\t\n\tvar _base = __webpack_require__(164);\n\t\n\tvar _base2 = _interopRequireDefault(_base);\n\t\n\texports['default'] = Object.assign(_base2['default'], {\n\t api: {\n\t //toggle between the environment you want to use by commenting the url\n\t // root: 'https://backend.senzodata.com/api'\n\t //root: 'https://backend-dev.senzodata.com/api'\n\t root: \"/api\"\n\t // local: 'http://localhost/api'\n\t },\n\t livefeed: {\n\t // root: 'https://livefeed.senzolive.com'\n\t root: 'https://devlivefeed.senzolive.com'\n\t }\n\t});\n\tmodule.exports = exports['default'];\n\n/***/ }),\n/* 164 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\texports[\"default\"] = {\n\t floorplanURLBase: \"/floorplans-v2/\",\n\t time: {\n\t period: {\n\t DAY: {\n\t format: \"HH:mm\",\n\t code: \"day\",\n\t title: \"Today so far\",\n\t prevTitle: \"Yesterday\"\n\t },\n\t WEEK: {\n\t format: \"ddd\",\n\t code: \"week\",\n\t title: \"This week so far\",\n\t prevTitle: \"Last week\"\n\t },\n\t MONTH: {\n\t format: \"MMM\",\n\t code: \"month\",\n\t title: \"Monthly utilization\",\n\t prevTitle: \"\"\n\t },\n\t CUSTOM: {\n\t format: \"MMM\",\n\t code: \"custom\",\n\t title: \"Custom timeframe\",\n\t prevTitle: \"\"\n\t }\n\t }\n\t },\n\t mode: {\n\t AVERAGE: {\n\t code: \"Average\",\n\t title: \"AVERAGE UTILIZATION\"\n\t },\n\t PEAK: {\n\t code: \"Peak\",\n\t title: \"PEAK UTILIZATION\"\n\t }\n\t },\n\t room: {\n\t MEETINGROOM: {\n\t type: \"Meeting rooms\",\n\t code: 'meeting_room',\n\t occupancyTag: 'MRO',\n\t efficiencyTag: 'MRE'\n\t },\n\t OPENAREA: {\n\t type: \"Open areas\",\n\t code: \"open_area\",\n\t occupancyTag: \"OAO\"\n\t },\n\t ALLAREA: {\n\t type: \"All areas\",\n\t code: 'all_areas',\n\t occupancyTag: \"TTO\"\n\t }\n\t },\n\t textOf: {\n\t meeting_room: \"meeting room\",\n\t open_area: \"working area\",\n\t location: \"location\",\n\t customer: \"company\"\n\t },\n\t nodeType: {\n\t customer: {\n\t code: \"customer\",\n\t text: \"Company\"\n\t }\n\t },\n\t tag: {\n\t OCCUPANCY: {\n\t type: 'Occupancy'\n\t },\n\t EFFICIENCY: {\n\t type: 'Efficiency'\n\t }\n\t },\n\t day: [\"Sundays\", \"Mondays\", \"Tuesdays\", \"Wednesdays\", \"Thursdays\", \"Fridays\", \"Saturdays\"],\n\t viewFilter: [{ code: \"ALL\", text: \"Show All\" }, { code: \"LIVE\", text: \"Live View\" }, { code: \"MAINTENANCE\", text: \"Maintenance View\" }, { code: \"CONFIGURATION\", text: \"Configuration View\" }],\n\t userTypeFilter: [{ code: \"ALL\", text: \"All Users\" }, { code: \"CADMIN\", text: \"Company Admins\" }, { code: \"LADMIN\", text: \"Local Admins\" }, { code: \"LUSER\", text: \"Local Users\" }, { code: \"SUSER\", text: \"Support Users\" }],\n\t sensorStatusFilter: [{ code: \"ALL\", text: \"All sensors\" }, { code: \"ONLINE\", text: \"Online sensors\" }, { code: \"MAINTENANCE\", text: \"Offline sensors\" }\n\t // {code:\"UNREG\", text:\"Unregistered sensors\"},\n\t ],\n\t roles: [{ code: \"!ADMIN\", rolecode: \"ADMIN\", text: \"Company administrator\", singular: \"a company administrator\" }, { code: \".ADMIN\", rolecode: \"ADMIN\", text: \"Local administrator\", singular: \"a local administrator\" }, { code: \".LOCALUSER\", rolecode: \"LOCALUSER\", text: \"Local user\", singular: \"a local user\" }, { code: \".SUPPORTUSER\", rolecode: \"SUPPORTUSER\", text: \"Support user\", singular: \"a support user\" }]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 165 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*\n\t * Toastr\n\t * Copyright 2012-2015\n\t * Authors: John Papa, Hans Fjällemark, and Tim Ferrell.\n\t * All Rights Reserved.\n\t * Use, reproduction, distribution, and modification of this code is subject to the terms and\n\t * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php\n\t *\n\t * ARIA Support: Greta Krafsig\n\t *\n\t * Project: https://github.com/CodeSeven/toastr\n\t */\n\t/* global define */\n\t(function (define) {\n\t !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(166)], __WEBPACK_AMD_DEFINE_RESULT__ = function ($) {\n\t return (function () {\n\t var $container;\n\t var listener;\n\t var toastId = 0;\n\t var toastType = {\n\t error: 'error',\n\t info: 'info',\n\t success: 'success',\n\t warning: 'warning'\n\t };\n\t\n\t var toastr = {\n\t clear: clear,\n\t remove: remove,\n\t error: error,\n\t getContainer: getContainer,\n\t info: info,\n\t options: {},\n\t subscribe: subscribe,\n\t success: success,\n\t version: '2.1.4',\n\t warning: warning\n\t };\n\t\n\t var previousToast;\n\t\n\t return toastr;\n\t\n\t ////////////////\n\t\n\t function error(message, title, optionsOverride) {\n\t return notify({\n\t type: toastType.error,\n\t iconClass: getOptions().iconClasses.error,\n\t message: message,\n\t optionsOverride: optionsOverride,\n\t title: title\n\t });\n\t }\n\t\n\t function getContainer(options, create) {\n\t if (!options) { options = getOptions(); }\n\t $container = $('#' + options.containerId);\n\t if ($container.length) {\n\t return $container;\n\t }\n\t if (create) {\n\t $container = createContainer(options);\n\t }\n\t return $container;\n\t }\n\t\n\t function info(message, title, optionsOverride) {\n\t return notify({\n\t type: toastType.info,\n\t iconClass: getOptions().iconClasses.info,\n\t message: message,\n\t optionsOverride: optionsOverride,\n\t title: title\n\t });\n\t }\n\t\n\t function subscribe(callback) {\n\t listener = callback;\n\t }\n\t\n\t function success(message, title, optionsOverride) {\n\t return notify({\n\t type: toastType.success,\n\t iconClass: getOptions().iconClasses.success,\n\t message: message,\n\t optionsOverride: optionsOverride,\n\t title: title\n\t });\n\t }\n\t\n\t function warning(message, title, optionsOverride) {\n\t return notify({\n\t type: toastType.warning,\n\t iconClass: getOptions().iconClasses.warning,\n\t message: message,\n\t optionsOverride: optionsOverride,\n\t title: title\n\t });\n\t }\n\t\n\t function clear($toastElement, clearOptions) {\n\t var options = getOptions();\n\t if (!$container) { getContainer(options); }\n\t if (!clearToast($toastElement, options, clearOptions)) {\n\t clearContainer(options);\n\t }\n\t }\n\t\n\t function remove($toastElement) {\n\t var options = getOptions();\n\t if (!$container) { getContainer(options); }\n\t if ($toastElement && $(':focus', $toastElement).length === 0) {\n\t removeToast($toastElement);\n\t return;\n\t }\n\t if ($container.children().length) {\n\t $container.remove();\n\t }\n\t }\n\t\n\t // internal functions\n\t\n\t function clearContainer (options) {\n\t var toastsToClear = $container.children();\n\t for (var i = toastsToClear.length - 1; i >= 0; i--) {\n\t clearToast($(toastsToClear[i]), options);\n\t }\n\t }\n\t\n\t function clearToast ($toastElement, options, clearOptions) {\n\t var force = clearOptions && clearOptions.force ? clearOptions.force : false;\n\t if ($toastElement && (force || $(':focus', $toastElement).length === 0)) {\n\t $toastElement[options.hideMethod]({\n\t duration: options.hideDuration,\n\t easing: options.hideEasing,\n\t complete: function () { removeToast($toastElement); }\n\t });\n\t return true;\n\t }\n\t return false;\n\t }\n\t\n\t function createContainer(options) {\n\t $container = $('')\n\t .attr('id', options.containerId)\n\t .addClass(options.positionClass);\n\t\n\t $container.appendTo($(options.target));\n\t return $container;\n\t }\n\t\n\t function getDefaults() {\n\t return {\n\t tapToDismiss: true,\n\t toastClass: 'toast',\n\t containerId: 'toast-container',\n\t debug: false,\n\t\n\t showMethod: 'fadeIn', //fadeIn, slideDown, and show are built into jQuery\n\t showDuration: 300,\n\t showEasing: 'swing', //swing and linear are built into jQuery\n\t onShown: undefined,\n\t hideMethod: 'fadeOut',\n\t hideDuration: 1000,\n\t hideEasing: 'swing',\n\t onHidden: undefined,\n\t closeMethod: false,\n\t closeDuration: false,\n\t closeEasing: false,\n\t closeOnHover: true,\n\t\n\t extendedTimeOut: 1000,\n\t iconClasses: {\n\t error: 'toast-error',\n\t info: 'toast-info',\n\t success: 'toast-success',\n\t warning: 'toast-warning'\n\t },\n\t iconClass: 'toast-info',\n\t positionClass: 'toast-top-right',\n\t timeOut: 5000, // Set timeOut and extendedTimeOut to 0 to make it sticky\n\t titleClass: 'toast-title',\n\t messageClass: 'toast-message',\n\t escapeHtml: false,\n\t target: 'body',\n\t closeHtml: '',\n\t closeClass: 'toast-close-button',\n\t newestOnTop: true,\n\t preventDuplicates: false,\n\t progressBar: false,\n\t progressClass: 'toast-progress',\n\t rtl: false\n\t };\n\t }\n\t\n\t function publish(args) {\n\t if (!listener) { return; }\n\t listener(args);\n\t }\n\t\n\t function notify(map) {\n\t var options = getOptions();\n\t var iconClass = map.iconClass || options.iconClass;\n\t\n\t if (typeof (map.optionsOverride) !== 'undefined') {\n\t options = $.extend(options, map.optionsOverride);\n\t iconClass = map.optionsOverride.iconClass || iconClass;\n\t }\n\t\n\t if (shouldExit(options, map)) { return; }\n\t\n\t toastId++;\n\t\n\t $container = getContainer(options, true);\n\t\n\t var intervalId = null;\n\t var $toastElement = $('');\n\t var $titleElement = $('');\n\t var $messageElement = $('');\n\t var $progressElement = $('');\n\t var $closeElement = $(options.closeHtml);\n\t var progressBar = {\n\t intervalId: null,\n\t hideEta: null,\n\t maxHideTime: null\n\t };\n\t var response = {\n\t toastId: toastId,\n\t state: 'visible',\n\t startTime: new Date(),\n\t options: options,\n\t map: map\n\t };\n\t\n\t personalizeToast();\n\t\n\t displayToast();\n\t\n\t handleEvents();\n\t\n\t publish(response);\n\t\n\t if (options.debug && console) {\n\t console.log(response);\n\t }\n\t\n\t return $toastElement;\n\t\n\t function escapeHtml(source) {\n\t if (source == null) {\n\t source = '';\n\t }\n\t\n\t return source\n\t .replace(/&/g, '&')\n\t .replace(/\"/g, '"')\n\t .replace(/'/g, ''')\n\t .replace(//g, '>');\n\t }\n\t\n\t function personalizeToast() {\n\t setIcon();\n\t setTitle();\n\t setMessage();\n\t setCloseButton();\n\t setProgressBar();\n\t setRTL();\n\t setSequence();\n\t setAria();\n\t }\n\t\n\t function setAria() {\n\t var ariaValue = '';\n\t switch (map.iconClass) {\n\t case 'toast-success':\n\t case 'toast-info':\n\t ariaValue = 'polite';\n\t break;\n\t default:\n\t ariaValue = 'assertive';\n\t }\n\t $toastElement.attr('aria-live', ariaValue);\n\t }\n\t\n\t function handleEvents() {\n\t if (options.closeOnHover) {\n\t $toastElement.hover(stickAround, delayedHideToast);\n\t }\n\t\n\t if (!options.onclick && options.tapToDismiss) {\n\t $toastElement.click(hideToast);\n\t }\n\t\n\t if (options.closeButton && $closeElement) {\n\t $closeElement.click(function (event) {\n\t if (event.stopPropagation) {\n\t event.stopPropagation();\n\t } else if (event.cancelBubble !== undefined && event.cancelBubble !== true) {\n\t event.cancelBubble = true;\n\t }\n\t\n\t if (options.onCloseClick) {\n\t options.onCloseClick(event);\n\t }\n\t\n\t hideToast(true);\n\t });\n\t }\n\t\n\t if (options.onclick) {\n\t $toastElement.click(function (event) {\n\t options.onclick(event);\n\t hideToast();\n\t });\n\t }\n\t }\n\t\n\t function displayToast() {\n\t $toastElement.hide();\n\t\n\t $toastElement[options.showMethod](\n\t {duration: options.showDuration, easing: options.showEasing, complete: options.onShown}\n\t );\n\t\n\t if (options.timeOut > 0) {\n\t intervalId = setTimeout(hideToast, options.timeOut);\n\t progressBar.maxHideTime = parseFloat(options.timeOut);\n\t progressBar.hideEta = new Date().getTime() + progressBar.maxHideTime;\n\t if (options.progressBar) {\n\t progressBar.intervalId = setInterval(updateProgress, 10);\n\t }\n\t }\n\t }\n\t\n\t function setIcon() {\n\t if (map.iconClass) {\n\t $toastElement.addClass(options.toastClass).addClass(iconClass);\n\t }\n\t }\n\t\n\t function setSequence() {\n\t if (options.newestOnTop) {\n\t $container.prepend($toastElement);\n\t } else {\n\t $container.append($toastElement);\n\t }\n\t }\n\t\n\t function setTitle() {\n\t if (map.title) {\n\t var suffix = map.title;\n\t if (options.escapeHtml) {\n\t suffix = escapeHtml(map.title);\n\t }\n\t $titleElement.append(suffix).addClass(options.titleClass);\n\t $toastElement.append($titleElement);\n\t }\n\t }\n\t\n\t function setMessage() {\n\t if (map.message) {\n\t var suffix = map.message;\n\t if (options.escapeHtml) {\n\t suffix = escapeHtml(map.message);\n\t }\n\t $messageElement.append(suffix).addClass(options.messageClass);\n\t $toastElement.append($messageElement);\n\t }\n\t }\n\t\n\t function setCloseButton() {\n\t if (options.closeButton) {\n\t $closeElement.addClass(options.closeClass).attr('role', 'button');\n\t $toastElement.prepend($closeElement);\n\t }\n\t }\n\t\n\t function setProgressBar() {\n\t if (options.progressBar) {\n\t $progressElement.addClass(options.progressClass);\n\t $toastElement.prepend($progressElement);\n\t }\n\t }\n\t\n\t function setRTL() {\n\t if (options.rtl) {\n\t $toastElement.addClass('rtl');\n\t }\n\t }\n\t\n\t function shouldExit(options, map) {\n\t if (options.preventDuplicates) {\n\t if (map.message === previousToast) {\n\t return true;\n\t } else {\n\t previousToast = map.message;\n\t }\n\t }\n\t return false;\n\t }\n\t\n\t function hideToast(override) {\n\t var method = override && options.closeMethod !== false ? options.closeMethod : options.hideMethod;\n\t var duration = override && options.closeDuration !== false ?\n\t options.closeDuration : options.hideDuration;\n\t var easing = override && options.closeEasing !== false ? options.closeEasing : options.hideEasing;\n\t if ($(':focus', $toastElement).length && !override) {\n\t return;\n\t }\n\t clearTimeout(progressBar.intervalId);\n\t return $toastElement[method]({\n\t duration: duration,\n\t easing: easing,\n\t complete: function () {\n\t removeToast($toastElement);\n\t clearTimeout(intervalId);\n\t if (options.onHidden && response.state !== 'hidden') {\n\t options.onHidden();\n\t }\n\t response.state = 'hidden';\n\t response.endTime = new Date();\n\t publish(response);\n\t }\n\t });\n\t }\n\t\n\t function delayedHideToast() {\n\t if (options.timeOut > 0 || options.extendedTimeOut > 0) {\n\t intervalId = setTimeout(hideToast, options.extendedTimeOut);\n\t progressBar.maxHideTime = parseFloat(options.extendedTimeOut);\n\t progressBar.hideEta = new Date().getTime() + progressBar.maxHideTime;\n\t }\n\t }\n\t\n\t function stickAround() {\n\t clearTimeout(intervalId);\n\t progressBar.hideEta = 0;\n\t $toastElement.stop(true, true)[options.showMethod](\n\t {duration: options.showDuration, easing: options.showEasing}\n\t );\n\t }\n\t\n\t function updateProgress() {\n\t var percentage = ((progressBar.hideEta - (new Date().getTime())) / progressBar.maxHideTime) * 100;\n\t $progressElement.width(percentage + '%');\n\t }\n\t }\n\t\n\t function getOptions() {\n\t return $.extend({}, getDefaults(), toastr.options);\n\t }\n\t\n\t function removeToast($toastElement) {\n\t if (!$container) { $container = getContainer(); }\n\t if ($toastElement.is(':visible')) {\n\t return;\n\t }\n\t $toastElement.remove();\n\t $toastElement = null;\n\t if ($container.children().length === 0) {\n\t $container.remove();\n\t previousToast = undefined;\n\t }\n\t }\n\t\n\t })();\n\t }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t}(__webpack_require__(167)));\n\n\n/***/ }),\n/* 166 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!\n\t * jQuery JavaScript Library v3.6.0\n\t * https://jquery.com/\n\t *\n\t * Includes Sizzle.js\n\t * https://sizzlejs.com/\n\t *\n\t * Copyright OpenJS Foundation and other contributors\n\t * Released under the MIT license\n\t * https://jquery.org/license\n\t *\n\t * Date: 2021-03-02T17:08Z\n\t */\n\t( function( global, factory ) {\n\t\n\t\t\"use strict\";\n\t\n\t\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\n\t\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t\t// is present, execute the factory and get jQuery.\n\t\t\t// For environments that do not have a `window` with a `document`\n\t\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t\t// This accentuates the need for the creation of a real `window`.\n\t\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t\t// See ticket #14549 for more info.\n\t\t\tmodule.exports = global.document ?\n\t\t\t\tfactory( global, true ) :\n\t\t\t\tfunction( w ) {\n\t\t\t\t\tif ( !w.document ) {\n\t\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t\t}\n\t\t\t\t\treturn factory( w );\n\t\t\t\t};\n\t\t} else {\n\t\t\tfactory( global );\n\t\t}\n\t\n\t// Pass this if window is not defined yet\n\t} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\t\n\t// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n\t// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n\t// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n\t// enough that all such attempts are guarded in a try block.\n\t\"use strict\";\n\t\n\tvar arr = [];\n\t\n\tvar getProto = Object.getPrototypeOf;\n\t\n\tvar slice = arr.slice;\n\t\n\tvar flat = arr.flat ? function( array ) {\n\t\treturn arr.flat.call( array );\n\t} : function( array ) {\n\t\treturn arr.concat.apply( [], array );\n\t};\n\t\n\t\n\tvar push = arr.push;\n\t\n\tvar indexOf = arr.indexOf;\n\t\n\tvar class2type = {};\n\t\n\tvar toString = class2type.toString;\n\t\n\tvar hasOwn = class2type.hasOwnProperty;\n\t\n\tvar fnToString = hasOwn.toString;\n\t\n\tvar ObjectFunctionString = fnToString.call( Object );\n\t\n\tvar support = {};\n\t\n\tvar isFunction = function isFunction( obj ) {\n\t\n\t\t\t// Support: Chrome <=57, Firefox <=52\n\t\t\t// In some browsers, typeof returns \"function\" for HTML