does.\n\t contentKey = 'textContent' in document.documentElement ? 'textContent' : 'innerText';\n\t }\n\t return contentKey;\n\t}\n\t\n\tmodule.exports = getTextContentAccessor;\n\n/***/ },\n/* 521 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, 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 * @providesModule getVendorPrefixedEventName\n\t */\n\t\n\t'use strict';\n\t\n\tvar ExecutionEnvironment = __webpack_require__(30);\n\t\n\t/**\n\t * Generate a mapping of standard vendor prefixes using the defined style property and event name.\n\t *\n\t * @param {string} styleProp\n\t * @param {string} eventName\n\t * @returns {object}\n\t */\n\tfunction makePrefixMap(styleProp, eventName) {\n\t var prefixes = {};\n\t\n\t prefixes[styleProp.toLowerCase()] = eventName.toLowerCase();\n\t prefixes['Webkit' + styleProp] = 'webkit' + eventName;\n\t prefixes['Moz' + styleProp] = 'moz' + eventName;\n\t prefixes['ms' + styleProp] = 'MS' + eventName;\n\t prefixes['O' + styleProp] = 'o' + eventName.toLowerCase();\n\t\n\t return prefixes;\n\t}\n\t\n\t/**\n\t * A list of event names to a configurable list of vendor prefixes.\n\t */\n\tvar vendorPrefixes = {\n\t animationend: makePrefixMap('Animation', 'AnimationEnd'),\n\t animationiteration: makePrefixMap('Animation', 'AnimationIteration'),\n\t animationstart: makePrefixMap('Animation', 'AnimationStart'),\n\t transitionend: makePrefixMap('Transition', 'TransitionEnd')\n\t};\n\t\n\t/**\n\t * Event names that have already been detected and prefixed (if applicable).\n\t */\n\tvar prefixedEventNames = {};\n\t\n\t/**\n\t * Element to check for prefixes on.\n\t */\n\tvar style = {};\n\t\n\t/**\n\t * Bootstrap if a DOM exists.\n\t */\n\tif (ExecutionEnvironment.canUseDOM) {\n\t style = document.createElement('div').style;\n\t\n\t // On some platforms, in particular some releases of Android 4.x,\n\t // the un-prefixed \"animation\" and \"transition\" properties are defined on the\n\t // style object but the events that fire will still be prefixed, so we need\n\t // to check if the un-prefixed events are usable, and if not remove them from the map.\n\t if (!('AnimationEvent' in window)) {\n\t delete vendorPrefixes.animationend.animation;\n\t delete vendorPrefixes.animationiteration.animation;\n\t delete vendorPrefixes.animationstart.animation;\n\t }\n\t\n\t // Same as above\n\t if (!('TransitionEvent' in window)) {\n\t delete vendorPrefixes.transitionend.transition;\n\t }\n\t}\n\t\n\t/**\n\t * Attempts to determine the correct vendor prefixed event name.\n\t *\n\t * @param {string} eventName\n\t * @returns {string}\n\t */\n\tfunction getVendorPrefixedEventName(eventName) {\n\t if (prefixedEventNames[eventName]) {\n\t return prefixedEventNames[eventName];\n\t } else if (!vendorPrefixes[eventName]) {\n\t return eventName;\n\t }\n\t\n\t var prefixMap = vendorPrefixes[eventName];\n\t\n\t for (var styleProp in prefixMap) {\n\t if (prefixMap.hasOwnProperty(styleProp) && styleProp in style) {\n\t return prefixedEventNames[eventName] = prefixMap[styleProp];\n\t }\n\t }\n\t\n\t return '';\n\t}\n\t\n\tmodule.exports = getVendorPrefixedEventName;\n\n/***/ },\n/* 522 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, 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 * @providesModule instantiateReactComponent\n\t */\n\t\n\t'use strict';\n\t\n\tvar _prodInvariant = __webpack_require__(9),\n\t _assign = __webpack_require__(16);\n\t\n\tvar ReactCompositeComponent = __webpack_require__(1080);\n\tvar ReactEmptyComponent = __webpack_require__(503);\n\tvar ReactHostComponent = __webpack_require__(505);\n\t\n\tvar invariant = __webpack_require__(6);\n\tvar warning = __webpack_require__(11);\n\t\n\t// To avoid a cyclic dependency, we create the final class in this module\n\tvar ReactCompositeComponentWrapper = function (element) {\n\t this.construct(element);\n\t};\n\t_assign(ReactCompositeComponentWrapper.prototype, ReactCompositeComponent.Mixin, {\n\t _instantiateReactComponent: instantiateReactComponent\n\t});\n\t\n\tfunction getDeclarationErrorAddendum(owner) {\n\t if (owner) {\n\t var name = owner.getName();\n\t if (name) {\n\t return ' Check the render method of `' + name + '`.';\n\t }\n\t }\n\t return '';\n\t}\n\t\n\t/**\n\t * Check if the type reference is a known internal type. I.e. not a user\n\t * provided composite type.\n\t *\n\t * @param {function} type\n\t * @return {boolean} Returns true if this is a valid internal type.\n\t */\n\tfunction isInternalComponentType(type) {\n\t return typeof type === 'function' && typeof type.prototype !== 'undefined' && typeof type.prototype.mountComponent === 'function' && typeof type.prototype.receiveComponent === 'function';\n\t}\n\t\n\tvar nextDebugID = 1;\n\t\n\t/**\n\t * Given a ReactNode, create an instance that will actually be mounted.\n\t *\n\t * @param {ReactNode} node\n\t * @param {boolean} shouldHaveDebugID\n\t * @return {object} A new instance of the element's constructor.\n\t * @protected\n\t */\n\tfunction instantiateReactComponent(node, shouldHaveDebugID) {\n\t var instance;\n\t\n\t if (node === null || node === false) {\n\t instance = ReactEmptyComponent.create(instantiateReactComponent);\n\t } else if (typeof node === 'object') {\n\t var element = node;\n\t !(element && (typeof element.type === 'function' || typeof element.type === 'string')) ? false ? invariant(false, 'Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s', element.type == null ? element.type : typeof element.type, getDeclarationErrorAddendum(element._owner)) : _prodInvariant('130', element.type == null ? element.type : typeof element.type, getDeclarationErrorAddendum(element._owner)) : void 0;\n\t\n\t // Special case string values\n\t if (typeof element.type === 'string') {\n\t instance = ReactHostComponent.createInternalComponent(element);\n\t } else if (isInternalComponentType(element.type)) {\n\t // This is temporarily available for custom components that are not string\n\t // representations. I.e. ART. Once those are updated to use the string\n\t // representation, we can drop this code path.\n\t instance = new element.type(element);\n\t\n\t // We renamed this. Allow the old name for compat. :(\n\t if (!instance.getHostNode) {\n\t instance.getHostNode = instance.getNativeNode;\n\t }\n\t } else {\n\t instance = new ReactCompositeComponentWrapper(element);\n\t }\n\t } else if (typeof node === 'string' || typeof node === 'number') {\n\t instance = ReactHostComponent.createInstanceForText(node);\n\t } else {\n\t true ? false ? invariant(false, 'Encountered invalid React node of type %s', typeof node) : _prodInvariant('131', typeof node) : void 0;\n\t }\n\t\n\t if (false) {\n\t process.env.NODE_ENV !== 'production' ? warning(typeof instance.mountComponent === 'function' && typeof instance.receiveComponent === 'function' && typeof instance.getHostNode === 'function' && typeof instance.unmountComponent === 'function', 'Only React Components can be mounted.') : void 0;\n\t }\n\t\n\t // These two fields are used by the DOM and ART diffing algorithms\n\t // respectively. Instead of using expandos on components, we should be\n\t // storing the state needed by the diffing algorithms elsewhere.\n\t instance._mountIndex = 0;\n\t instance._mountImage = null;\n\t\n\t if (false) {\n\t instance._debugID = shouldHaveDebugID ? nextDebugID++ : 0;\n\t }\n\t\n\t // Internal instances should fully constructed at this point, so they should\n\t // not get any new fields added to them at this point.\n\t if (false) {\n\t if (Object.preventExtensions) {\n\t Object.preventExtensions(instance);\n\t }\n\t }\n\t\n\t return instance;\n\t}\n\t\n\tmodule.exports = instantiateReactComponent;\n\n/***/ },\n/* 523 */\n/***/ function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, 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 * @providesModule isTextInputElement\n\t * \n\t */\n\t\n\t'use strict';\n\t\n\t/**\n\t * @see http://www.whatwg.org/specs/web-apps/current-work/multipage/the-input-element.html#input-type-attr-summary\n\t */\n\t\n\tvar supportedInputTypes = {\n\t 'color': true,\n\t 'date': true,\n\t 'datetime': true,\n\t 'datetime-local': true,\n\t 'email': true,\n\t 'month': true,\n\t 'number': true,\n\t 'password': true,\n\t 'range': true,\n\t 'search': true,\n\t 'tel': true,\n\t 'text': true,\n\t 'time': true,\n\t 'url': true,\n\t 'week': true\n\t};\n\t\n\tfunction isTextInputElement(elem) {\n\t var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n\t\n\t if (nodeName === 'input') {\n\t return !!supportedInputTypes[elem.type];\n\t }\n\t\n\t if (nodeName === 'textarea') {\n\t return true;\n\t }\n\t\n\t return false;\n\t}\n\t\n\tmodule.exports = isTextInputElement;\n\n/***/ },\n/* 524 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, 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 * @providesModule onlyChild\n\t */\n\t'use strict';\n\t\n\tvar _prodInvariant = __webpack_require__(9);\n\t\n\tvar ReactElement = __webpack_require__(54);\n\t\n\tvar invariant = __webpack_require__(6);\n\t\n\t/**\n\t * Returns the first child in a collection of children and verifies that there\n\t * is only one child in the collection.\n\t *\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.children.only\n\t *\n\t * The current implementation of this function assumes that a single child gets\n\t * passed without a wrapper, but the purpose of this helper function is to\n\t * abstract away the particular structure of children.\n\t *\n\t * @param {?object} children Child collection structure.\n\t * @return {ReactElement} The first and only `ReactElement` contained in the\n\t * structure.\n\t */\n\tfunction onlyChild(children) {\n\t !ReactElement.isValidElement(children) ? false ? invariant(false, 'React.Children.only expected to receive a single React element child.') : _prodInvariant('143') : void 0;\n\t return children;\n\t}\n\t\n\tmodule.exports = onlyChild;\n\n/***/ },\n/* 525 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, 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 * @providesModule setTextContent\n\t */\n\t\n\t'use strict';\n\t\n\tvar ExecutionEnvironment = __webpack_require__(30);\n\tvar escapeTextContentForBrowser = __webpack_require__(165);\n\tvar setInnerHTML = __webpack_require__(166);\n\t\n\t/**\n\t * Set the textContent property of a node, ensuring that whitespace is preserved\n\t * even in IE8. innerText is a poor substitute for textContent and, among many\n\t * issues, inserts
instead of the literal newline chars. innerHTML behaves\n\t * as it should.\n\t *\n\t * @param {DOMElement} node\n\t * @param {string} text\n\t * @internal\n\t */\n\tvar setTextContent = function (node, text) {\n\t if (text) {\n\t var firstChild = node.firstChild;\n\t\n\t if (firstChild && firstChild === node.lastChild && firstChild.nodeType === 3) {\n\t firstChild.nodeValue = text;\n\t return;\n\t }\n\t }\n\t node.textContent = text;\n\t};\n\t\n\tif (ExecutionEnvironment.canUseDOM) {\n\t if (!('textContent' in document.documentElement)) {\n\t setTextContent = function (node, text) {\n\t setInnerHTML(node, escapeTextContentForBrowser(text));\n\t };\n\t }\n\t}\n\t\n\tmodule.exports = setTextContent;\n\n/***/ },\n/* 526 */\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 _es6Error = __webpack_require__(830);\n\t\n\tvar _es6Error2 = _interopRequireDefault(_es6Error);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar SubmissionError = function (_ExtendableError) {\n\t _inherits(SubmissionError, _ExtendableError);\n\t\n\t function SubmissionError(errors) {\n\t _classCallCheck(this, SubmissionError);\n\t\n\t var _this = _possibleConstructorReturn(this, (SubmissionError.__proto__ || Object.getPrototypeOf(SubmissionError)).call(this, 'Submit Validation Failed'));\n\t\n\t _this.errors = errors;\n\t return _this;\n\t }\n\t\n\t return SubmissionError;\n\t}(_es6Error2.default);\n\t\n\texports.default = SubmissionError;\n\n/***/ },\n/* 527 */\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.updateSyncWarnings = exports.updateSyncErrors = exports.untouch = exports.unregisterField = exports.touch = exports.setSubmitSucceeded = exports.setSubmitFailed = exports.submit = exports.stopSubmit = exports.stopAsyncValidation = exports.startSubmit = exports.startAsyncValidation = exports.reset = exports.registerField = exports.initialize = exports.focus = exports.destroy = exports.clearAsyncError = exports.clearSubmit = exports.change = exports.blur = exports.autofill = exports.arrayUnshift = exports.arraySwap = exports.arraySplice = exports.arrayShift = exports.arrayRemoveAll = exports.arrayRemove = exports.arrayPush = exports.arrayPop = exports.arrayMove = exports.arrayInsert = undefined;\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 _actionTypes = __webpack_require__(253);\n\t\n\tvar arrayInsert = exports.arrayInsert = function arrayInsert(form, field, index, value) {\n\t return { type: _actionTypes.ARRAY_INSERT, meta: { form: form, field: field, index: index }, payload: value };\n\t};\n\t\n\tvar arrayMove = exports.arrayMove = function arrayMove(form, field, from, to) {\n\t return { type: _actionTypes.ARRAY_MOVE, meta: { form: form, field: field, from: from, to: to } };\n\t};\n\t\n\tvar arrayPop = exports.arrayPop = function arrayPop(form, field) {\n\t return { type: _actionTypes.ARRAY_POP, meta: { form: form, field: field } };\n\t};\n\t\n\tvar arrayPush = exports.arrayPush = function arrayPush(form, field, value) {\n\t return { type: _actionTypes.ARRAY_PUSH, meta: { form: form, field: field }, payload: value };\n\t};\n\t\n\tvar arrayRemove = exports.arrayRemove = function arrayRemove(form, field, index) {\n\t return { type: _actionTypes.ARRAY_REMOVE, meta: { form: form, field: field, index: index } };\n\t};\n\t\n\tvar arrayRemoveAll = exports.arrayRemoveAll = function arrayRemoveAll(form, field) {\n\t return { type: _actionTypes.ARRAY_REMOVE_ALL, meta: { form: form, field: field } };\n\t};\n\t\n\tvar arrayShift = exports.arrayShift = function arrayShift(form, field) {\n\t return { type: _actionTypes.ARRAY_SHIFT, meta: { form: form, field: field } };\n\t};\n\t\n\tvar arraySplice = exports.arraySplice = function arraySplice(form, field, index, removeNum, value) {\n\t var action = {\n\t type: _actionTypes.ARRAY_SPLICE,\n\t meta: { form: form, field: field, index: index, removeNum: removeNum }\n\t };\n\t if (value !== undefined) {\n\t action.payload = value;\n\t }\n\t return action;\n\t};\n\t\n\tvar arraySwap = exports.arraySwap = function arraySwap(form, field, indexA, indexB) {\n\t if (indexA === indexB) {\n\t throw new Error('Swap indices cannot be equal');\n\t }\n\t if (indexA < 0 || indexB < 0) {\n\t throw new Error('Swap indices cannot be negative');\n\t }\n\t return { type: _actionTypes.ARRAY_SWAP, meta: { form: form, field: field, indexA: indexA, indexB: indexB } };\n\t};\n\t\n\tvar arrayUnshift = exports.arrayUnshift = function arrayUnshift(form, field, value) {\n\t return { type: _actionTypes.ARRAY_UNSHIFT, meta: { form: form, field: field }, payload: value };\n\t};\n\t\n\tvar autofill = exports.autofill = function autofill(form, field, value) {\n\t return { type: _actionTypes.AUTOFILL, meta: { form: form, field: field }, payload: value };\n\t};\n\t\n\tvar blur = exports.blur = function blur(form, field, value, touch) {\n\t return { type: _actionTypes.BLUR, meta: { form: form, field: field, touch: touch }, payload: value };\n\t};\n\t\n\tvar change = exports.change = function change(form, field, value, touch, persistentSubmitErrors) {\n\t return { type: _actionTypes.CHANGE, meta: { form: form, field: field, touch: touch, persistentSubmitErrors: persistentSubmitErrors }, payload: value };\n\t};\n\t\n\tvar clearSubmit = exports.clearSubmit = function clearSubmit(form) {\n\t return { type: _actionTypes.CLEAR_SUBMIT, meta: { form: form } };\n\t};\n\t\n\tvar clearAsyncError = exports.clearAsyncError = function clearAsyncError(form, field) {\n\t return { type: _actionTypes.CLEAR_ASYNC_ERROR, meta: { form: form, field: field } };\n\t};\n\t\n\tvar destroy = exports.destroy = function destroy() {\n\t for (var _len = arguments.length, form = Array(_len), _key = 0; _key < _len; _key++) {\n\t form[_key] = arguments[_key];\n\t }\n\t\n\t return { type: _actionTypes.DESTROY, meta: { form: form } };\n\t};\n\t\n\tvar focus = exports.focus = function focus(form, field) {\n\t return { type: _actionTypes.FOCUS, meta: { form: form, field: field } };\n\t};\n\t\n\tvar initialize = exports.initialize = function initialize(form, values, keepDirty) {\n\t var otherMeta = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};\n\t\n\t if (keepDirty instanceof Object) {\n\t otherMeta = keepDirty;\n\t keepDirty = false;\n\t }\n\t return { type: _actionTypes.INITIALIZE, meta: _extends({ form: form, keepDirty: keepDirty }, otherMeta), payload: values };\n\t};\n\t\n\tvar registerField = exports.registerField = function registerField(form, name, type) {\n\t return { type: _actionTypes.REGISTER_FIELD, meta: { form: form }, payload: { name: name, type: type } };\n\t};\n\t\n\tvar reset = exports.reset = function reset(form) {\n\t return { type: _actionTypes.RESET, meta: { form: form } };\n\t};\n\t\n\tvar startAsyncValidation = exports.startAsyncValidation = function startAsyncValidation(form, field) {\n\t return { type: _actionTypes.START_ASYNC_VALIDATION, meta: { form: form, field: field } };\n\t};\n\t\n\tvar startSubmit = exports.startSubmit = function startSubmit(form) {\n\t return { type: _actionTypes.START_SUBMIT, meta: { form: form } };\n\t};\n\t\n\tvar stopAsyncValidation = exports.stopAsyncValidation = function stopAsyncValidation(form, errors) {\n\t var action = {\n\t type: _actionTypes.STOP_ASYNC_VALIDATION,\n\t meta: { form: form },\n\t payload: errors\n\t };\n\t if (errors && Object.keys(errors).length) {\n\t action.error = true;\n\t }\n\t return action;\n\t};\n\t\n\tvar stopSubmit = exports.stopSubmit = function stopSubmit(form, errors) {\n\t var action = {\n\t type: _actionTypes.STOP_SUBMIT,\n\t meta: { form: form },\n\t payload: errors\n\t };\n\t if (errors && Object.keys(errors).length) {\n\t action.error = true;\n\t }\n\t return action;\n\t};\n\t\n\tvar submit = exports.submit = function submit(form) {\n\t return { type: _actionTypes.SUBMIT, meta: { form: form } };\n\t};\n\t\n\tvar setSubmitFailed = exports.setSubmitFailed = function setSubmitFailed(form) {\n\t for (var _len2 = arguments.length, fields = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n\t fields[_key2 - 1] = arguments[_key2];\n\t }\n\t\n\t return { type: _actionTypes.SET_SUBMIT_FAILED, meta: { form: form, fields: fields }, error: true };\n\t};\n\t\n\tvar setSubmitSucceeded = exports.setSubmitSucceeded = function setSubmitSucceeded(form) {\n\t for (var _len3 = arguments.length, fields = Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {\n\t fields[_key3 - 1] = arguments[_key3];\n\t }\n\t\n\t return { type: _actionTypes.SET_SUBMIT_SUCCEEDED, meta: { form: form, fields: fields }, error: false };\n\t};\n\t\n\tvar touch = exports.touch = function touch(form) {\n\t for (var _len4 = arguments.length, fields = Array(_len4 > 1 ? _len4 - 1 : 0), _key4 = 1; _key4 < _len4; _key4++) {\n\t fields[_key4 - 1] = arguments[_key4];\n\t }\n\t\n\t return { type: _actionTypes.TOUCH, meta: { form: form, fields: fields } };\n\t};\n\t\n\tvar unregisterField = exports.unregisterField = function unregisterField(form, name) {\n\t var destroyOnUnmount = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;\n\t return { type: _actionTypes.UNREGISTER_FIELD, meta: { form: form }, payload: { name: name, destroyOnUnmount: destroyOnUnmount } };\n\t};\n\t\n\tvar untouch = exports.untouch = function untouch(form) {\n\t for (var _len5 = arguments.length, fields = Array(_len5 > 1 ? _len5 - 1 : 0), _key5 = 1; _key5 < _len5; _key5++) {\n\t fields[_key5 - 1] = arguments[_key5];\n\t }\n\t\n\t return { type: _actionTypes.UNTOUCH, meta: { form: form, fields: fields } };\n\t};\n\t\n\tvar updateSyncErrors = exports.updateSyncErrors = function updateSyncErrors(form) {\n\t var syncErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t var error = arguments[2];\n\t return { type: _actionTypes.UPDATE_SYNC_ERRORS, meta: { form: form }, payload: { syncErrors: syncErrors, error: error } };\n\t};\n\t\n\tvar updateSyncWarnings = exports.updateSyncWarnings = function updateSyncWarnings(form) {\n\t var syncWarnings = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t var warning = arguments[2];\n\t return { type: _actionTypes.UPDATE_SYNC_WARNINGS, meta: { form: form }, payload: { syncWarnings: syncWarnings, warning: warning } };\n\t};\n\n/***/ },\n/* 528 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\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\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 processProps = function processProps(type, props, _value) {\n\t var value = props.value;\n\t\n\t if (type === 'checkbox') {\n\t return _extends({}, props, {\n\t checked: !!value\n\t });\n\t }\n\t if (type === 'radio') {\n\t return _extends({}, props, {\n\t checked: value === _value,\n\t value: _value\n\t });\n\t }\n\t if (type === 'select-multiple') {\n\t return _extends({}, props, {\n\t value: value || []\n\t });\n\t }\n\t if (type === 'file') {\n\t return _extends({}, props, {\n\t value: value || undefined\n\t });\n\t }\n\t return props;\n\t};\n\t\n\tvar createFieldProps = function createFieldProps(_ref2, name, _ref) {\n\t var getIn = _ref2.getIn,\n\t toJS = _ref2.toJS;\n\t\n\t var asyncError = _ref.asyncError,\n\t asyncValidating = _ref.asyncValidating,\n\t onBlur = _ref.onBlur,\n\t onChange = _ref.onChange,\n\t onDrop = _ref.onDrop,\n\t onDragStart = _ref.onDragStart,\n\t dirty = _ref.dirty,\n\t dispatch = _ref.dispatch,\n\t onFocus = _ref.onFocus,\n\t form = _ref.form,\n\t format = _ref.format,\n\t parse = _ref.parse,\n\t pristine = _ref.pristine,\n\t props = _ref.props,\n\t state = _ref.state,\n\t submitError = _ref.submitError,\n\t submitFailed = _ref.submitFailed,\n\t submitting = _ref.submitting,\n\t syncError = _ref.syncError,\n\t syncWarning = _ref.syncWarning,\n\t validate = _ref.validate,\n\t value = _ref.value,\n\t _value = _ref._value,\n\t warn = _ref.warn,\n\t custom = _objectWithoutProperties(_ref, ['asyncError', 'asyncValidating', 'onBlur', 'onChange', 'onDrop', 'onDragStart', 'dirty', 'dispatch', 'onFocus', 'form', 'format', 'parse', 'pristine', 'props', 'state', 'submitError', 'submitFailed', 'submitting', 'syncError', 'syncWarning', 'validate', 'value', '_value', 'warn']);\n\t\n\t var error = syncError || asyncError || submitError;\n\t var warning = syncWarning;\n\t\n\t var formatFieldValue = function formatFieldValue(value, format) {\n\t if (format === null) {\n\t return value;\n\t }\n\t var defaultFormattedValue = value == null ? '' : value;\n\t return format ? format(value, name) : defaultFormattedValue;\n\t };\n\t\n\t var formattedFieldValue = formatFieldValue(value, format);\n\t\n\t return {\n\t input: processProps(custom.type, {\n\t name: name,\n\t onBlur: onBlur,\n\t onChange: onChange,\n\t onDragStart: onDragStart,\n\t onDrop: onDrop,\n\t onFocus: onFocus,\n\t value: formattedFieldValue\n\t }, _value),\n\t meta: _extends({}, toJS(state), {\n\t active: !!(state && getIn(state, 'active')),\n\t asyncValidating: asyncValidating,\n\t autofilled: !!(state && getIn(state, 'autofilled')),\n\t dirty: dirty,\n\t dispatch: dispatch,\n\t error: error,\n\t form: form,\n\t warning: warning,\n\t invalid: !!error,\n\t pristine: pristine,\n\t submitting: !!submitting,\n\t submitFailed: !!submitFailed,\n\t touched: !!(state && getIn(state, 'touched')),\n\t valid: !error,\n\t visited: !!(state && getIn(state, 'visited'))\n\t }),\n\t custom: _extends({}, custom, props)\n\t };\n\t};\n\t\n\texports.default = createFieldProps;\n\n/***/ },\n/* 529 */\n/***/ function(module, exports) {\n\n\t\"use strict\";\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\tvar isEvent = function isEvent(candidate) {\n\t return !!(candidate && candidate.stopPropagation && candidate.preventDefault);\n\t};\n\t\n\texports.default = isEvent;\n\n/***/ },\n/* 530 */\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 _getValue = __webpack_require__(1151);\n\t\n\tvar _getValue2 = _interopRequireDefault(_getValue);\n\t\n\tvar _isReactNative = __webpack_require__(1157);\n\t\n\tvar _isReactNative2 = _interopRequireDefault(_isReactNative);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar onChangeValue = function onChangeValue(event, _ref) {\n\t var name = _ref.name,\n\t parse = _ref.parse,\n\t normalize = _ref.normalize;\n\t\n\t // read value from input\n\t var value = (0, _getValue2.default)(event, _isReactNative2.default);\n\t\n\t // parse value if we have a parser\n\t if (parse) {\n\t value = parse(value, name);\n\t }\n\t\n\t // normalize value\n\t if (normalize) {\n\t value = normalize(name, value);\n\t }\n\t\n\t return value;\n\t};\n\t\n\texports.default = onChangeValue;\n\n/***/ },\n/* 531 */\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 _isEvent = __webpack_require__(529);\n\t\n\tvar _isEvent2 = _interopRequireDefault(_isEvent);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar silenceEvent = function silenceEvent(event) {\n\t var is = (0, _isEvent2.default)(event);\n\t if (is) {\n\t event.preventDefault();\n\t }\n\t return is;\n\t};\n\t\n\texports.default = silenceEvent;\n\n/***/ },\n/* 532 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\tvar createIsPristine = function createIsPristine(_ref) {\n\t var deepEqual = _ref.deepEqual,\n\t empty = _ref.empty,\n\t getIn = _ref.getIn;\n\t return function (form) {\n\t var getFormState = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function (state) {\n\t return getIn(state, 'form');\n\t };\n\t return function (state) {\n\t var formState = getFormState(state);\n\t var initial = getIn(formState, form + '.initial') || empty;\n\t var values = getIn(formState, form + '.values') || initial;\n\t return deepEqual(initial, values);\n\t };\n\t };\n\t};\n\t\n\texports.default = createIsPristine;\n\n/***/ },\n/* 533 */\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 _toPath2 = __webpack_require__(156);\n\t\n\tvar _toPath3 = _interopRequireDefault(_toPath2);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar getIn = function getIn(state, field) {\n\t if (!state) {\n\t return state;\n\t }\n\t\n\t var path = (0, _toPath3.default)(field);\n\t var length = path.length;\n\t if (!length) {\n\t return undefined;\n\t }\n\t\n\t var result = state;\n\t for (var i = 0; i < length && !!result; ++i) {\n\t result = result[path[i]];\n\t }\n\t\n\t return result;\n\t};\n\t\n\texports.default = getIn;\n\n/***/ },\n/* 534 */\n/***/ function(module, exports) {\n\n\t\"use strict\";\n\t\n\texports.__esModule = true;\n\texports[\"default\"] = compose;\n\t/**\n\t * Composes single-argument functions from right to left. The rightmost\n\t * function can take multiple arguments as it provides the signature for\n\t * the resulting composite function.\n\t *\n\t * @param {...Function} funcs The functions to compose.\n\t * @returns {Function} A function obtained by composing the argument functions\n\t * from right to left. For example, compose(f, g, h) is identical to doing\n\t * (...args) => f(g(h(...args))).\n\t */\n\t\n\tfunction compose() {\n\t for (var _len = arguments.length, funcs = Array(_len), _key = 0; _key < _len; _key++) {\n\t funcs[_key] = arguments[_key];\n\t }\n\t\n\t if (funcs.length === 0) {\n\t return function (arg) {\n\t return arg;\n\t };\n\t }\n\t\n\t if (funcs.length === 1) {\n\t return funcs[0];\n\t }\n\t\n\t var last = funcs[funcs.length - 1];\n\t var rest = funcs.slice(0, -1);\n\t return function () {\n\t return rest.reduceRight(function (composed, f) {\n\t return f(composed);\n\t }, last.apply(undefined, arguments));\n\t };\n\t}\n\n/***/ },\n/* 535 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.ActionTypes = undefined;\n\texports['default'] = createStore;\n\t\n\tvar _isPlainObject = __webpack_require__(117);\n\t\n\tvar _isPlainObject2 = _interopRequireDefault(_isPlainObject);\n\t\n\tvar _symbolObservable = __webpack_require__(1188);\n\t\n\tvar _symbolObservable2 = _interopRequireDefault(_symbolObservable);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\t\n\t/**\n\t * These are private action types reserved by Redux.\n\t * For any unknown actions, you must return the current state.\n\t * If the current state is undefined, you must return the initial state.\n\t * Do not reference these action types directly in your code.\n\t */\n\tvar ActionTypes = exports.ActionTypes = {\n\t INIT: '@@redux/INIT'\n\t};\n\t\n\t/**\n\t * Creates a Redux store that holds the state tree.\n\t * The only way to change the data in the store is to call `dispatch()` on it.\n\t *\n\t * There should only be a single store in your app. To specify how different\n\t * parts of the state tree respond to actions, you may combine several reducers\n\t * into a single reducer function by using `combineReducers`.\n\t *\n\t * @param {Function} reducer A function that returns the next state tree, given\n\t * the current state tree and the action to handle.\n\t *\n\t * @param {any} [preloadedState] The initial state. You may optionally specify it\n\t * to hydrate the state from the server in universal apps, or to restore a\n\t * previously serialized user session.\n\t * If you use `combineReducers` to produce the root reducer function, this must be\n\t * an object with the same shape as `combineReducers` keys.\n\t *\n\t * @param {Function} enhancer The store enhancer. You may optionally specify it\n\t * to enhance the store with third-party capabilities such as middleware,\n\t * time travel, persistence, etc. The only store enhancer that ships with Redux\n\t * is `applyMiddleware()`.\n\t *\n\t * @returns {Store} A Redux store that lets you read the state, dispatch actions\n\t * and subscribe to changes.\n\t */\n\tfunction createStore(reducer, preloadedState, enhancer) {\n\t var _ref2;\n\t\n\t if (typeof preloadedState === 'function' && typeof enhancer === 'undefined') {\n\t enhancer = preloadedState;\n\t preloadedState = undefined;\n\t }\n\t\n\t if (typeof enhancer !== 'undefined') {\n\t if (typeof enhancer !== 'function') {\n\t throw new Error('Expected the enhancer to be a function.');\n\t }\n\t\n\t return enhancer(createStore)(reducer, preloadedState);\n\t }\n\t\n\t if (typeof reducer !== 'function') {\n\t throw new Error('Expected the reducer to be a function.');\n\t }\n\t\n\t var currentReducer = reducer;\n\t var currentState = preloadedState;\n\t var currentListeners = [];\n\t var nextListeners = currentListeners;\n\t var isDispatching = false;\n\t\n\t function ensureCanMutateNextListeners() {\n\t if (nextListeners === currentListeners) {\n\t nextListeners = currentListeners.slice();\n\t }\n\t }\n\t\n\t /**\n\t * Reads the state tree managed by the store.\n\t *\n\t * @returns {any} The current state tree of your application.\n\t */\n\t function getState() {\n\t return currentState;\n\t }\n\t\n\t /**\n\t * Adds a change listener. It will be called any time an action is dispatched,\n\t * and some part of the state tree may potentially have changed. You may then\n\t * call `getState()` to read the current state tree inside the callback.\n\t *\n\t * You may call `dispatch()` from a change listener, with the following\n\t * caveats:\n\t *\n\t * 1. The subscriptions are snapshotted just before every `dispatch()` call.\n\t * If you subscribe or unsubscribe while the listeners are being invoked, this\n\t * will not have any effect on the `dispatch()` that is currently in progress.\n\t * However, the next `dispatch()` call, whether nested or not, will use a more\n\t * recent snapshot of the subscription list.\n\t *\n\t * 2. The listener should not expect to see all state changes, as the state\n\t * might have been updated multiple times during a nested `dispatch()` before\n\t * the listener is called. It is, however, guaranteed that all subscribers\n\t * registered before the `dispatch()` started will be called with the latest\n\t * state by the time it exits.\n\t *\n\t * @param {Function} listener A callback to be invoked on every dispatch.\n\t * @returns {Function} A function to remove this change listener.\n\t */\n\t function subscribe(listener) {\n\t if (typeof listener !== 'function') {\n\t throw new Error('Expected listener to be a function.');\n\t }\n\t\n\t var isSubscribed = true;\n\t\n\t ensureCanMutateNextListeners();\n\t nextListeners.push(listener);\n\t\n\t return function unsubscribe() {\n\t if (!isSubscribed) {\n\t return;\n\t }\n\t\n\t isSubscribed = false;\n\t\n\t ensureCanMutateNextListeners();\n\t var index = nextListeners.indexOf(listener);\n\t nextListeners.splice(index, 1);\n\t };\n\t }\n\t\n\t /**\n\t * Dispatches an action. It is the only way to trigger a state change.\n\t *\n\t * The `reducer` function, used to create the store, will be called with the\n\t * current state tree and the given `action`. Its return value will\n\t * be considered the **next** state of the tree, and the change listeners\n\t * will be notified.\n\t *\n\t * The base implementation only supports plain object actions. If you want to\n\t * dispatch a Promise, an Observable, a thunk, or something else, you need to\n\t * wrap your store creating function into the corresponding middleware. For\n\t * example, see the documentation for the `redux-thunk` package. Even the\n\t * middleware will eventually dispatch plain object actions using this method.\n\t *\n\t * @param {Object} action A plain object representing “what changed”. It is\n\t * a good idea to keep actions serializable so you can record and replay user\n\t * sessions, or use the time travelling `redux-devtools`. An action must have\n\t * a `type` property which may not be `undefined`. It is a good idea to use\n\t * string constants for action types.\n\t *\n\t * @returns {Object} For convenience, the same action object you dispatched.\n\t *\n\t * Note that, if you use a custom middleware, it may wrap `dispatch()` to\n\t * return something else (for example, a Promise you can await).\n\t */\n\t function dispatch(action) {\n\t if (!(0, _isPlainObject2['default'])(action)) {\n\t throw new Error('Actions must be plain objects. ' + 'Use custom middleware for async actions.');\n\t }\n\t\n\t if (typeof action.type === 'undefined') {\n\t throw new Error('Actions may not have an undefined \"type\" property. ' + 'Have you misspelled a constant?');\n\t }\n\t\n\t if (isDispatching) {\n\t throw new Error('Reducers may not dispatch actions.');\n\t }\n\t\n\t try {\n\t isDispatching = true;\n\t currentState = currentReducer(currentState, action);\n\t } finally {\n\t isDispatching = false;\n\t }\n\t\n\t var listeners = currentListeners = nextListeners;\n\t for (var i = 0; i < listeners.length; i++) {\n\t listeners[i]();\n\t }\n\t\n\t return action;\n\t }\n\t\n\t /**\n\t * Replaces the reducer currently used by the store to calculate the state.\n\t *\n\t * You might need this if your app implements code splitting and you want to\n\t * load some of the reducers dynamically. You might also need this if you\n\t * implement a hot reloading mechanism for Redux.\n\t *\n\t * @param {Function} nextReducer The reducer for the store to use instead.\n\t * @returns {void}\n\t */\n\t function replaceReducer(nextReducer) {\n\t if (typeof nextReducer !== 'function') {\n\t throw new Error('Expected the nextReducer to be a function.');\n\t }\n\t\n\t currentReducer = nextReducer;\n\t dispatch({ type: ActionTypes.INIT });\n\t }\n\t\n\t /**\n\t * Interoperability point for observable/reactive libraries.\n\t * @returns {observable} A minimal observable of state changes.\n\t * For more information, see the observable proposal:\n\t * https://github.com/zenparsing/es-observable\n\t */\n\t function observable() {\n\t var _ref;\n\t\n\t var outerSubscribe = subscribe;\n\t return _ref = {\n\t /**\n\t * The minimal observable subscription method.\n\t * @param {Object} observer Any object that can be used as an observer.\n\t * The observer object should have a `next` method.\n\t * @returns {subscription} An object with an `unsubscribe` method that can\n\t * be used to unsubscribe the observable from the store, and prevent further\n\t * emission of values from the observable.\n\t */\n\t subscribe: function subscribe(observer) {\n\t if (typeof observer !== 'object') {\n\t throw new TypeError('Expected the observer to be an object.');\n\t }\n\t\n\t function observeState() {\n\t if (observer.next) {\n\t observer.next(getState());\n\t }\n\t }\n\t\n\t observeState();\n\t var unsubscribe = outerSubscribe(observeState);\n\t return { unsubscribe: unsubscribe };\n\t }\n\t }, _ref[_symbolObservable2['default']] = function () {\n\t return this;\n\t }, _ref;\n\t }\n\t\n\t // When a store is created, an \"INIT\" action is dispatched so that every\n\t // reducer returns their initial state. This effectively populates\n\t // the initial state tree.\n\t dispatch({ type: ActionTypes.INIT });\n\t\n\t return _ref2 = {\n\t dispatch: dispatch,\n\t subscribe: subscribe,\n\t getState: getState,\n\t replaceReducer: replaceReducer\n\t }, _ref2[_symbolObservable2['default']] = observable, _ref2;\n\t}\n\n/***/ },\n/* 536 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports['default'] = warning;\n\t/**\n\t * Prints a warning in the console if it exists.\n\t *\n\t * @param {String} message The warning message.\n\t * @returns {void}\n\t */\n\tfunction warning(message) {\n\t /* eslint-disable no-console */\n\t if (typeof console !== 'undefined' && typeof console.error === 'function') {\n\t console.error(message);\n\t }\n\t /* eslint-enable no-console */\n\t try {\n\t // This error was thrown as a convenience so that if you enable\n\t // \"break on all exceptions\" in your console,\n\t // it would pause the execution at this line.\n\t throw new Error(message);\n\t /* eslint-disable no-empty */\n\t } catch (e) {}\n\t /* eslint-enable no-empty */\n\t}\n\n/***/ },\n/* 537 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.defaultMemoize = defaultMemoize;\n\texports.createSelectorCreator = createSelectorCreator;\n\texports.createStructuredSelector = createStructuredSelector;\n\t\n\tfunction _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\t\n\tfunction defaultEqualityCheck(a, b) {\n\t return a === b;\n\t}\n\t\n\tfunction defaultMemoize(func) {\n\t var equalityCheck = arguments.length <= 1 || arguments[1] === undefined ? defaultEqualityCheck : arguments[1];\n\t\n\t var lastArgs = null;\n\t var lastResult = null;\n\t return function () {\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 if (lastArgs === null || lastArgs.length !== args.length || !args.every(function (value, index) {\n\t return equalityCheck(value, lastArgs[index]);\n\t })) {\n\t lastResult = func.apply(undefined, args);\n\t }\n\t lastArgs = args;\n\t return lastResult;\n\t };\n\t}\n\t\n\tfunction getDependencies(funcs) {\n\t var dependencies = Array.isArray(funcs[0]) ? funcs[0] : funcs;\n\t\n\t if (!dependencies.every(function (dep) {\n\t return typeof dep === 'function';\n\t })) {\n\t var dependencyTypes = dependencies.map(function (dep) {\n\t return typeof dep;\n\t }).join(', ');\n\t throw new Error('Selector creators expect all input-selectors to be functions, ' + ('instead received the following types: [' + dependencyTypes + ']'));\n\t }\n\t\n\t return dependencies;\n\t}\n\t\n\tfunction createSelectorCreator(memoize) {\n\t for (var _len2 = arguments.length, memoizeOptions = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n\t memoizeOptions[_key2 - 1] = arguments[_key2];\n\t }\n\t\n\t return function () {\n\t for (var _len3 = arguments.length, funcs = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n\t funcs[_key3] = arguments[_key3];\n\t }\n\t\n\t var recomputations = 0;\n\t var resultFunc = funcs.pop();\n\t var dependencies = getDependencies(funcs);\n\t\n\t var memoizedResultFunc = memoize.apply(undefined, [function () {\n\t recomputations++;\n\t return resultFunc.apply(undefined, arguments);\n\t }].concat(memoizeOptions));\n\t\n\t var selector = function selector(state, props) {\n\t for (var _len4 = arguments.length, args = Array(_len4 > 2 ? _len4 - 2 : 0), _key4 = 2; _key4 < _len4; _key4++) {\n\t args[_key4 - 2] = arguments[_key4];\n\t }\n\t\n\t var params = dependencies.map(function (dependency) {\n\t return dependency.apply(undefined, [state, props].concat(args));\n\t });\n\t return memoizedResultFunc.apply(undefined, _toConsumableArray(params));\n\t };\n\t\n\t selector.resultFunc = resultFunc;\n\t selector.recomputations = function () {\n\t return recomputations;\n\t };\n\t selector.resetRecomputations = function () {\n\t return recomputations = 0;\n\t };\n\t return selector;\n\t };\n\t}\n\t\n\tvar createSelector = exports.createSelector = createSelectorCreator(defaultMemoize);\n\t\n\tfunction createStructuredSelector(selectors) {\n\t var selectorCreator = arguments.length <= 1 || arguments[1] === undefined ? createSelector : arguments[1];\n\t\n\t if (typeof selectors !== 'object') {\n\t throw new Error('createStructuredSelector expects first argument to be an object ' + ('where each property is a selector, instead received a ' + typeof selectors));\n\t }\n\t var objectKeys = Object.keys(selectors);\n\t return selectorCreator(objectKeys.map(function (key) {\n\t return selectors[key];\n\t }), function () {\n\t for (var _len5 = arguments.length, values = Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {\n\t values[_key5] = arguments[_key5];\n\t }\n\t\n\t return values.reduce(function (composition, value, index) {\n\t composition[objectKeys[index]] = value;\n\t return composition;\n\t }, {});\n\t });\n\t}\n\n/***/ },\n/* 538 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\n\tvar bind = __webpack_require__(260);\n\tvar Axios = __webpack_require__(540);\n\tvar defaults = __webpack_require__(168);\n\t\n\t/**\n\t * Create an instance of Axios\n\t *\n\t * @param {Object} defaultConfig The default config for the instance\n\t * @return {Axios} A new instance of Axios\n\t */\n\tfunction createInstance(defaultConfig) {\n\t var context = new Axios(defaultConfig);\n\t var instance = bind(Axios.prototype.request, context);\n\t\n\t // Copy axios.prototype to instance\n\t utils.extend(instance, Axios.prototype, context);\n\t\n\t // Copy context to instance\n\t utils.extend(instance, context);\n\t\n\t return instance;\n\t}\n\t\n\t// Create the default instance to be exported\n\tvar axios = createInstance(defaults);\n\t\n\t// Expose Axios class to allow class inheritance\n\taxios.Axios = Axios;\n\t\n\t// Factory for creating new instances\n\taxios.create = function create(instanceConfig) {\n\t return createInstance(utils.merge(defaults, instanceConfig));\n\t};\n\t\n\t// Expose Cancel & CancelToken\n\taxios.Cancel = __webpack_require__(257);\n\taxios.CancelToken = __webpack_require__(539);\n\taxios.isCancel = __webpack_require__(258);\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__(554);\n\t\n\tmodule.exports = axios;\n\t\n\t// Allow use of default import syntax in TypeScript\n\tmodule.exports.default = axios;\n\n\n/***/ },\n/* 539 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar Cancel = __webpack_require__(257);\n\t\n\t/**\n\t * A `CancelToken` is an object that can be used to request cancellation of an operation.\n\t *\n\t * @class\n\t * @param {Function} executor The executor function.\n\t */\n\tfunction CancelToken(executor) {\n\t if (typeof executor !== 'function') {\n\t throw new TypeError('executor must be a function.');\n\t }\n\t\n\t var resolvePromise;\n\t this.promise = new Promise(function promiseExecutor(resolve) {\n\t resolvePromise = resolve;\n\t });\n\t\n\t var token = this;\n\t executor(function cancel(message) {\n\t if (token.reason) {\n\t // Cancellation has already been requested\n\t return;\n\t }\n\t\n\t token.reason = new Cancel(message);\n\t resolvePromise(token.reason);\n\t });\n\t}\n\t\n\t/**\n\t * Throws a `Cancel` if cancellation has been requested.\n\t */\n\tCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n\t if (this.reason) {\n\t throw this.reason;\n\t }\n\t};\n\t\n\t/**\n\t * Returns an object that contains a new `CancelToken` and a function that, when called,\n\t * cancels the `CancelToken`.\n\t */\n\tCancelToken.source = function source() {\n\t var cancel;\n\t var token = new CancelToken(function executor(c) {\n\t cancel = c;\n\t });\n\t return {\n\t token: token,\n\t cancel: cancel\n\t };\n\t};\n\t\n\tmodule.exports = CancelToken;\n\n\n/***/ },\n/* 540 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar defaults = __webpack_require__(168);\n\tvar utils = __webpack_require__(40);\n\tvar InterceptorManager = __webpack_require__(541);\n\tvar dispatchRequest = __webpack_require__(542);\n\tvar isAbsoluteURL = __webpack_require__(550);\n\tvar combineURLs = __webpack_require__(548);\n\t\n\t/**\n\t * Create a new instance of Axios\n\t *\n\t * @param {Object} instanceConfig The default config for the instance\n\t */\n\tfunction Axios(instanceConfig) {\n\t this.defaults = instanceConfig;\n\t this.interceptors = {\n\t request: new InterceptorManager(),\n\t response: new InterceptorManager()\n\t };\n\t}\n\t\n\t/**\n\t * Dispatch a request\n\t *\n\t * @param {Object} config The config specific for this request (merged with this.defaults)\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 // 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\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});\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});\n\t\n\tmodule.exports = Axios;\n\n\n/***/ },\n/* 541 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\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/* 542 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\n\tvar transformData = __webpack_require__(545);\n\tvar isCancel = __webpack_require__(258);\n\tvar defaults = __webpack_require__(168);\n\t\n\t/**\n\t * Throws a `Cancel` if cancellation has been requested.\n\t */\n\tfunction throwIfCancellationRequested(config) {\n\t if (config.cancelToken) {\n\t config.cancelToken.throwIfRequested();\n\t }\n\t}\n\t\n\t/**\n\t * Dispatch a request to the server using the configured adapter.\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 throwIfCancellationRequested(config);\n\t\n\t // Ensure headers exist\n\t config.headers = config.headers || {};\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 var adapter = config.adapter || defaults.adapter;\n\t\n\t return adapter(config).then(function onAdapterResolution(response) {\n\t throwIfCancellationRequested(config);\n\t\n\t // Transform response data\n\t response.data = transformData(\n\t response.data,\n\t response.headers,\n\t config.transformResponse\n\t );\n\t\n\t return response;\n\t }, function onAdapterRejection(reason) {\n\t if (!isCancel(reason)) {\n\t throwIfCancellationRequested(config);\n\t\n\t // Transform response data\n\t if (reason && reason.response) {\n\t reason.response.data = transformData(\n\t reason.response.data,\n\t reason.response.headers,\n\t config.transformResponse\n\t );\n\t }\n\t }\n\t\n\t return Promise.reject(reason);\n\t });\n\t};\n\n\n/***/ },\n/* 543 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\t/**\n\t * Update an Error with the specified config, error code, and response.\n\t *\n\t * @param {Error} error The error to update.\n\t * @param {Object} config The config.\n\t * @param {string} [code] The error code (for example, 'ECONNABORTED').\n\t @ @param {Object} [response] The response.\n\t * @returns {Error} The error.\n\t */\n\tmodule.exports = function enhanceError(error, config, code, response) {\n\t error.config = config;\n\t if (code) {\n\t error.code = code;\n\t }\n\t error.response = response;\n\t return error;\n\t};\n\n\n/***/ },\n/* 544 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar createError = __webpack_require__(259);\n\t\n\t/**\n\t * Resolve or reject a Promise based on response status.\n\t *\n\t * @param {Function} resolve A function that resolves the promise.\n\t * @param {Function} reject A function that rejects the promise.\n\t * @param {object} response The response.\n\t */\n\tmodule.exports = function settle(resolve, reject, response) {\n\t var validateStatus = response.config.validateStatus;\n\t // Note: status is not exposed by XDomainRequest\n\t if (!response.status || !validateStatus || validateStatus(response.status)) {\n\t resolve(response);\n\t } else {\n\t reject(createError(\n\t 'Request failed with status code ' + response.status,\n\t response.config,\n\t null,\n\t response\n\t ));\n\t }\n\t};\n\n\n/***/ },\n/* 545 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\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/* 546 */\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 E() {\n\t this.message = 'String contains an invalid character';\n\t}\n\tE.prototype = new Error;\n\tE.prototype.code = 5;\n\tE.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 E();\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/* 547 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\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 if (utils.isURLSearchParams(params)) {\n\t serializedParams = params.toString();\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\n\n/***/ },\n/* 548 */\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/* 549 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\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/* 550 */\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/* 551 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\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/* 552 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\n\t\n\tmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n\t utils.forEach(headers, function processHeader(value, name) {\n\t if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n\t headers[normalizedName] = value;\n\t delete headers[name];\n\t }\n\t });\n\t};\n\n\n/***/ },\n/* 553 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tvar utils = __webpack_require__(40);\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/* 554 */\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/* 555 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _translations = __webpack_require__(643);\n\t\n\tvar _translations2 = _interopRequireDefault(_translations);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction configureLanguages(store, defaultLanguage) {\n\t\t// Loop over the translations available and build a single object with locale as key\n\t\tvar languageTokens = {};\n\t\tObject.keys(_translations2.default).forEach(function (language) {\n\t\t\tlanguageTokens[_translations2.default[language].locale] = _translations2.default[language].tokens;\n\t\t});\n\t\n\t\t(0, _reactReduxI18n.syncTranslationWithStore)(store);\n\t\tstore.dispatch((0, _reactReduxI18n.loadTranslations)(languageTokens));\n\t\tstore.dispatch((0, _reactReduxI18n.setLocale)(defaultLanguage));\n\t}\n\t\n\texports.default = configureLanguages;\n\n/***/ },\n/* 556 */\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 _redux = __webpack_require__(12);\n\t\n\tvar _reduxImmutableStateInvariant = __webpack_require__(1179);\n\t\n\tvar _reduxImmutableStateInvariant2 = _interopRequireDefault(_reduxImmutableStateInvariant);\n\t\n\tvar _reduxThunk = __webpack_require__(1182);\n\t\n\tvar _reduxThunk2 = _interopRequireDefault(_reduxThunk);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _rootReducer = __webpack_require__(639);\n\t\n\tvar _rootReducer2 = _interopRequireDefault(_rootReducer);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction configureStoreProd() {\n\t var middlewares = [\n\t // Add other middleware on this line...\n\t\n\t // thunk middleware can also accept an extra argument to be passed to each thunk action\n\t // https://github.com/gaearon/redux-thunk#injecting-a-custom-argument\n\t\n\t\n\t // thunk middleware can also accept an extra argument to be passed to each thunk action\n\t // https://github.com/gaearon/redux-thunk#injecting-a-custom-argument\n\t _reduxThunk2.default, (0, _reactRouterRedux.routerMiddleware)(_reactRouter.browserHistory)];\n\t\n\t return (0, _redux.createStore)(_rootReducer2.default, (0, _redux.compose)(_redux.applyMiddleware.apply(undefined, middlewares)));\n\t}\n\t\n\tfunction configureStoreDev() {\n\t var middlewares = [\n\t // Add other middleware on this line...\n\t\n\t // Redux middleware that spits an error on you when you try to mutate your state either inside a dispatch or between dispatches.\n\t (0, _reduxImmutableStateInvariant2.default)(), _reduxThunk2.default, (0, _reactRouterRedux.routerMiddleware)(_reactRouter.browserHistory)];\n\t\n\t var composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || _redux.compose; // add support for Redux dev tools\n\t var store = (0, _redux.createStore)(_rootReducer2.default, composeEnhancers(_redux.applyMiddleware.apply(undefined, middlewares)));\n\t\n\t if (false) {\n\t // Enable Webpack hot module replacement for reducers\n\t module.hot.accept('../rootReducer', function () {\n\t var nextReducer = require('../rootReducer').default; // eslint-disable-line global-require\n\t store.replaceReducer(nextReducer);\n\t });\n\t }\n\t\n\t return store;\n\t}\n\t\n\tvar configureStore = true ? configureStoreProd : configureStoreDev;\n\t\n\texports.default = configureStore;\n\n/***/ },\n/* 557 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar attemptTokenLogin = _customer2.default.actions.attemptTokenLogin;\n\t\n\tvar App = function (_React$Component) {\n\t _inherits(App, _React$Component);\n\t\n\t function App() {\n\t _classCallCheck(this, App);\n\t\n\t return _possibleConstructorReturn(this, (App.__proto__ || Object.getPrototypeOf(App)).apply(this, arguments));\n\t }\n\t\n\t _createClass(App, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t this.props.attemptTokenLogin();\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'wrapper' },\n\t this.props.children\n\t );\n\t }\n\t }]);\n\t\n\t return App;\n\t}(_react2.default.Component);\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return (0, _redux.bindActionCreators)({ attemptTokenLogin: attemptTokenLogin }, dispatch);\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(null, mapDispatchToProps)(App);\n\n/***/ },\n/* 558 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _navbar = __webpack_require__(279);\n\t\n\tvar _navbar2 = _interopRequireDefault(_navbar);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar isContextLoaded = _customer2.default.selectors.isContextLoaded;\n\tvar NavBar = _navbar2.default.components.NavBar;\n\t\n\tvar _ref2 = _react2.default.createElement(\n\t 'div',\n\t { className: 'full-width-loading' },\n\t _react2.default.createElement('div', null)\n\t);\n\t\n\tvar NavLayout = function NavLayout(_ref) {\n\t var children = _ref.children,\n\t contextLoaded = _ref.contextLoaded,\n\t location = _ref.location;\n\t\n\t if (!contextLoaded) {\n\t return _ref2;\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'nav-layout' },\n\t _react2.default.createElement(NavBar, { location: location }),\n\t children\n\t );\n\t};\n\t\n\tfunction mapStateToProps(state, ownProps) {\n\t return {\n\t contextLoaded: isContextLoaded(state),\n\t location: ownProps.location.pathname\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps)(NavLayout);\n\n/***/ },\n/* 559 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar NotFoundPage = function NotFoundPage() {\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'h4',\n\t null,\n\t _reactReduxI18n.I18n.t('PAGE_NOT_FOUND')\n\t ),\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/' },\n\t ' ',\n\t _reactReduxI18n.I18n.t('GO_BACK_TO_HOMEPAGE'),\n\t ' '\n\t )\n\t );\n\t};\n\t\n\texports.default = NotFoundPage;\n\n/***/ },\n/* 560 */\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.NotFoundPage = exports.NavLayout = exports.App = undefined;\n\t\n\tvar _App = __webpack_require__(557);\n\t\n\tvar _App2 = _interopRequireDefault(_App);\n\t\n\tvar _NavLayout = __webpack_require__(558);\n\t\n\tvar _NavLayout2 = _interopRequireDefault(_NavLayout);\n\t\n\tvar _NotFoundPage = __webpack_require__(559);\n\t\n\tvar _NotFoundPage2 = _interopRequireDefault(_NotFoundPage);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.App = _App2.default;\n\texports.NavLayout = _NavLayout2.default;\n\texports.NotFoundPage = _NotFoundPage2.default;\n\n/***/ },\n/* 561 */\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 _components = __webpack_require__(560);\n\t\n\tvar components = _interopRequireWildcard(_components);\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\texports.default = { components: components };\n\n/***/ },\n/* 562 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(123);\n\t\n\tvar _selectors = __webpack_require__(124);\n\t\n\tvar _PetAdPreview = __webpack_require__(567);\n\t\n\tvar _PetAdPreview2 = _interopRequireDefault(_PetAdPreview);\n\t\n\tvar _PetAdTable = __webpack_require__(569);\n\t\n\tvar _PetAdTable2 = _interopRequireDefault(_PetAdTable);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar getActivePermissions = _customer2.default.selectors.getActivePermissions;\n\t\n\tvar _ref = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar AdsPage = function (_React$Component) {\n\t _inherits(AdsPage, _React$Component);\n\t\n\t function AdsPage() {\n\t _classCallCheck(this, AdsPage);\n\t\n\t return _possibleConstructorReturn(this, (AdsPage.__proto__ || Object.getPrototypeOf(AdsPage)).apply(this, arguments));\n\t }\n\t\n\t _createClass(AdsPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var accessPermission = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.MANAGE_CARE_SHEET_ADS;\n\t });\n\t if (!accessPermission) {\n\t this.props.actions.push('/labels');\n\t }\n\t\n\t this.props.actions.getCareSheetSettings();\n\t }\n\t }, {\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(nextProps) {\n\t if (this.props.authData.activeSubscriptionId !== nextProps.authData.activeSubscriptionId) {\n\t this.props.actions.getCareSheetSettings();\n\t }\n\t }\n\t }, {\n\t key: 'componentWillUnmount',\n\t value: function componentWillUnmount() {\n\t this.props.actions.deselectAd();\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t _props$actions = _props.actions,\n\t deleteAd = _props$actions.deleteAd,\n\t selectAd = _props$actions.selectAd,\n\t uploadAd = _props$actions.uploadAd,\n\t adsList = _props.adsList,\n\t previewsList = _props.previewsList,\n\t validSettings = _props.validSettings,\n\t selectedAd = _props.selectedAd;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVERTISING_SPACE')\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVERTISING_DETAILS')\n\t ),\n\t !validSettings && _ref,\n\t validSettings && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-9 col-md-8' },\n\t _react2.default.createElement(_PetAdTable2.default, { adsList: adsList,\n\t previewsList: previewsList,\n\t onClearAd: deleteAd,\n\t onRowSelected: selectAd,\n\t onUploadAd: uploadAd,\n\t selectedAd: selectedAd })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-3 col-md-4 text-right aspace' },\n\t Object.keys(selectedAd).length !== 0 && _react2.default.createElement(_PetAdPreview2.default, { ad: selectedAd })\n\t )\n\t )\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return AdsPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t adsList: (0, _selectors.getAds)(state),\n\t activePermissions: getActivePermissions(state),\n\t previewsList: (0, _selectors.getPreviews)(state),\n\t validSettings: (0, _selectors.areSettingsValid)(state),\n\t selectedAd: (0, _selectors.getSelectedAd)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ getCareSheetSettings: _actions.getCareSheetSettings, deleteAd: _actions.deleteAd, deselectAd: _actions.deselectAd, selectAd: _actions.selectAd, uploadAd: _actions.uploadAd, push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(AdsPage);\n\n/***/ },\n/* 563 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar searchFocusHack = function searchFocusHack() {\n\t document.getElementById(\"searchPhrase\").focus();\n\t};\n\t\n\tvar CareSheetInfo = function CareSheetInfo(_ref) {\n\t var careSheet = _ref.careSheet;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-6 col-sm-12 col-pet' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'media' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'mr-3 align-self-start' },\n\t _react2.default.createElement('img', { src: careSheet.ImageURL, alt: careSheet.Name })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'media-body' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: careSheet.PDFURL, target: '_blank' },\n\t careSheet.Line1\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'h6',\n\t null,\n\t careSheet.Line2\n\t ),\n\t _react2.default.createElement(\n\t 'h6',\n\t null,\n\t careSheet.Line3\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row plu-barcode no-gutters' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'plu' },\n\t careSheet.Line4\n\t )\n\t ),\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: careSheet.PDFURL, target: '_blank', onClick: searchFocusHack, className: 'btn btn-primary' },\n\t _reactReduxI18n.I18n.t('DOWNLOAD')\n\t )\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = CareSheetInfo;\n\n/***/ },\n/* 564 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar CareSheetPreview = function CareSheetPreview(_ref) {\n\t\tvar link = _ref.link;\n\t\n\t\treturn _react2.default.createElement(\n\t\t\t'a',\n\t\t\t{ href: link, target: '_blank', className: 'preview' },\n\t\t\t_reactReduxI18n.I18n.t('PREVIEW_CARE_SHEET')\n\t\t);\n\t};\n\t\n\texports.default = CareSheetPreview;\n\n/***/ },\n/* 565 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _ReactList = __webpack_require__(265);\n\t\n\tvar _ReactList2 = _interopRequireDefault(_ReactList);\n\t\n\tvar _actions = __webpack_require__(123);\n\t\n\tvar _selectors = __webpack_require__(124);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _search = __webpack_require__(174);\n\t\n\tvar _search2 = _interopRequireDefault(_search);\n\t\n\tvar _CareSheetInfo = __webpack_require__(563);\n\t\n\tvar _CareSheetInfo2 = _interopRequireDefault(_CareSheetInfo);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar getActivePermissions = _customer2.default.selectors.getActivePermissions;\n\tvar SearchPanel = _search2.default.components.SearchPanel;\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar CareSheetsPage = function (_React$Component) {\n\t _inherits(CareSheetsPage, _React$Component);\n\t\n\t function CareSheetsPage() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, CareSheetsPage);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = CareSheetsPage.__proto__ || Object.getPrototypeOf(CareSheetsPage)).call.apply(_ref, [this].concat(args))), _this), _this.handleFormSubmit = function (values) {\n\t _this.props.actions.searchCareSheets(values.searchPhrase);\n\t }, _this.renderItem = function (index, key) {\n\t return _react2.default.createElement(_CareSheetInfo2.default, { key: key, careSheet: _this.props.searchResults[index] });\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(CareSheetsPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var accessPermission = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.ACCESS_CARE_SHEETS;\n\t });\n\t if (!accessPermission) {\n\t this.props.actions.push('/labels');\n\t }\n\t\n\t if (!this.props.careSheetsValid) {\n\t this.props.actions.getCareSheets();\n\t }\n\t }\n\t }, {\n\t key: 'componentWillUnmount',\n\t value: function componentWillUnmount() {\n\t this.props.actions.clearSearchResults();\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t actions = _props.actions,\n\t careSheetsValid = _props.careSheetsValid,\n\t searchPhrase = _props.searchPhrase,\n\t searchResults = _props.searchResults,\n\t selectedPetTypes = _props.selectedPetTypes,\n\t petTypeList = _props.petTypeList;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('CARE_SHEETS')\n\t )\n\t )\n\t ),\n\t !careSheetsValid && _ref2,\n\t careSheetsValid && _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h3',\n\t { className: 'float-left search-pets-title' },\n\t _reactReduxI18n.I18n.t('SEARCH_PETS')\n\t ),\n\t _react2.default.createElement(SearchPanel, { itemList: petTypeList,\n\t onSelectedItem: actions.toggleSelectedPetType,\n\t onSubmit: this.handleFormSubmit,\n\t selectedItems: selectedPetTypes }),\n\t searchResults.length === 0 && searchPhrase === '' && _react2.default.createElement(\n\t 'div',\n\t { className: 'no-recent-care-sheets' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('SEARCH_FOR_A_PET')\n\t )\n\t ),\n\t searchResults.length === 0 && searchPhrase !== '' && _react2.default.createElement(\n\t 'div',\n\t { className: 'no-recent-care-sheets' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('NO_RESULTS_TRY_AGAIN')\n\t )\n\t ),\n\t searchResults.length > 0 && _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('RESULTS'),\n\t ' (',\n\t searchResults.length,\n\t ')'\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row search-results care-sheets' },\n\t _react2.default.createElement(_ReactList2.default, { itemRenderer: this.renderItem, length: searchResults.length, type: 'uniform' })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return CareSheetsPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activePermissions: getActivePermissions(state),\n\t careSheetsValid: (0, _selectors.areCareSheetsValid)(state),\n\t petTypeList: (0, _selectors.getPetTypes)(state),\n\t searchPhrase: (0, _selectors.getSearchPhrase)(state),\n\t searchResults: (0, _selectors.getSearchResults)(state),\n\t selectedPetTypes: (0, _selectors.getSelectedPetTypes)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ clearSearchResults: _actions.clearSearchResults, getCareSheets: _actions.getCareSheets, searchCareSheets: _actions.searchCareSheets, toggleSelectedPetType: _actions.toggleSelectedPetType, push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(CareSheetsPage);\n\n/***/ },\n/* 566 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar PetAdOptions = function (_React$Component) {\n\t _inherits(PetAdOptions, _React$Component);\n\t\n\t function PetAdOptions() {\n\t _classCallCheck(this, PetAdOptions);\n\t\n\t return _possibleConstructorReturn(this, (PetAdOptions.__proto__ || Object.getPrototypeOf(PetAdOptions)).apply(this, arguments));\n\t }\n\t\n\t _createClass(PetAdOptions, [{\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t ad = _props.ad,\n\t preview = _props.preview,\n\t onClear = _props.onClear,\n\t onUpload = _props.onUpload;\n\t\n\t return _react2.default.createElement(\n\t 'td',\n\t null,\n\t ad.isValid && _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: preview, target: '_blank', className: 'aspace-preview' },\n\t _reactReduxI18n.I18n.t('PREVIEW')\n\t ),\n\t ad.isValid && _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-link', onClick: function onClick() {\n\t return onClear(ad);\n\t } },\n\t _reactReduxI18n.I18n.t('CLEAR')\n\t ),\n\t _react2.default.createElement(\n\t 'label',\n\t { className: 'custom-file' },\n\t _react2.default.createElement('input', { type: 'file', id: 'file', className: 'custom-file-input', accept: 'image/jpeg, image/png', onChange: function onChange(e) {\n\t onUpload(ad, e.target.files[0]);\n\t } }),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'custom-file-control' },\n\t _reactReduxI18n.I18n.t('UPLOAD')\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return PetAdOptions;\n\t}(_react2.default.Component);\n\t\n\texports.default = PetAdOptions;\n\n/***/ },\n/* 567 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar PetAdPreview = function PetAdPreview(_ref) {\n\t\tvar ad = _ref.ad;\n\t\n\t\tvar adClass = \"aspace-placeholder \";\n\t\tif (!ad.isValid) {\n\t\t\tadClass += \"aspace-bg\";\n\t\t}\n\t\n\t\treturn _react2.default.createElement(\n\t\t\t\"div\",\n\t\t\t{ className: adClass },\n\t\t\tad.isValid && _react2.default.createElement(\"img\", { src: ad.imageUrl })\n\t\t);\n\t};\n\t\n\texports.default = PetAdPreview;\n\n/***/ },\n/* 568 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _PetAdOptions = __webpack_require__(566);\n\t\n\tvar _PetAdOptions2 = _interopRequireDefault(_PetAdOptions);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('i', { className: 'fa fa-check fa-lg' });\n\t\n\tvar _ref3 = _react2.default.createElement('td', null);\n\t\n\tvar PetAdRow = function PetAdRow(_ref) {\n\t\tvar ad = _ref.ad,\n\t\t preview = _ref.preview,\n\t\t onClear = _ref.onClear,\n\t\t onSelected = _ref.onSelected,\n\t\t onUpload = _ref.onUpload,\n\t\t selected = _ref.selected;\n\t\n\t\treturn _react2.default.createElement(\n\t\t\t'tr',\n\t\t\t{ onClick: function onClick() {\n\t\t\t\t\treturn onSelected(ad);\n\t\t\t\t}, className: selected && \"table-active\" },\n\t\t\t_react2.default.createElement(\n\t\t\t\t'td',\n\t\t\t\tnull,\n\t\t\t\tad.petType\n\t\t\t),\n\t\t\t_react2.default.createElement(\n\t\t\t\t'td',\n\t\t\t\tnull,\n\t\t\t\tad.isValid && _ref2\n\t\t\t),\n\t\t\tselected ? _react2.default.createElement(_PetAdOptions2.default, { ad: ad, preview: preview, onClear: onClear, onUpload: onUpload }) : _ref3\n\t\t);\n\t};\n\t\n\texports.default = PetAdRow;\n\n/***/ },\n/* 569 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _PetAdRow = __webpack_require__(568);\n\t\n\tvar _PetAdRow2 = _interopRequireDefault(_PetAdRow);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('th', null);\n\t\n\tvar PetAdTable = function PetAdTable(_ref) {\n\t var adsList = _ref.adsList,\n\t previewsList = _ref.previewsList,\n\t onClearAd = _ref.onClearAd,\n\t onRowSelected = _ref.onRowSelected,\n\t onUploadAd = _ref.onUploadAd,\n\t selectedAd = _ref.selectedAd;\n\t\n\t var ads = adsList.map(function (ad) {\n\t var selected = selectedAd.petType === ad.petType ? true : false;\n\t\n\t var adPreview = previewsList.find(function (preview) {\n\t return preview.petType === ad.petType;\n\t });\n\t\n\t return _react2.default.createElement(_PetAdRow2.default, { key: ad.petType,\n\t ad: ad,\n\t preview: adPreview.previewUrl,\n\t onClear: onClearAd,\n\t onSelected: onRowSelected,\n\t onUpload: onUploadAd,\n\t selected: selected });\n\t });\n\t\n\t return _react2.default.createElement(\n\t 'table',\n\t { className: 'table table-hover aspace-table' },\n\t _react2.default.createElement(\n\t 'thead',\n\t null,\n\t _react2.default.createElement(\n\t 'tr',\n\t null,\n\t _react2.default.createElement(\n\t 'th',\n\t null,\n\t _reactReduxI18n.I18n.t('PET_TYPE')\n\t ),\n\t _react2.default.createElement(\n\t 'th',\n\t null,\n\t _reactReduxI18n.I18n.t('AD_UPLOADED')\n\t ),\n\t _ref2\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tbody',\n\t null,\n\t ads\n\t )\n\t );\n\t};\n\t\n\texports.default = PetAdTable;\n\n/***/ },\n/* 570 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _FormInput = __webpack_require__(49);\n\t\n\tvar _FormInput2 = _interopRequireDefault(_FormInput);\n\t\n\tvar _CareSheetPreview = __webpack_require__(564);\n\t\n\tvar _CareSheetPreview2 = _interopRequireDefault(_CareSheetPreview);\n\t\n\tvar _StoreInfoLogo = __webpack_require__(571);\n\t\n\tvar _StoreInfoLogo2 = _interopRequireDefault(_StoreInfoLogo);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-11 col-sm-10' },\n\t _react2.default.createElement(_reduxForm.Field, { name: 'line1',\n\t component: _FormInput2.default,\n\t type: 'text',\n\t className: 'form-control'\n\t })\n\t);\n\t\n\tvar _ref3 = _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-11 col-sm-10' },\n\t _react2.default.createElement(_reduxForm.Field, { name: 'line2',\n\t component: _FormInput2.default,\n\t type: 'text',\n\t className: 'form-control'\n\t })\n\t);\n\t\n\tvar _ref4 = _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-11 col-sm-10' },\n\t _react2.default.createElement(_reduxForm.Field, { name: 'line3',\n\t component: _FormInput2.default,\n\t type: 'text',\n\t className: 'form-control'\n\t })\n\t);\n\t\n\tvar _ref5 = _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-11 col-sm-10' },\n\t _react2.default.createElement(_reduxForm.Field, { name: 'line4',\n\t component: _FormInput2.default,\n\t type: 'text',\n\t className: 'form-control'\n\t })\n\t);\n\t\n\tvar _ref6 = _react2.default.createElement(_reduxForm.Field, { name: 'useLogo',\n\t component: _FormInput2.default,\n\t type: 'checkbox',\n\t className: 'form-checkbox' });\n\t\n\tvar StoreInfoForm = function StoreInfoForm(_ref) {\n\t var handleSubmit = _ref.handleSubmit,\n\t onUpload = _ref.onUpload,\n\t storeSettings = _ref.storeSettings,\n\t submitting = _ref.submitting,\n\t useLogo = _ref.useLogo;\n\t\n\t var invalidLogo = useLogo && storeSettings.logoUrl === null;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'form',\n\t { onSubmit: handleSubmit },\n\t _react2.default.createElement(\n\t 'fieldset',\n\t { disabled: useLogo },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-1 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('LINE1')\n\t ),\n\t _ref2\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-1 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('LINE2')\n\t ),\n\t _ref3\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-1 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('LINE3')\n\t ),\n\t _ref4\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-1 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('LINE4')\n\t ),\n\t _ref5\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'logo-instead' },\n\t _ref6,\n\t _reactReduxI18n.I18n.t('USE_LOGO_INSTEAD')\n\t ),\n\t useLogo && _react2.default.createElement(_StoreInfoLogo2.default, { useLogo: useLogo, logoUrl: storeSettings.logoUrl, onUpload: onUpload }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters bottom-buttons' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-2 col-sm-4' },\n\t _react2.default.createElement(_CareSheetPreview2.default, { link: storeSettings.previewUrl })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-8 text-right' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'submit', className: 'btn btn-primary', disabled: submitting || invalidLogo },\n\t _reactReduxI18n.I18n.t('SAVE')\n\t )\n\t )\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = (0, _reduxForm.reduxForm)()(StoreInfoForm);\n\n/***/ },\n/* 571 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement(\n\t 'h5',\n\t null,\n\t 'Logo'\n\t);\n\t\n\tvar StoreInfoLogo = function StoreInfoLogo(_ref) {\n\t var logoUrl = _ref.logoUrl,\n\t onUpload = _ref.onUpload,\n\t useLogo = _ref.useLogo;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _ref2,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-4' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'company-logo' },\n\t useLogo && logoUrl !== null && _react2.default.createElement('img', { src: logoUrl, alt: 'Store Logo', title: 'Store Logo' })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-8' },\n\t _react2.default.createElement(\n\t 'label',\n\t { className: 'custom-file' },\n\t _react2.default.createElement('input', { type: 'file', id: 'file', className: 'custom-file-input', accept: 'image/jpeg, image/png', onChange: function onChange(e) {\n\t onUpload(e.target.files[0]);\n\t } }),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'custom-file-control' },\n\t _reactReduxI18n.I18n.t('UPLOAD_LOGO')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t { className: 'logo-description' },\n\t _reactReduxI18n.I18n.t('STORE_LOGO_DETAILS'),\n\t _react2.default.createElement(\n\t 'span',\n\t null,\n\t _reactReduxI18n.I18n.t('STORE_LOGO_FORMATS')\n\t )\n\t )\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = StoreInfoLogo;\n\n/***/ },\n/* 572 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(123);\n\t\n\tvar _selectors = __webpack_require__(124);\n\t\n\tvar _StoreInfoForm = __webpack_require__(570);\n\t\n\tvar _StoreInfoForm2 = _interopRequireDefault(_StoreInfoForm);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar getActivePermissions = _customer2.default.selectors.getActivePermissions;\n\t\n\t\n\tvar formName = 'storeInfoForm';\n\tvar formSelector = (0, _reduxForm.formValueSelector)(formName);\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar StoreInfoPage = function (_React$Component) {\n\t _inherits(StoreInfoPage, _React$Component);\n\t\n\t function StoreInfoPage() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, StoreInfoPage);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = StoreInfoPage.__proto__ || Object.getPrototypeOf(StoreInfoPage)).call.apply(_ref, [this].concat(args))), _this), _this.handleFormSubmit = function (values) {\n\t return new Promise(function (resolve, reject) {\n\t _this.props.actions.saveStoreSettings(values).then(function () {\n\t resolve();\n\t }).catch(function () {\n\t reject();\n\t });\n\t });\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(StoreInfoPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var accessPermission = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.MANAGE_LOGO;\n\t });\n\t if (!accessPermission) {\n\t this.props.actions.push('/labels');\n\t }\n\t\n\t this.props.actions.getCareSheetSettings();\n\t }\n\t }, {\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(nextProps) {\n\t if (this.props.authData.activeSubscriptionId !== nextProps.authData.activeSubscriptionId) {\n\t this.props.actions.getCareSheetSettings();\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t uploadLogo = _props.actions.uploadLogo,\n\t useLogo = _props.useLogo,\n\t storeSettings = _props.storeSettings,\n\t validSettings = _props.validSettings;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('STORE_INFO_LOGO')\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t null,\n\t _reactReduxI18n.I18n.t('STORE_INFO_DETAILS')\n\t ),\n\t !validSettings && _ref2,\n\t validSettings && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('STORE_INFO')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(_StoreInfoForm2.default, { form: formName,\n\t initialValues: { line1: storeSettings.infoLine1,\n\t line2: storeSettings.infoLine2,\n\t line3: storeSettings.infoLine3,\n\t line4: storeSettings.infoLine4,\n\t useLogo: storeSettings.useLogo },\n\t onSubmit: this.handleFormSubmit,\n\t onUpload: uploadLogo,\n\t storeSettings: storeSettings,\n\t useLogo: useLogo })\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return StoreInfoPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activePermissions: getActivePermissions(state),\n\t useLogo: formSelector(state, 'useLogo'),\n\t storeSettings: (0, _selectors.getStoreSettings)(state),\n\t validSettings: (0, _selectors.areSettingsValid)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ getCareSheetSettings: _actions.getCareSheetSettings, uploadLogo: _actions.uploadLogo, saveStoreSettings: _actions.saveStoreSettings, push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(StoreInfoPage);\n\n/***/ },\n/* 573 */\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.StoreInfoPage = exports.CareSheetsPage = exports.AdsPage = undefined;\n\t\n\tvar _AdsPage = __webpack_require__(562);\n\t\n\tvar _AdsPage2 = _interopRequireDefault(_AdsPage);\n\t\n\tvar _CareSheetsPage = __webpack_require__(565);\n\t\n\tvar _CareSheetsPage2 = _interopRequireDefault(_CareSheetsPage);\n\t\n\tvar _StoreInfoPage = __webpack_require__(572);\n\t\n\tvar _StoreInfoPage2 = _interopRequireDefault(_StoreInfoPage);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.AdsPage = _AdsPage2.default;\n\texports.CareSheetsPage = _CareSheetsPage2.default;\n\texports.StoreInfoPage = _StoreInfoPage2.default;\n\n/***/ },\n/* 574 */\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 _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 = reducer;\n\t\n\tvar _actionTypes = __webpack_require__(261);\n\t\n\tvar types = _interopRequireWildcard(_actionTypes);\n\t\n\tvar _thenby = __webpack_require__(91);\n\t\n\tvar _thenby2 = _interopRequireDefault(_thenby);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\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 _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\t\n\tvar initialSettings = {\n\t ads: [],\n\t previews: [],\n\t selectedAd: {},\n\t store: {\n\t info1: '',\n\t info2: '',\n\t info3: '',\n\t info4: '',\n\t useLogo: false,\n\t logoUrl: '',\n\t previewUrl: ''\n\t },\n\t valid: false\n\t};\n\t\n\tvar initialSearch = {\n\t petTypes: [],\n\t results: [],\n\t phrase: '',\n\t selectedPetTypes: []\n\t};\n\t\n\tvar initialState = {\n\t list: [],\n\t petTypes: [],\n\t valid: false,\n\t search: initialSearch,\n\t settings: initialSettings\n\t};\n\t\n\tfunction reducer() {\n\t var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;\n\t var action = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t\n\t switch (action.type) {\n\t case types.CARESHEET_SETTINGS_RECEIVED:\n\t {\n\t // If we already have an ad selected, we need to update it with received data\n\t var selectedAd = {};\n\t if (Object.keys(state.settings.selectedAd).length !== 0) {\n\t selectedAd = action.payload.ads.find(function (ad) {\n\t return ad.petType === state.settings.selectedAd.petType;\n\t });\n\t }\n\t\n\t return _extends({}, state, {\n\t settings: {\n\t ads: action.payload.ads,\n\t previews: action.payload.previews,\n\t selectedAd: selectedAd,\n\t store: {\n\t infoLine1: action.payload.store.infoLine1,\n\t infoLine2: action.payload.store.infoLine2,\n\t infoLine3: action.payload.store.infoLine3,\n\t infoLine4: action.payload.store.infoLine4,\n\t useLogo: action.payload.store.useLogo,\n\t logoUrl: action.payload.store.logoUrl,\n\t previewUrl: action.payload.store.previewUrl\n\t },\n\t valid: true\n\t }\n\t });\n\t }\n\t case types.GET_CARESHEET_SETTINGS:\n\t {\n\t return _extends({}, state, {\n\t settings: initialSettings\n\t });\n\t }\n\t case types.AD_SELECTED:\n\t {\n\t return _extends({}, state, {\n\t settings: _extends({}, state.settings, {\n\t selectedAd: action.payload.ad\n\t })\n\t });\n\t }\n\t case types.AD_DESELECTED:\n\t {\n\t return _extends({}, state, {\n\t settings: _extends({}, state.settings, {\n\t selectedAd: {}\n\t })\n\t\n\t });\n\t }\n\t case types.CARESHEET_LIST_RECEIVED:\n\t {\n\t return _extends({}, state, {\n\t list: action.payload.caresheets,\n\t valid: true\n\t });\n\t }\n\t case types.PET_TYPES_ADDED:\n\t {\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t petTypes: action.payload.petTypes,\n\t selectedPetTypes: action.payload.selectedPetTypes\n\t })\n\t });\n\t }\n\t case types.TOGGLE_SELECTED_PET_TYPE:\n\t {\n\t var selectedPetTypes = [].concat(_toConsumableArray(state.search.selectedPetTypes));\n\t var togglePetType = action.payload.petType;\n\t\n\t var found = selectedPetTypes.find(function (petType) {\n\t return petType === togglePetType;\n\t });\n\t\n\t if (found) {\n\t var index = selectedPetTypes.indexOf(togglePetType);\n\t selectedPetTypes.splice(index, 1);\n\t } else {\n\t selectedPetTypes.push(togglePetType);\n\t }\n\t\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t selectedPetTypes: selectedPetTypes\n\t })\n\t });\n\t }\n\t case types.FILTER_CARESHEETS:\n\t {\n\t var searchPhrase = state.search.phrase;\n\t\n\t var searchAllTypes = state.search.petTypes.length === state.search.selectedPetTypes.length || state.search.selectedPetTypes.length === 0 ? true : false;\n\t\n\t var searchResults = state.list.filter(function (caresheet) {\n\t if (searchAllTypes) {\n\t return caresheet.Line1 !== null && caresheet.Line1.toLowerCase().indexOf(searchPhrase) >= 0 || caresheet.Line2 !== null && caresheet.Line2.toLowerCase().indexOf(searchPhrase) >= 0 || caresheet.Line3 !== null && caresheet.Line3.toLowerCase().indexOf(searchPhrase) >= 0 || caresheet.Line4 !== null && caresheet.Line4.toLowerCase().indexOf(searchPhrase) >= 0;\n\t } else {\n\t return state.search.selectedPetTypes.includes(caresheet.Type) && (caresheet.Line1 !== null && caresheet.Line1.toLowerCase().indexOf(searchPhrase) >= 0 || caresheet.Line2 !== null && caresheet.Line2.toLowerCase().indexOf(searchPhrase) >= 0 || caresheet.Line3 !== null && caresheet.Line3.toLowerCase().indexOf(searchPhrase) >= 0 || caresheet.Line4 !== null && caresheet.Line4.toLowerCase().indexOf(searchPhrase) >= 0);\n\t }\n\t });\n\t\n\t searchResults.sort((0, _thenby2.default)(\"Line1\").thenBy(\"Line2\"));\n\t\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t results: searchResults\n\t })\n\t });\n\t }\n\t case types.CARESHEET_SEARCH_PHRASE:\n\t {\n\t var _searchPhrase = '';\n\t if (action.payload.searchPhrase !== undefined) {\n\t _searchPhrase = action.payload.searchPhrase.toLowerCase();\n\t } else {\n\t _searchPhrase = '';\n\t }\n\t\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t phrase: _searchPhrase\n\t })\n\t });\n\t }\n\t case types.CLEAR_SEARCH_RESULTS:\n\t {\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t results: [],\n\t phrase: '',\n\t selectedPetType: state.search.petTypes\n\t })\n\t });\n\t }\n\t default:\n\t return state;\n\t }\n\t}\n\n/***/ },\n/* 575 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactstrap = __webpack_require__(56);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('span', { className: 'lnr lnr-cross', 'aria-hidden': 'true' });\n\t\n\tvar DemoModal = function DemoModal(_ref) {\n\t var isOpen = _ref.isOpen,\n\t onClose = _ref.onClose,\n\t onStartDemo = _ref.onStartDemo;\n\t\n\t return _react2.default.createElement(\n\t _reactstrap.Modal,\n\t { isOpen: isOpen, toggle: onClose, id: 'modalSelectStore' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-header' },\n\t _react2.default.createElement(\n\t 'h4',\n\t { className: 'modal-title', id: 'exampleModalLabel' },\n\t _reactReduxI18n.I18n.t('DEMO_TITLE')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'close', 'data-dismiss': 'modal', 'aria-label': 'Close', onClick: onClose },\n\t _ref2\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-body' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _reactReduxI18n.I18n.t('DEMO_TEXT')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-footer' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-primary', onClick: function onClick() {\n\t return onStartDemo('de');\n\t } },\n\t _reactReduxI18n.I18n.t('DEMO_DE_LOGIN')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-primary', onClick: function onClick() {\n\t return onStartDemo('en');\n\t } },\n\t _reactReduxI18n.I18n.t('DEMO_EN_LOGIN')\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = DemoModal;\n\n/***/ },\n/* 576 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _actions = __webpack_require__(169);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar ForgotPasswordPage = function (_React$Component) {\n\t _inherits(ForgotPasswordPage, _React$Component);\n\t\n\t function ForgotPasswordPage(props) {\n\t _classCallCheck(this, ForgotPasswordPage);\n\t\n\t var _this = _possibleConstructorReturn(this, (ForgotPasswordPage.__proto__ || Object.getPrototypeOf(ForgotPasswordPage)).call(this, props));\n\t\n\t _this.handleUsernameChanged = function (username) {\n\t _this.setState({ username: username });\n\t };\n\t\n\t _this.handleSendPassword = function () {\n\t _this.props.actions.forgotPassword(_this.state.username);\n\t _this.setState({ username: '' });\n\t _this.setState({ sent: true });\n\t };\n\t\n\t _this.state = {\n\t username: '',\n\t sent: false\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(ForgotPasswordPage, [{\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'login-form-container' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'container login' },\n\t _react2.default.createElement(\n\t 'form',\n\t { className: 'form-login' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'logo-login' },\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/' },\n\t _reactReduxI18n.I18n.t('pet_data')\n\t )\n\t ),\n\t this.state.sent === false && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _reactReduxI18n.I18n.t('RESET_PASSWORD_HEADER'),\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'email', className: 'sr-only' },\n\t _reactReduxI18n.I18n.t('EMAIL_ADDRESS')\n\t ),\n\t _react2.default.createElement('input', { name: 'email',\n\t className: 'form-control',\n\t placeholder: _reactReduxI18n.I18n.t('EMAIL_ADDRESS'),\n\t value: this.state.username,\n\t onChange: function onChange(e) {\n\t _this2.handleUsernameChanged(e.target.value);\n\t }\n\t }),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-login', onClick: this.handleSendPassword },\n\t _reactReduxI18n.I18n.t('SEND_PASSWORD')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'no-account' },\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/labels' },\n\t _reactReduxI18n.I18n.t('RESET_PASSWORD_BACK')\n\t )\n\t )\n\t ),\n\t this.state.sent === true && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t null,\n\t _reactReduxI18n.I18n.t('RESET_PASSWORD_CONFIRMATION')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'no-account' },\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/labels' },\n\t _reactReduxI18n.I18n.t('RESET_PASSWORD_BACK')\n\t )\n\t )\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return ForgotPasswordPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ forgotPassword: _actions.forgotPassword }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(null, mapDispatchToProps)(ForgotPasswordPage);\n\n/***/ },\n/* 577 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _FormInput = __webpack_require__(49);\n\t\n\tvar _FormInput2 = _interopRequireDefault(_FormInput);\n\t\n\tvar _apiEndpoints = __webpack_require__(76);\n\t\n\tvar endpoints = _interopRequireWildcard(_apiEndpoints);\n\t\n\tvar _DemoModal = __webpack_require__(575);\n\t\n\tvar _DemoModal2 = _interopRequireDefault(_DemoModal);\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 _ref2 = _react2.default.createElement('span', { className: 'lnr lnr-cross-circle', 'aria-hidden': 'true' });\n\t\n\tvar _ref3 = _react2.default.createElement(_reduxForm.Field, { name: 'remember',\n\t component: _FormInput2.default,\n\t type: 'checkbox',\n\t className: 'form-checkbox'\n\t});\n\t\n\tvar LoginForm = function LoginForm(_ref) {\n\t var attemptingLogin = _ref.attemptingLogin,\n\t handleSubmit = _ref.handleSubmit,\n\t submitFailed = _ref.submitFailed,\n\t isOpen = _ref.isOpen,\n\t onDemoClose = _ref.onDemoClose,\n\t onStartDemo = _ref.onStartDemo,\n\t onOpenDemoModal = _ref.onOpenDemoModal;\n\t\n\t var signupLink = endpoints.SIGNUP_EN;\n\t var browserLanguage = window.navigator.language;\n\t browserLanguage = browserLanguage.substring(0, 2);\n\t if (browserLanguage === 'de') {\n\t signupLink = endpoints.SIGNUP_DE;\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'login-form-container' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'container login' },\n\t _react2.default.createElement(\n\t 'form',\n\t { className: 'form-login', onSubmit: handleSubmit },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'logo-login' },\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/' },\n\t _reactReduxI18n.I18n.t('pet_data')\n\t )\n\t ),\n\t submitFailed && _react2.default.createElement(\n\t 'div',\n\t { className: 'alert alert-danger', role: 'alert' },\n\t _ref2,\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'form-error-text' },\n\t _reactReduxI18n.I18n.t('INVALID_CREDENTIALS')\n\t ),\n\t _reactReduxI18n.I18n.t('PLEASE_REENTER')\n\t ),\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'email', className: 'sr-only' },\n\t _reactReduxI18n.I18n.t('EMAIL_ADDRESS')\n\t ),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'email',\n\t component: _FormInput2.default,\n\t type: 'text',\n\t className: 'form-control',\n\t placeholder: _reactReduxI18n.I18n.t('EMAIL_ADDRESS')\n\t }),\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'password', className: 'sr-only' },\n\t _reactReduxI18n.I18n.t('PASSWORD')\n\t ),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'password',\n\t component: _FormInput2.default,\n\t type: 'password',\n\t className: 'form-control',\n\t placeholder: _reactReduxI18n.I18n.t('PASSWORD')\n\t }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'forgot-password' },\n\t _ref3,\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'checkRemember', className: 'checkbox-label' },\n\t _reactReduxI18n.I18n.t('REMEMBER_ME')\n\t ),\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/forgot', className: 'forgot-password-link' },\n\t _reactReduxI18n.I18n.t('FORGOT_PASSWORD')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'submit', className: 'btn btn-login', disabled: attemptingLogin },\n\t _reactReduxI18n.I18n.t('LOG_IN')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'no-account' },\n\t _reactReduxI18n.I18n.t('NO_ACCOUNT')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'account-text' },\n\t _react2.default.createElement(\n\t 'a',\n\t { href: signupLink, target: '_blank' },\n\t _reactReduxI18n.I18n.t('SIGN_UP')\n\t ),\n\t _reactReduxI18n.I18n.t('OR'),\n\t _react2.default.createElement(\n\t 'a',\n\t { onClick: function onClick(e) {\n\t e.preventDefault();onOpenDemoModal();\n\t }, href: '' },\n\t _reactReduxI18n.I18n.t('VIEW_DEMO')\n\t )\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(_DemoModal2.default, { isOpen: isOpen, onClose: onDemoClose, onStartDemo: onStartDemo })\n\t );\n\t};\n\t\n\texports.default = (0, _reduxForm.reduxForm)()(LoginForm);\n\n/***/ },\n/* 578 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _LoginForm = __webpack_require__(577);\n\t\n\tvar _LoginForm2 = _interopRequireDefault(_LoginForm);\n\t\n\tvar _actions = __webpack_require__(169);\n\t\n\tvar _selectors = __webpack_require__(268);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar formName = 'loginForm';\n\t\n\tfunction handleFormSubmit(values, dispatch) {\n\t return new Promise(function (resolve, reject) {\n\t dispatch((0, _actions.login)(values)).then(function () {\n\t resolve();\n\t }).catch(function () {\n\t reject();\n\t });\n\t });\n\t}\n\t\n\tfunction handleDemoLogin(language) {\n\t var user = 'demo' + language + '@petdata.at';\n\t return function (dispatch) {\n\t dispatch((0, _actions.login)({ email: user, password: 'Test1234' }));\n\t };\n\t}\n\t\n\tfunction handleSubmitFail(errors, dispatch) {\n\t dispatch((0, _reduxForm.change)(formName, 'password', ''));\n\t}\n\t\n\tfunction handleFormValidation(values) {\n\t var invalid_credentials = _reactReduxI18n.I18n.t('INVALID_CREDENTIALS');\n\t\n\t var errors = {};\n\t\n\t if (!values.email) {\n\t errors.email = invalid_credentials;\n\t } else if (!/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4}$/i.test(values.email)) {\n\t errors.email = invalid_credentials;\n\t }\n\t\n\t if (!values.password) {\n\t errors.password = invalid_credentials;\n\t }\n\t\n\t return errors;\n\t}\n\t\n\tvar LoginPage = function LoginPage(_ref) {\n\t var actions = _ref.actions,\n\t remember = _ref.remember,\n\t rememberEmail = _ref.rememberEmail,\n\t demoModalOpen = _ref.demoModalOpen;\n\t\n\t return _react2.default.createElement(_LoginForm2.default, { form: formName,\n\t onSubmit: handleFormSubmit,\n\t onSubmitFail: handleSubmitFail,\n\t validate: handleFormValidation,\n\t isOpen: demoModalOpen,\n\t onDemoClose: actions.hideDemoModal,\n\t onStartDemo: actions.handleDemoLogin,\n\t onOpenDemoModal: actions.showDemoModal,\n\t initialValues: { remember: remember, email: rememberEmail, password: '' }\n\t });\n\t};\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t attemptingLogin: (0, _selectors.isAttemptingLogin)(state),\n\t demoModalOpen: (0, _selectors.isDemoModalOpen)(state),\n\t remember: localStorage.rememberUserName ? true : false,\n\t rememberEmail: localStorage.rememberUserName\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ showDemoModal: _actions.showDemoModal, hideDemoModal: _actions.hideDemoModal, handleDemoLogin: handleDemoLogin }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LoginPage);\n\n/***/ },\n/* 579 */\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.ForgotPasswordPage = exports.LoginPage = undefined;\n\t\n\tvar _LoginPage = __webpack_require__(578);\n\t\n\tvar _LoginPage2 = _interopRequireDefault(_LoginPage);\n\t\n\tvar _ForgotPasswordPage = __webpack_require__(576);\n\t\n\tvar _ForgotPasswordPage2 = _interopRequireDefault(_ForgotPasswordPage);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.LoginPage = _LoginPage2.default;\n\texports.ForgotPasswordPage = _ForgotPasswordPage2.default;\n\n/***/ },\n/* 580 */\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 _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 = reducer;\n\t\n\tvar _actionTypes = __webpack_require__(266);\n\t\n\tvar types = _interopRequireWildcard(_actionTypes);\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\tvar initialCredentials = {\n\t userName: '',\n\t fullName: '',\n\t isActive: false,\n\t isDemoUser: false,\n\t isMasterUser: false\n\t};\n\t\n\tvar initialState = {\n\t attemptingLogin: false,\n\t showDemoModal: false,\n\t attemptingLogout: false,\n\t authenticated: false,\n\t contextLoaded: false,\n\t credentials: initialCredentials,\n\t subscriptions: [],\n\t activeSubscriptionId: 0,\n\t managementLink: ''\n\t};\n\t\n\tfunction reducer() {\n\t var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;\n\t var action = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t\n\t switch (action.type) {\n\t case types.CUSTOMER_LOGIN_ATTEMPT:\n\t return _extends({}, state, {\n\t attemptingLogin: true\n\t });\n\t case types.CUSTOMER_LOGIN_SUCCESS:\n\t return _extends({}, state, {\n\t attemptingLogin: false,\n\t authenticated: true,\n\t credentials: {\n\t userName: action.payload.userName,\n\t fullName: action.payload.fullName,\n\t isActive: action.payload.isActive,\n\t isDemoUser: action.payload.isDemoUser,\n\t isMasterUser: action.payload.isMasterUser\n\t }\n\t });\n\t case types.CUSTOMER_LOGIN_FAIL:\n\t return _extends({}, state, {\n\t attemptingLogin: false\n\t });\n\t case types.SHOW_DEMO_MODAL:\n\t return _extends({}, state, {\n\t showDemoModal: true\n\t });\n\t case types.HIDE_DEMO_MODAL:\n\t return _extends({}, state, {\n\t showDemoModal: false\n\t });\n\t case types.CUSTOMER_LOGOUT:\n\t return _extends({}, state, {\n\t authenticated: false,\n\t contextLoaded: false,\n\t credentials: initialCredentials,\n\t subscriptions: [],\n\t activeSubscriptionId: 0\n\t });\n\t case types.CUSTOMER_CONTEXT_RECEIVED:\n\t return _extends({}, state, {\n\t contextLoaded: true,\n\t credentials: {\n\t userName: action.payload.userName,\n\t fullName: action.payload.fullName,\n\t isActive: action.payload.isActive,\n\t isDemoUser: action.payload.isDemoUser,\n\t isMasterUser: action.payload.isMasterUser\n\t },\n\t subscriptions: action.payload.subscriptionList,\n\t activeSubscriptionId: action.payload.activeSubscriptionId,\n\t managementLink: action.payload.managementLink\n\t });\n\t case types.TOKEN_LOGIN_SUCCESS:\n\t return _extends({}, state, {\n\t authenticated: true\n\t });\n\t case types.SET_ACTIVE_SUBSCRIPTION:\n\t // We don't need to set the state if it's already equal, that way we avoid an unneeded render\n\t if (state.activeSubscriptionId === action.payload.activeSubscriptionId) {\n\t return state;\n\t }\n\t return _extends({}, state, {\n\t activeSubscriptionId: action.payload.activeSubscriptionId,\n\t managementLink: action.payload.managementLink\n\t });\n\t case types.UPDATE_LABEL_STYLES:\n\t {\n\t var subscriptions = JSON.parse(JSON.stringify(state.subscriptions));\n\t for (var x = 0; x < subscriptions.length; x++) {\n\t if (subscriptions[x].id === state.activeSubscriptionId) subscriptions[x].styles = action.payload.LabelStyles;\n\t }\n\t return _extends({}, state, {\n\t subscriptions: subscriptions\n\t });\n\t }\n\t case types.UPDATE_LABEL_LOGOS:\n\t {\n\t var _subscriptions = JSON.parse(JSON.stringify(state.subscriptions));\n\t for (var _x3 = 0; _x3 < _subscriptions.length; _x3++) {\n\t if (_subscriptions[_x3].id === state.activeSubscriptionId) _subscriptions[_x3].logos = action.payload.LabelLogos;\n\t }\n\t return _extends({}, state, {\n\t subscriptions: _subscriptions\n\t });\n\t }\n\t case types.UPDATE_LABEL_OFFSET:\n\t {\n\t var _subscriptions2 = JSON.parse(JSON.stringify(state.subscriptions));\n\t for (var _x4 = 0; _x4 < _subscriptions2.length; _x4++) {\n\t if (_subscriptions2[_x4].id === state.activeSubscriptionId) {\n\t _subscriptions2[_x4].pageOffset = action.payload.pageOffset;\n\t\n\t _subscriptions2[_x4].isPaperSizeLetter = action.payload.isPaperSizeLetter;\n\t\n\t _subscriptions2[_x4].usePLUCode = action.payload.usePLUCode;\n\t\n\t _subscriptions2[_x4].useUSMetrics = action.payload.useUSMetrics;\n\t\n\t _subscriptions2[_x4].labelTitleOrder = action.payload.labelTitleOrder;\n\t }\n\t }\n\t return _extends({}, state, {\n\t subscriptions: _subscriptions2\n\t });\n\t }\n\t default:\n\t return state;\n\t }\n\t}\n\n/***/ },\n/* 581 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t//import FormInput from '../../common/components/FormInput';\n\t\n\t\n\tvar _ref2 = _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-10' },\n\t _react2.default.createElement(\n\t _reduxForm.Field,\n\t { name: 'IsPaperSizeLetter', component: 'select' },\n\t _react2.default.createElement(\n\t 'option',\n\t { value: 'false' },\n\t 'A4'\n\t ),\n\t _react2.default.createElement(\n\t 'option',\n\t { value: 'true' },\n\t 'Letter'\n\t )\n\t )\n\t);\n\t\n\tvar _ref3 = _react2.default.createElement('br', null);\n\t\n\tvar _ref4 = _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-10' },\n\t _react2.default.createElement(_reduxForm.Field, { name: 'pageOffset.PosX',\n\t component: 'input',\n\t type: 'number',\n\t className: 'form-control'\n\t })\n\t);\n\t\n\tvar _ref5 = _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-10' },\n\t _react2.default.createElement(_reduxForm.Field, { name: 'pageOffset.PosY',\n\t component: 'input',\n\t type: 'number',\n\t className: 'form-control'\n\t })\n\t);\n\t\n\tvar AdvancedSettingsForm = function AdvancedSettingsForm(_ref) {\n\t var handleSubmit = _ref.handleSubmit,\n\t submitting = _ref.submitting,\n\t handleCancel = _ref.handleCancel,\n\t isEnglishIn = _ref.isEnglishIn;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'form',\n\t { onSubmit: handleSubmit },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_HEADER_TITLE')\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_HEADER_DESCRIPTION')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-2 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_HEADER_FIELD')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-10' },\n\t _react2.default.createElement(\n\t _reduxForm.Field,\n\t { name: 'LabelTitleOrder', component: 'select' },\n\t _react2.default.createElement(\n\t 'option',\n\t { value: '0' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_HEADER_LAT_N')\n\t ),\n\t _react2.default.createElement(\n\t 'option',\n\t { value: '1' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_HEADER_N_LAT')\n\t ),\n\t _react2.default.createElement(\n\t 'option',\n\t { value: '2' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_HEADER_IN_N_LAT')\n\t )\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_PLU_TITLE')\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_PLU_DESCRIPTION')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-2 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_PLU_FIELD')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-10' },\n\t _react2.default.createElement(\n\t _reduxForm.Field,\n\t { name: 'UsePLUCode', component: 'select' },\n\t _react2.default.createElement(\n\t 'option',\n\t { value: 'true' },\n\t _reactReduxI18n.I18n.t('YES')\n\t ),\n\t _react2.default.createElement(\n\t 'option',\n\t { value: 'false' },\n\t _reactReduxI18n.I18n.t('NO')\n\t )\n\t )\n\t )\n\t ),\n\t isEnglishIn && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_METRIC_TITLE')\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_METRIC_DESCRIPTION')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-2 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_METRIC_FIELD')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-10' },\n\t _react2.default.createElement(\n\t _reduxForm.Field,\n\t { name: 'UseUSMetrics', component: 'select' },\n\t _react2.default.createElement(\n\t 'option',\n\t { value: 'false' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_METRIC_EU')\n\t ),\n\t _react2.default.createElement(\n\t 'option',\n\t { value: 'true' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_METRIC_US')\n\t )\n\t )\n\t )\n\t )\n\t ),\n\t isEnglishIn && false && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_PAGE_FORMAT_TITLE')\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t null,\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_PAGE_FORMAT_DESCRIPTION')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-2 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_PAGE_FORMAT_FIELD')\n\t ),\n\t _ref2\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('PRINTER_ADJUSTMENT')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement('div', { dangerouslySetInnerHTML: { __html: _reactReduxI18n.I18n.t('ADJUSTMENT_INSTRUCTIONS') } }),\n\t _ref3\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-2 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('B_HORIZONTAL')\n\t ),\n\t _ref4\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'example-text-input', className: 'col-lg-2 col-sm-2 col-form-label' },\n\t _reactReduxI18n.I18n.t('A_VERTICAL')\n\t ),\n\t _ref5\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-customize ' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters bottom-buttons' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12 text-right' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-secondary', onClick: handleCancel },\n\t _reactReduxI18n.I18n.t('CANCEL')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'submit', className: 'btn btn-primary', disabled: submitting },\n\t _reactReduxI18n.I18n.t('SAVE')\n\t )\n\t )\n\t )\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = (0, _reduxForm.reduxForm)()(AdvancedSettingsForm);\n\n/***/ },\n/* 582 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _CloseButton = __webpack_require__(107);\n\t\n\tvar _CloseButton2 = _interopRequireDefault(_CloseButton);\n\t\n\tvar _AdvancedSettingsForm = __webpack_require__(581);\n\t\n\tvar _AdvancedSettingsForm2 = _interopRequireDefault(_AdvancedSettingsForm);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t//import {formValueSelector} from 'redux-form';\n\t\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActivePermissions = _customer$selectors.getActivePermissions,\n\t getIsPaperSizeLetter = _customer$selectors.getIsPaperSizeLetter,\n\t getUsePLUCode = _customer$selectors.getUsePLUCode,\n\t getUseUSMetrics = _customer$selectors.getUseUSMetrics,\n\t getLabelTitleOrder = _customer$selectors.getLabelTitleOrder,\n\t getActivePageOffset = _customer$selectors.getActivePageOffset,\n\t getIsEnglish = _customer$selectors.getIsEnglish;\n\t//import {areSettingsValid, getStoreSettings} from '../selectors';\n\t\n\t//import * as permissions from '../../common/userPermissions';\n\t\n\tvar formName = 'advancedSettingsForm';\n\t//const formSelector = formValueSelector(formName);\n\t\n\tvar _ref2 = _react2.default.createElement(_CloseButton2.default, { url: '/labels' });\n\t\n\tvar _ref3 = _react2.default.createElement(\n\t 'p',\n\t null,\n\t ' '\n\t);\n\t\n\tvar _ref4 = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar _ref5 = _react2.default.createElement('div', { className: 'row no-gutters' });\n\t\n\tvar AdvancedSettingsPage = function (_React$Component) {\n\t _inherits(AdvancedSettingsPage, _React$Component);\n\t\n\t function AdvancedSettingsPage() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, AdvancedSettingsPage);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = AdvancedSettingsPage.__proto__ || Object.getPrototypeOf(AdvancedSettingsPage)).call.apply(_ref, [this].concat(args))), _this), _this.handleCancel = function () {\n\t _this.props.actions.push('/labels');\n\t }, _this.handleFormSubmit = function (values) {\n\t _this.props.actions.saveLabelSettings(values.IsPaperSizeLetter, values.UsePLUCode, values.UseUSMetrics, values.LabelTitleOrder, values.pageOffset.PosY, values.pageOffset.PosX);\n\t _this.props.actions.clearLabelSheet();\n\t _this.props.actions.push('/labels');\n\t\n\t /* return new Promise((resolve, reject) => {\r\n\t this.props.actions.saveLabelSettings(values.IsPaperSizeLetter,values.UsePLUCode ,values.UseUSMetrics, values.LabelTitleOrder , values.VerticalOffset, values.HorizontalOffset)\r\n\t .then(() => {\r\n\t resolve();\r\n\t })\r\n\t .catch(() => {\r\n\t reject();\r\n\t });\r\n\t }); */\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(AdvancedSettingsPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {}\n\t /* const accessPermission = this.props.activePermissions.find((permission) => {\r\n\t return permission === permissions.MANAGE_LOGO;\r\n\t });\r\n\t if(!accessPermission)\r\n\t {\r\n\t this.props.actions.push('/labels');\r\n\t } \r\n\t this.props.actions.getCareSheetSettings();\r\n\t */\n\t\n\t\n\t // componentWillReceiveProps(nextProps) {\n\t /* if(this.props.authData.activeSubscriptionId !== nextProps.authData.activeSubscriptionId) {\r\n\t this.props.actions.getCareSheetSettings();\r\n\t }\r\n\t */\n\t //}\n\t\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t // const {actions: {uploadLogo}, useLogo, storeSettings, validSettings} = this.props;\n\t var validSettings = true;\n\t var test = this.props.isEnglish;\n\t if (test) test = false;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main full-width', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t { className: 'float-left' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LABEL_PAGE_TITLE')\n\t ),\n\t _ref2\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _ref3,\n\t !validSettings && _ref4,\n\t validSettings && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _ref5,\n\t _react2.default.createElement(_AdvancedSettingsForm2.default, { form: formName,\n\t initialValues: { IsPaperSizeLetter: this.props.isPaperSizeLetter,\n\t UsePLUCode: this.props.usePLUCode,\n\t UseUSMetrics: this.props.useUSMetrics,\n\t LabelTitleOrder: this.props.labelTitleOrder,\n\t\n\t pageOffset: this.props.pageOffset },\n\t onSubmit: this.handleFormSubmit,\n\t handleCancel: this.handleCancel\n\t /* storeSettings={{IsPaperSizeLetter: this.props.isPaperSizeLetter, \r\n\t UsePLUCode: this.props.usePLUCode,\r\n\t UseUSMetrics: this.props.useUSMetrics, \r\n\t LabelTitleOrder: this.props.labelTitleOrder}}\r\n\t useLogo={true} */\n\t , isEnglishIn: this.props.isEnglish\n\t })\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return AdvancedSettingsPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activePermissions: getActivePermissions(state),\n\t // useLogo: formSelector(state, 'useLogo'),\n\t isPaperSizeLetter: getIsPaperSizeLetter(state),\n\t useUSMetrics: getUseUSMetrics(state),\n\t usePLUCode: getUsePLUCode(state),\n\t labelTitleOrder: getLabelTitleOrder(state),\n\t pageOffset: getActivePageOffset(state),\n\t isEnglish: getIsEnglish(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t // actions: bindActionCreators({getCareSheetSettings, uploadLogo, saveStoreSettings, push}, dispatch)\n\t actions: (0, _redux.bindActionCreators)({ saveLabelSettings: _actions.saveLabelSettings, clearLabelSheet: _actions.clearLabelSheet, push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\tAdvancedSettingsPage.defaultProps = {\n\t usePLUCode: true,\n\t useUSMetrics: false,\n\t isPaperSizeLetter: false,\n\t labelTitleOrder: 0,\n\t isEnglish: false\n\t\n\t};\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(AdvancedSettingsPage);\n\n/***/ },\n/* 583 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\tvar ArticleColumnsEN = exports.ArticleColumnsEN = [{\n\t key: 'Id',\n\t name: 'ID',\n\t editable: false,\n\t filterable: true,\n\t sortable: true,\n\t width: 80\n\t}, {\n\t key: 'Line1',\n\t name: 'Lat. Name',\n\t editable: false,\n\t filterable: true,\n\t sortable: true\n\t}, {\n\t key: 'Line2',\n\t name: 'Name',\n\t editable: false,\n\t filterable: true,\n\t sortable: true\n\t}, {\n\t key: 'PetType',\n\t name: 'Pet Type',\n\t editable: false,\n\t filterable: true,\n\t sortable: true\n\t}, {\n\t key: 'CustomerName',\n\t name: 'Integration Name',\n\t editable: true,\n\t filterable: true,\n\t sortable: true,\n\t width: 150\n\t}, {\n\t key: 'Price',\n\t name: 'Price',\n\t editable: true,\n\t filterable: true,\n\t sortable: true,\n\t width: 80\n\t}, {\n\t key: 'Barcode',\n\t name: 'EAN',\n\t editable: true,\n\t filterable: true,\n\t sortable: true,\n\t width: 100\n\t}, {\n\t key: 'PLUCode',\n\t name: 'PLU',\n\t editable: true,\n\t filterable: true,\n\t sortable: true,\n\t width: 80\n\t}];\n\t\n\tvar ArticleColumnsDE = exports.ArticleColumnsDE = [{\n\t key: 'Id',\n\t name: 'ID',\n\t editable: false,\n\t filterable: true,\n\t sortable: true,\n\t width: 80\n\t}, {\n\t key: 'Line1',\n\t name: 'Lat. Name',\n\t editable: false,\n\t filterable: true,\n\t sortable: true\n\t}, {\n\t key: 'Line2',\n\t name: 'Name',\n\t editable: false,\n\t filterable: true,\n\t sortable: true\n\t}, {\n\t key: 'PetType',\n\t name: 'Tiertyp',\n\t editable: false,\n\t filterable: true,\n\t sortable: true\n\t}, {\n\t key: 'CustomerName',\n\t name: 'Integrationsname',\n\t editable: true,\n\t filterable: true,\n\t sortable: true,\n\t width: 150\n\t}, {\n\t key: 'Price',\n\t name: 'Preis',\n\t editable: true,\n\t filterable: true,\n\t sortable: true,\n\t width: 80\n\t}, {\n\t key: 'Barcode',\n\t name: 'EAN',\n\t editable: true,\n\t filterable: true,\n\t sortable: true,\n\t width: 100\n\t}, {\n\t key: 'PLUCode',\n\t name: 'PLU',\n\t editable: true,\n\t filterable: true,\n\t sortable: true,\n\t width: 80\n\t}];\n\n/***/ },\n/* 584 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactDataGridAddons = __webpack_require__(481);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar ContextMenu = _reactDataGridAddons.Menu.ContextMenu,\n\t MenuItem = _reactDataGridAddons.Menu.MenuItem;\n\t\n\tvar ArticlesContext = function (_React$Component) {\n\t\t_inherits(ArticlesContext, _React$Component);\n\t\n\t\tfunction ArticlesContext() {\n\t\t\tvar _ref;\n\t\n\t\t\tvar _temp, _this, _ret;\n\t\n\t\t\t_classCallCheck(this, ArticlesContext);\n\t\n\t\t\tfor (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t\t\t\targs[_key] = arguments[_key];\n\t\t\t}\n\t\n\t\t\treturn _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = ArticlesContext.__proto__ || Object.getPrototypeOf(ArticlesContext)).call.apply(_ref, [this].concat(args))), _this), _this.onRowCopy = function (e, data) {\n\t\t\t\t_this.props.onRowCopy(e, data);\n\t\t\t}, _this.onRowDelete = function (e, data) {\n\t\t\t\t_this.props.onRowDelete(e, data);\n\t\t\t}, _temp), _possibleConstructorReturn(_this, _ret);\n\t\t}\n\t\n\t\t_createClass(ArticlesContext, [{\n\t\t\tkey: 'render',\n\t\t\tvalue: function render() {\n\t\t\t\treturn _react2.default.createElement(\n\t\t\t\t\tContextMenu,\n\t\t\t\t\tnull,\n\t\t\t\t\t_react2.default.createElement(\n\t\t\t\t\t\tMenuItem,\n\t\t\t\t\t\t{ data: { rowIdx: this.props.rowIdx, idx: this.props.idx }, onClick: this.onRowCopy },\n\t\t\t\t\t\t_reactReduxI18n.I18n.t('DUPLICATE_ROW')\n\t\t\t\t\t),\n\t\t\t\t\t_react2.default.createElement(\n\t\t\t\t\t\tMenuItem,\n\t\t\t\t\t\t{ data: { rowIdx: this.props.rowIdx, idx: this.props.idx }, onClick: this.onRowDelete },\n\t\t\t\t\t\t_reactReduxI18n.I18n.t('CLEAR_ROW')\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t}\n\t\t}]);\n\t\n\t\treturn ArticlesContext;\n\t}(_react2.default.Component);\n\t\n\texports.default = ArticlesContext;\n\n/***/ },\n/* 585 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactDataGrid = __webpack_require__(1030);\n\t\n\tvar _reactDataGrid2 = _interopRequireDefault(_reactDataGrid);\n\t\n\tvar _reactDataGridAddons = __webpack_require__(481);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _ArticlesContext = __webpack_require__(584);\n\t\n\tvar _ArticlesContext2 = _interopRequireDefault(_ArticlesContext);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _apiEndpoints = __webpack_require__(76);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _selectors = __webpack_require__(57);\n\t\n\tvar _ArticleColumns = __webpack_require__(583);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActiveExcelKey = _customer$selectors.getActiveExcelKey,\n\t getActiveSubscriptionId = _customer$selectors.getActiveSubscriptionId,\n\t getActivePermissions = _customer$selectors.getActivePermissions;\n\t\n\tvar _ref5 = _react2.default.createElement(_reactDataGridAddons.Toolbar, { enableAddRow: false, enableFilter: true, filterRowsButtonText: 'Filter' });\n\t\n\tvar ArticlesPage = function (_React$Component) {\n\t _inherits(ArticlesPage, _React$Component);\n\t\n\t function ArticlesPage() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, ArticlesPage);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = ArticlesPage.__proto__ || Object.getPrototypeOf(ArticlesPage)).call.apply(_ref, [this].concat(args))), _this), _this.rowGetter = function (i) {\n\t return _this.props.articleList[i];\n\t }, _this.handleFilterChange = function (filter) {\n\t _this.props.actions.addArticleFilter(filter.column.key, filter.filterTerm);\n\t }, _this.onClearFilters = function () {\n\t _this.props.actions.clearArticleFilters();\n\t }, _this.handleGridRowsUpdated = function (_ref2) {\n\t var fromRow = _ref2.fromRow,\n\t updated = _ref2.updated;\n\t\n\t var key = Object.keys(updated)[0];\n\t _this.props.actions.updateLabelArticle(_this.props.articleList[fromRow], key, updated[key]);\n\t _this.props.actions.petLabelListReload(false);\n\t }, _this.handleGridSort = function (sortColumn, sortDirection) {\n\t _this.props.actions.sortArticles(sortColumn, sortDirection);\n\t }, _this.deleteArticle = function (e, _ref3) {\n\t var rowIdx = _ref3.rowIdx;\n\t\n\t _this.props.actions.deleteArticleMapping(_this.props.articleList[rowIdx]);\n\t _this.props.actions.petLabelListReload(false);\n\t }, _this.copyArticle = function (e, _ref4) {\n\t var rowIdx = _ref4.rowIdx;\n\t\n\t _this.props.actions.addArticleMapping(_this.props.articleList[rowIdx]);\n\t _this.props.actions.petLabelListReload(false);\n\t }, _this.onUpload = function (excelFile) {\n\t _this.props.actions.uploadExcelFile(excelFile);\n\t _this.props.actions.petLabelListReload(false);\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(ArticlesPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var accessPermission = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.MANAGE_ARTICLES;\n\t });\n\t if (!accessPermission) {\n\t this.props.actions.push('/labels');\n\t }\n\t\n\t this.props.actions.getArticleList();\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var excelDownloadUrl = _apiEndpoints.ARTICLE_EXCEL_DOWNLOAD + '?subscriptionID=' + this.props.subscriptionId + '&key=' + this.props.excelKey;\n\t\n\t var articleColumns = _ArticleColumns.ArticleColumnsDE;\n\t var browserLanguage = window.navigator.language;\n\t browserLanguage = browserLanguage.substring(0, 2);\n\t if (browserLanguage === 'en') {\n\t articleColumns = _ArticleColumns.ArticleColumnsEN;\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('ARTICLE_MANAGEMENT')\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t null,\n\t _reactReduxI18n.I18n.t('ARTICLE_INSTRUCTIONS')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'pt-4' },\n\t _react2.default.createElement(\n\t 'label',\n\t { className: 'custom-file btn-upload float-right' },\n\t _react2.default.createElement('input', { type: 'file', id: 'file',\n\t className: 'custom-file-input',\n\t accept: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet application/vnd.ms-excel .csv',\n\t onChange: function onChange(e) {\n\t _this2.onUpload(e.target.files[0]);\n\t } }),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'custom-file-control' },\n\t _reactReduxI18n.I18n.t('UPLOAD_FILE')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'a',\n\t { href: excelDownloadUrl, className: 'btn btn-primary float-right', download: true },\n\t _reactReduxI18n.I18n.t('EXPORT_TO_EXCEL')\n\t )\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'data-grid-wrapper' },\n\t this.props.articlesValid && _react2.default.createElement(_reactDataGrid2.default, {\n\t contextMenu: _react2.default.createElement(_ArticlesContext2.default, { onRowDelete: this.deleteArticle, onRowCopy: this.copyArticle }),\n\t enableCellSelect: true,\n\t columns: articleColumns,\n\t rowGetter: this.rowGetter,\n\t rowsCount: this.props.articleList.length,\n\t onGridRowsUpdated: this.handleGridRowsUpdated,\n\t onGridSort: this.handleGridSort,\n\t toolbar: _ref5,\n\t onAddFilter: this.handleFilterChange,\n\t onClearFilters: this.onClearFilters\n\t })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return ArticlesPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t articleList: (0, _selectors.getShownArticles)(state),\n\t articlesValid: (0, _selectors.areArticlesValid)(state),\n\t activePermissions: getActivePermissions(state),\n\t excelKey: getActiveExcelKey(state),\n\t subscriptionId: getActiveSubscriptionId(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ addArticleMapping: _actions.addArticleMapping,\n\t deleteArticleMapping: _actions.deleteArticleMapping,\n\t getArticleList: _actions.getArticleList,\n\t sortArticles: _actions.sortArticles,\n\t updateLabelArticle: _actions.updateLabelArticle,\n\t uploadExcelFile: _actions.uploadExcelFile,\n\t clearArticleFilters: _actions.clearArticleFilters,\n\t addArticleFilter: _actions.addArticleFilter,\n\t petLabelListReload: _actions.petLabelListReload,\n\t push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(ArticlesPage);\n\n/***/ },\n/* 586 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar BackButton = function (_React$Component) {\n\t _inherits(BackButton, _React$Component);\n\t\n\t function BackButton() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, BackButton);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = BackButton.__proto__ || Object.getPrototypeOf(BackButton)).call.apply(_ref, [this].concat(args))), _this), _this.handleClick = function () {\n\t _this.props.actions.clearSearchResults();\n\t _this.props.actions.deselectPetLabel();\n\t _this.props.actions.clearActiveLabel();\n\t _this.props.actions.push(_this.props.url);\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(BackButton, [{\n\t key: 'render',\n\t value: function render() {\n\t return _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-primary-back', onClick: this.handleClick },\n\t _reactReduxI18n.I18n.t('BACK_TO_LABELS_SEARCH_RESULTS')\n\t );\n\t }\n\t }]);\n\t\n\t return BackButton;\n\t}(_react2.default.Component);\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ clearActiveLabel: _actions.clearActiveLabel, clearSearchResults: _actions.clearSearchResults, deselectPetLabel: _actions.deselectPetLabel, push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(null, mapDispatchToProps)(BackButton);\n\n/***/ },\n/* 587 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _thenby = __webpack_require__(91);\n\t\n\tvar _thenby2 = _interopRequireDefault(_thenby);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _selectors = __webpack_require__(57);\n\t\n\tvar _CloseButton = __webpack_require__(107);\n\t\n\tvar _CloseButton2 = _interopRequireDefault(_CloseButton);\n\t\n\tvar _LabelCol2Form = __webpack_require__(170);\n\t\n\tvar _LabelCol2Form2 = _interopRequireDefault(_LabelCol2Form);\n\t\n\tvar _LabelCol4Form = __webpack_require__(171);\n\t\n\tvar _LabelCol4Form2 = _interopRequireDefault(_LabelCol4Form);\n\t\n\tvar _LabelCol4LrgForm = __webpack_require__(172);\n\t\n\tvar _LabelCol4LrgForm2 = _interopRequireDefault(_LabelCol4LrgForm);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActivePermissions = _customer$selectors.getActivePermissions,\n\t getUsePLUCode = _customer$selectors.getUsePLUCode;\n\t\n\t\n\tvar formName = \"createLabelForm\";\n\t\n\tvar _ref = _react2.default.createElement(_CloseButton2.default, { url: '/labels' });\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar CreateLabelPage = function (_React$Component) {\n\t _inherits(CreateLabelPage, _React$Component);\n\t\n\t function CreateLabelPage(props) {\n\t _classCallCheck(this, CreateLabelPage);\n\t\n\t var _this = _possibleConstructorReturn(this, (CreateLabelPage.__proto__ || Object.getPrototypeOf(CreateLabelPage)).call(this, props));\n\t\n\t _this.handleBack = function () {\n\t _this.props.actions.deselectPetLabel();\n\t _this.props.actions.clearActiveLabel();\n\t };\n\t\n\t _this.handleFormSubmit = function (values) {\n\t _this.props.actions.saveLabelToSheet(_this.props.activePageSize, _this.props.activePetLabel, _this.state.fieldMapping, _this.props.activePLU, values);\n\t };\n\t\n\t _this.state = {\n\t fieldMapping: []\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(CreateLabelPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var labelAccess = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.ACCESS_LABELS;\n\t });\n\t if (!labelAccess) {\n\t this.props.actions.push('/labels');\n\t } else if (this.props.selectedGridIndex < 0 || this.props.selectedPetLabelId < 0) {\n\t this.props.actions.push('/labels');\n\t } else {\n\t this.props.actions.getPetLabel(this.props.selectedPetLabelId, this.props.activePageSize, this.props.selectedArticleMappingId);\n\t }\n\t }\n\t }, {\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(newProps) {\n\t if (this.props.activePetLabel !== newProps.activePetLabel && Object.keys(newProps.activePetLabel).length !== 0) {\n\t var columns = newProps.fieldPositions.reduce(function (prev, current) {\n\t return prev.Column > current.Column ? prev.Column : current.Column;\n\t });\n\t\n\t // Make sure the field positions are sorted properly\n\t if (columns === 0) {\n\t newProps.fieldPositions.sort((0, _thenby2.default)(\"Column\").thenBy(\"Row\"));\n\t } else if (columns === 1) {\n\t newProps.fieldPositions.sort((0, _thenby2.default)(\"Row\").thenBy(\"Column\"));\n\t }\n\t\n\t // Sort the fields into the correct order\n\t var labelFields = [];\n\t newProps.fieldPositions.forEach(function (position) {\n\t var labelField = newProps.activePetLabel.DetailFields.find(function (detailField) {\n\t return detailField.Key === position.Field;\n\t });\n\t labelFields.push(labelField);\n\t });\n\t\n\t // Build the mapping from the ordered fields\n\t var fieldMapping = [];\n\t labelFields.forEach(function (detailField, index) {\n\t if (detailField !== undefined) {\n\t var keyName = 'Key' + index;\n\t var valueName = 'Value' + index;\n\t var mapping = {\n\t name: detailField.Key,\n\t key: keyName,\n\t value: valueName\n\t };\n\t fieldMapping.push(mapping);\n\t }\n\t });\n\t this.setState({ fieldMapping: fieldMapping });\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t activeLogoUrl = _props.activeLogoUrl,\n\t activePageSize = _props.activePageSize,\n\t activePetLabel = _props.activePetLabel,\n\t activePLU = _props.activePLU,\n\t fieldPositions = _props.fieldPositions;\n\t\n\t var validLabel = Object.keys(activePetLabel).length !== 0;\n\t var large = false;\n\t if (activePageSize === '195 x 66 mm') {\n\t large = true;\n\t }\n\t\n\t var columns = -1;\n\t var labelFields = [];\n\t var initialValues = {};\n\t if (validLabel) {\n\t // We need the max column to select the proper label template\n\t columns = fieldPositions.reduce(function (prev, current) {\n\t return prev.Column > current.Column ? prev.Column : current.Column;\n\t });\n\t\n\t // Sort the fields into the correct order\n\t fieldPositions.forEach(function (position) {\n\t var labelField = activePetLabel.DetailFields.find(function (detailField) {\n\t return detailField.Key === position.Field;\n\t });\n\t labelFields.push(labelField);\n\t });\n\t\n\t initialValues[\"line1\"] = activePetLabel.Line1;\n\t initialValues[\"line2\"] = activePetLabel.Line2;\n\t initialValues[\"plu\"] = activePetLabel.PLUCode;\n\t initialValues[\"barcode\"] = activePetLabel.Barcode;\n\t initialValues[\"pluKey\"] = activePetLabel.PLUCodeTitle !== null ? activePetLabel.PLUCodeTitle : 'PLU';\n\t\n\t if (activePetLabel.Price !== null && activePetLabel.Price !== undefined) {\n\t initialValues[\"price\"] = activePetLabel.Price;\n\t }\n\t\n\t labelFields.forEach(function (detailField, index) {\n\t if (detailField !== undefined) {\n\t var keyName = 'Key' + index;\n\t var valueName = 'Value' + index;\n\t initialValues[keyName] = detailField.Key;\n\t initialValues[valueName] = detailField.Value;\n\t }\n\t });\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'wrapper' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main full-width', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t { className: 'float-left' },\n\t _reactReduxI18n.I18n.t('CREATE_LABEL')\n\t ),\n\t _ref,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'back' },\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/pet_search', onClick: this.handleBack },\n\t _reactReduxI18n.I18n.t('BACK_SEARCH_RESULTS')\n\t )\n\t )\n\t )\n\t ),\n\t !validLabel && _ref2,\n\t validLabel && columns === 0 && _react2.default.createElement(_LabelCol2Form2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('CREATE_LABEL')\n\t }),\n\t validLabel && columns === 1 && large === false && _react2.default.createElement(_LabelCol4Form2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('CREATE_LABEL')\n\t }),\n\t validLabel && columns === 1 && large === true && _react2.default.createElement(_LabelCol4LrgForm2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('CREATE_LABEL')\n\t })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return CreateLabelPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activeLogoUrl: (0, _selectors.getActiveLogo)(state),\n\t activeDefinition: (0, _selectors.getActiveDefinition)(state),\n\t activePageSize: (0, _selectors.getActivePageSize)(state),\n\t activePermissions: getActivePermissions(state),\n\t activePetLabel: (0, _selectors.getActivePetLabel)(state),\n\t activePLU: getUsePLUCode(state),\n\t fieldPositions: (0, _selectors.getFieldPositions)(state),\n\t selectedGridIndex: (0, _selectors.getSelectedGridIndex)(state),\n\t selectedPetLabelId: (0, _selectors.getSelectedPetLabelId)(state),\n\t selectedArticleMappingId: (0, _selectors.getSelectedArticleMappingId)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ change: _reduxForm.change, clearActiveLabel: _actions.clearActiveLabel, deselectPetLabel: _actions.deselectPetLabel, getPetLabel: _actions.getPetLabel, saveLabelToSheet: _actions.saveLabelToSheet, push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\tCreateLabelPage.defaultProps = {\n\t activeLogoUrl: ''\n\t};\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(CreateLabelPage);\n\n/***/ },\n/* 588 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactstrap = __webpack_require__(56);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar CustomDropdown = function (_React$Component) {\n\t _inherits(CustomDropdown, _React$Component);\n\t\n\t function CustomDropdown(props) {\n\t _classCallCheck(this, CustomDropdown);\n\t\n\t var _this = _possibleConstructorReturn(this, (CustomDropdown.__proto__ || Object.getPrototypeOf(CustomDropdown)).call(this, props));\n\t\n\t _this.handleToggle = function () {\n\t _this.setState({ isOpen: !_this.state.isOpen });\n\t };\n\t\n\t _this.state = {\n\t isOpen: false\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(CustomDropdown, [{\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t // const {petTypeList} = this.props;\n\t var petTypeList = this.props.petTypeList.sort();\n\t\n\t var petTypes = petTypeList.map(function (petType) {\n\t return _react2.default.createElement(\n\t _reactstrap.DropdownItem,\n\t { key: petType, onClick: function onClick() {\n\t _this2.props.onSelected(petType);\n\t } },\n\t petType\n\t );\n\t });\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'dropdown float-right' },\n\t _react2.default.createElement(\n\t _reactstrap.Dropdown,\n\t { isOpen: this.state.isOpen, toggle: this.handleToggle },\n\t _react2.default.createElement(\n\t _reactstrap.DropdownToggle,\n\t { caret: true, color: 'secondary' },\n\t _reactReduxI18n.I18n.t('CREATE_CUSTOM_LABEL')\n\t ),\n\t _react2.default.createElement(\n\t _reactstrap.DropdownMenu,\n\t null,\n\t petTypes\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return CustomDropdown;\n\t}(_react2.default.Component);\n\t\n\texports.default = CustomDropdown;\n\n/***/ },\n/* 589 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _thenby = __webpack_require__(91);\n\t\n\tvar _thenby2 = _interopRequireDefault(_thenby);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _selectors = __webpack_require__(57);\n\t\n\tvar _CloseButton = __webpack_require__(107);\n\t\n\tvar _CloseButton2 = _interopRequireDefault(_CloseButton);\n\t\n\tvar _LabelCol2Form = __webpack_require__(170);\n\t\n\tvar _LabelCol2Form2 = _interopRequireDefault(_LabelCol2Form);\n\t\n\tvar _LabelCol4Form = __webpack_require__(171);\n\t\n\tvar _LabelCol4Form2 = _interopRequireDefault(_LabelCol4Form);\n\t\n\tvar _LabelCol2LrgForm = __webpack_require__(270);\n\t\n\tvar _LabelCol2LrgForm2 = _interopRequireDefault(_LabelCol2LrgForm);\n\t\n\tvar _LabelCol4LrgForm = __webpack_require__(172);\n\t\n\tvar _LabelCol4LrgForm2 = _interopRequireDefault(_LabelCol4LrgForm);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActivePermissions = _customer$selectors.getActivePermissions,\n\t getUsePLUCode = _customer$selectors.getUsePLUCode;\n\t\n\t\n\tvar formName = 'customLabelForm';\n\t\n\tvar _ref = _react2.default.createElement(_CloseButton2.default, { url: '/labels' });\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar CustomLabelPage = function (_React$Component) {\n\t _inherits(CustomLabelPage, _React$Component);\n\t\n\t function CustomLabelPage(props) {\n\t _classCallCheck(this, CustomLabelPage);\n\t\n\t var _this = _possibleConstructorReturn(this, (CustomLabelPage.__proto__ || Object.getPrototypeOf(CustomLabelPage)).call(this, props));\n\t\n\t _this.handleFormSubmit = function (values) {\n\t _this.props.actions.saveLabelToSheet(_this.props.activePageSize, _this.props.activePetLabel, _this.state.fieldMapping, _this.props.activePLU, values);\n\t };\n\t\n\t _this.state = {\n\t fieldMapping: []\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(CustomLabelPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var _this2 = this;\n\t\n\t var labelAccess = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.ACCESS_LABELS;\n\t });\n\t if (!labelAccess) {\n\t this.props.actions.push('/labels');\n\t } else if (this.props.selectedGridIndex < 0 || Object.keys(this.props.activePetLabel).length === 0) {\n\t this.props.actions.push('/labels');\n\t } else {\n\t var columns = this.props.fieldPositions.reduce(function (prev, current) {\n\t return prev.Column > current.Column ? prev.Column : current.Column;\n\t });\n\t\n\t // Make sure the field positions are sorted properly\n\t var fieldPositions = this.props.fieldPositions;\n\t if (columns === 0) {\n\t fieldPositions.sort((0, _thenby2.default)(\"Column\").thenBy(\"Row\"));\n\t } else if (columns === 1) {\n\t fieldPositions.sort((0, _thenby2.default)(\"Row\").thenBy(\"Column\"));\n\t }\n\t\n\t // Sort the fields into the correct order\n\t var labelFields = [];\n\t fieldPositions.forEach(function (position) {\n\t var labelField = _this2.props.activePetLabel.DetailFields.find(function (detailField) {\n\t return detailField.Key === position.Field;\n\t });\n\t labelFields.push(labelField);\n\t });\n\t\n\t // Build the mapping from the ordered fields\n\t var fieldMapping = [];\n\t labelFields.forEach(function (detailField, index) {\n\t if (detailField !== undefined) {\n\t var keyName = 'Key' + index;\n\t var valueName = 'Value' + index;\n\t var mapping = {\n\t name: detailField.Key,\n\t key: keyName,\n\t value: valueName\n\t };\n\t fieldMapping.push(mapping);\n\t }\n\t });\n\t this.setState({ fieldMapping: fieldMapping });\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t activeLogoUrl = _props.activeLogoUrl,\n\t activePageSize = _props.activePageSize,\n\t activePetLabel = _props.activePetLabel,\n\t activePLU = _props.activePLU,\n\t fieldPositions = _props.fieldPositions;\n\t\n\t var validLabel = Object.keys(activePetLabel).length !== 0;\n\t var large = false;\n\t if (activePageSize === '195 x 66 mm' || activePageSize == '91 x 130 mm' || activePageSize == '133 x 191 mm') {\n\t large = true;\n\t }\n\t\n\t var columns = -1;\n\t var labelFields = [];\n\t var initialValues = {};\n\t if (validLabel) {\n\t // We need the max column to select the proper label template\n\t columns = fieldPositions.reduce(function (prev, current) {\n\t return prev.Column > current.Column ? prev.Column : current.Column;\n\t });\n\t\n\t // Sort the fields into the correct order\n\t fieldPositions.forEach(function (position) {\n\t var labelField = activePetLabel.DetailFields.find(function (detailField) {\n\t return detailField.Key === position.Field;\n\t });\n\t labelFields.push(labelField);\n\t });\n\t\n\t initialValues[\"line1\"] = activePetLabel.Line1;\n\t initialValues[\"line2\"] = activePetLabel.Line2;\n\t initialValues[\"plu\"] = activePetLabel.PLUCode;\n\t initialValues[\"barcode\"] = activePetLabel.Barcode;\n\t initialValues[\"pluKey\"] = activePetLabel.PLUCodeTitle;\n\t initialValues[\"price\"] = activePetLabel.Price;\n\t\n\t labelFields.forEach(function (detailField, index) {\n\t if (detailField !== undefined) {\n\t var keyName = 'Key' + index;\n\t var valueName = 'Value' + index;\n\t initialValues[keyName] = detailField.OverwrittenKey;\n\t initialValues[valueName] = detailField.OverwrittenValue;\n\t }\n\t });\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'wrapper' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main full-width', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t { className: 'float-left' },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL')\n\t ),\n\t _ref\n\t )\n\t ),\n\t !validLabel && _ref2,\n\t validLabel && columns === 0 && large === false && _react2.default.createElement(_LabelCol2Form2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('SAVE_LABEL')\n\t }),\n\t validLabel && columns === 0 && large === true && _react2.default.createElement(_LabelCol2LrgForm2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('SAVE_LABEL')\n\t }),\n\t validLabel && columns === 1 && large === false && _react2.default.createElement(_LabelCol4Form2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('SAVE_LABEL')\n\t }),\n\t validLabel && columns === 1 && large === true && _react2.default.createElement(_LabelCol4LrgForm2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('SAVE_LABEL')\n\t })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return CustomLabelPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activeLogoUrl: (0, _selectors.getActiveLogo)(state),\n\t activePageSize: (0, _selectors.getActivePageSize)(state),\n\t activePetLabel: (0, _selectors.getActivePetLabel)(state),\n\t activePermissions: getActivePermissions(state),\n\t activePLU: getUsePLUCode(state),\n\t fieldPositions: (0, _selectors.getFieldPositions)(state),\n\t selectedGridIndex: (0, _selectors.getSelectedGridIndex)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ push: _reactRouterRedux.push, saveLabelToSheet: _actions.saveLabelToSheet }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(CustomLabelPage);\n\n/***/ },\n/* 590 */\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 _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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _selectors = __webpack_require__(57);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _CloseButton = __webpack_require__(107);\n\t\n\tvar _CloseButton2 = _interopRequireDefault(_CloseButton);\n\t\n\tvar _StyledLabel2Col = __webpack_require__(608);\n\t\n\tvar _StyledLabel2Col2 = _interopRequireDefault(_StyledLabel2Col);\n\t\n\tvar _StyledLabel4Col = __webpack_require__(610);\n\t\n\tvar _StyledLabel4Col2 = _interopRequireDefault(_StyledLabel4Col);\n\t\n\tvar _StyledLabel2ColLrg = __webpack_require__(609);\n\t\n\tvar _StyledLabel2ColLrg2 = _interopRequireDefault(_StyledLabel2ColLrg);\n\t\n\tvar _StyledLabel4ColLrg = __webpack_require__(611);\n\t\n\tvar _StyledLabel4ColLrg2 = _interopRequireDefault(_StyledLabel4ColLrg);\n\t\n\tvar _LabelStylePicker = __webpack_require__(601);\n\t\n\tvar _LabelStylePicker2 = _interopRequireDefault(_LabelStylePicker);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActiveStyles = _customer$selectors.getActiveStyles,\n\t getActiveLogos = _customer$selectors.getActiveLogos,\n\t isContextLoaded = _customer$selectors.isContextLoaded,\n\t getActivePermissions = _customer$selectors.getActivePermissions;\n\t\n\tvar _ref = _react2.default.createElement(_CloseButton2.default, { url: '/labels' });\n\t\n\tvar CustomizeLabelPage = function (_React$Component) {\n\t _inherits(CustomizeLabelPage, _React$Component);\n\t\n\t function CustomizeLabelPage(props) {\n\t _classCallCheck(this, CustomizeLabelPage);\n\t\n\t var _this = _possibleConstructorReturn(this, (CustomizeLabelPage.__proto__ || Object.getPrototypeOf(CustomizeLabelPage)).call(this, props));\n\t\n\t _initialiseProps.call(_this);\n\t\n\t var styleElements = void 0;\n\t if (props.contextLoaded) {\n\t styleElements = _this.resetStyleElements(props.activeStyles, props.activePageSize);\n\t }\n\t\n\t _this.state = {\n\t styleElements: styleElements\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(CustomizeLabelPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var labelAccess = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.ACCESS_LABELS;\n\t });\n\t if (!labelAccess) {\n\t this.props.actions.push('/labels');\n\t } else if (this.props.contextLoaded === false) {\n\t this.props.actions.push('/labels');\n\t }\n\t }\n\t }, {\n\t key: 'resetStyleElements',\n\t value: function resetStyleElements(activeStyles, activePageSize) {\n\t var styleElements = activeStyles[activePageSize];\n\t\n\t var labelBorderStyle = styleElements.find(function (element) {\n\t return element.Name === 'labelborder';\n\t });\n\t var labelBorderColorCode = '#FFFFFF';\n\t if (labelBorderStyle !== undefined) {\n\t labelBorderColorCode = labelBorderStyle.ColorCode.toLowerCase();\n\t }\n\t\n\t var labelBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'background';\n\t });\n\t var labelBgColorCode = labelBgStyle.ColorCode.toLowerCase();\n\t\n\t var headerBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'headerbackground';\n\t });\n\t var headerBgColorCode = headerBgStyle.ColorCode.toLowerCase();\n\t\n\t var headerFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'headercolor';\n\t });\n\t var headerFontColorCode = headerFontStyle.ColorCode.toLowerCase();\n\t\n\t var detailBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'detailtitlebackground';\n\t });\n\t var detailBgColorCode = detailBgStyle.ColorCode.toLowerCase();\n\t\n\t var detailFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'detailtitlecolor';\n\t });\n\t var detailFontColorCode = detailFontStyle.ColorCode.toLowerCase();\n\t\n\t var valueBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'detailvaluebackground';\n\t });\n\t var valueBgColorCode = valueBgStyle.ColorCode.toLowerCase();\n\t\n\t var valueFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'detailvaluecolor';\n\t });\n\t var valueFontColorCode = valueFontStyle.ColorCode.toLowerCase();\n\t\n\t var priceBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'pricebackground';\n\t });\n\t var priceBgColorCode = priceBgStyle.ColorCode.toLowerCase();\n\t\n\t var priceFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'pricecolor';\n\t });\n\t var priceFontColorCode = priceFontStyle.ColorCode.toLowerCase();\n\t\n\t var pluFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'pluprice';\n\t });\n\t var pluFontColorCode = '#FFFFFF';\n\t if (pluFontStyle !== undefined) {\n\t pluFontColorCode = pluFontStyle.ColorCode.toLowerCase();\n\t }\n\t\n\t var barCodeStyle = styleElements.find(function (element) {\n\t return element.Name === 'barcodebackground';\n\t });\n\t var barCodeBgColorCode = void 0;\n\t if (barCodeStyle !== undefined) {\n\t barCodeBgColorCode = barCodeStyle.ColorCode.toLowerCase();\n\t }\n\t\n\t var imageBorderStyle = styleElements.find(function (element) {\n\t return element.Name === 'imageborder';\n\t });\n\t var imageBorderColorCode = void 0;\n\t if (imageBorderStyle !== undefined) {\n\t imageBorderColorCode = imageBorderStyle.ColorCode.toLowerCase();\n\t }\n\t\n\t var rightPanelBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'rightbackground';\n\t });\n\t var rightPanelColorCode = void 0;\n\t if (rightPanelBgStyle !== undefined) {\n\t rightPanelColorCode = rightPanelBgStyle.ColorCode.toLowerCase();\n\t }\n\t\n\t var labelStyleElements = {\n\t labelBorderColor: labelBorderColorCode,\n\t labelBgColor: labelBgColorCode,\n\t headerBgColor: headerBgColorCode,\n\t headerFontColor: headerFontColorCode,\n\t detailBgColor: detailBgColorCode,\n\t detailFontColor: detailFontColorCode,\n\t valueBgColor: valueBgColorCode,\n\t valueFontColor: valueFontColorCode,\n\t priceFontColor: priceFontColorCode,\n\t priceBgColor: priceBgColorCode,\n\t pluFontColor: pluFontColorCode,\n\t barCodeBgColor: barCodeBgColorCode,\n\t imageBorderColor: imageBorderColorCode,\n\t rightPanelBgColor: rightPanelColorCode\n\t };\n\t\n\t return labelStyleElements;\n\t }\n\t }, {\n\t key: 'resetDefaultElements',\n\t value: function resetDefaultElements(activeStyles, activePageSize) {\n\t var styleElements = activeStyles[activePageSize];\n\t\n\t var labelBorderStyle = styleElements.find(function (element) {\n\t return element.Name === 'labelborder';\n\t });\n\t var labelBorderColorCode = '#FFFFFF';\n\t if (labelBorderStyle !== undefined) {\n\t labelBorderColorCode = labelBorderStyle.DefaultColorCode.toLowerCase();\n\t }\n\t\n\t var labelBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'background';\n\t });\n\t var labelBgColorCode = labelBgStyle.DefaultColorCode.toLowerCase();\n\t\n\t var headerBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'headerbackground';\n\t });\n\t var headerBgColorCode = headerBgStyle.DefaultColorCode.toLowerCase();\n\t\n\t var headerFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'headercolor';\n\t });\n\t var headerFontColorCode = headerFontStyle.DefaultColorCode.toLowerCase();\n\t\n\t var detailBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'detailtitlebackground';\n\t });\n\t var detailBgColorCode = detailBgStyle.DefaultColorCode.toLowerCase();\n\t\n\t var detailFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'detailtitlecolor';\n\t });\n\t var detailFontColorCode = detailFontStyle.DefaultColorCode.toLowerCase();\n\t\n\t var valueBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'detailvaluebackground';\n\t });\n\t var valueBgColorCode = valueBgStyle.DefaultColorCode.toLowerCase();\n\t\n\t var valueFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'detailvaluecolor';\n\t });\n\t var valueFontColorCode = valueFontStyle.DefaultColorCode.toLowerCase();\n\t\n\t var priceBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'pricebackground';\n\t });\n\t var priceBgColorCode = priceBgStyle.DefaultColorCode.toLowerCase();\n\t\n\t var priceFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'pricecolor';\n\t });\n\t var priceFontColorCode = priceFontStyle.DefaultColorCode.toLowerCase();\n\t\n\t var pluFontStyle = styleElements.find(function (element) {\n\t return element.Name === 'pluprice';\n\t });\n\t var pluFontColorCode = '#FFFFFF';\n\t if (pluFontStyle !== undefined) {\n\t pluFontColorCode = pluFontStyle.DefaultColorCode.toLowerCase();\n\t }\n\t\n\t var barCodeStyle = styleElements.find(function (element) {\n\t return element.Name === 'barcodebackground';\n\t });\n\t var barCodeBgColorCode = void 0;\n\t if (barCodeStyle !== undefined) {\n\t barCodeBgColorCode = barCodeStyle.DefaultColorCode.toLowerCase();\n\t }\n\t\n\t var imageBorderStyle = styleElements.find(function (element) {\n\t return element.Name === 'imageborder';\n\t });\n\t var imageBorderColorCode = void 0;\n\t if (imageBorderStyle !== undefined) {\n\t imageBorderColorCode = imageBorderStyle.DefaultColorCode.toLowerCase();\n\t }\n\t\n\t var rightPanelBgStyle = styleElements.find(function (element) {\n\t return element.Name === 'rightbackground';\n\t });\n\t var rightPanelColorCode = '#FFFFFF';\n\t if (rightPanelBgStyle !== undefined) {\n\t rightPanelColorCode = rightPanelBgStyle.DefaultColorCode.toLowerCase();\n\t }\n\t\n\t var labelStyleElements = {\n\t labelBorderColor: labelBorderColorCode,\n\t labelBgColor: labelBgColorCode,\n\t headerBgColor: headerBgColorCode,\n\t headerFontColor: headerFontColorCode,\n\t detailBgColor: detailBgColorCode,\n\t detailFontColor: detailFontColorCode,\n\t valueBgColor: valueBgColorCode,\n\t valueFontColor: valueFontColorCode,\n\t priceFontColor: priceFontColorCode,\n\t priceBgColor: priceBgColorCode,\n\t pluFontColor: pluFontColorCode,\n\t barCodeBgColor: barCodeBgColorCode,\n\t imageBorderColor: imageBorderColorCode,\n\t rightPanelBgColor: rightPanelColorCode\n\t };\n\t\n\t return labelStyleElements;\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var _props = this.props,\n\t activeDefinition = _props.activeDefinition,\n\t activeLogos = _props.activeLogos,\n\t activePageSize = _props.activePageSize,\n\t contextLoaded = _props.contextLoaded,\n\t definitionsValid = _props.definitionsValid;\n\t\n\t var large = false;\n\t if (activePageSize === '195 x 66 mm' || activePageSize == '91 x 130 mm' || activePageSize == '133 x 191 mm') {\n\t large = true;\n\t }\n\t\n\t var logo = '';\n\t var columns = -1;\n\t if (definitionsValid) {\n\t var fieldColumns = activeDefinition.FieldMappings.map(function (mapping) {\n\t return mapping.Column;\n\t });\n\t\n\t // We need the max column to select the proper label template\n\t columns = fieldColumns.reduce(function (prev, current) {\n\t return prev > current ? prev : current;\n\t });\n\t }\n\t\n\t if (contextLoaded) {\n\t logo = activeLogos[activePageSize];\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'wrapper', onClick: this.closeColorPickers },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main label-customize full-width', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row', onClick: this.closeColorPickers },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t { className: 'float-left' },\n\t _reactReduxI18n.I18n.t('CUSTOMIZE_LABEL')\n\t ),\n\t _ref\n\t )\n\t ),\n\t columns === 0 && large === false && _react2.default.createElement(_StyledLabel2Col2.default, { styleElements: this.state.styleElements, logoUrl: logo }),\n\t columns === 0 && large === true && _react2.default.createElement(_StyledLabel2ColLrg2.default, { styleElements: this.state.styleElements, logoUrl: logo }),\n\t columns === 1 && large === false && _react2.default.createElement(_StyledLabel4Col2.default, { styleElements: this.state.styleElements, logoUrl: logo }),\n\t columns === 1 && large === true && _react2.default.createElement(_StyledLabel4ColLrg2.default, { styleElements: this.state.styleElements, logoUrl: logo }),\n\t definitionsValid && activeDefinition !== null && _react2.default.createElement(_LabelStylePicker2.default, { ref: function ref(instance) {\n\t return _this2.picker = instance;\n\t },\n\t columnCount: columns,\n\t styleElements: this.state.styleElements,\n\t onColorChange: this.handleColorChange,\n\t onLogoUpload: this.handleLogoUpload,\n\t onRestoreDefault: this.handleRestoreDefault,\n\t logoUrl: logo }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters bottom-buttons' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12 text-right' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-secondary', onClick: this.handleCancel },\n\t _reactReduxI18n.I18n.t('CANCEL')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-primary', onClick: this.handleSave },\n\t _reactReduxI18n.I18n.t('SAVE')\n\t )\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return CustomizeLabelPage;\n\t}(_react2.default.Component);\n\t\n\tvar _initialiseProps = function _initialiseProps() {\n\t var _this3 = this;\n\t\n\t this.closeColorPickers = function () {\n\t _this3.picker.closeColorPickers();\n\t };\n\t\n\t this.handleColorChange = function (name, color) {\n\t var styleElements = _extends({}, _this3.state.styleElements);\n\t\n\t switch (name) {\n\t case 'mainBorder':\n\t {\n\t styleElements.labelBorderColor = color.hex;\n\t break;\n\t }\n\t case 'mainBackground':\n\t {\n\t styleElements.labelBgColor = color.hex;\n\t break;\n\t }\n\t case 'headerFont':\n\t {\n\t styleElements.headerFontColor = color.hex;\n\t break;\n\t }\n\t case 'headerBackground':\n\t {\n\t styleElements.headerBgColor = color.hex;\n\t break;\n\t }\n\t case 'detailFont':\n\t {\n\t styleElements.detailFontColor = color.hex;\n\t break;\n\t }\n\t case 'detailBackground':\n\t {\n\t styleElements.detailBgColor = color.hex;\n\t break;\n\t }\n\t case 'valueFont':\n\t {\n\t styleElements.valueFontColor = color.hex;\n\t break;\n\t }\n\t case 'valueBackground':\n\t {\n\t styleElements.valueBgColor = color.hex;\n\t break;\n\t }\n\t case 'priceFont':\n\t {\n\t styleElements.priceFontColor = color.hex;\n\t break;\n\t }\n\t case 'priceBackground':\n\t {\n\t styleElements.priceBgColor = color.hex;\n\t break;\n\t }\n\t case 'pluFont':\n\t {\n\t styleElements.pluFontColor = color.hex;\n\t break;\n\t }\n\t case 'barCodeBackground':\n\t {\n\t styleElements.barCodeBgColor = color.hex;\n\t break;\n\t }\n\t case 'imageBorder':\n\t {\n\t styleElements.imageBorderColor = color.hex;\n\t break;\n\t }\n\t case 'rightPanelBackground':\n\t {\n\t styleElements.rightPanelBgColor = color.hex;\n\t }\n\t }\n\t _this3.setState({ styleElements: styleElements });\n\t };\n\t\n\t this.handleRestoreDefault = function () {\n\t var styleElements = _this3.resetDefaultElements(_this3.props.activeStyles, _this3.props.activePageSize);\n\t _this3.setState({ styleElements: styleElements });\n\t };\n\t\n\t this.handleSave = function () {\n\t _this3.props.actions.saveLabelStyles(_this3.props.activeDefinition, _this3.state.styleElements);\n\t _this3.props.actions.push('/labels');\n\t };\n\t\n\t this.handleLogoUpload = function (file) {\n\t _this3.props.actions.uploadLogo(_this3.props.activePageSize, file);\n\t };\n\t};\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activeDefinition: (0, _selectors.getActiveDefinition)(state),\n\t activeLogos: getActiveLogos(state),\n\t activeStyles: getActiveStyles(state),\n\t activePageSize: (0, _selectors.getActivePageSize)(state),\n\t activePermissions: getActivePermissions(state),\n\t contextLoaded: isContextLoaded(state),\n\t definitionsValid: (0, _selectors.areDefinitionsValid)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ push: _reactRouterRedux.push, getDefinitions: _actions.getDefinitions, saveLabelStyles: _actions.saveLabelStyles, uploadLogo: _actions.uploadLogo }, dispatch)\n\t };\n\t}\n\t\n\tCustomizeLabelPage.defaultProps = {\n\t activeLogos: {},\n\t activeStyles: {}\n\t};\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(CustomizeLabelPage);\n\n/***/ },\n/* 591 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _thenby = __webpack_require__(91);\n\t\n\tvar _thenby2 = _interopRequireDefault(_thenby);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _selectors = __webpack_require__(57);\n\t\n\tvar _CloseButton = __webpack_require__(107);\n\t\n\tvar _CloseButton2 = _interopRequireDefault(_CloseButton);\n\t\n\tvar _LabelCol2Form = __webpack_require__(170);\n\t\n\tvar _LabelCol2Form2 = _interopRequireDefault(_LabelCol2Form);\n\t\n\tvar _LabelCol4Form = __webpack_require__(171);\n\t\n\tvar _LabelCol4Form2 = _interopRequireDefault(_LabelCol4Form);\n\t\n\tvar _LabelCol2LrgForm = __webpack_require__(270);\n\t\n\tvar _LabelCol2LrgForm2 = _interopRequireDefault(_LabelCol2LrgForm);\n\t\n\tvar _LabelCol4LrgForm = __webpack_require__(172);\n\t\n\tvar _LabelCol4LrgForm2 = _interopRequireDefault(_LabelCol4LrgForm);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActivePermissions = _customer$selectors.getActivePermissions,\n\t getUsePLUCode = _customer$selectors.getUsePLUCode;\n\t\n\t\n\tvar formName = 'editLabelForm';\n\t\n\tvar _ref = _react2.default.createElement(_CloseButton2.default, { url: '/labels' });\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar EditLabelPage = function (_React$Component) {\n\t _inherits(EditLabelPage, _React$Component);\n\t\n\t function EditLabelPage(props) {\n\t _classCallCheck(this, EditLabelPage);\n\t\n\t var _this = _possibleConstructorReturn(this, (EditLabelPage.__proto__ || Object.getPrototypeOf(EditLabelPage)).call(this, props));\n\t\n\t _this.handleFormCancel = function () {\n\t _this.props.actions.push('/labels');\n\t };\n\t\n\t _this.handleFormSubmit = function (values) {\n\t _this.props.actions.saveLabelToSheet(_this.props.activePageSize, _this.props.activePetLabel, _this.state.fieldMapping, _this.props.activePLU, values);\n\t };\n\t\n\t _this.state = {\n\t fieldMapping: []\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(EditLabelPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var _this2 = this;\n\t\n\t var labelAccess = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.ACCESS_LABELS;\n\t });\n\t if (!labelAccess) {\n\t this.props.actions.push('/labels');\n\t } else if (this.props.selectedGridIndex < 0 || Object.keys(this.props.activePetLabel).length === 0) {\n\t this.props.actions.push('/labels');\n\t } else {\n\t var columns = this.props.fieldPositions.reduce(function (prev, current) {\n\t return prev.Column > current.Column ? prev.Column : current.Column;\n\t });\n\t\n\t // Make sure the field positions are sorted properly\n\t var fieldPositions = this.props.fieldPositions;\n\t if (columns === 0) {\n\t fieldPositions.sort((0, _thenby2.default)(\"Column\").thenBy(\"Row\"));\n\t } else if (columns === 1) {\n\t fieldPositions.sort((0, _thenby2.default)(\"Row\").thenBy(\"Column\"));\n\t }\n\t\n\t // Sort the fields into the correct order\n\t var labelFields = [];\n\t fieldPositions.forEach(function (position) {\n\t var labelField = _this2.props.activePetLabel.DetailFields.find(function (detailField) {\n\t return detailField.Key === position.Field;\n\t });\n\t labelFields.push(labelField);\n\t });\n\t\n\t // Build the mapping from the ordered fields\n\t var fieldMapping = [];\n\t labelFields.forEach(function (detailField, index) {\n\t if (detailField !== undefined) {\n\t var keyName = 'Key' + index;\n\t var valueName = 'Value' + index;\n\t var mapping = {\n\t name: detailField.Key,\n\t key: keyName,\n\t value: valueName\n\t };\n\t fieldMapping.push(mapping);\n\t }\n\t });\n\t this.setState({ fieldMapping: fieldMapping });\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t activeLogoUrl = _props.activeLogoUrl,\n\t activePageSize = _props.activePageSize,\n\t activePetLabel = _props.activePetLabel,\n\t activePLU = _props.activePLU,\n\t fieldPositions = _props.fieldPositions;\n\t\n\t var validLabel = Object.keys(activePetLabel).length !== 0;\n\t var large = false;\n\t if (activePageSize === '195 x 66 mm' || activePageSize == '91 x 130 mm' || activePageSize == '133 x 191 mm') {\n\t large = true;\n\t }\n\t\n\t var columns = -1;\n\t var labelFields = [];\n\t var initialValues = {};\n\t if (validLabel) {\n\t // We need the max column to select the proper label template\n\t columns = fieldPositions.reduce(function (prev, current) {\n\t return prev.Column > current.Column ? prev.Column : current.Column;\n\t });\n\t\n\t // Sort the fields into the correct order\n\t fieldPositions.forEach(function (position) {\n\t var labelField = activePetLabel.DetailFields.find(function (detailField) {\n\t return detailField.Key === position.Field;\n\t });\n\t labelFields.push(labelField);\n\t });\n\t\n\t initialValues[\"line1\"] = activePetLabel.Line1;\n\t initialValues[\"line2\"] = activePetLabel.Line2;\n\t initialValues[\"plu\"] = activePetLabel.PLUCode;\n\t initialValues[\"barcode\"] = activePetLabel.Barcode;\n\t initialValues[\"pluKey\"] = activePetLabel.PLUCodeTitle;\n\t initialValues[\"price\"] = activePetLabel.Price;\n\t\n\t labelFields.forEach(function (detailField, index) {\n\t if (detailField !== undefined) {\n\t var keyName = 'Key' + index;\n\t var valueName = 'Value' + index;\n\t initialValues[keyName] = detailField.OverwrittenKey;\n\t initialValues[valueName] = detailField.OverwrittenValue;\n\t }\n\t });\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'wrapper' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main full-width', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t { className: 'float-left' },\n\t _reactReduxI18n.I18n.t('EDIT_LABEL')\n\t ),\n\t _ref\n\t )\n\t ),\n\t !validLabel && _ref2,\n\t validLabel && columns === 0 && large == false && _react2.default.createElement(_LabelCol2Form2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('SAVE_LABEL'),\n\t onCancel: this.handleFormCancel\n\t }),\n\t validLabel && columns === 0 && large == true && _react2.default.createElement(_LabelCol2LrgForm2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('SAVE_LABEL'),\n\t onCancel: this.handleFormCancel\n\t }),\n\t validLabel && columns === 1 && large === false && _react2.default.createElement(_LabelCol4Form2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('SAVE_LABEL'),\n\t onCancel: this.handleFormCancel\n\t }),\n\t validLabel && columns === 1 && large === true && _react2.default.createElement(_LabelCol4LrgForm2.default, { activePLU: activePLU,\n\t detailFields: labelFields,\n\t form: formName,\n\t initialValues: initialValues,\n\t logoUrl: activeLogoUrl,\n\t onSubmit: this.handleFormSubmit,\n\t petLabel: activePetLabel,\n\t submitButtonText: _reactReduxI18n.I18n.t('SAVE_LABEL'),\n\t onCancel: this.handleFormCancel\n\t })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return EditLabelPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activeLogoUrl: (0, _selectors.getActiveLogo)(state),\n\t activePageSize: (0, _selectors.getActivePageSize)(state),\n\t activePetLabel: (0, _selectors.getActivePetLabel)(state),\n\t activePermissions: getActivePermissions(state),\n\t activePLU: getUsePLUCode(state),\n\t fieldPositions: (0, _selectors.getFieldPositions)(state),\n\t selectedGridIndex: (0, _selectors.getSelectedGridIndex)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ push: _reactRouterRedux.push, saveLabelToSheet: _actions.saveLabelToSheet }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(EditLabelPage);\n\n/***/ },\n/* 592 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar EmptyLabel = function EmptyLabel(_ref) {\n\t\tvar index = _ref.index,\n\t\t onSelected = _ref.onSelected;\n\t\n\t\treturn _react2.default.createElement(\"div\", { className: \"empty-label\", onClick: function onClick() {\n\t\t\t\tonSelected(index);\n\t\t\t} });\n\t};\n\t\n\texports.default = EmptyLabel;\n\n/***/ },\n/* 593 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _LabelHover = __webpack_require__(597);\n\t\n\tvar _LabelHover2 = _interopRequireDefault(_LabelHover);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar FilledLabel = function (_React$Component) {\n\t _inherits(FilledLabel, _React$Component);\n\t\n\t function FilledLabel(props) {\n\t _classCallCheck(this, FilledLabel);\n\t\n\t var _this = _possibleConstructorReturn(this, (FilledLabel.__proto__ || Object.getPrototypeOf(FilledLabel)).call(this, props));\n\t\n\t _this.handleMouseDown = function () {\n\t _this.setState({ dragging: true });\n\t };\n\t\n\t _this.handleMouseUp = function () {\n\t _this.setState({ dragging: false });\n\t };\n\t\n\t _this.handleMouseEnter = function () {\n\t _this.setState({ hover: true });\n\t };\n\t\n\t _this.handleMouseLeave = function () {\n\t _this.setState({ hover: false });\n\t };\n\t\n\t _this.state = {\n\t dragging: false,\n\t hover: false\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(FilledLabel, [{\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(newProps) {\n\t if (newProps.canHover === false) {\n\t this.setState({ hover: false });\n\t }\n\t\n\t if (this.props.index === newProps.index) {\n\t this.setState({ dragging: false });\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t canHover = _props.canHover,\n\t imageUrl = _props.imageUrl,\n\t index = _props.index;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'label-image',\n\t style: { backgroundImage: 'url(' + imageUrl + ')' },\n\t onMouseEnter: this.handleMouseEnter,\n\t onMouseOver: this.handleMouseEnter,\n\t onMouseUp: this.handleMouseUp },\n\t this.state.hover && canHover && !this.state.dragging && _react2.default.createElement(_LabelHover2.default, { index: index, onMouseDown: this.handleMouseDown, onMouseLeave: this.handleMouseLeave })\n\t );\n\t }\n\t }]);\n\t\n\t return FilledLabel;\n\t}(_react2.default.Component);\n\t\n\texports.default = FilledLabel;\n\n/***/ },\n/* 594 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _EmptyLabel = __webpack_require__(592);\n\t\n\tvar _EmptyLabel2 = _interopRequireDefault(_EmptyLabel);\n\t\n\tvar _FilledLabel = __webpack_require__(593);\n\t\n\tvar _FilledLabel2 = _interopRequireDefault(_FilledLabel);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar Label = function Label(_ref) {\n\t\tvar canHover = _ref.canHover,\n\t\t data = _ref.data,\n\t\t index = _ref.index,\n\t\t onSelected = _ref.onSelected;\n\t\n\t\tif (Object.keys(data).length === 0) {\n\t\t\treturn _react2.default.createElement(_EmptyLabel2.default, { index: index, onSelected: onSelected });\n\t\t} else {\n\t\t\treturn _react2.default.createElement(_FilledLabel2.default, { canHover: canHover, imageUrl: data.imageUrl, index: index });\n\t\t}\n\t};\n\t\n\texports.default = Label;\n\n/***/ },\n/* 595 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactstrap = __webpack_require__(56);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar LabelAddedModal = function LabelAddedModal(_ref) {\n\t var isOpen = _ref.isOpen,\n\t onClose = _ref.onClose;\n\t\n\t return _react2.default.createElement(\n\t _reactstrap.Modal,\n\t { isOpen: isOpen, toggle: onClose, id: 'modalSelectStore' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-body' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _reactReduxI18n.I18n.t('LABEL_ADDED_MESSAGE')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-footer' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-primary', onClick: onClose },\n\t _reactReduxI18n.I18n.t('CONTINUE')\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = LabelAddedModal;\n\n/***/ },\n/* 596 */\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 _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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _selectors = __webpack_require__(57);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar LabelGrid = function (_React$Component) {\n\t _inherits(LabelGrid, _React$Component);\n\t\n\t function LabelGrid() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, LabelGrid);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = LabelGrid.__proto__ || Object.getPrototypeOf(LabelGrid)).call.apply(_ref, [this].concat(args))), _this), _this.onSortStart = function () {\n\t var onSortStart = _this.props.onSortStart;\n\t\n\t _this.props.actions.setGridSorting(true);\n\t\n\t if (onSortStart) {\n\t onSortStart(_this.refs.component);\n\t }\n\t }, _this.onSortEnd = function (_ref2) {\n\t var oldIndex = _ref2.oldIndex,\n\t newIndex = _ref2.newIndex;\n\t var onSortEnd = _this.props.onSortEnd;\n\t\n\t\n\t _this.props.actions.setGridSorting(false);\n\t _this.props.actions.setLabelIndex(oldIndex, newIndex);\n\t\n\t if (onSortEnd) {\n\t onSortEnd(_this.refs.component);\n\t }\n\t }, _this.onSelectLabel = function (index) {\n\t _this.props.actions.selectLabel(index);\n\t _this.props.actions.push('/pet_search');\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(LabelGrid, [{\n\t key: 'render',\n\t value: function render() {\n\t var Component = this.props.component;\n\t var _props = this.props,\n\t isSorting = _props.isSorting,\n\t items = _props.items;\n\t\n\t var props = {\n\t axis: 'xy',\n\t isSorting: isSorting,\n\t items: items,\n\t onSelected: this.onSelectLabel,\n\t onSortEnd: this.onSortEnd,\n\t onSortStart: this.onSortStart,\n\t ref: 'component'\n\t };\n\t\n\t return _react2.default.createElement(Component, _extends({}, this.props, props));\n\t }\n\t }]);\n\t\n\t return LabelGrid;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t isSorting: (0, _selectors.isGridSorting)(state),\n\t labelSize: (0, _selectors.getActiveLabelSize)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ push: _reactRouterRedux.push, selectLabel: _actions.selectLabel, setGridSorting: _actions.setGridSorting, setLabelIndex: _actions.setLabelIndex }, dispatch)\n\t };\n\t}\n\t\n\tLabelGrid.defaultProps = {\n\t className: \"stylizedList\",\n\t itemClass: \"stylizedItem\"\n\t};\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LabelGrid);\n\n/***/ },\n/* 597 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar isDemoUser = _customer2.default.selectors.isDemoUser;\n\t\n\tvar LabelHover = function (_React$Component) {\n\t _inherits(LabelHover, _React$Component);\n\t\n\t function LabelHover(props) {\n\t _classCallCheck(this, LabelHover);\n\t\n\t var _this = _possibleConstructorReturn(this, (LabelHover.__proto__ || Object.getPrototypeOf(LabelHover)).call(this, props));\n\t\n\t _this.handleMouseDown = function () {\n\t _this.setState({ mouseDown: true });\n\t };\n\t\n\t _this.handleMouseUp = function () {\n\t _this.setState({ mouseDown: false });\n\t };\n\t\n\t _this.handleMouseMove = function () {\n\t if (_this.state.mouseDown) {\n\t _this.props.onMouseDown();\n\t }\n\t };\n\t\n\t _this.handleMouseLeave = function () {\n\t _this.setState({ mouseDown: false });\n\t _this.props.onMouseLeave();\n\t };\n\t\n\t _this.state = {\n\t mouseDown: false\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(LabelHover, [{\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t actions = _props.actions,\n\t index = _props.index,\n\t isDemoUser = _props.isDemoUser;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'label-overlay',\n\t onMouseDown: this.handleMouseDown,\n\t onMouseUp: this.handleMouseUp,\n\t onMouseMove: this.handleMouseMove,\n\t onMouseLeave: this.handleMouseLeave\n\t },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'btn-row' },\n\t !isDemoUser && _react2.default.createElement('div', { className: 'btn-edit', onClick: function onClick() {\n\t actions.editLabel(index);\n\t } }),\n\t _react2.default.createElement('div', { className: 'btn-delete', onClick: function onClick() {\n\t actions.deleteLabel(index);\n\t } })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return LabelHover;\n\t}(_react2.default.Component);\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ deleteLabel: _actions.deleteLabel, editLabel: _actions.editLabel }, dispatch)\n\t };\n\t}\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t isDemoUser: isDemoUser(state)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LabelHover);\n\n/***/ },\n/* 598 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _apiEndpoints = __webpack_require__(76);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar LabelPageButtons = function LabelPageButtons(_ref) {\n\t\tvar onClear = _ref.onClear,\n\t\t pdfId = _ref.pdfId;\n\t\n\t\tvar pdfLink = _apiEndpoints.LABEL_GET_PDF + '/' + pdfId;\n\t\treturn _react2.default.createElement(\n\t\t\t'div',\n\t\t\t{ className: 'col-xl-12 col-sm-4 text-right' },\n\t\t\t_react2.default.createElement(\n\t\t\t\t'button',\n\t\t\t\t{ type: 'button', className: 'btn btn-secondary', onClick: onClear },\n\t\t\t\t_reactReduxI18n.I18n.t('CLEAR')\n\t\t\t),\n\t\t\t_react2.default.createElement(\n\t\t\t\t_reactRouter.Link,\n\t\t\t\t{ to: pdfLink, target: '_blank', className: 'btn btn-primary' },\n\t\t\t\t_reactReduxI18n.I18n.t('GENERATE')\n\t\t\t)\n\t\t);\n\t};\n\t\n\texports.default = LabelPageButtons;\n\n/***/ },\n/* 599 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _SortableList = __webpack_require__(607);\n\t\n\tvar _SortableList2 = _interopRequireDefault(_SortableList);\n\t\n\tvar _LabelGrid = __webpack_require__(596);\n\t\n\tvar _LabelGrid2 = _interopRequireDefault(_LabelGrid);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar LabelSheet = function LabelSheet(_ref) {\n\t var labels = _ref.labels;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'label-sheet' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(_LabelGrid2.default, {\n\t component: _SortableList2.default,\n\t distance: 5,\n\t lockToContainerEdges: true,\n\t lockOffset: 0,\n\t items: labels,\n\t helperClass: 'stylizedHelper',\n\t className: 'stylizedList grid',\n\t itemClass: 'stylizedItem gridSpace'\n\t })\n\t )\n\t );\n\t};\n\t\n\texports.default = LabelSheet;\n\n/***/ },\n/* 600 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _thenby = __webpack_require__(91);\n\t\n\tvar _thenby2 = _interopRequireDefault(_thenby);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar LabelSizeList = function (_React$Component) {\n\t _inherits(LabelSizeList, _React$Component);\n\t\n\t function LabelSizeList() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, LabelSizeList);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = LabelSizeList.__proto__ || Object.getPrototypeOf(LabelSizeList)).call.apply(_ref, [this].concat(args))), _this), _this.handleSizeChange = function (e) {\n\t _this.props.onSelected(e.target.value);\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(LabelSizeList, [{\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var _props = this.props,\n\t activeSize = _props.activeSize,\n\t definitions = _props.definitions;\n\t\n\t\n\t definitions.sort((0, _thenby2.default)(\"Height\").thenBy(\"Width\"));\n\t\n\t var definitionNames = definitions.map(function (definition) {\n\t return _react2.default.createElement(\n\t 'option',\n\t { key: definition.LabelName, value: definition.LabelName },\n\t definition.LabelName\n\t );\n\t });\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'col-xl-12 col-sm-2' },\n\t _react2.default.createElement(\n\t 'label',\n\t { className: 'lbl-label-size', htmlFor: 'label-size' },\n\t _reactReduxI18n.I18n.t('LABEL_SIZE')\n\t ),\n\t _react2.default.createElement(\n\t 'label',\n\t { className: 'select' },\n\t _react2.default.createElement(\n\t 'select',\n\t { id: 'label-size', defaultValue: activeSize, onChange: function onChange(e) {\n\t _this2.handleSizeChange(e);\n\t } },\n\t definitionNames\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return LabelSizeList;\n\t}(_react2.default.Component);\n\t\n\texports.default = LabelSizeList;\n\n/***/ },\n/* 601 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactColor = __webpack_require__(1021);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar LabelStylePicker = function (_React$Component) {\n\t _inherits(LabelStylePicker, _React$Component);\n\t\n\t function LabelStylePicker(props) {\n\t _classCallCheck(this, LabelStylePicker);\n\t\n\t var _this = _possibleConstructorReturn(this, (LabelStylePicker.__proto__ || Object.getPrototypeOf(LabelStylePicker)).call(this, props));\n\t\n\t _this.openColorPicker = function (event) {\n\t _this.closeColorPickers();\n\t switch (event.target.id) {\n\t case 'mainBorder':\n\t {\n\t _this.setState({ mainBorderOpen: !_this.state.mainBorderOpen });\n\t break;\n\t }\n\t case 'mainBackground':\n\t {\n\t _this.setState({ mainBackgroundOpen: !_this.state.mainBackgroundOpen });\n\t break;\n\t }\n\t case 'headerFont':\n\t {\n\t _this.setState({ headerFontOpen: !_this.state.headerFontOpen });\n\t break;\n\t }\n\t case 'headerBackground':\n\t {\n\t _this.setState({ headerBackgroundOpen: !_this.state.headerBackgroundOpen });\n\t break;\n\t }\n\t case 'detailFont':\n\t {\n\t _this.setState({ detailFontOpen: !_this.state.detailFontOpen });\n\t break;\n\t }\n\t case 'detailBackground':\n\t {\n\t _this.setState({ detailBackgroundOpen: !_this.state.detailBackgroundOpen });\n\t break;\n\t }\n\t case 'valueFont':\n\t {\n\t _this.setState({ valueFontOpen: !_this.state.valueFontOpen });\n\t break;\n\t }\n\t case 'valueBackground':\n\t {\n\t _this.setState({ valueBackgroundOpen: !_this.state.valueBackgroundOpen });\n\t break;\n\t }\n\t case 'priceFont':\n\t {\n\t _this.setState({ priceFontOpen: !_this.state.priceFontOpen });\n\t break;\n\t }\n\t case 'priceBackground':\n\t {\n\t _this.setState({ priceBackgroundOpen: !_this.state.priceBackgroundOpen });\n\t break;\n\t }\n\t case 'pluFont':\n\t {\n\t _this.setState({ pluFontOpen: !_this.state.pluFontOpen });\n\t break;\n\t }\n\t case 'barCodeBackground':\n\t {\n\t _this.setState({ barCodeBackgroundOpen: !_this.state.barCodeBackgroundOpen });\n\t break;\n\t }\n\t case 'imageBorder':\n\t {\n\t _this.setState({ imageBorderOpen: !_this.state.imageBorderOpen });\n\t break;\n\t }\n\t case 'rightPanelBackground':\n\t {\n\t _this.setState({ rightPanelOpen: !_this.state.rightPanelOpen });\n\t break;\n\t }\n\t }\n\t event.stopPropagation();\n\t };\n\t\n\t _this.closeColorPickers = function () {\n\t var closePopups = {\n\t mainBorderOpen: false,\n\t mainBackgroundOpen: false,\n\t headerFontOpen: false,\n\t headerBackgroundOpen: false,\n\t detailFontOpen: false,\n\t detailBackgroundOpen: false,\n\t valueFontOpen: false,\n\t valueBackgroundOpen: false,\n\t priceFontOpen: false,\n\t priceBackgroundOpen: false,\n\t pluFontOpen: false,\n\t barCodeBackgroundOpen: false,\n\t imageBorderOpen: false,\n\t rightPanelOpen: false\n\t };\n\t _this.setState(closePopups);\n\t };\n\t\n\t _this.handleColorChange = function (name) {\n\t return function (color) {\n\t _this.props.onColorChange(name, color);\n\t };\n\t };\n\t\n\t _this.blockClosing = function (event) {\n\t event.stopPropagation();\n\t };\n\t\n\t _this.state = {\n\t mainBorderOpen: false,\n\t mainBackgroundOpen: false,\n\t headerFontOpen: false,\n\t headerBackgroundOpen: false,\n\t detailFontOpen: false,\n\t detailBackgroundOpen: false,\n\t valueFontOpen: false,\n\t valueBackgroundOpen: false,\n\t priceFontOpen: false,\n\t priceBackgroundOpen: false,\n\t pluFontOpen: false,\n\t barCodeBackgroundOpen: false,\n\t imageBorderOpen: false,\n\t rightPanelOpen: false\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(LabelStylePicker, [{\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t columnCount = _props.columnCount,\n\t logoUrl = _props.logoUrl,\n\t onLogoUpload = _props.onLogoUpload,\n\t onRestoreDefault = _props.onRestoreDefault,\n\t styleElements = _props.styleElements;\n\t\n\t\n\t var labelBorderColor = { backgroundColor: styleElements.labelBorderColor };\n\t var labelBorderColorCode = styleElements.labelBorderColor;\n\t var labelBgColor = { backgroundColor: styleElements.labelBgColor };\n\t var labelBgColorCode = styleElements.labelBgColor;\n\t var headerBgColor = { backgroundColor: styleElements.headerBgColor };\n\t var headerBgColorCode = styleElements.headerBgColor;\n\t var headerFontColor = { backgroundColor: styleElements.headerFontColor };\n\t var headerFontColorCode = styleElements.headerFontColor;\n\t var detailBgColor = { backgroundColor: styleElements.detailBgColor };\n\t var detailBgColorCode = styleElements.detailBgColor;\n\t var detailFontColor = { backgroundColor: styleElements.detailFontColor };\n\t var detailFontColorCode = styleElements.detailFontColor;\n\t var valueBgColor = { backgroundColor: styleElements.valueBgColor };\n\t var valueBgColorCode = styleElements.valueBgColor;\n\t var valueFontColor = { backgroundColor: styleElements.valueFontColor };\n\t var valueFontColorCode = styleElements.valueFontColor;\n\t var priceBgColor = { backgroundColor: styleElements.priceBgColor };\n\t var priceBgColorCode = styleElements.priceBgColor;\n\t var priceFontColor = { backgroundColor: styleElements.priceFontColor };\n\t var priceFontColorCode = styleElements.priceFontColor;\n\t var pluFontColor = { backgroundColor: styleElements.pluFontColor };\n\t var pluFontColorCode = styleElements.pluFontColor;\n\t var barCodeBgColor = { backgroundColor: styleElements.barCodeBgColor };\n\t var barCodeBgColorCode = styleElements.barCodeBgColor;\n\t var imageBorderColor = { backgroundColor: styleElements.imageBorderColor };\n\t var imageBorderColorCode = styleElements.imageBorderColor;\n\t var rightPanelBgColor = { backgroundColor: styleElements.rightPanelBgColor };\n\t var rightPanelColorCode = styleElements.rightPanelBgColor;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'customize-body' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('MAIN')\n\t ),\n\t columnCount === 0 && _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('BORDER')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'mainBorder', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'mainBorder', style: labelBorderColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'mainBorder' },\n\t labelBorderColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.mainBorderOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: labelBorderColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('mainBorder') })\n\t )\n\t ),\n\t columnCount === 1 && _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('IMAGE_BORDER')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'imageBorder', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'imageBorder', style: imageBorderColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'imageBorder' },\n\t imageBorderColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.imageBorderOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: imageBorderColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('imageBorder') })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('BACKGROUND')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'mainBackground', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'mainBackground', style: labelBgColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'mainBackground' },\n\t labelBgColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.mainBackgroundOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: labelBgColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('mainBackground') })\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('TITLE')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('TEXT')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'headerFont', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'headerFont', style: headerFontColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'headerFont' },\n\t headerFontColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.headerFontOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: headerFontColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('headerFont') })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('BACKGROUND')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'headerBackground', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'headerBackground', style: headerBgColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'headerBackground' },\n\t headerBgColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.headerBackgroundOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: headerBgColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('headerBackground') })\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('DETAIL')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('TEXT')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'detailFont', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'detailFont', style: detailFontColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'detailFont' },\n\t detailFontColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.detailFontOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: detailFontColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('detailFont') })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('BACKGROUND')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'detailBackground', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'detailBackground', style: detailBgColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'detailBackground' },\n\t detailBgColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.detailBackgroundOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: detailBgColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('detailBackground') })\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('LABEL')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('TEXT')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'valueFont', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'valueFont', style: valueFontColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'valueFont' },\n\t valueFontColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.valueFontOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: valueFontColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('valueFont') })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('BACKGROUND')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'valueBackground', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'valueBackground', style: valueBgColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'valueBackground' },\n\t valueBgColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.valueBackgroundOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: valueBgColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('valueBackground') })\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('PRICE')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('TEXT')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'priceFont', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'priceFont', style: priceFontColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'priceFont' },\n\t priceFontColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.priceFontOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: priceFontColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('priceFont') })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('BACKGROUND')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'priceBackground', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'priceBackground', style: priceBgColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'priceBackground' },\n\t priceBgColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.priceBackgroundOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: priceBgColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('priceBackground') })\n\t )\n\t )\n\t ),\n\t columnCount === 1 && _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('PLU')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('TEXT')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'pluFont', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'pluFont', style: pluFontColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'pluFont' },\n\t pluFontColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.pluFontOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: pluFontColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('pluFont') })\n\t )\n\t )\n\t ),\n\t columnCount === 1 && _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('BARCODE')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('BACKGROUND')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'barCodeBackground', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'barCodeBackground', style: barCodeBgColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'barCodeBackground' },\n\t barCodeBgColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.barCodeBackgroundOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: barCodeBgColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('barCodeBackground') })\n\t )\n\t )\n\t ),\n\t columnCount === 1 && rightPanelColorCode !== undefined && _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('RIGHTCOLUMN')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'float-left' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('BACKGROUND')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'attribute-color-box', id: 'rightPanelBackground', onClick: this.openColorPicker },\n\t _react2.default.createElement('div', { className: 'color-box', id: 'rightPanelBackground', style: rightPanelBgColor }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'color-box-label', id: 'rightPanelBackground' },\n\t rightPanelColorCode\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { onClick: this.blockClosing },\n\t this.state.rightPanelOpen && _react2.default.createElement(_reactColor.SketchPicker, { color: rightPanelColorCode,\n\t disableAlpha: true,\n\t onChange: this.handleColorChange('rightPanelBackground') })\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6' },\n\t rightPanelColorCode === undefined && _react2.default.createElement(\n\t 'button',\n\t { className: 'btn btn-link', onClick: onRestoreDefault },\n\t _reactReduxI18n.I18n.t('RESTORE_DEFAULT_COLORS')\n\t ),\n\t rightPanelColorCode !== undefined && _react2.default.createElement(\n\t 'button',\n\t { className: 'margin-four-col-lrg btn btn-link', onClick: onRestoreDefault },\n\t _reactReduxI18n.I18n.t('RESTORE_DEFAULT_COLORS')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row customize-logo no-gutters' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6 pr-4' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('LOGO')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'company-logo' },\n\t _react2.default.createElement('img', { src: logoUrl, alt: 'Company Logo', title: 'Company Logo' })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-6 mt-4' },\n\t _react2.default.createElement(\n\t 'label',\n\t { className: 'custom-file' },\n\t _react2.default.createElement('input', { type: 'file', id: 'file', className: 'custom-file-input', accept: 'image/jpeg, image/png', onChange: function onChange(e) {\n\t onLogoUpload(e.target.files[0]);\n\t } }),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'custom-file-control' },\n\t _reactReduxI18n.I18n.t('UPLOAD_LOGO')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'attribute-title' },\n\t _reactReduxI18n.I18n.t('LOGO_FORMAT')\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return LabelStylePicker;\n\t}(_react2.default.Component);\n\t\n\texports.default = LabelStylePicker;\n\n/***/ },\n/* 602 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _selectors = __webpack_require__(57);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _LabelPageButtons = __webpack_require__(598);\n\t\n\tvar _LabelPageButtons2 = _interopRequireDefault(_LabelPageButtons);\n\t\n\tvar _LabelSheet = __webpack_require__(599);\n\t\n\tvar _LabelSheet2 = _interopRequireDefault(_LabelSheet);\n\t\n\tvar _LabelSizeList = __webpack_require__(600);\n\t\n\tvar _LabelSizeList2 = _interopRequireDefault(_LabelSizeList);\n\t\n\tvar _PageSetupModal = __webpack_require__(604);\n\t\n\tvar _PageSetupModal2 = _interopRequireDefault(_PageSetupModal);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\t/* import {clearLabelSheet, createCalibrationLink, getCustomDefinitions, getDefinitions, savePageSetup, selectLabelSize, togglePLU} from '../actions';\r\n\timport {getActivePageSize, getCalibrationLink, areDefinitionsValid, getLabelDefinitions, getLabels, getPdfId, isPLUActive} from '../selectors'; */\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActivePageOffset = _customer$selectors.getActivePageOffset,\n\t getActivePermissions = _customer$selectors.getActivePermissions;\n\t//import PLUChangeModal from './PLUChangeModal';\n\t//import PLUSelector from './PLUSelector';\n\t\n\tvar _ref = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'col-xl-1 col-sm-1' });\n\t\n\tvar _ref3 = _react2.default.createElement('div', { className: 'col-xl-1 col-sm-1' });\n\t\n\tvar LabelsPage = function (_React$Component) {\n\t _inherits(LabelsPage, _React$Component);\n\t\n\t function LabelsPage(props) {\n\t _classCallCheck(this, LabelsPage);\n\t\n\t var _this = _possibleConstructorReturn(this, (LabelsPage.__proto__ || Object.getPrototypeOf(LabelsPage)).call(this, props));\n\t\n\t _this.handleLabelSize = function (labelSize) {\n\t _this.props.actions.selectLabelSize(labelSize);\n\t _this.props.actions.getCustomDefinitions(labelSize);\n\t };\n\t\n\t _this.handleShowSetupModal = function () {\n\t _this.setState({ setupModalOpen: true });\n\t };\n\t\n\t _this.handleHideSetupModal = function () {\n\t _this.setState({ setupModalOpen: false });\n\t };\n\t\n\t _this.handleSetupChange = function (verticalOffset, horizontalOffset) {\n\t _this.props.actions.savePageSetup(_this.props.activePageSize, verticalOffset, horizontalOffset);\n\t };\n\t\n\t _this.state = {\n\t pluModalOpen: false,\n\t setupModalOpen: false\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(LabelsPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var labelAccess = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.ACCESS_LABELS;\n\t });\n\t if (!labelAccess) {\n\t this.props.actions.push('/no_access');\n\t }\n\t\n\t if (!this.props.definitionsValid) {\n\t this.props.actions.getDefinitions();\n\t }\n\t\n\t /* this.props.actions.createCalibrationLink(); */\n\t }\n\t\n\t /* handleTogglePLU = () => {\r\n\t this.setState({pluModalOpen: true});\r\n\t }\r\n\t \r\n\t handleHidePluModal = () => {\r\n\t this.setState({pluModalOpen: false});\r\n\t }\r\n\t \r\n\t handlePLUChange = () => {\r\n\t this.props.actions.togglePLU();\r\n\t this.handleHidePluModal();\r\n\t } */\n\t\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t /* const {actions, activePageSize, activePLU, calibrationLink, definitions, definitionsValid, labelList, pageOffset, pdfId} = this.props; */\n\t var _props = this.props,\n\t actions = _props.actions,\n\t activePageSize = _props.activePageSize,\n\t definitions = _props.definitions,\n\t definitionsValid = _props.definitionsValid,\n\t labelList = _props.labelList,\n\t pageOffset = _props.pageOffset,\n\t pdfId = _props.pdfId;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main labels', id: 'main' },\n\t !definitionsValid && _ref,\n\t definitionsValid && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row label-info' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('LABELS')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-form' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters' },\n\t _react2.default.createElement(_LabelSizeList2.default, { activeSize: activePageSize, definitions: definitions, onSelected: this.handleLabelSize }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-xl-12 col-sm-6 p-0 mid' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters p-0 m-0' },\n\t _ref2,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-xl-12 col-sm-4' },\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/customize_label', className: 'label-link customize' },\n\t _reactReduxI18n.I18n.t('CUSTOMIZE_COLORS_LOGO')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-xl-12 col-sm-4' },\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/advanced_settings_label', className: 'label-link customize' },\n\t _reactReduxI18n.I18n.t('ADVANCED_SETTINGS_LINK')\n\t )\n\t ),\n\t _ref3\n\t )\n\t ),\n\t _react2.default.createElement(_LabelPageButtons2.default, { onClear: actions.clearLabelSheet, pdfId: pdfId })\n\t )\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(_LabelSheet2.default, { labels: labelList })\n\t ),\n\t _react2.default.createElement(_PageSetupModal2.default, { isOpen: this.state.setupModalOpen,\n\t onClose: this.handleHideSetupModal,\n\t onAccept: this.handleSetupChange,\n\t offsetValue: pageOffset\n\t })\n\t );\n\t }\n\t }]);\n\t\n\t return LabelsPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activePageSize: (0, _selectors.getActivePageSize)(state),\n\t activePermissions: getActivePermissions(state),\n\t // activePLU: getUsePLUCode(state),\n\t // calibrationLink: getCalibrationLink(state),\n\t definitions: (0, _selectors.getLabelDefinitions)(state),\n\t definitionsValid: (0, _selectors.areDefinitionsValid)(state),\n\t labelList: (0, _selectors.getLabels)(state),\n\t pageOffset: getActivePageOffset(state),\n\t pdfId: (0, _selectors.getPdfId)(state)\n\t\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ clearLabelSheet: _actions.clearLabelSheet,\n\t // createCalibrationLink, \n\t getCustomDefinitions: _actions.getCustomDefinitions,\n\t getDefinitions: _actions.getDefinitions,\n\t savePageSetup: _actions.savePageSetup,\n\t selectLabelSize: _actions.selectLabelSize,\n\t togglePLU: _actions.togglePLU,\n\t push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\tLabelsPage.defaultProps = {\n\t activePermissions: [],\n\t pageOffset: {}\n\t};\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LabelsPage);\n\n/***/ },\n/* 603 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar NoAccessPage = function (_React$Component) {\n\t _inherits(NoAccessPage, _React$Component);\n\t\n\t function NoAccessPage() {\n\t _classCallCheck(this, NoAccessPage);\n\t\n\t return _possibleConstructorReturn(this, (NoAccessPage.__proto__ || Object.getPrototypeOf(NoAccessPage)).apply(this, arguments));\n\t }\n\t\n\t _createClass(NoAccessPage, [{\n\t key: 'render',\n\t value: function render() {\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t { className: 'float-left' },\n\t _reactReduxI18n.I18n.t('ACCESS_WELCOME')\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return NoAccessPage;\n\t}(_react2.default.Component);\n\t\n\texports.default = NoAccessPage;\n\n/***/ },\n/* 604 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactstrap = __webpack_require__(56);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t/* import {Link} from 'react-router'; */\n\t\n\t\n\tvar _ref = _react2.default.createElement('span', { className: 'lnr lnr-cross', 'aria-hidden': 'true' });\n\t\n\tvar _ref2 = _react2.default.createElement('br', null);\n\t\n\tvar PageSetupModal = function (_React$Component) {\n\t _inherits(PageSetupModal, _React$Component);\n\t\n\t function PageSetupModal(props) {\n\t _classCallCheck(this, PageSetupModal);\n\t\n\t var _this = _possibleConstructorReturn(this, (PageSetupModal.__proto__ || Object.getPrototypeOf(PageSetupModal)).call(this, props));\n\t\n\t _this.handleVerticalChange = function (e) {\n\t _this.setState({ verticalOffset: e.target.value });\n\t };\n\t\n\t _this.handleHorizontalChange = function (e) {\n\t _this.setState({ horizontalOffset: e.target.value });\n\t };\n\t\n\t _this.handleSave = function () {\n\t _this.props.onAccept(_this.state.verticalOffset, _this.state.horizontalOffset);\n\t };\n\t\n\t _this.handleVerticalSave = function (e) {\n\t _this.props.onAccept(e.target.value, _this.state.horizontalOffset);\n\t };\n\t\n\t _this.handleHorizontalSave = function (e) {\n\t _this.props.onAccept(_this.state.verticalOffset, e.target.value);\n\t };\n\t\n\t var posY = 0;\n\t var posX = 0;\n\t if (props.offsetValue !== null) {\n\t posY = props.offsetValue.PosY;\n\t posX = props.offsetValue.PosX;\n\t }\n\t\n\t _this.state = {\n\t verticalOffset: posY,\n\t horizontalOffset: posX\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(PageSetupModal, [{\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t /* const {isOpen, onClose, calibrationLink} = this.props; */\n\t\n\t var _props = this.props,\n\t isOpen = _props.isOpen,\n\t onClose = _props.onClose;\n\t\n\t\n\t return _react2.default.createElement(\n\t _reactstrap.Modal,\n\t { isOpen: isOpen, toggle: onClose, id: 'modalPageSetup', className: 'wide-modal' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-header' },\n\t _react2.default.createElement(\n\t 'h4',\n\t { className: 'modal-title', id: 'exampleModalLabel' },\n\t _reactReduxI18n.I18n.t('PRINTER_ADJUSTMENT')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'close', 'data-dismiss': 'modal', 'aria-label': 'Close', onClick: onClose },\n\t _ref\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-body' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement('div', { dangerouslySetInnerHTML: { __html: _reactReduxI18n.I18n.t('ADJUSTMENT_INSTRUCTIONS') } }),\n\t _ref2\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _reactReduxI18n.I18n.t('B_HORIZONTAL'),\n\t _react2.default.createElement('input', { className: 'form-control', type: 'number', value: this.state.horizontalOffset, id: 'example-text-input',\n\t onChange: function onChange(e) {\n\t _this2.handleHorizontalChange(e);_this2.handleHorizontalSave(e);\n\t } })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _reactReduxI18n.I18n.t('A_VERTICAL'),\n\t _react2.default.createElement('input', { className: 'form-control', type: 'number', value: this.state.verticalOffset, id: 'example-text-input',\n\t onChange: function onChange(e) {\n\t _this2.handleVerticalChange(e);_this2.handleVerticalSave(e);\n\t } })\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return PageSetupModal;\n\t}(_react2.default.Component);\n\t\n\texports.default = PageSetupModal;\n\n/***/ },\n/* 605 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar PetLabelInfo = function (_React$Component) {\n\t _inherits(PetLabelInfo, _React$Component);\n\t\n\t function PetLabelInfo() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, PetLabelInfo);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = PetLabelInfo.__proto__ || Object.getPrototypeOf(PetLabelInfo)).call.apply(_ref, [this].concat(args))), _this), _this.handleLabelSelected = function (petLabel) {\n\t var price = _this.refs[petLabel.Id].value;\n\t _this.props.onSelected(petLabel, price);\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(PetLabelInfo, [{\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var _props = this.props,\n\t petLabel = _props.petLabel,\n\t enabled = _props.enabled;\n\t\n\t\n\t var priceDefault = \"\";\n\t if (petLabel.Price !== '') {\n\t priceDefault = petLabel.Price;\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-6 col-sm-12 col-pet' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'media' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'mr-3 align-self-start' },\n\t _react2.default.createElement('img', { src: petLabel.ImageUrl, alt: petLabel.Line1 })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'media-body' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t petLabel.Line1\n\t ),\n\t _react2.default.createElement(\n\t 'h6',\n\t null,\n\t petLabel.Line2\n\t ),\n\t _react2.default.createElement(\n\t 'h6',\n\t null,\n\t petLabel.Line3,\n\t ' '\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row plu-barcode no-gutters' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'plu' },\n\t petLabel.Line4\n\t )\n\t ),\n\t _react2.default.createElement('input', { id: petLabel.Id, name: petLabel.Id, type: 'text', className: 'form-control', key: petLabel.Id + 'a' + petLabel.ArticleMappingEntryID,\n\t placeholder: _reactReduxI18n.I18n.t('ENTER_PRICE_SEARCH_RESULTS'), defaultValue: priceDefault, ref: petLabel.Id }),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', onClick: function onClick() {\n\t _this2.handleLabelSelected(petLabel);\n\t }, className: 'btn btn-primary', disabled: !enabled },\n\t _reactReduxI18n.I18n.t('ADD')\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return PetLabelInfo;\n\t}(_react2.default.Component);\n\t\n\texports.default = PetLabelInfo;\n\n/***/ },\n/* 606 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _ReactList = __webpack_require__(265);\n\t\n\tvar _ReactList2 = _interopRequireDefault(_ReactList);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _search = __webpack_require__(174);\n\t\n\tvar _search2 = _interopRequireDefault(_search);\n\t\n\tvar _actions = __webpack_require__(33);\n\t\n\tvar _selectors = __webpack_require__(57);\n\t\n\tvar _BackButton = __webpack_require__(586);\n\t\n\tvar _BackButton2 = _interopRequireDefault(_BackButton);\n\t\n\tvar _CustomDropdown = __webpack_require__(588);\n\t\n\tvar _CustomDropdown2 = _interopRequireDefault(_CustomDropdown);\n\t\n\tvar _PetLabelInfo = __webpack_require__(605);\n\t\n\tvar _PetLabelInfo2 = _interopRequireDefault(_PetLabelInfo);\n\t\n\tvar _LabelAddedModal = __webpack_require__(595);\n\t\n\tvar _LabelAddedModal2 = _interopRequireDefault(_LabelAddedModal);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActivePermissions = _customer$selectors.getActivePermissions,\n\t getUsePLUCode = _customer$selectors.getUsePLUCode;\n\tvar SearchPanel = _search2.default.components.SearchPanel;\n\t\n\tvar _ref2 = _react2.default.createElement(_BackButton2.default, { url: '/labels' });\n\t\n\tvar _ref3 = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar PetSearchPage = function (_React$Component) {\n\t _inherits(PetSearchPage, _React$Component);\n\t\n\t function PetSearchPage() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, PetSearchPage);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = PetSearchPage.__proto__ || Object.getPrototypeOf(PetSearchPage)).call.apply(_ref, [this].concat(args))), _this), _this.handleFormSubmit = function (values) {\n\t _this.props.actions.searchPetLabels(values.searchPhrase);\n\t }, _this.handleLabelSelected = function (petLabel, price) {\n\t _this.props.actions.disableLabelAdd();\n\t _this.props.actions.quickSaveLabelToSheet(_this.props.activePageSize, petLabel, price, _this.props.activePLU);\n\t }, _this.handleCustomLabel = function (petType) {\n\t _this.props.actions.selectCustomLabel(petType);\n\t _this.props.actions.push('/custom_label');\n\t }, _this.handleLabelModalClose = function () {\n\t _this.props.actions.hideLabelModal();\n\t _this.props.actions.enableLabelAdd();\n\t }, _this.renderItem = function (index, key) {\n\t return _react2.default.createElement(_PetLabelInfo2.default, { key: key, petLabel: _this.props.searchResults[index], onSelected: _this.handleLabelSelected, enabled: _this.props.labelAddEnabled });\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(PetSearchPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t var labelAccess = this.props.activePermissions.find(function (permission) {\n\t return permission === permissions.ACCESS_LABELS;\n\t });\n\t if (!labelAccess) {\n\t this.props.actions.push('/labels');\n\t } else if (this.props.selectedGridIndex < 0) {\n\t this.props.actions.push('/labels');\n\t } else if (!this.props.petLabelsValid) {\n\t this.props.actions.getPetLabelList();\n\t }\n\t if (this.props.emptyLabels <= 0) {\n\t this.props.actions.clearSearchResults();\n\t this.props.actions.push(\"/labels\");\n\t }\n\t this.props.actions.hideLabelModal();\n\t this.props.actions.enableLabelAdd();\n\t }\n\t }, {\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(nextProps) {\n\t if (nextProps.emptyLabels <= 0) {\n\t this.props.actions.hideLabelModal();\n\t this.props.actions.clearSearchResults();\n\t this.props.actions.push(\"/labels\");\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t actions = _props.actions,\n\t petLabelsValid = _props.petLabelsValid,\n\t petTypeList = _props.petTypeList,\n\t searchPhrase = _props.searchPhrase,\n\t searchResults = _props.searchResults,\n\t selectedPetTypes = _props.selectedPetTypes,\n\t isModalOpen = _props.isModalOpen;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { id: 'wrapper' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main full-width', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t { className: 'float-left' },\n\t _reactReduxI18n.I18n.t('CREATE_LABEL')\n\t ),\n\t _ref2\n\t )\n\t ),\n\t !petLabelsValid && _ref3,\n\t petLabelsValid && _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h3',\n\t { className: 'float-left search-pets-title' },\n\t _reactReduxI18n.I18n.t('SEARCH_PETS')\n\t ),\n\t _react2.default.createElement(_CustomDropdown2.default, { petTypeList: petTypeList, onSelected: this.handleCustomLabel }),\n\t _react2.default.createElement(SearchPanel, { itemList: petTypeList,\n\t onSelectedItem: actions.toggleSelectedPetType,\n\t onSubmit: this.handleFormSubmit,\n\t selectedItems: selectedPetTypes }),\n\t searchResults.length === 0 && searchPhrase === '' && _react2.default.createElement(\n\t 'div',\n\t { className: 'no-recent-labels' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('SEARCH_FOR_A_PET')\n\t ),\n\t _react2.default.createElement(\n\t 'h3',\n\t null,\n\t _reactReduxI18n.I18n.t('OR_CREATE_CUSTOM_LABEL')\n\t )\n\t ),\n\t searchResults.length === 0 && searchPhrase !== '' && _react2.default.createElement(\n\t 'div',\n\t { className: 'no-recent-labels' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('NO_RESULTS_TRY_AGAIN')\n\t ),\n\t _react2.default.createElement(\n\t 'h3',\n\t null,\n\t _reactReduxI18n.I18n.t('OR_CREATE_CUSTOM_LABEL')\n\t )\n\t ),\n\t searchResults.length > 0 && _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('RESULTS'),\n\t ' (',\n\t searchResults.length,\n\t ')'\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row search-results care-sheets' },\n\t _react2.default.createElement(_ReactList2.default, { itemRenderer: this.renderItem, length: searchResults.length, type: 'uniform' })\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(_LabelAddedModal2.default, { isOpen: isModalOpen, onClose: this.handleLabelModalClose })\n\t );\n\t }\n\t }]);\n\t\n\t return PetSearchPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t activePageSize: (0, _selectors.getActivePageSize)(state),\n\t activePermissions: getActivePermissions(state),\n\t isModalOpen: (0, _selectors.isLabelModalOpen)(state),\n\t petLabelsValid: (0, _selectors.arePetLabelsValid)(state),\n\t petTypeList: (0, _selectors.getPetTypes)(state),\n\t searchPhrase: (0, _selectors.getSearchPhrase)(state),\n\t searchResults: (0, _selectors.getSearchResults)(state),\n\t selectedGridIndex: (0, _selectors.getSelectedGridIndex)(state),\n\t selectedPetTypes: (0, _selectors.getSelectedPetTypes)(state),\n\t emptyLabels: (0, _selectors.getEmptyLabels)(state),\n\t labelAddEnabled: (0, _selectors.isLabelAddEnabled)(state),\n\t activePLU: getUsePLUCode(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ clearSearchResults: _actions.clearSearchResults,\n\t getPetLabelList: _actions.getPetLabelList,\n\t push: _reactRouterRedux.push,\n\t searchPetLabels: _actions.searchPetLabels,\n\t selectCustomLabel: _actions.selectCustomLabel,\n\t selectPetLabel: _actions.selectPetLabel,\n\t toggleSelectedPetType: _actions.toggleSelectedPetType,\n\t quickSaveLabelToSheet: _actions.quickSaveLabelToSheet,\n\t hideLabelModal: _actions.hideLabelModal,\n\t disableLabelAdd: _actions.disableLabelAdd,\n\t enableLabelAdd: _actions.enableLabelAdd }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(PetSearchPage);\n\n/***/ },\n/* 607 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactSortableHoc = __webpack_require__(494);\n\t\n\tvar _Label = __webpack_require__(594);\n\t\n\tvar _Label2 = _interopRequireDefault(_Label);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar ITEM_BORDER = 10;\n\t\n\tvar Item = (0, _reactSortableHoc.SortableElement)(function (props) {\n\t var itemWidth = props.labelSize.width + ITEM_BORDER + 'px';\n\t var itemHeight = props.labelSize.height + ITEM_BORDER + 'px';\n\t\n\t var gridItemClass = 'gridItem';\n\t if (Object.keys(props.data).length !== 0) {\n\t gridItemClass += ' filled';\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: props.className, style: { height: itemHeight, maxHeight: itemHeight, width: itemWidth, maxWidth: itemWidth } },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: gridItemClass },\n\t _react2.default.createElement(_Label2.default, { canHover: props.canHover, data: props.data, index: props.labelIndex, onSelected: props.onSelected })\n\t )\n\t );\n\t});\n\t\n\tvar SortableList = (0, _reactSortableHoc.SortableContainer)(function (_ref) {\n\t var className = _ref.className,\n\t isSorting = _ref.isSorting,\n\t items = _ref.items,\n\t itemClass = _ref.itemClass,\n\t labelSize = _ref.labelSize,\n\t onSelected = _ref.onSelected;\n\t\n\t var gridWidth = (labelSize.width + ITEM_BORDER) * 2;\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: className, style: { width: gridWidth + 'px' } },\n\t items.map(function (label, index) {\n\t return _react2.default.createElement(Item, {\n\t key: 'item-' + index,\n\t className: itemClass,\n\t index: index,\n\t labelIndex: index,\n\t data: label,\n\t onSelected: onSelected,\n\t labelSize: labelSize,\n\t canHover: !isSorting\n\t });\n\t })\n\t );\n\t});\n\t\n\texports.default = SortableList;\n\n/***/ },\n/* 608 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _paracheirodon_innesi = __webpack_require__(142);\n\t\n\tvar _paracheirodon_innesi2 = _interopRequireDefault(_paracheirodon_innesi);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('img', { src: _paracheirodon_innesi2.default, className: 'float-left' });\n\t\n\tvar _ref3 = _react2.default.createElement('div', { className: 'barcode-customize barcode float-right' });\n\t\n\tvar StyledLabel2Col = function StyledLabel2Col(_ref) {\n\t var logoUrl = _ref.logoUrl,\n\t styleElements = _ref.styleElements;\n\t\n\t // Create the element styles\n\t var headerBackground = { background: styleElements.headerBgColor };\n\t var headerFont = { color: styleElements.headerFontColor };\n\t var detailBackground = { backgroundColor: styleElements.detailBgColor };\n\t var detailFont = { color: styleElements.detailFontColor };\n\t var valueBackground = { backgroundColor: styleElements.valueBgColor };\n\t var valueFont = { color: styleElements.valueFontColor };\n\t var priceBackground = { backgroundColor: styleElements.priceBgColor };\n\t var priceFont = { color: styleElements.priceFontColor };\n\t var labelBackground = { background: styleElements.labelBgColor };\n\t var tableBackground = { borderColor: styleElements.labelBgColor };\n\t var labelBorder = { borderColor: styleElements.labelBorderColor };\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'label-main 2col', style: labelBorder },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-title', style: headerBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: headerFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_LAT_NAME')\n\t ),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control latin-name', style: headerFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_NAME')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-content', style: labelBackground },\n\t _ref2,\n\t _react2.default.createElement(\n\t 'table',\n\t { className: 'float-left', cellPadding: '0', cellSpacing: '0' },\n\t _react2.default.createElement(\n\t 'tbody',\n\t null,\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_2')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_2')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_1')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_1')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_4')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_3')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_3')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_4')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_5')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_5')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_6')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_6')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('PLU')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t '12345'\n\t )\n\t )\n\t )\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-footer', style: priceBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control float-left txt-price', style: priceFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_PRICE')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-logo' },\n\t _react2.default.createElement('img', { src: logoUrl })\n\t ),\n\t _ref3\n\t )\n\t );\n\t};\n\t\n\texports.default = StyledLabel2Col;\n\n/***/ },\n/* 609 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _paracheirodon_innesi = __webpack_require__(142);\n\t\n\tvar _paracheirodon_innesi2 = _interopRequireDefault(_paracheirodon_innesi);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('img', { src: _paracheirodon_innesi2.default, className: 'float-left' });\n\t\n\tvar _ref3 = _react2.default.createElement('div', { className: 'barcode-customize barcode float-right' });\n\t\n\tvar StyledLabel2ColLrg = function StyledLabel2ColLrg(_ref) {\n\t var logoUrl = _ref.logoUrl,\n\t styleElements = _ref.styleElements;\n\t\n\t // Create the element styles\n\t var headerBackground = { background: styleElements.headerBgColor };\n\t var headerFont = { color: styleElements.headerFontColor };\n\t var detailBackground = { backgroundColor: styleElements.detailBgColor };\n\t var detailFont = { color: styleElements.detailFontColor };\n\t var valueBackground = { backgroundColor: styleElements.valueBgColor };\n\t var valueFont = { color: styleElements.valueFontColor };\n\t var priceBackground = { backgroundColor: styleElements.priceBgColor };\n\t var priceFont = { color: styleElements.priceFontColor };\n\t var labelBackground = { background: styleElements.labelBgColor };\n\t var tableBackground = { borderColor: styleElements.labelBgColor };\n\t var labelBorder = { borderColor: styleElements.labelBorderColor };\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'two-col-lrg label-main', style: labelBorder },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-title', style: headerBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: headerFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_LAT_NAME')\n\t ),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control latin-name', style: headerFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_NAME')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-content', style: labelBackground },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-footer' },\n\t _ref2,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-info-left-col', style: priceBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control float-left txt-price', style: priceFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_PRICE')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-logo' },\n\t _react2.default.createElement('img', { src: logoUrl })\n\t ),\n\t _ref3\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'table',\n\t { className: 'float-left', cellPadding: '0', cellSpacing: '0' },\n\t _react2.default.createElement(\n\t 'tbody',\n\t null,\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_7')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_7')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_8')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_8')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_9')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_9')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_1')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_1')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_4')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_4')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_3')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_3')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_11')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_11')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_12')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_12')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_14')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_14')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_5')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_5')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_17')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_17')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_16')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_16')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_18')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_18')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_6')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_6')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_13')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_13')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_19')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_19')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('PLU')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t '12345'\n\t )\n\t )\n\t )\n\t )\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = StyledLabel2ColLrg;\n\n/***/ },\n/* 610 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _paracheirodon_innesi = __webpack_require__(142);\n\t\n\tvar _paracheirodon_innesi2 = _interopRequireDefault(_paracheirodon_innesi);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'barcode' });\n\t\n\tvar StyledLabel4Col = function StyledLabel4Col(_ref) {\n\t var logoUrl = _ref.logoUrl,\n\t styleElements = _ref.styleElements;\n\t\n\t // Create the element styles\n\t var headerBackground = { background: styleElements.headerBgColor };\n\t var headerFont = { color: styleElements.headerFontColor };\n\t var detailFont = { color: styleElements.detailFontColor };\n\t var valueBackground = { backgroundColor: styleElements.valueBgColor };\n\t var valueFont = { color: styleElements.valueFontColor };\n\t var priceFont = { color: styleElements.priceFontColor };\n\t\n\t var labelBorder = { borderColor: styleElements.labelBgColor };\n\t var imageBackground = { backgroundColor: styleElements.labelBgColor };\n\t var pluFont = { color: styleElements.pluFontColor };\n\t var barCodeBackground = { backgroundColor: styleElements.barCodeBgColor };\n\t var labelRightCol = { backgroundColor: styleElements.labelBgColor, borderColor: styleElements.labelBgColor };\n\t var priceBackground = { backgroundColor: styleElements.priceBgColor, borderColor: styleElements.labelBgColor };\n\t var tableRowBackground = { borderBottomColor: styleElements.labelBgColor, borderTopColor: styleElements.labelBgColor };\n\t var detailBackground = { backgroundColor: styleElements.detailBgColor, borderLeftColor: styleElements.labelBgColor };\n\t var imageBorder = { borderColor: styleElements.imageBorderColor };\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'four-col label-main', style: labelBorder },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-logo', style: imageBackground },\n\t _react2.default.createElement('img', { src: logoUrl })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-title', style: headerBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: headerFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_LAT_NAME')\n\t ),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control latin-name', style: headerFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_NAME')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-right-col', style: labelRightCol },\n\t _react2.default.createElement('img', { src: _paracheirodon_innesi2.default, style: imageBorder }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'price', style: priceBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control txt-price', style: priceFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_PRICE')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'plu' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: pluFont },\n\t '12345'\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-content' },\n\t _react2.default.createElement(\n\t 'table',\n\t { cellPadding: '0', cellSpacing: '0' },\n\t _react2.default.createElement(\n\t 'tbody',\n\t null,\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_1')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_1')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_2')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_2')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_3')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_3')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_4')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_4')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_5')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_5')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_6')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_6')\n\t )\n\t )\n\t )\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-footer', style: barCodeBackground },\n\t _ref2\n\t )\n\t );\n\t};\n\t\n\texports.default = StyledLabel4Col;\n\n/***/ },\n/* 611 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _paracheirodon_innesi = __webpack_require__(142);\n\t\n\tvar _paracheirodon_innesi2 = _interopRequireDefault(_paracheirodon_innesi);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'barcode' });\n\t\n\tvar StyledLabel4ColLrg = function StyledLabel4ColLrg(_ref) {\n\t var logoUrl = _ref.logoUrl,\n\t styleElements = _ref.styleElements;\n\t\n\t // Create the element styles\n\t var headerBackground = { background: styleElements.headerBgColor };\n\t var headerFont = { color: styleElements.headerFontColor };\n\t var detailFont = { color: styleElements.detailFontColor };\n\t var valueBackground = { backgroundColor: styleElements.valueBgColor };\n\t var valueFont = { color: styleElements.valueFontColor };\n\t var priceFont = { color: styleElements.priceFontColor };\n\t\n\t var pluFont = { color: styleElements.pluFontColor };\n\t var barCodeBackground = { backgroundColor: styleElements.barCodeBgColor };\n\t var priceBackground = { backgroundColor: styleElements.priceBgColor, borderColor: styleElements.labelBgColor };\n\t var tableRowBackground = { borderBottomColor: styleElements.labelBgColor, borderTopColor: styleElements.labelBgColor };\n\t var detailBackground = { backgroundColor: styleElements.detailBgColor, borderLeftColor: styleElements.labelBgColor };\n\t var imageBorder = { borderColor: styleElements.imageBorderColor };\n\t var fullLabel = { backgroundColor: styleElements.labelBgColor };\n\t var rightPanelBackground = { backgroundColor: styleElements.rightPanelBgColor };\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'four-col-lrg label-main', style: fullLabel },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-title', style: headerBackground },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-left-img' },\n\t _react2.default.createElement('img', { src: _paracheirodon_innesi2.default, style: imageBorder })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'title-fields' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: headerFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_LAT_NAME')\n\t ),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control latin-name', style: headerFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_NAME')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-right-col', style: rightPanelBackground },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-logo', style: rightPanelBackground },\n\t _react2.default.createElement('img', { src: logoUrl })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'price', style: priceBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control txt-price', style: priceFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_PET_PRICE')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'plu' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: pluFont },\n\t '12345'\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-footer', style: barCodeBackground },\n\t _ref2\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'label-content' },\n\t _react2.default.createElement(\n\t 'table',\n\t { cellPadding: '0', cellSpacing: '0' },\n\t _react2.default.createElement(\n\t 'tbody',\n\t null,\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_7')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_7')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_8')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_8')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_1')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_1')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_9')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_9')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_4')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_4')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_3')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_3')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_14')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_14')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_11')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_11')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_5')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_5')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_12')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_12')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_17')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_17')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_16')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_16')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tr',\n\t { style: tableRowBackground },\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_13')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_13')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'category', style: detailBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: detailFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_KEY_6')\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: 'info', style: valueBackground },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'label-control form-control', style: valueFont },\n\t _reactReduxI18n.I18n.t('CUSTOM_LABEL_VALUE_6')\n\t )\n\t )\n\t )\n\t )\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = StyledLabel4ColLrg;\n\n/***/ },\n/* 612 */\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.AdvancedSettingsPage = exports.NoAccessPage = exports.PetSearchPage = exports.LabelsPage = exports.EditLabelPage = exports.CustomizeLabelPage = exports.CustomLabelPage = exports.CreateLabelPage = exports.ArticlesPage = undefined;\n\t\n\tvar _ArticlesPage = __webpack_require__(585);\n\t\n\tvar _ArticlesPage2 = _interopRequireDefault(_ArticlesPage);\n\t\n\tvar _CreateLabelPage = __webpack_require__(587);\n\t\n\tvar _CreateLabelPage2 = _interopRequireDefault(_CreateLabelPage);\n\t\n\tvar _CustomLabelPage = __webpack_require__(589);\n\t\n\tvar _CustomLabelPage2 = _interopRequireDefault(_CustomLabelPage);\n\t\n\tvar _CustomizeLabelPage = __webpack_require__(590);\n\t\n\tvar _CustomizeLabelPage2 = _interopRequireDefault(_CustomizeLabelPage);\n\t\n\tvar _EditLabelPage = __webpack_require__(591);\n\t\n\tvar _EditLabelPage2 = _interopRequireDefault(_EditLabelPage);\n\t\n\tvar _LabelsPage = __webpack_require__(602);\n\t\n\tvar _LabelsPage2 = _interopRequireDefault(_LabelsPage);\n\t\n\tvar _PetSearchPage = __webpack_require__(606);\n\t\n\tvar _PetSearchPage2 = _interopRequireDefault(_PetSearchPage);\n\t\n\tvar _NoAccessPage = __webpack_require__(603);\n\t\n\tvar _NoAccessPage2 = _interopRequireDefault(_NoAccessPage);\n\t\n\tvar _AdvancedSettingsPage = __webpack_require__(582);\n\t\n\tvar _AdvancedSettingsPage2 = _interopRequireDefault(_AdvancedSettingsPage);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.ArticlesPage = _ArticlesPage2.default;\n\texports.CreateLabelPage = _CreateLabelPage2.default;\n\texports.CustomLabelPage = _CustomLabelPage2.default;\n\texports.CustomizeLabelPage = _CustomizeLabelPage2.default;\n\texports.EditLabelPage = _EditLabelPage2.default;\n\texports.LabelsPage = _LabelsPage2.default;\n\texports.PetSearchPage = _PetSearchPage2.default;\n\texports.NoAccessPage = _NoAccessPage2.default;\n\texports.AdvancedSettingsPage = _AdvancedSettingsPage2.default;\n\n/***/ },\n/* 613 */\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 _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 = reducer;\n\t\n\tvar _reactSortableHoc = __webpack_require__(494);\n\t\n\tvar _thenby = __webpack_require__(91);\n\t\n\tvar _thenby2 = _interopRequireDefault(_thenby);\n\t\n\tvar _actionTypes = __webpack_require__(269);\n\t\n\tvar types = _interopRequireWildcard(_actionTypes);\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\tfunction _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\t\n\tvar initialSearch = {\n\t petTypes: [],\n\t results: [],\n\t phrase: '',\n\t selectedPetTypes: []\n\t};\n\t\n\tvar initialState = {\n\t list: [],\n\t\n\t grid: {\n\t isSorting: false\n\t },\n\t\n\t petLabels: [],\n\t petLabelsValid: false,\n\t\n\t search: initialSearch,\n\t\n\t selected: {\n\t gridIndex: -1,\n\t petLabelId: -1,\n\t articleMappingId: -1\n\t },\n\t\n\t active: {\n\t petLabel: {}\n\t },\n\t\n\t definitions: [],\n\t definitionsValid: false,\n\t\n\t customDefinitions: [],\n\t selectedCustomType: '',\n\t\n\t activeSize: '',\n\t activePLU: false,\n\t\n\t pdfId: '0',\n\t\n\t articles: [],\n\t articlesValid: false,\n\t shownArticles: [],\n\t articleSortColumn: null,\n\t articleSortDirection: '',\n\t articleFilters: {},\n\t\n\t calibrationLink: '',\n\t\n\t labelModalOpen: false,\n\t labelAddEnabled: true\n\t};\n\t\n\tfunction reducer() {\n\t var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;\n\t var action = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t\n\t switch (action.type) {\n\t case types.SET_GRID_SORTING:\n\t {\n\t return _extends({}, state, {\n\t grid: _extends({}, state.grid, {\n\t isSorting: action.payload.isSorting\n\t })\n\t });\n\t }\n\t case types.SET_LABEL_INDEX:\n\t {\n\t var _action$payload = action.payload,\n\t oldIndex = _action$payload.oldIndex,\n\t newIndex = _action$payload.newIndex;\n\t\n\t var list = (0, _reactSortableHoc.arrayMove)(state.list, oldIndex, newIndex);\n\t return _extends({}, state, {\n\t list: list\n\t });\n\t }\n\t case types.SELECT_LABEL:\n\t {\n\t return _extends({}, state, {\n\t selected: _extends({}, state.selected, {\n\t gridIndex: action.payload.index\n\t })\n\t });\n\t }\n\t case types.PET_LABEL_LIST_RECEIVED:\n\t {\n\t return _extends({}, state, {\n\t petLabels: action.payload.petLabels,\n\t petLabelsValid: true\n\t });\n\t }\n\t case types.PET_LABEL_LIST_RELOAD:\n\t {\n\t var li = action.payload.isValid;\n\t\n\t return _extends({}, state, {\n\t petLabelsValid: li\n\t });\n\t }\n\t\n\t case types.PET_LABEL_PRICE_UPDATE:\n\t {\n\t var labelIndex = -1;\n\t var newArticles = [].concat(_toConsumableArray(state.petLabels));\n\t newArticles.find(function (petLabel, index) {\n\t if (petLabel.Id === action.payload.label.Id && petLabel.ArticleMappingEntryID === action.payload.label.ArticleMappingEntryID) {\n\t return labelIndex = index;\n\t }\n\t });\n\t\n\t //state.petLabels.slice(0);\n\t var newpet = JSON.parse(JSON.stringify(action.payload.label));\n\t newpet.Price = action.payload.price;\n\t newArticles[labelIndex] = newpet;\n\t\n\t return _extends({}, state, {\n\t petLabels: newArticles\n\t });\n\t }\n\t\n\t case types.PET_TYPES_ADDED:\n\t {\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t petTypes: action.payload.petTypes,\n\t selectedPetTypes: action.payload.selectedPetTypes\n\t })\n\t });\n\t }\n\t case types.TOGGLE_SELECTED_PET_TYPE:\n\t {\n\t var selectedPetTypes = [].concat(_toConsumableArray(state.search.selectedPetTypes));\n\t var togglePetType = action.payload.petType;\n\t\n\t var found = selectedPetTypes.find(function (petType) {\n\t return petType === togglePetType;\n\t });\n\t\n\t if (found) {\n\t var index = selectedPetTypes.indexOf(togglePetType);\n\t selectedPetTypes.splice(index, 1);\n\t } else {\n\t selectedPetTypes.push(togglePetType);\n\t }\n\t\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t selectedPetTypes: selectedPetTypes\n\t })\n\t });\n\t }\n\t case types.LABELS_SEARCH_PHRASE:\n\t {\n\t var searchPhrase = '';\n\t if (action.payload.searchPhrase !== undefined) {\n\t searchPhrase = action.payload.searchPhrase.toLowerCase();\n\t } else {\n\t searchPhrase = '';\n\t }\n\t\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t phrase: searchPhrase\n\t })\n\t });\n\t }\n\t case types.CLEAR_SEARCH_RESULTS:\n\t {\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t results: [],\n\t phrase: '',\n\t selectedPetType: state.search.petTypes\n\t })\n\t });\n\t }\n\t case types.FILTER_PET_LABELS:\n\t {\n\t var _searchPhrase = state.search.phrase;\n\t\n\t var searchAllTypes = state.search.petTypes.length === state.search.selectedPetTypes.length || state.search.selectedPetTypes.length === 0 ? true : false;\n\t\n\t var searchResults = state.petLabels.filter(function (petLabel) {\n\t if (searchAllTypes) {\n\t return petLabel.Line1 !== null && petLabel.Line1.toLowerCase().indexOf(_searchPhrase) >= 0 || petLabel.Line2 !== null && petLabel.Line2.toLowerCase().indexOf(_searchPhrase) >= 0 || petLabel.Line3 !== null && petLabel.Line3.toLowerCase().indexOf(_searchPhrase) >= 0 || petLabel.Line4 !== null && petLabel.Line4.toLowerCase().indexOf(_searchPhrase) >= 0;\n\t } else {\n\t return state.search.selectedPetTypes.includes(petLabel.PetType) && (petLabel.Line1 !== null && petLabel.Line1.toLowerCase().indexOf(_searchPhrase) >= 0 || petLabel.Line2 !== null && petLabel.Line2.toLowerCase().indexOf(_searchPhrase) >= 0 || petLabel.Line3 !== null && petLabel.Line3.toLowerCase().indexOf(_searchPhrase) >= 0 || petLabel.Line4 !== null && petLabel.Line4.toLowerCase().indexOf(_searchPhrase) >= 0);\n\t }\n\t });\n\t\n\t searchResults.sort((0, _thenby2.default)(\"Line1\").thenBy(\"Line2\"));\n\t\n\t return _extends({}, state, {\n\t search: _extends({}, state.search, {\n\t results: searchResults\n\t })\n\t });\n\t }\n\t case types.SELECT_PET_LABEL:\n\t {\n\t return _extends({}, state, {\n\t selected: _extends({}, state.selected, {\n\t petLabelId: action.payload.petLabelId,\n\t articleMappingId: action.payload.articleMappingId\n\t })\n\t });\n\t }\n\t case types.DESELECT_PET_LABEL:\n\t {\n\t return _extends({}, state, {\n\t selected: _extends({}, state.selected, {\n\t petLabelId: -1,\n\t articleMappingId: -1\n\t })\n\t });\n\t }\n\t case types.PET_LABEL_RECEIVED:\n\t {\n\t return _extends({}, state, {\n\t active: _extends({}, state.active, {\n\t petLabel: action.payload.petLabel\n\t })\n\t });\n\t }\n\t case types.CLEAR_ACTIVE_LABEL:\n\t {\n\t return _extends({}, state, {\n\t active: _extends({}, state.active, {\n\t petLabel: {}\n\t })\n\t });\n\t }\n\t case types.LABEL_DEFINITIONS_RECEIVED:\n\t {\n\t return _extends({}, state, {\n\t definitions: action.payload.definitions,\n\t definitionsValid: true,\n\t styleElements: action.payload.definitions[0].StyleElements\n\t });\n\t }\n\t case types.SELECT_LABEL_SIZE:\n\t {\n\t var labelList = createLabelList(state, action.payload.labelSize);\n\t return _extends({}, state, {\n\t activeSize: action.payload.labelSize,\n\t list: labelList,\n\t pdfId: action.payload.pdfId\n\t });\n\t }\n\t case types.SAVE_LABEL_TO_SHEET:\n\t {\n\t var labels = JSON.parse(JSON.stringify(state.list));\n\t labels[state.selected.gridIndex] = { imageUrl: action.payload.imageUrl, data: action.payload.label };\n\t return _extends({}, state, {\n\t list: labels\n\t });\n\t }\n\t case types.CLEAR_LABEL_SHEET:\n\t {\n\t var _labelList = createLabelList(state, state.activeSize);\n\t return _extends({}, state, {\n\t list: _labelList\n\t });\n\t }\n\t case types.TOGGLE_PLU_ACTIVE:\n\t {\n\t return _extends({}, state, {\n\t activePLU: !state.activePLU\n\t });\n\t }\n\t case types.DELETE_LABEL_FROM_SHEET:\n\t {\n\t var _labels = JSON.parse(JSON.stringify(state.list));\n\t _labels[action.payload.gridIndex] = {};\n\t return _extends({}, state, {\n\t list: _labels\n\t });\n\t }\n\t case types.EDIT_EXISTING_LABEL:\n\t {\n\t var label = state.list[action.payload.gridIndex].data;\n\t return _extends({}, state, {\n\t selected: _extends({}, state.selected, {\n\t gridIndex: action.payload.gridIndex\n\t }),\n\t active: _extends({}, state.active, {\n\t petLabel: label\n\t })\n\t });\n\t }\n\t case types.CUSTOM_DEFINITIONS_RECEIVED:\n\t {\n\t return _extends({}, state, {\n\t customDefinitions: action.payload.definitions\n\t });\n\t }\n\t case types.SELECT_CUSTOM_LABEL:\n\t {\n\t return _extends({}, state, {\n\t selectedCustomType: action.payload.petType,\n\t active: _extends({}, state.active, {\n\t petLabel: state.customDefinitions[action.payload.petType]\n\t })\n\t });\n\t }\n\t case types.ARTICLE_LIST_RECEIVED:\n\t {\n\t\n\t // TODO: need to apply the filters here\n\t\n\t var newShownArticles = action.payload.petLabels.slice(0);\n\t var shownArticles = [];\n\t if (state.articleSortColumn !== null) {\n\t shownArticles = sortArticleList(state, newShownArticles, state.articleSortColumn, state.articleSortDirection);\n\t } else {\n\t shownArticles = sortArticleList(state, newShownArticles, 'Line1', 'ASC');\n\t }\n\t\n\t return _extends({}, state, {\n\t articles: action.payload.petLabels,\n\t articlesValid: true,\n\t articleSortColumn: 'Line1',\n\t articleSortDirection: 'ASC',\n\t shownArticles: shownArticles\n\t });\n\t }\n\t case types.UPDATE_LABEL_ARTICLE:\n\t {\n\t var _labelIndex = -1;\n\t state.articles.find(function (petLabel, index) {\n\t if (petLabel.Id === action.payload.label.Id && petLabel.ArticleMappingEntryID === action.payload.label.ArticleMappingEntryID) {\n\t return _labelIndex = index;\n\t }\n\t });\n\t\n\t var _newArticles = state.articles.slice(0);\n\t _newArticles[_labelIndex] = action.payload.label;\n\t\n\t var _newShownArticles = _newArticles.slice(0);\n\t\n\t var filterArticles = filterArticleList(state, _newShownArticles, state.articleFilters);\n\t\n\t var _shownArticles = [];\n\t if (state.articleSortColumn !== null) {\n\t _shownArticles = sortArticleList(state, filterArticles, state.articleSortColumn, state.articleSortDirection);\n\t } else {\n\t _shownArticles = _newShownArticles;\n\t }\n\t\n\t return _extends({}, state, {\n\t articles: _newArticles,\n\t shownArticles: _shownArticles\n\t });\n\t }\n\t case types.SORT_ARTICLE_COLUMN:\n\t {\n\t var sortColumn = action.payload.sortColumn;\n\t var sortDirection = action.payload.sortDirection;\n\t\n\t var _filterArticles = filterArticleList(state, state.shownArticles, state.articleFilters);\n\t var articleList = sortArticleList(state, _filterArticles, action.payload.sortColumn, action.payload.sortDirection);\n\t\n\t return _extends({}, state, {\n\t shownArticles: articleList,\n\t articleSortColumn: sortColumn,\n\t articleSortDirection: sortDirection\n\t });\n\t }\n\t case types.CLEAR_ARTICLE_FILTERS:\n\t {\n\t var _articleList = state.articles.slice(0);\n\t var _shownArticles2 = [];\n\t if (state.articleSortColumn !== null) {\n\t var _newShownArticles2 = _articleList.slice(0);\n\t _shownArticles2 = sortArticleList(state, _newShownArticles2, state.articleSortColumn, state.articleSortDirection);\n\t } else {\n\t _shownArticles2 = _articleList.slice(0);\n\t }\n\t\n\t return _extends({}, state, {\n\t shownArticles: _shownArticles2,\n\t filters: []\n\t });\n\t }\n\t case types.CALIBRATION_PDF_LINK:\n\t {\n\t return _extends({}, state, {\n\t calibrationLink: action.payload.link\n\t });\n\t }\n\t case types.ADD_ARTICLE_MAPPING:\n\t {\n\t var _articleList2 = state.articles.slice(0);\n\t _articleList2.push(action.payload.article);\n\t\n\t var _filterArticles2 = filterArticleList(state, _articleList2, state.articleFilters);\n\t\n\t var _shownArticles3 = [];\n\t if (state.articleSortColumn !== null) {\n\t var _newShownArticles3 = _filterArticles2.slice(0);\n\t _shownArticles3 = sortArticleList(state, _newShownArticles3, state.articleSortColumn, state.articleSortDirection);\n\t } else {\n\t _shownArticles3 = _articleList2.slice(0);\n\t }\n\t\n\t return _extends({}, state, {\n\t articles: _articleList2,\n\t shownArticles: _shownArticles3\n\t });\n\t }\n\t case types.DELETE_ARTICLE_MAPPING:\n\t {\n\t var _articleList3 = state.articles.slice(0);\n\t var _index = _articleList3.indexOf(action.payload.article);\n\t if (_index > -1) {\n\t _articleList3.splice(_index, 1);\n\t }\n\t\n\t if (action.payload.article.ArticleMappingEntryID === 0) {\n\t var article = JSON.parse(JSON.stringify(action.payload.article));\n\t article.CustomerName = '';\n\t article.Price = '';\n\t article.PLUCode = '';\n\t _articleList3.push(article);\n\t }\n\t\n\t var _filterArticles3 = filterArticleList(state, _articleList3, state.articleFilters);\n\t\n\t var _shownArticles4 = [];\n\t if (state.articleSortColumn !== null) {\n\t var _newShownArticles4 = _filterArticles3.slice(0);\n\t _shownArticles4 = sortArticleList(state, _newShownArticles4, state.articleSortColumn, state.articleSortDirection);\n\t } else {\n\t _shownArticles4 = _articleList3.slice(0);\n\t }\n\t\n\t return _extends({}, state, {\n\t articles: _articleList3,\n\t shownArticles: _shownArticles4\n\t });\n\t }\n\t case types.SHOW_LABEL_MODAL:\n\t {\n\t return _extends({}, state, {\n\t labelModalOpen: true\n\t });\n\t }\n\t case types.HIDE_LABEL_MODAL:\n\t {\n\t return _extends({}, state, {\n\t labelModalOpen: false\n\t });\n\t }\n\t case types.DISABLE_LABEL_ADD:\n\t {\n\t return _extends({}, state, {\n\t labelAddEnabled: false\n\t });\n\t }\n\t case types.ENABLE_LABEL_ADD:\n\t {\n\t return _extends({}, state, {\n\t labelAddEnabled: true\n\t });\n\t }\n\t case types.SELECT_NEXT_LABEL:\n\t {\n\t var nextIndex = 0;\n\t state.list.find(function (label) {\n\t if (Object.keys(label).length === 0) {\n\t return label;\n\t }\n\t nextIndex++;\n\t });\n\t\n\t return _extends({}, state, {\n\t selected: _extends({}, state.selected, {\n\t gridIndex: nextIndex\n\t })\n\t });\n\t }\n\t case types.ADD_ARTICLE_FILTER:\n\t {\n\t var filters = JSON.parse(JSON.stringify(state.articleFilters));\n\t filters[action.payload.column] = action.payload.value;\n\t\n\t var filteredArticles = filterArticleList(state, state.articles.slice(0), filters);\n\t var _shownArticles5 = sortArticleList(state, filteredArticles, state.articleSortColumn, state.articleSortDirection);\n\t\n\t return _extends({}, state, {\n\t articleFilters: filters,\n\t shownArticles: _shownArticles5\n\t });\n\t }\n\t default:\n\t return state;\n\t }\n\t}\n\t\n\tfunction createLabelList(state, labelSize) {\n\t var selectedLabel = state.definitions.find(function (label) {\n\t return label.LabelName === labelSize;\n\t });\n\t var labelList = new Array(selectedLabel.LabelPositions.length);\n\t labelList.fill({}, 0, selectedLabel.LabelPositions.length);\n\t return labelList;\n\t}\n\t\n\tfunction sortArticleList(state, articles, sortColumn, sortDirection) {\n\t var articleList = articles.slice(0);\n\t var list = [];\n\t if (sortDirection !== 'NONE') {\n\t list = articleList.sort(function (a, b) {\n\t if (sortDirection === 'ASC') {\n\t return a[sortColumn] > b[sortColumn] ? 1 : -1;\n\t } else if (sortDirection === 'DESC') {\n\t return a[sortColumn] < b[sortColumn] ? 1 : -1;\n\t }\n\t });\n\t } else {\n\t list = articles.slice(0);\n\t }\n\t return list;\n\t}\n\t\n\tfunction filterArticleList(state, articles, filters) {\n\t var articleList = articles.slice(0);\n\t\n\t if (filters['Id'] !== undefined) {\n\t articleList = articleList.filter(function (article) {\n\t return article.Id.toString().includes(filters['Id']);\n\t });\n\t }\n\t\n\t if (filters['Line1'] !== undefined) {\n\t articleList = articleList.filter(function (article) {\n\t return article.Line1.toLowerCase().includes(filters['Line1'].toLowerCase());\n\t });\n\t }\n\t\n\t if (filters['Line2'] !== undefined) {\n\t articleList = articleList.filter(function (article) {\n\t return article.Line2.toLowerCase().includes(filters['Line2'].toLowerCase());\n\t });\n\t }\n\t\n\t if (filters['PetType'] !== undefined) {\n\t articleList = articleList.filter(function (article) {\n\t return article.PetType.toLowerCase().includes(filters['PetType'].toLowerCase());\n\t });\n\t }\n\t\n\t if (filters['CustomerName'] !== undefined) {\n\t articleList = articleList.filter(function (article) {\n\t return article.CustomerName.toLowerCase().includes(filters['CustomerName'].toLowerCase());\n\t });\n\t }\n\t\n\t if (filters['Price'] !== undefined) {\n\t articleList = articleList.filter(function (article) {\n\t return article.Price.toLowerCase().includes(filters['Price'].toLowerCase());\n\t });\n\t }\n\t\n\t if (filters['Barcode'] !== undefined) {\n\t articleList = articleList.filter(function (article) {\n\t return article.Barcode.toLowerCase().includes(filters['Barcode'].toLowerCase());\n\t });\n\t }\n\t\n\t if (filters['PLUCode'] !== undefined) {\n\t articleList = articleList.filter(function (article) {\n\t return article.PLUCode.toLowerCase().includes(filters['PLUCode'].toLowerCase());\n\t });\n\t }\n\t\n\t return articleList;\n\t}\n\n/***/ },\n/* 614 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactstrap = __webpack_require__(56);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _selectors = __webpack_require__(173);\n\t\n\tvar _actions = __webpack_require__(127);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar savePasswordChange = _customer2.default.actions.savePasswordChange;\n\t\n\tvar _ref = _react2.default.createElement('span', { className: 'lnr lnr-cross', 'aria-hidden': 'true' });\n\t\n\tvar ChangePasswordModal = function (_React$Component) {\n\t _inherits(ChangePasswordModal, _React$Component);\n\t\n\t function ChangePasswordModal(props) {\n\t _classCallCheck(this, ChangePasswordModal);\n\t\n\t var _this = _possibleConstructorReturn(this, (ChangePasswordModal.__proto__ || Object.getPrototypeOf(ChangePasswordModal)).call(this, props));\n\t\n\t _this.handlePasswordClose = function () {\n\t _this.setState({ oldPassword: '' });\n\t _this.setState({ newPassword: '' });\n\t _this.setState({ confirmPassword: '' });\n\t _this.setState({ passwordError: '' });\n\t _this.props.actions.hideChangePasswordModal();\n\t };\n\t\n\t _this.handleOldPasswordChange = function (password) {\n\t _this.setState({ oldPassword: password });\n\t };\n\t\n\t _this.handlePasswordChange = function (password) {\n\t _this.setState({ newPassword: password });\n\t if (password.length < 8) {\n\t var errorMsg = _reactReduxI18n.I18n.t('PASSWORD_CHARACTERS');\n\t _this.setState({ passwordError: errorMsg });\n\t } else if (password !== _this.state.confirmPassword) {\n\t var _errorMsg = _reactReduxI18n.I18n.t('PASSWORDS_DO_NOT_MATCH');\n\t _this.setState({ passwordError: _errorMsg });\n\t } else {\n\t _this.setState({ passwordError: '' });\n\t }\n\t };\n\t\n\t _this.handleConfirmPasswordChange = function (password) {\n\t _this.setState({ confirmPassword: password });\n\t if (_this.state.newPassword.length < 8) {\n\t var errorMsg = _reactReduxI18n.I18n.t('PASSWORD_CHARACTERS');\n\t _this.setState({ passwordError: errorMsg });\n\t } else if (password !== _this.state.newPassword) {\n\t var _errorMsg2 = _reactReduxI18n.I18n.t('PASSWORDS_DO_NOT_MATCH');\n\t _this.setState({ passwordError: _errorMsg2 });\n\t } else {\n\t _this.setState({ passwordError: '' });\n\t }\n\t };\n\t\n\t _this.handlePasswordAccept = function () {\n\t if (_this.state.newPassword.length < 8) {\n\t var errorMsg = _reactReduxI18n.I18n.t('PASSWORD_CHARACTERS');\n\t _this.setState({ passwordError: errorMsg });\n\t } else if (_this.state.newPassword !== _this.state.confirmPassword) {\n\t var _errorMsg3 = _reactReduxI18n.I18n.t('PASSWORDS_DO_NOT_MATCH');\n\t _this.setState({ passwordError: _errorMsg3 });\n\t } else {\n\t return new Promise(function (resolve) {\n\t _this.props.actions.savePasswordChange(_this.state.oldPassword, _this.state.newPassword).then(function () {\n\t resolve();\n\t _this.props.actions.hideChangePasswordModal();\n\t }).catch(function () {\n\t _this.setState({ oldPassword: '' });\n\t _this.setState({ newPassword: '' });\n\t _this.setState({ confirmPassword: '' });\n\t _this.setState({ passwordError: 'Invalid password. Please try again.' });\n\t });\n\t });\n\t }\n\t };\n\t\n\t _this.state = {\n\t oldPassword: '',\n\t newPassword: '',\n\t confirmPassword: '',\n\t passwordError: ''\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(ChangePasswordModal, [{\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var isOpen = this.props.isOpen;\n\t\n\t\n\t var confirmRowStyle = 'row';\n\t var confirmInputStyle = 'form-control';\n\t if (this.state.passwordError !== '') {\n\t confirmRowStyle += ' has-danger';\n\t confirmInputStyle += ' form-control-danger';\n\t }\n\t\n\t return _react2.default.createElement(\n\t _reactstrap.Modal,\n\t { isOpen: isOpen, toggle: this.handlePasswordClose, id: 'modalSelectStore' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-header' },\n\t _react2.default.createElement(\n\t 'h4',\n\t { className: 'modal-title', id: 'exampleModalLabel' },\n\t _reactReduxI18n.I18n.t('CHANGE_PASSWORD')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'close', onClick: this.handlePasswordClose },\n\t _ref\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-body' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement('input', { className: 'form-control',\n\t type: 'password',\n\t value: this.state.oldPassword,\n\t placeholder: _reactReduxI18n.I18n.t('CURRENT_PASSWORD'),\n\t onChange: function onChange(e) {\n\t _this2.handleOldPasswordChange(e.target.value);\n\t },\n\t autoComplete: 'off' })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement('input', { className: 'form-control',\n\t type: 'password',\n\t value: this.state.newPassword,\n\t placeholder: _reactReduxI18n.I18n.t('NEW_PASSWORD'),\n\t onChange: function onChange(e) {\n\t _this2.handlePasswordChange(e.target.value);\n\t },\n\t autoComplete: 'off' })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: confirmRowStyle },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement('input', { className: confirmInputStyle,\n\t type: 'password',\n\t value: this.state.confirmPassword,\n\t placeholder: _reactReduxI18n.I18n.t('CONFIRM_PASSWORD'),\n\t onChange: function onChange(e) {\n\t _this2.handleConfirmPasswordChange(e.target.value);\n\t },\n\t autoComplete: 'off' }),\n\t this.state.passwordError !== '' && _react2.default.createElement(\n\t 'div',\n\t { className: 'form-control-feedback' },\n\t this.state.passwordError\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-footer' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-secondary', 'data-dismiss': 'modal', onClick: this.handlePasswordClose },\n\t _reactReduxI18n.I18n.t('CANCEL')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-primary', onClick: this.handlePasswordAccept },\n\t _reactReduxI18n.I18n.t('CHANGE_PASSWORD')\n\t )\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return ChangePasswordModal;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t isOpen: (0, _selectors.isChangePasswordOpen)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ hideChangePasswordModal: _actions.hideChangePasswordModal, savePasswordChange: savePasswordChange }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(ChangePasswordModal);\n\n/***/ },\n/* 615 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactstrap = __webpack_require__(56);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('span', { className: 'lnr lnr-cross', 'aria-hidden': 'true' });\n\t\n\tvar ErrorModal = function ErrorModal(_ref) {\n\t var isOpen = _ref.isOpen,\n\t onClose = _ref.onClose;\n\t\n\t return _react2.default.createElement(\n\t _reactstrap.Modal,\n\t { isOpen: isOpen, toggle: onClose, id: 'modalSelectStore' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-header' },\n\t _react2.default.createElement(\n\t 'h4',\n\t { className: 'modal-title', id: 'exampleModalLabel' },\n\t _reactReduxI18n.I18n.t('APPLICATION_ERROR')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'close', 'data-dismiss': 'modal', 'aria-label': 'Close', onClick: onClose },\n\t _ref2\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-body' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _reactReduxI18n.I18n.t('ERROR_MESSAGE')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-footer' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-primary', onClick: onClose },\n\t _reactReduxI18n.I18n.t('CLOSE')\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = ErrorModal;\n\n/***/ },\n/* 616 */\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 _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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(127);\n\t\n\tvar navBarActions = _interopRequireWildcard(_actions);\n\t\n\tvar _selectors = __webpack_require__(173);\n\t\n\tvar _NavIconBar = __webpack_require__(275);\n\t\n\tvar _NavIconBar2 = _interopRequireDefault(_NavIconBar);\n\t\n\tvar _NavLinkBar = __webpack_require__(276);\n\t\n\tvar _NavLinkBar2 = _interopRequireDefault(_NavLinkBar);\n\t\n\tvar _SelectStoreModal = __webpack_require__(277);\n\t\n\tvar _SelectStoreModal2 = _interopRequireDefault(_SelectStoreModal);\n\t\n\tvar _ChangePasswordModal = __webpack_require__(614);\n\t\n\tvar _ChangePasswordModal2 = _interopRequireDefault(_ChangePasswordModal);\n\t\n\tvar _ErrorModal = __webpack_require__(615);\n\t\n\tvar _ErrorModal2 = _interopRequireDefault(_ErrorModal);\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\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t getActivePermissions = _customer$selectors.getActivePermissions,\n\t hasMultipleSubscriptions = _customer$selectors.hasMultipleSubscriptions,\n\t isMasterUser = _customer$selectors.isMasterUser,\n\t isDemoUser = _customer$selectors.isDemoUser;\n\t\n\t\n\tfunction isDesktopClient() {\n\t var bootStrapXlSize = 1330;\n\t return Math.max(document.documentElement[\"clientWidth\"], document.body[\"scrollWidth\"], document.documentElement[\"scrollWidth\"], document.body[\"offsetWidth\"], document.documentElement[\"offsetWidth\"]) >= bootStrapXlSize;\n\t}\n\t\n\tvar _ref2 = _react2.default.createElement(\n\t 'h1',\n\t { className: 'logo text-hide' },\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/' },\n\t 'Petdata'\n\t )\n\t);\n\t\n\tvar _ref3 = _react2.default.createElement(_SelectStoreModal2.default, null);\n\t\n\tvar _ref4 = _react2.default.createElement(_ChangePasswordModal2.default, null);\n\t\n\tvar NavBar = function (_React$Component) {\n\t _inherits(NavBar, _React$Component);\n\t\n\t function NavBar() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, NavBar);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = NavBar.__proto__ || Object.getPrototypeOf(NavBar)).call.apply(_ref, [this].concat(args))), _this), _this.handleNavBarToggle = function () {\n\t if (!isDesktopClient() && !_this.props.navTransitioning) {\n\t _this.props.actions.toggleNavBar();\n\t }\n\t }, _this.handleNavBarClose = function () {\n\t if (!isDesktopClient() && !_this.props.navCollapsed && !_this.props.navTransitioning) {\n\t _this.props.actions.closeNavBar();\n\t }\n\t }, _this.handleTransitionComplete = function () {\n\t if (!isDesktopClient()) {\n\t _this.props.actions.transitionComplete();\n\t }\n\t }, _this.handleErrorModalClose = function () {\n\t _this.props.actions.hideErrorModal();\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(NavBar, [{\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t isMasterUser = _props.isMasterUser,\n\t isErrorOpen = _props.isErrorOpen,\n\t navCollapsed = _props.navCollapsed,\n\t navLocation = _props.navLocation,\n\t multipleSubscriptions = _props.multipleSubscriptions,\n\t userPermissions = _props.userPermissions,\n\t isDemoUser = _props.isDemoUser;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'nav-side-menu' },\n\t _ref2,\n\t _react2.default.createElement(_NavIconBar2.default, { navLocation: navLocation,\n\t onClick: this.handleNavBarClose,\n\t userPermissions: userPermissions\n\t }),\n\t _react2.default.createElement(_NavLinkBar2.default, { navLocation: navLocation,\n\t navCollapsed: navCollapsed,\n\t onClick: this.handleNavBarToggle,\n\t onTransitionComplete: this.handleTransitionComplete,\n\t userPermissions: userPermissions,\n\t isMasterUser: isMasterUser,\n\t isDemoUser: isDemoUser\n\t })\n\t ),\n\t multipleSubscriptions && _ref3,\n\t _ref4,\n\t _react2.default.createElement(_ErrorModal2.default, { isOpen: isErrorOpen, onClose: this.handleErrorModalClose })\n\t );\n\t }\n\t }]);\n\t\n\t return NavBar;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state, ownProps) {\n\t return {\n\t isMasterUser: isMasterUser(state),\n\t isDemoUser: isDemoUser(state),\n\t isErrorOpen: (0, _selectors.isErrorOpen)(state),\n\t multipleSubscriptions: hasMultipleSubscriptions(state),\n\t navLocation: '/' + ownProps.location.split('/')[1],\n\t navCollapsed: (0, _selectors.isNavbarCollapsed)(state),\n\t navTransitioning: (0, _selectors.isNavbarTransitioning)(state),\n\t userPermissions: getActivePermissions(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)(_extends({}, navBarActions), dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(NavBar);\n\n/***/ },\n/* 617 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t hasMultipleSubscriptions = _customer$selectors.hasMultipleSubscriptions,\n\t getFullName = _customer$selectors.getFullName,\n\t getActiveSubscriptionName = _customer$selectors.getActiveSubscriptionName;\n\t\n\t\n\tvar NavUserInfo = function NavUserInfo(_ref) {\n\t var useCollapsedStyle = _ref.useCollapsedStyle,\n\t fullName = _ref.fullName,\n\t multiSubscriptions = _ref.multiSubscriptions,\n\t onClick = _ref.onClick,\n\t subscriptionName = _ref.subscriptionName;\n\t\n\t var navMenuClass = 'toggle-btn align-middle ' + (useCollapsedStyle ? 'collapsed' : '');\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t { id: 'navMenu', className: navMenuClass, onClick: onClick },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'name text-right' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'name-wrap' },\n\t fullName\n\t )\n\t ),\n\t multiSubscriptions && _react2.default.createElement(\n\t 'div',\n\t { className: 'store' },\n\t subscriptionName\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'user' },\n\t fullName\n\t ),\n\t multiSubscriptions && _react2.default.createElement(\n\t 'div',\n\t { className: 'store-sidenav' },\n\t subscriptionName\n\t )\n\t );\n\t};\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t fullName: getFullName(state),\n\t multiSubscriptions: hasMultipleSubscriptions(state),\n\t subscriptionName: getActiveSubscriptionName(state)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps)(NavUserInfo);\n\n/***/ },\n/* 618 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar SelectStoreButton = function SelectStoreButton(_ref) {\n\t\tvar active = _ref.active,\n\t\t _onClick = _ref.onClick,\n\t\t subscription = _ref.subscription;\n\t\treturn _react2.default.createElement(\n\t\t\t'button',\n\t\t\t{ key: subscription.id,\n\t\t\t\ttype: 'button',\n\t\t\t\tclassName: 'btn btn-link btn-radio ' + (active ? 'active' : ''),\n\t\t\t\tonClick: function onClick() {\n\t\t\t\t\t_onClick(subscription.id);\n\t\t\t\t} },\n\t\t\tsubscription.name\n\t\t);\n\t};\n\t\n\texports.default = SelectStoreButton;\n\n/***/ },\n/* 619 */\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.SelectStoreModal = exports.NavLinkBar = exports.NavIconBar = exports.NavBar = undefined;\n\t\n\tvar _NavBar = __webpack_require__(616);\n\t\n\tvar _NavBar2 = _interopRequireDefault(_NavBar);\n\t\n\tvar _NavIconBar = __webpack_require__(275);\n\t\n\tvar _NavIconBar2 = _interopRequireDefault(_NavIconBar);\n\t\n\tvar _NavLinkBar = __webpack_require__(276);\n\t\n\tvar _NavLinkBar2 = _interopRequireDefault(_NavLinkBar);\n\t\n\tvar _SelectStoreModal = __webpack_require__(277);\n\t\n\tvar _SelectStoreModal2 = _interopRequireDefault(_SelectStoreModal);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.NavBar = _NavBar2.default;\n\texports.NavIconBar = _NavIconBar2.default;\n\texports.NavLinkBar = _NavLinkBar2.default;\n\texports.SelectStoreModal = _SelectStoreModal2.default;\n\n/***/ },\n/* 620 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\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 = reducer;\n\t\n\tvar _actionTypes = __webpack_require__(274);\n\t\n\tvar types = _interopRequireWildcard(_actionTypes);\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\tvar initialState = {\n\t\tcollapsed: true,\n\t\ttransitioning: false,\n\t\tselectStoreOpen: false,\n\t\tchangePasswordOpen: false,\n\t\terrorOpen: false\n\t};\n\t\n\tfunction reducer() {\n\t\tvar state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;\n\t\tvar action = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t\n\t\tswitch (action.type) {\n\t\t\tcase types.NAV_BAR_TOGGLE:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tcollapsed: !state.collapsed,\n\t\t\t\t\t\ttransitioning: true\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.NAV_BAR_CLOSE:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tcollapsed: true,\n\t\t\t\t\t\ttransitioning: true\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.NAV_BAR_TRANSITIONED:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\ttransitioning: false\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.SHOW_SELECT_STORE_MODAL:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tselectStoreOpen: true\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.HIDE_SELECT_STORE_MODAL:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tselectStoreOpen: false\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.SHOW_CHANGE_PASSWORD_MODAL:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tchangePasswordOpen: true\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.HIDE_CHANGE_PASSWORD_MODAL:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tchangePasswordOpen: false\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.SHOW_ERROR_MODAL:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\terrorOpen: true\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.HIDE_ERROR_MODAL:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\terrorOpen: false\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\treturn state;\n\t\t}\n\t}\n\n/***/ },\n/* 621 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\texports.initializeSearch = initializeSearch;\n\texports.toggleFilterDisplay = toggleFilterDisplay;\n\texports.searchInputBlur = searchInputBlur;\n\texports.searchInputFocus = searchInputFocus;\n\texports.searchInputDirty = searchInputDirty;\n\t\n\tvar _actionTypes = __webpack_require__(280);\n\t\n\tvar types = _interopRequireWildcard(_actionTypes);\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 initializeSearch() {\n\t\treturn {\n\t\t\ttype: types.INITIALIZE_SEARCH\n\t\t};\n\t}\n\t\n\tfunction toggleFilterDisplay() {\n\t\treturn {\n\t\t\ttype: types.TOGGLE_FILTER_DISPLAY\n\t\t};\n\t}\n\t\n\tfunction searchInputBlur() {\n\t\treturn {\n\t\t\ttype: types.SEARCH_INPUT_BLUR\n\t\t};\n\t}\n\t\n\tfunction searchInputFocus() {\n\t\treturn {\n\t\t\ttype: types.SEARCH_INPUT_FOCUS\n\t\t};\n\t}\n\t\n\tfunction searchInputDirty() {\n\t\treturn {\n\t\t\ttype: types.SEARCH_INPUT_DIRTY\n\t\t};\n\t}\n\n/***/ },\n/* 622 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _FormInput = __webpack_require__(49);\n\t\n\tvar _FormInput2 = _interopRequireDefault(_FormInput);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement(\n\t 'span',\n\t { className: 'input-group-btn' },\n\t _react2.default.createElement(\n\t 'button',\n\t { className: 'btn btn-secondary btn-search', type: 'submit' },\n\t _react2.default.createElement('i', { className: 'fa fa-search lg' })\n\t )\n\t);\n\t\n\tvar SearchForm = function SearchForm(_ref) {\n\t var handleSubmit = _ref.handleSubmit,\n\t hasFocus = _ref.hasFocus,\n\t onBlur = _ref.onBlur,\n\t onFocus = _ref.onFocus;\n\t\n\t var searchClass = 'search-box';\n\t if (hasFocus) {\n\t searchClass += ' focus';\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'form',\n\t { className: searchClass, onSubmit: handleSubmit },\n\t _react2.default.createElement(_reduxForm.Field, { name: 'searchPhrase',\n\t id: 'searchPhrase',\n\t component: _FormInput2.default,\n\t type: 'text',\n\t className: 'form-control',\n\t onBlur: onBlur,\n\t onFocus: onFocus,\n\t placeholder: _reactReduxI18n.I18n.t('PET_SEARCH_PLACEHOLDER')\n\t }),\n\t _ref2\n\t );\n\t};\n\t\n\texports.default = (0, _reduxForm.reduxForm)()(SearchForm);\n\n/***/ },\n/* 623 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactstrap = __webpack_require__(56);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction isFilterOn(itemList, selectedItems) {\n\t if (selectedItems.length === 0 || selectedItems.length === itemList.length) {\n\t return false;\n\t } else {\n\t return true;\n\t }\n\t}\n\t\n\tvar SearchMultiSelect = function SearchMultiSelect(_ref) {\n\t var isOpen = _ref.isOpen,\n\t onSelected = _ref.onSelected,\n\t onToggle = _ref.onToggle,\n\t itemList = _ref.itemList,\n\t selectedItems = _ref.selectedItems;\n\t\n\t var petTypes = itemList.map(function (petType) {\n\t var checkedClass = '';\n\t if (selectedItems.includes(petType)) {\n\t checkedClass = 'multi-checked';\n\t }\n\t\n\t return _react2.default.createElement(\n\t _reactstrap.DropdownItem,\n\t { key: petType,\n\t className: checkedClass,\n\t toggle: false,\n\t onClick: function onClick(e) {\n\t e.target.blur();onSelected(petType);\n\t } },\n\t petType\n\t );\n\t });\n\t\n\t var filterClass = isFilterOn(itemList, selectedItems) ? 'filter-on' : '';\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'input-group-btn search-panel' },\n\t _react2.default.createElement(\n\t _reactstrap.ButtonDropdown,\n\t { isOpen: isOpen, toggle: onToggle, className: 'btn-group input-group-btn search-panel' },\n\t _react2.default.createElement(_reactstrap.DropdownToggle, { className: filterClass }),\n\t _react2.default.createElement(\n\t _reactstrap.DropdownMenu,\n\t null,\n\t petTypes\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = SearchMultiSelect;\n\n/***/ },\n/* 624 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _lodash = __webpack_require__(956);\n\t\n\tvar _actions = __webpack_require__(621);\n\t\n\tvar _selectors = __webpack_require__(627);\n\t\n\tvar _SearchMultiSelect = __webpack_require__(623);\n\t\n\tvar _SearchMultiSelect2 = _interopRequireDefault(_SearchMultiSelect);\n\t\n\tvar _SearchForm = __webpack_require__(622);\n\t\n\tvar _SearchForm2 = _interopRequireDefault(_SearchForm);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar formName = \"searchForm\";\n\t\n\tvar SearchPanel = function (_React$Component) {\n\t _inherits(SearchPanel, _React$Component);\n\t\n\t function SearchPanel() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, SearchPanel);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = SearchPanel.__proto__ || Object.getPrototypeOf(SearchPanel)).call.apply(_ref, [this].concat(args))), _this), _this.handleInputChange = function (values) {\n\t if (_this.props.isPristine && values.searchPhrase !== undefined) {\n\t _this.props.actions.searchInputDirty();\n\t }\n\t\n\t if (!_this.props.isPristine) {\n\t _this.props.onSubmit(values);\n\t }\n\t\n\t return {};\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(SearchPanel, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t this.props.actions.initializeSearch();\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var _props = this.props,\n\t actions = _props.actions,\n\t filterOpen = _props.filterOpen,\n\t inputFocus = _props.inputFocus,\n\t itemList = _props.itemList,\n\t onSelectedItem = _props.onSelectedItem,\n\t onSubmit = _props.onSubmit,\n\t selectedItems = _props.selectedItems;\n\t\n\t var asyncInput = (0, _lodash.debounce)(function (values) {\n\t _this2.handleInputChange(values);\n\t }, 250);\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'input-group search' },\n\t _react2.default.createElement(_SearchMultiSelect2.default, { isOpen: filterOpen,\n\t itemList: itemList.sort(),\n\t onSelected: onSelectedItem,\n\t onToggle: actions.toggleFilterDisplay,\n\t selectedItems: selectedItems }),\n\t _react2.default.createElement(_SearchForm2.default, { form: formName,\n\t hasFocus: inputFocus,\n\t onBlur: actions.searchInputBlur,\n\t onFocus: actions.searchInputFocus,\n\t onSubmit: onSubmit,\n\t validate: asyncInput })\n\t );\n\t }\n\t }]);\n\t\n\t return SearchPanel;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t filterOpen: (0, _selectors.isFilterOpen)(state),\n\t inputFocus: (0, _selectors.isInputFocused)(state),\n\t isPristine: (0, _selectors.isPristine)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ initializeSearch: _actions.initializeSearch, searchInputBlur: _actions.searchInputBlur, searchInputDirty: _actions.searchInputDirty, searchInputFocus: _actions.searchInputFocus, toggleFilterDisplay: _actions.toggleFilterDisplay }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(SearchPanel);\n\n/***/ },\n/* 625 */\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.SearchPanel = undefined;\n\t\n\tvar _SearchPanel = __webpack_require__(624);\n\t\n\tvar _SearchPanel2 = _interopRequireDefault(_SearchPanel);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.SearchPanel = _SearchPanel2.default;\n\n/***/ },\n/* 626 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\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 = reducer;\n\t\n\tvar _actionTypes = __webpack_require__(280);\n\t\n\tvar types = _interopRequireWildcard(_actionTypes);\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\tvar initialState = {\n\t\tfilterOpen: false,\n\t\tinputFocus: false,\n\t\tpristine: true\n\t};\n\t\n\tfunction reducer() {\n\t\tvar state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;\n\t\tvar action = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t\n\t\tswitch (action.type) {\n\t\t\tcase types.INITIALIZE_SEARCH:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tfilterOpen: false,\n\t\t\t\t\t\tinputFocus: false,\n\t\t\t\t\t\tpristine: true\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.TOGGLE_FILTER_DISPLAY:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tfilterOpen: !state.filterOpen\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.SEARCH_INPUT_BLUR:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tinputFocus: false\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.SEARCH_INPUT_FOCUS:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tinputFocus: true\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.SEARCH_INPUT_DIRTY:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tpristine: false\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\treturn state;\n\t\t}\n\t}\n\n/***/ },\n/* 627 */\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.isPristine = exports.isInputFocused = exports.isFilterOpen = undefined;\n\t\n\tvar _constants = __webpack_require__(281);\n\t\n\tvar isFilterOpen = exports.isFilterOpen = function isFilterOpen(state) {\n\t return state[_constants.NAME].filterOpen;\n\t};\n\tvar isInputFocused = exports.isInputFocused = function isInputFocused(state) {\n\t return state[_constants.NAME].inputFocus;\n\t};\n\tvar isPristine = exports.isPristine = function isPristine(state) {\n\t return state[_constants.NAME].pristine;\n\t};\n\n/***/ },\n/* 628 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactstrap = __webpack_require__(56);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('span', { className: 'lnr lnr-cross', 'aria-hidden': 'true' });\n\t\n\tvar ChangePasswordModal = function ChangePasswordModal(_ref) {\n\t var isOpen = _ref.isOpen,\n\t onAccept = _ref.onAccept,\n\t onClose = _ref.onClose,\n\t newPassword = _ref.newPassword,\n\t confirmPassword = _ref.confirmPassword,\n\t passwordError = _ref.passwordError,\n\t onPasswordChange = _ref.onPasswordChange,\n\t onConfirmPasswordChange = _ref.onConfirmPasswordChange;\n\t\n\t var confirmRowStyle = 'row';\n\t var confirmInputStyle = 'form-control';\n\t if (passwordError !== '') {\n\t confirmRowStyle += ' has-danger';\n\t confirmInputStyle += ' form-control-danger';\n\t }\n\t\n\t return _react2.default.createElement(\n\t _reactstrap.Modal,\n\t { isOpen: isOpen, toggle: onClose, id: 'modalSelectStore' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-header' },\n\t _react2.default.createElement(\n\t 'h4',\n\t { className: 'modal-title', id: 'exampleModalLabel' },\n\t _reactReduxI18n.I18n.t('CHANGE_PASSWORD')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'close', 'data-dismiss': 'modal', 'aria-label': 'Close', onClick: onClose },\n\t _ref2\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-body' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement('input', { className: 'form-control',\n\t type: 'password',\n\t value: newPassword,\n\t placeholder: _reactReduxI18n.I18n.t('NEW_PASSWORD'),\n\t onChange: function onChange(e) {\n\t onPasswordChange(e.target.value);\n\t },\n\t autoComplete: 'off' })\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: confirmRowStyle },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement('input', { className: confirmInputStyle,\n\t type: 'password',\n\t value: confirmPassword,\n\t placeholder: _reactReduxI18n.I18n.t('CONFIRM_PASSWORD'),\n\t onChange: function onChange(e) {\n\t onConfirmPasswordChange(e.target.value);\n\t },\n\t autoComplete: 'off' }),\n\t passwordError !== '' && _react2.default.createElement(\n\t 'div',\n\t { className: 'form-control-feedback' },\n\t passwordError\n\t )\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'modal-footer' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-secondary', 'data-dismiss': 'modal', onClick: onClose },\n\t _reactReduxI18n.I18n.t('CANCEL')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-primary', onClick: onAccept },\n\t _reactReduxI18n.I18n.t('CHANGE_PASSWORD')\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = ChangePasswordModal;\n\n/***/ },\n/* 629 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _UserFormInput = __webpack_require__(283);\n\t\n\tvar _UserFormInput2 = _interopRequireDefault(_UserFormInput);\n\t\n\tvar _UserPermissionTable = __webpack_require__(284);\n\t\n\tvar _UserPermissionTable2 = _interopRequireDefault(_UserPermissionTable);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar CreateUserForm = function CreateUserForm(_ref) {\n\t var handleSubmit = _ref.handleSubmit,\n\t onCancel = _ref.onCancel,\n\t onTogglePermission = _ref.onTogglePermission,\n\t permissionTable = _ref.permissionTable,\n\t submitting = _ref.submitting,\n\t supportsCareSheet = _ref.supportsCareSheet;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('CREATE_USER')\n\t ),\n\t _react2.default.createElement(\n\t 'form',\n\t { className: 'user-form', onSubmit: handleSubmit },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('USER_INFO')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'firstName',\n\t component: _UserFormInput2.default,\n\t type: 'text',\n\t label: _reactReduxI18n.I18n.t('FIRST_NAME')\n\t }),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'lastName',\n\t component: _UserFormInput2.default,\n\t type: 'text',\n\t label: _reactReduxI18n.I18n.t('LAST_NAME')\n\t }),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'email',\n\t component: _UserFormInput2.default,\n\t type: 'text',\n\t label: _reactReduxI18n.I18n.t('EMAIL_ADDRESS')\n\t }),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'password',\n\t component: _UserFormInput2.default,\n\t type: 'password',\n\t label: _reactReduxI18n.I18n.t('PASSWORD')\n\t }),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'confirmPassword',\n\t component: _UserFormInput2.default,\n\t type: 'password',\n\t label: _reactReduxI18n.I18n.t('CONFIRM_PASSWORD')\n\t }),\n\t _react2.default.createElement(_UserPermissionTable2.default, { permissionTable: permissionTable, onTogglePermission: onTogglePermission, supportsCareSheet: supportsCareSheet }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters bottom-buttons' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12 text-right' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-secondary', disabled: submitting, onClick: onCancel },\n\t _reactReduxI18n.I18n.t('CANCEL')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'submit', className: 'btn btn-primary', disabled: submitting },\n\t _reactReduxI18n.I18n.t('CREATE_USER')\n\t )\n\t )\n\t )\n\t )\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = (0, _reduxForm.reduxForm)()(CreateUserForm);\n\n/***/ },\n/* 630 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(128);\n\t\n\tvar _selectors = __webpack_require__(129);\n\t\n\tvar _CreateUserForm = __webpack_require__(629);\n\t\n\tvar _CreateUserForm2 = _interopRequireDefault(_CreateUserForm);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t isMasterUser = _customer$selectors.isMasterUser,\n\t isCareSheetsSupported = _customer$selectors.isCareSheetsSupported;\n\t\n\t\n\tvar formName = 'createUserForm';\n\t\n\tvar CreateUserPage = function (_React$Component) {\n\t _inherits(CreateUserPage, _React$Component);\n\t\n\t function CreateUserPage() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, CreateUserPage);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = CreateUserPage.__proto__ || Object.getPrototypeOf(CreateUserPage)).call.apply(_ref, [this].concat(args))), _this), _this.handleFormSubmit = function (values, dispatch) {\n\t return new Promise(function (resolve, reject) {\n\t dispatch((0, _actions.registerUser)(values, _this.props.permissionTable)).then(function () {\n\t resolve();\n\t }).catch(function () {\n\t reject();\n\t });\n\t });\n\t }, _this.handleFormCancel = function () {\n\t _this.props.actions.push('/users');\n\t }, _this.handleFormValidation = function (values) {\n\t var errors = {};\n\t\n\t if (!values.firstName) {\n\t errors.firstName = _reactReduxI18n.I18n.t('PLEASE_ENTER_FIRST_NAME');\n\t }\n\t\n\t if (!values.lastName) {\n\t errors.lastName = _reactReduxI18n.I18n.t('PLEASE_ENTER_LAST_NAME');\n\t }\n\t\n\t if (!values.email) {\n\t errors.email = _reactReduxI18n.I18n.t('PLEASE_ENTER_VALID_EMAIL');\n\t } else if (!/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4}$/i.test(values.email)) {\n\t errors.email = _reactReduxI18n.I18n.t('PLEASE_ENTER_VALID_EMAIL');\n\t }\n\t\n\t if (values.password === undefined || values.password.length < 8 || values.password.length > 100) {\n\t errors.password = _reactReduxI18n.I18n.t('PASSWORD_CHARACTERS');\n\t }\n\t if (values.confirmPassword === undefined || values.password !== values.confirmPassword) {\n\t errors.confirmPassword = _reactReduxI18n.I18n.t('PASSWORDS_DO_NOT_MATCH');\n\t }\n\t\n\t return errors;\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(CreateUserPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t if (!this.props.isMasterUser) {\n\t this.props.actions.push('/labels');\n\t }\n\t\n\t this.props.actions.initializePermissionTable();\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t actions = _props.actions,\n\t permissionTable = _props.permissionTable,\n\t supportsCareSheets = _props.supportsCareSheets;\n\t\n\t return _react2.default.createElement(_CreateUserForm2.default, { form: formName,\n\t onCancel: this.handleFormCancel,\n\t onSubmit: this.handleFormSubmit,\n\t onTogglePermission: actions.toggleUserPermission,\n\t permissionTable: permissionTable,\n\t validate: this.handleFormValidation,\n\t supportsCareSheet: supportsCareSheets\n\t });\n\t }\n\t }]);\n\t\n\t return CreateUserPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t isMasterUser: isMasterUser(state),\n\t permissionTable: (0, _selectors.getSelectedPermissions)(state),\n\t supportsCareSheets: isCareSheetsSupported(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ initializePermissionTable: _actions.initializePermissionTable, registerUser: _actions.registerUser, toggleUserPermission: _actions.toggleUserPermission, push: _reactRouterRedux.push }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(CreateUserPage);\n\n/***/ },\n/* 631 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _FormInput = __webpack_require__(49);\n\t\n\tvar _FormInput2 = _interopRequireDefault(_FormInput);\n\t\n\tvar _UserFormInput = __webpack_require__(283);\n\t\n\tvar _UserFormInput2 = _interopRequireDefault(_UserFormInput);\n\t\n\tvar _UserPermissionTable = __webpack_require__(284);\n\t\n\tvar _UserPermissionTable2 = _interopRequireDefault(_UserPermissionTable);\n\t\n\tvar _ChangePasswordModal = __webpack_require__(628);\n\t\n\tvar _ChangePasswordModal2 = _interopRequireDefault(_ChangePasswordModal);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement(\n\t 'label',\n\t { className: 'switch' },\n\t _react2.default.createElement(_reduxForm.Field, { name: 'status',\n\t component: _FormInput2.default,\n\t type: 'checkbox'\n\t }),\n\t _react2.default.createElement('div', { className: 'slider' })\n\t);\n\t\n\tvar EditUserForm = function EditUserForm(_ref) {\n\t var handleSubmit = _ref.handleSubmit,\n\t onCancel = _ref.onCancel,\n\t onTogglePermission = _ref.onTogglePermission,\n\t permissionTable = _ref.permissionTable,\n\t status = _ref.status,\n\t submitting = _ref.submitting,\n\t username = _ref.username,\n\t modalOpen = _ref.modalOpen,\n\t onPasswordAccept = _ref.onPasswordAccept,\n\t onCloseModal = _ref.onCloseModal,\n\t onOpenModal = _ref.onOpenModal,\n\t newPassword = _ref.newPassword,\n\t confirmPassword = _ref.confirmPassword,\n\t passwordError = _ref.passwordError,\n\t onPasswordChange = _ref.onPasswordChange,\n\t onConfirmPasswordChange = _ref.onConfirmPasswordChange,\n\t supportsCareSheet = _ref.supportsCareSheet;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t _reactReduxI18n.I18n.t('EDIT_USER')\n\t ),\n\t _react2.default.createElement(\n\t 'form',\n\t { className: 'user-form', onSubmit: handleSubmit },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12' },\n\t _react2.default.createElement(\n\t 'h5',\n\t null,\n\t _reactReduxI18n.I18n.t('USER_INFO')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { className: 'col-lg-2 col-sm-3 col-form-label' },\n\t _reactReduxI18n.I18n.t('EMAIL_ADDRESS')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-9' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'email' },\n\t username\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'firstName',\n\t component: _UserFormInput2.default,\n\t type: 'text',\n\t label: _reactReduxI18n.I18n.t('FIRST_NAME')\n\t }),\n\t _react2.default.createElement(_reduxForm.Field, { name: 'lastName',\n\t component: _UserFormInput2.default,\n\t type: 'text',\n\t label: _reactReduxI18n.I18n.t('LAST_NAME')\n\t }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'change-password', className: 'col-lg-2 col-sm-3 col-form-label' },\n\t _reactReduxI18n.I18n.t('PASSWORD')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-9' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button',\n\t name: 'change-password',\n\t className: 'change-password btn btn-link',\n\t onClick: onOpenModal },\n\t _reactReduxI18n.I18n.t('CHANGE_PASSWORD')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'label',\n\t { htmlFor: 'status', className: 'col-lg-2 col-sm-3 col-form-label' },\n\t _reactReduxI18n.I18n.t('STATUS')\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-10 col-sm-9' },\n\t _ref2,\n\t _react2.default.createElement(\n\t 'label',\n\t { className: 'lbl-active' },\n\t status ? _reactReduxI18n.I18n.t('ACTIVE') : _reactReduxI18n.I18n.t('INACTIVE')\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(_UserPermissionTable2.default, { permissionTable: permissionTable, onTogglePermission: onTogglePermission, supportsCareSheet: supportsCareSheet }),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row no-gutters bottom-buttons' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-sm-12 text-right' },\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'button', className: 'btn btn-secondary', disabled: submitting, onClick: onCancel },\n\t _reactReduxI18n.I18n.t('CANCEL')\n\t ),\n\t _react2.default.createElement(\n\t 'button',\n\t { type: 'submit', className: 'btn btn-primary', disabled: submitting },\n\t _reactReduxI18n.I18n.t('SAVE')\n\t )\n\t )\n\t )\n\t )\n\t )\n\t ),\n\t _react2.default.createElement(_ChangePasswordModal2.default, { isOpen: modalOpen,\n\t onAccept: onPasswordAccept,\n\t onClose: onCloseModal,\n\t newPassword: newPassword,\n\t confirmPassword: confirmPassword,\n\t passwordError: passwordError,\n\t onPasswordChange: onPasswordChange,\n\t onConfirmPasswordChange: onConfirmPasswordChange })\n\t );\n\t};\n\t\n\tEditUserForm.defaultProps = {\n\t username: ''\n\t};\n\t\n\texports.default = (0, _reduxForm.reduxForm)()(EditUserForm);\n\n/***/ },\n/* 632 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(128);\n\t\n\tvar _selectors = __webpack_require__(129);\n\t\n\tvar _EditUserForm = __webpack_require__(631);\n\t\n\tvar _EditUserForm2 = _interopRequireDefault(_EditUserForm);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _customer$selectors = _customer2.default.selectors,\n\t isMasterUser = _customer$selectors.isMasterUser,\n\t isCareSheetsSupported = _customer$selectors.isCareSheetsSupported;\n\t\n\t\n\tvar formName = 'editUserForm';\n\tvar formSelector = (0, _reduxForm.formValueSelector)(formName);\n\t\n\tvar EditUserPage = function (_React$Component) {\n\t _inherits(EditUserPage, _React$Component);\n\t\n\t function EditUserPage(props) {\n\t _classCallCheck(this, EditUserPage);\n\t\n\t var _this = _possibleConstructorReturn(this, (EditUserPage.__proto__ || Object.getPrototypeOf(EditUserPage)).call(this, props));\n\t\n\t _this.handleFormSubmit = function (values) {\n\t return new Promise(function (resolve, reject) {\n\t _this.props.actions.saveUser(_this.props.selectedUser.userName, values, _this.props.permissionTable).then(function () {\n\t resolve();\n\t }).catch(function () {\n\t reject();\n\t });\n\t });\n\t };\n\t\n\t _this.handleFormCancel = function () {\n\t _this.props.actions.push('/users');\n\t };\n\t\n\t _this.handleFormValidation = function (values) {\n\t var errors = {};\n\t\n\t if (!values.firstName) {\n\t errors.firstName = _reactReduxI18n.I18n.t('PLEASE_ENTER_FIRST_NAME');\n\t }\n\t\n\t if (!values.lastName) {\n\t errors.lastName = _reactReduxI18n.I18n.t('PLEASE_ENTER_LAST_NAME');\n\t }\n\t\n\t return errors;\n\t };\n\t\n\t _this.handlePasswordOpen = function () {\n\t _this.setState({ modalOpen: true });\n\t };\n\t\n\t _this.handlePasswordClose = function () {\n\t _this.setState({ modalOpen: false });\n\t _this.setState({ newPassword: '' });\n\t _this.setState({ confirmPassword: '' });\n\t _this.setState({ passwordError: '' });\n\t };\n\t\n\t _this.handlePasswordAccept = function () {\n\t if (_this.state.newPassword.length < 8) {\n\t var errorMsg = _reactReduxI18n.I18n.t('PASSWORD_CHARACTERS');\n\t _this.setState({ passwordError: errorMsg });\n\t } else if (_this.state.newPassword !== _this.state.confirmPassword) {\n\t var _errorMsg = _reactReduxI18n.I18n.t('PASSWORDS_DO_NOT_MATCH');\n\t _this.setState({ passwordError: _errorMsg });\n\t } else {\n\t _this.props.actions.savePasswordChange(_this.props.selectedUser.userName, _this.state.newPassword);\n\t _this.handlePasswordClose();\n\t }\n\t };\n\t\n\t _this.handlePasswordChange = function (password) {\n\t _this.setState({ newPassword: password });\n\t if (password.length < 8) {\n\t var errorMsg = _reactReduxI18n.I18n.t('PASSWORD_CHARACTERS');\n\t _this.setState({ passwordError: errorMsg });\n\t } else if (password !== _this.state.confirmPassword) {\n\t var _errorMsg2 = _reactReduxI18n.I18n.t('PASSWORDS_DO_NOT_MATCH');\n\t _this.setState({ passwordError: _errorMsg2 });\n\t } else {\n\t _this.setState({ passwordError: '' });\n\t }\n\t };\n\t\n\t _this.handleConfirmPasswordChange = function (password) {\n\t _this.setState({ confirmPassword: password });\n\t if (_this.state.newPassword.length < 8) {\n\t var errorMsg = _reactReduxI18n.I18n.t('PASSWORD_CHARACTERS');\n\t _this.setState({ passwordError: errorMsg });\n\t } else if (password !== _this.state.newPassword) {\n\t var _errorMsg3 = _reactReduxI18n.I18n.t('PASSWORDS_DO_NOT_MATCH');\n\t _this.setState({ passwordError: _errorMsg3 });\n\t } else {\n\t _this.setState({ passwordError: '' });\n\t }\n\t };\n\t\n\t _this.state = {\n\t modalOpen: false,\n\t newPassword: '',\n\t confirmPassword: '',\n\t passwordError: ''\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(EditUserPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t if (!this.props.isMasterUser) {\n\t this.props.actions.push('/labels');\n\t }\n\t\n\t if (Object.keys(this.props.selectedUser).length === 0) {\n\t this.props.actions.push('/users');\n\t }\n\t }\n\t }, {\n\t key: 'componentWillUnmount',\n\t value: function componentWillUnmount() {\n\t this.props.actions.deselectUser();\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t actions = _props.actions,\n\t permissionTable = _props.permissionTable,\n\t selectedUser = _props.selectedUser,\n\t status = _props.status,\n\t supportsCareSheets = _props.supportsCareSheets;\n\t\n\t return _react2.default.createElement(_EditUserForm2.default, { form: formName,\n\t initialValues: { firstName: selectedUser.firstName,\n\t lastName: selectedUser.lastName,\n\t status: selectedUser.isActive },\n\t onCancel: this.handleFormCancel,\n\t onTogglePermission: actions.toggleUserPermission,\n\t onSubmit: this.handleFormSubmit,\n\t permissionTable: permissionTable,\n\t status: status,\n\t subscriptions: selectedUser.subscriptions,\n\t username: selectedUser.userName,\n\t validate: this.handleFormValidation,\n\t modalOpen: this.state.modalOpen,\n\t onOpenModal: this.handlePasswordOpen,\n\t onCloseModal: this.handlePasswordClose,\n\t onPasswordAccept: this.handlePasswordAccept,\n\t newPassword: this.state.newPassword,\n\t confirmPassword: this.state.confirmPassword,\n\t passwordError: this.state.passwordError,\n\t onPasswordChange: this.handlePasswordChange,\n\t onConfirmPasswordChange: this.handleConfirmPasswordChange,\n\t supportsCareSheet: supportsCareSheets\n\t\n\t });\n\t }\n\t }]);\n\t\n\t return EditUserPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t isMasterUser: isMasterUser(state),\n\t permissionTable: (0, _selectors.getSelectedPermissions)(state),\n\t selectedUser: (0, _selectors.getSelectedUser)(state),\n\t status: formSelector(state, 'status'),\n\t supportsCareSheets: isCareSheetsSupported(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ deselectUser: _actions.deselectUser, push: _reactRouterRedux.push, saveUser: _actions.saveUser, toggleUserPermission: _actions.toggleUserPermission, savePasswordChange: _actions.savePasswordChange }, dispatch)\n\t };\n\t}\n\t\n\tEditUserPage.defaultProps = {\n\t status: false\n\t};\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(EditUserPage);\n\n/***/ },\n/* 633 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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 _ref2 = _react2.default.createElement('i', { className: 'fa fa-check fa-lg' });\n\t\n\tvar _ref3 = _react2.default.createElement('i', { className: 'fa fa-check fa-lg' });\n\t\n\tvar _ref4 = _react2.default.createElement('i', { className: 'fa fa-check fa-lg' });\n\t\n\tvar _ref5 = _react2.default.createElement('i', { className: 'fa fa-check fa-lg' });\n\t\n\tvar _ref6 = _react2.default.createElement('i', { className: 'fa fa-check fa-lg' });\n\t\n\tvar UserPermissionRow = function UserPermissionRow(_ref) {\n\t var onTogglePermission = _ref.onTogglePermission,\n\t subscription = _ref.subscription,\n\t supportsCareSheet = _ref.supportsCareSheet;\n\t var _subscription$permiss = subscription.permissions,\n\t accessCareSheets = _subscription$permiss.accessCareSheets,\n\t accessLabels = _subscription$permiss.accessLabels,\n\t manageArticles = _subscription$permiss.manageArticles,\n\t manageLogo = _subscription$permiss.manageLogo,\n\t manageCareSheetAds = _subscription$permiss.manageCareSheetAds;\n\t\n\t return _react2.default.createElement(\n\t 'tr',\n\t { key: subscription.id },\n\t _react2.default.createElement(\n\t 'td',\n\t null,\n\t subscription.name\n\t ),\n\t supportsCareSheet && _react2.default.createElement(\n\t 'td',\n\t { className: accessCareSheets ? '' : 'empty',\n\t onClick: function onClick() {\n\t onTogglePermission(subscription.id, permissions.ACCESS_CARE_SHEETS);\n\t } },\n\t accessCareSheets && _ref2\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: accessLabels ? '' : 'empty',\n\t onClick: function onClick() {\n\t onTogglePermission(subscription.id, permissions.ACCESS_LABELS);\n\t } },\n\t accessLabels && _ref3\n\t ),\n\t supportsCareSheet && _react2.default.createElement(\n\t 'td',\n\t { className: manageCareSheetAds ? '' : 'empty',\n\t onClick: function onClick() {\n\t onTogglePermission(subscription.id, permissions.MANAGE_CARE_SHEET_ADS);\n\t } },\n\t manageCareSheetAds && _ref4\n\t ),\n\t supportsCareSheet && _react2.default.createElement(\n\t 'td',\n\t { className: manageLogo ? '' : 'empty',\n\t onClick: function onClick() {\n\t onTogglePermission(subscription.id, permissions.MANAGE_LOGO);\n\t } },\n\t manageLogo && _ref5\n\t ),\n\t _react2.default.createElement(\n\t 'td',\n\t { className: manageArticles ? '' : 'empty',\n\t onClick: function onClick() {\n\t onTogglePermission(subscription.id, permissions.MANAGE_ARTICLES);\n\t } },\n\t manageArticles && _ref6\n\t )\n\t );\n\t};\n\t\n\texports.default = UserPermissionRow;\n\n/***/ },\n/* 634 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _UserTableRow = __webpack_require__(635);\n\t\n\tvar _UserTableRow2 = _interopRequireDefault(_UserTableRow);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar _ref2 = _react2.default.createElement('th', null);\n\t\n\tvar UserTable = function UserTable(_ref) {\n\t var userList = _ref.userList,\n\t onSelected = _ref.onSelected;\n\t\n\t var users = userList.map(function (user) {\n\t return _react2.default.createElement(_UserTableRow2.default, { key: user.userName, user: user, onSelected: onSelected });\n\t });\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'table',\n\t { className: 'table table-hover users-table' },\n\t _react2.default.createElement(\n\t 'thead',\n\t null,\n\t _react2.default.createElement(\n\t 'tr',\n\t null,\n\t _react2.default.createElement(\n\t 'th',\n\t null,\n\t _reactReduxI18n.I18n.t('NAME')\n\t ),\n\t _react2.default.createElement(\n\t 'th',\n\t null,\n\t _reactReduxI18n.I18n.t('STATUS')\n\t ),\n\t _ref2\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'tbody',\n\t null,\n\t users\n\t )\n\t )\n\t );\n\t};\n\t\n\texports.default = UserTable;\n\n/***/ },\n/* 635 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar UserTableRow = function UserTableRow(_ref) {\n\t\tvar onSelected = _ref.onSelected,\n\t\t user = _ref.user;\n\t\n\t\treturn _react2.default.createElement(\n\t\t\t'tr',\n\t\t\t{ onClick: function onClick() {\n\t\t\t\t\tonSelected(user);\n\t\t\t\t} },\n\t\t\t_react2.default.createElement(\n\t\t\t\t'td',\n\t\t\t\tnull,\n\t\t\t\tuser.firstName + ' ' + user.lastName\n\t\t\t),\n\t\t\t_react2.default.createElement(\n\t\t\t\t'td',\n\t\t\t\tnull,\n\t\t\t\tuser.isActive ? _reactReduxI18n.I18n.t('ACTIVE') : _reactReduxI18n.I18n.t('INACTIVE')\n\t\t\t),\n\t\t\t_react2.default.createElement(\n\t\t\t\t'td',\n\t\t\t\tnull,\n\t\t\t\t_react2.default.createElement(\n\t\t\t\t\t_reactRouter.Link,\n\t\t\t\t\t{ to: '/users/edit' },\n\t\t\t\t\t_reactReduxI18n.I18n.t('EDIT')\n\t\t\t\t)\n\t\t\t)\n\t\t);\n\t};\n\t\n\texports.default = UserTableRow;\n\n/***/ },\n/* 636 */\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 _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRedux = __webpack_require__(8);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _actions = __webpack_require__(128);\n\t\n\tvar _selectors = __webpack_require__(129);\n\t\n\tvar _UserTable = __webpack_require__(634);\n\t\n\tvar _UserTable2 = _interopRequireDefault(_UserTable);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar isMasterUser = _customer2.default.selectors.isMasterUser;\n\t\n\tvar _ref2 = _react2.default.createElement('div', { className: 'loading' });\n\t\n\tvar UsersPage = function (_React$Component) {\n\t _inherits(UsersPage, _React$Component);\n\t\n\t function UsersPage() {\n\t var _ref;\n\t\n\t var _temp, _this, _ret;\n\t\n\t _classCallCheck(this, UsersPage);\n\t\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 return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = UsersPage.__proto__ || Object.getPrototypeOf(UsersPage)).call.apply(_ref, [this].concat(args))), _this), _this.handleUserSelected = function (user) {\n\t _this.props.actions.selectUser(user);\n\t _this.props.actions.push('/users/edit');\n\t }, _temp), _possibleConstructorReturn(_this, _ret);\n\t }\n\t\n\t _createClass(UsersPage, [{\n\t key: 'componentWillMount',\n\t value: function componentWillMount() {\n\t if (!this.props.isMasterUser) {\n\t this.props.actions.push('/labels');\n\t }\n\t\n\t if (!this.props.userListValid) {\n\t this.props.actions.getAllUsers();\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props,\n\t userListValid = _props.userListValid,\n\t userList = _props.userList;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'container-fluid main', id: 'main' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'col-lg-12' },\n\t _react2.default.createElement(\n\t 'h1',\n\t { className: 'float-left' },\n\t _reactReduxI18n.I18n.t('USERS')\n\t ),\n\t _react2.default.createElement(\n\t _reactRouter.Link,\n\t { to: '/users/create', className: 'btn btn-primary float-right create' },\n\t _reactReduxI18n.I18n.t('CREATE_USER')\n\t )\n\t ),\n\t !userListValid && _ref2\n\t ),\n\t userListValid && _react2.default.createElement(\n\t 'div',\n\t { className: 'row' },\n\t _react2.default.createElement(_UserTable2.default, { userList: userList, onSelected: this.handleUserSelected })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return UsersPage;\n\t}(_react2.default.Component);\n\t\n\tfunction mapStateToProps(state) {\n\t return {\n\t isMasterUser: isMasterUser(state),\n\t userList: (0, _selectors.getUsers)(state),\n\t userListValid: (0, _selectors.areUsersValid)(state)\n\t };\n\t}\n\t\n\tfunction mapDispatchToProps(dispatch) {\n\t return {\n\t actions: (0, _redux.bindActionCreators)({ getAllUsers: _actions.getAllUsers, push: _reactRouterRedux.push, selectUser: _actions.selectUser }, dispatch)\n\t };\n\t}\n\t\n\texports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(UsersPage);\n\n/***/ },\n/* 637 */\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.UsersPage = exports.EditUserPage = exports.CreateUserPage = undefined;\n\t\n\tvar _CreateUserPage = __webpack_require__(630);\n\t\n\tvar _CreateUserPage2 = _interopRequireDefault(_CreateUserPage);\n\t\n\tvar _EditUserPage = __webpack_require__(632);\n\t\n\tvar _EditUserPage2 = _interopRequireDefault(_EditUserPage);\n\t\n\tvar _UsersPage = __webpack_require__(636);\n\t\n\tvar _UsersPage2 = _interopRequireDefault(_UsersPage);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.CreateUserPage = _CreateUserPage2.default;\n\texports.EditUserPage = _EditUserPage2.default;\n\texports.UsersPage = _UsersPage2.default;\n\n/***/ },\n/* 638 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\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 = reducer;\n\t\n\tvar _actionTypes = __webpack_require__(282);\n\t\n\tvar types = _interopRequireWildcard(_actionTypes);\n\t\n\tvar _userPermissions = __webpack_require__(29);\n\t\n\tvar permissions = _interopRequireWildcard(_userPermissions);\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\tvar initialSelected = {\n\t\tuser: {},\n\t\tpermissions: []\n\t};\n\t\n\tvar initialState = {\n\t\tlist: [],\n\t\tvalid: false,\n\t\tselected: initialSelected\n\t};\n\t\n\tfunction reducer() {\n\t\tvar state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;\n\t\tvar action = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t\n\t\tswitch (action.type) {\n\t\t\tcase types.ALL_USERS_RECEIVED:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tlist: action.payload.users,\n\t\t\t\t\t\tvalid: true\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.SELECT_USER:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tselected: {\n\t\t\t\t\t\t\tuser: action.payload.selectedUser,\n\t\t\t\t\t\t\tpermissions: action.payload.selectedUser.subscriptions\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.DESELECT_USER:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tselected: initialSelected\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.TOGGLE_USER_PERMISSION:\n\t\t\t\t{\n\t\t\t\t\t// We use JSON.parse to get a deep copy, as with redux we can't mutate the state directly.\n\t\t\t\t\tvar subscriptions = JSON.parse(JSON.stringify(state.selected.permissions));\n\t\t\t\t\tvar subscription = subscriptions.find(function (subscription) {\n\t\t\t\t\t\treturn subscription.id === action.payload.subscriptionId;\n\t\t\t\t\t});\n\t\n\t\t\t\t\tswitch (action.payload.permissionType) {\n\t\t\t\t\t\tcase permissions.ACCESS_CARE_SHEETS:\n\t\t\t\t\t\t\tsubscription.permissions.accessCareSheets = !subscription.permissions.accessCareSheets;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase permissions.ACCESS_LABELS:\n\t\t\t\t\t\t\tsubscription.permissions.accessLabels = !subscription.permissions.accessLabels;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase permissions.MANAGE_ARTICLES:\n\t\t\t\t\t\t\tsubscription.permissions.manageArticles = !subscription.permissions.manageArticles;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase permissions.MANAGE_LOGO:\n\t\t\t\t\t\t\tsubscription.permissions.manageLogo = !subscription.permissions.manageLogo;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase permissions.MANAGE_CARE_SHEET_ADS:\n\t\t\t\t\t\t\tsubscription.permissions.manageCareSheetAds = !subscription.permissions.manageCareSheetAds;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tselected: _extends({}, state.selected, {\n\t\t\t\t\t\t\tpermissions: subscriptions\n\t\t\t\t\t\t})\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tcase types.INITIALIZE_PERMISSION_TABLE:\n\t\t\t\t{\n\t\t\t\t\treturn _extends({}, state, {\n\t\t\t\t\t\tselected: _extends({}, state.selected, {\n\t\t\t\t\t\t\tpermissions: action.payload.subscriptions\n\t\t\t\t\t\t})\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\treturn state;\n\t\t}\n\t}\n\n/***/ },\n/* 639 */\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 _combineReducers;\n\t\n\tvar _redux = __webpack_require__(12);\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reactReduxI18n = __webpack_require__(4);\n\t\n\tvar _reduxForm = __webpack_require__(26);\n\t\n\tvar _actionTypes = __webpack_require__(264);\n\t\n\tvar _caresheets = __webpack_require__(263);\n\t\n\tvar _caresheets2 = _interopRequireDefault(_caresheets);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _labels = __webpack_require__(273);\n\t\n\tvar _labels2 = _interopRequireDefault(_labels);\n\t\n\tvar _navbar = __webpack_require__(279);\n\t\n\tvar _navbar2 = _interopRequireDefault(_navbar);\n\t\n\tvar _search = __webpack_require__(174);\n\t\n\tvar _search2 = _interopRequireDefault(_search);\n\t\n\tvar _users = __webpack_require__(286);\n\t\n\tvar _users2 = _interopRequireDefault(_users);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\t\n\tvar appReducer = (0, _redux.combineReducers)((_combineReducers = {}, _defineProperty(_combineReducers, _caresheets2.default.constants.NAME, _caresheets2.default.reducer), _defineProperty(_combineReducers, _customer2.default.constants.NAME, _customer2.default.reducer), _defineProperty(_combineReducers, _labels2.default.constants.NAME, _labels2.default.reducer), _defineProperty(_combineReducers, _navbar2.default.constants.NAME, _navbar2.default.reducer), _defineProperty(_combineReducers, _search2.default.constants.NAME, _search2.default.reducer), _defineProperty(_combineReducers, _users2.default.constants.NAME, _users2.default.reducer), _defineProperty(_combineReducers, 'routing', _reactRouterRedux.routerReducer), _defineProperty(_combineReducers, 'i18n', _reactReduxI18n.i18nReducer), _defineProperty(_combineReducers, 'form', _reduxForm.reducer), _combineReducers));\n\t\n\tvar rootReducer = function rootReducer(state, action) {\n\t if (action.type === _actionTypes.CLEAR_APPLICATION_STATE) {\n\t var _state = state,\n\t routing = _state.routing,\n\t i18n = _state.i18n,\n\t form = _state.form;\n\t\n\t state = { routing: routing, i18n: i18n, form: form };\n\t }\n\t return appReducer(state, action);\n\t};\n\t\n\texports.default = rootReducer;\n\n/***/ },\n/* 640 */\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 _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _reactRouter = __webpack_require__(28);\n\t\n\tvar _authHelpers = __webpack_require__(644);\n\t\n\tvar _app = __webpack_require__(561);\n\t\n\tvar _app2 = _interopRequireDefault(_app);\n\t\n\tvar _caresheets = __webpack_require__(263);\n\t\n\tvar _caresheets2 = _interopRequireDefault(_caresheets);\n\t\n\tvar _customer = __webpack_require__(14);\n\t\n\tvar _customer2 = _interopRequireDefault(_customer);\n\t\n\tvar _labels = __webpack_require__(273);\n\t\n\tvar _labels2 = _interopRequireDefault(_labels);\n\t\n\tvar _users = __webpack_require__(286);\n\t\n\tvar _users2 = _interopRequireDefault(_users);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = _react2.default.createElement(\n\t _reactRouter.Route,\n\t { component: _app2.default.components.App },\n\t _react2.default.createElement(_reactRouter.Redirect, { from: '/', to: '/labels' }),\n\t _react2.default.createElement(\n\t _reactRouter.Route,\n\t { component: (0, _authHelpers.UserIsAuthenticated)(_app2.default.components.NavLayout) },\n\t _react2.default.createElement(_reactRouter.Route, { path: '/articles', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.ArticlesPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/ads', component: (0, _authHelpers.UserIsAuthenticated)(_caresheets2.default.components.AdsPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/caresheets', component: (0, _authHelpers.UserIsAuthenticated)(_caresheets2.default.components.CareSheetsPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/store', component: (0, _authHelpers.UserIsAuthenticated)(_caresheets2.default.components.StoreInfoPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/labels', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.LabelsPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/no_access', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.NoAccessPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/users', component: (0, _authHelpers.UserIsAuthenticated)(_users2.default.components.UsersPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/users/create', component: (0, _authHelpers.UserIsAuthenticated)(_users2.default.components.CreateUserPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/users/edit', component: (0, _authHelpers.UserIsAuthenticated)(_users2.default.components.EditUserPage) })\n\t ),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/pet_search', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.PetSearchPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/create_label', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.CreateLabelPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/edit_label', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.EditLabelPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/custom_label', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.CustomLabelPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/customize_label', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.CustomizeLabelPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/advanced_settings_label', component: (0, _authHelpers.UserIsAuthenticated)(_labels2.default.components.AdvancedSettingsPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/login', component: (0, _authHelpers.UserIsNotAuthenticated)(_customer2.default.components.LoginPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '/forgot', component: (0, _authHelpers.UserIsNotAuthenticated)(_customer2.default.components.ForgotPasswordPage) }),\n\t _react2.default.createElement(_reactRouter.Route, { path: '*', component: (0, _authHelpers.UserIsAuthenticated)(_app2.default.components.NotFoundPage) })\n\t);\n\n/***/ },\n/* 641 */\n/***/ function(module, exports) {\n\n\t\"use strict\";\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\tvar locale = exports.locale = \"de-DE\";\n\t\n\tvar tokens = exports.tokens = {\n\t\tEMAIL_ADDRESS: \"Email Adresse\",\n\t\tPASSWORD: \"Passwort\",\n\t\tREMEMBER_ME: \"Angemeldet bleiben\",\n\t\tFORGOT_PASSWORD: \"Passwort vergessen?\",\n\t\tLOG_IN: \"Anmelden\",\n\t\tNO_ACCOUNT: \"Neu bei Petdata? \",\n\t\tSIGN_UP: \"Bestellen\",\n\t\tOR: \" oder \",\n\t\tVIEW_DEMO: \"Demo starten\",\n\t\tINVALID_CREDENTIALS: \"Die eingegebenen Daten sind nicht korrekt.\",\n\t\tPLEASE_REENTER: \"Bitte versuchen Sie es erneut.\",\n\t\n\t\tLABELS: \"Etiketten\",\n\t\tCARE_SHEETS: \"Tierinformationsblätter\",\n\t\tADVERTISING_SPACE: \"Werbefläche\",\n\t\tSTORE_INFO_LOGO: \"Adresse und Logo\",\n\t\tARTICLE_MANAGEMENT: \"Artikelverwaltung\",\n\t\tUSERS: \"Benutzer\",\n\t\tLOG_OUT: \"Abmelden\",\n\t\tCHANGE_STORE: \"Standort/Filiale\",\n\t\n\t\tPET_SEARCH_PLACEHOLDER: \"Tiername oder PLU-Code, Beispiel: Nymphensittich bzw. Nymphicus hollandicus\",\n\t\n\t\tCREATE_USER: \"Benutzer erstellen\",\n\t\tNAME: \"Name\",\n\t\tSTATUS: \"Status\",\n\t\tACTIVE: \"Aktiv\",\n\t\tINACTIVE: \"Nicht aktiv\",\n\t\n\t\tUSER_INFO: \"Benutzerinfo\",\n\t\tFIRST_NAME: \"Vorname\",\n\t\tLAST_NAME: \"Nachname\",\n\t\tCONFIRM_PASSWORD: \"Bitte das Passwort wiederholen\",\n\t\tCANCEL: \"Abbrechen\",\n\t\n\t\tPERMISSIONS: \"Berechtigungen\",\n\t\tLOCATION: \"Standort\",\n\t\tPRINT_CARE_SHEETS: \"Tierinformationsblätter\",\n\t\tPRINT_LABELS: \"Etiketten\",\n\t\tEDIT_AD_SPACE: \"Werbefläche\",\n\t\tEDIT_STORE_INFO_LOGO: \"Adresse und Logo\",\n\t\n\t\tEDIT_USER: \"Benutzer bearbeiten\",\n\t\tCHANGE_PASSWORD: \"Passwort ändern\",\n\t\tSAVE: \"Speichern\",\n\t\n\t\tADVERTISING_DETAILS: \"Das Bild muss eine Größe von 57 x 128 mm bzw. 673 x 1512 Pixel @ 300 dpi haben. Folgende Formate werden unterstützt: jpg und png. Das Bild kann pro Tiertyp einzeln konfiguriert werden.\",\n\t\tPET_TYPE: \"Tiertyp\",\n\t\tAD_UPLOADED: \"Bild\",\n\t\tUPLOAD: \"Upload\",\n\t\tCLEAR: \"Löschen\",\n\t\n\t\tSTORE_INFO_DETAILS: \"Auf dem Tierinformationsblatt kann das Logo oder die Adresse angezeigt werden.\",\n\t\tSTORE_INFO: \"Adresse\",\n\t\tLINE1: \"1. Zeile\",\n\t\tLINE2: \"2. Zeile\",\n\t\tLINE3: \"3. Zeile\",\n\t\tLINE4: \"4. Zeile\",\n\t\tUSE_LOGO_INSTEAD: \"Ich möchte mein Logo verwenden\",\n\t\tUPLOAD_LOGO: \"Upload Logo\",\n\t\tSTORE_LOGO_DETAILS: \"Das Firmenlogo muss eine Größe von 57 x 45 mm bzw. 673 x 531 Pixel @ 300 dpi haben.\",\n\t\tSTORE_LOGO_FORMATS: \"Es werden nur JPG und PNG Formate unterstützt.\",\n\t\n\t\tPREVIEW_CARE_SHEET: \"Voransicht\",\n\t\n\t\tSEARCH_PETS: \"Suche\",\n\t\tSEARCH_FOR_A_PET: \"Suche nach einem Tier\",\n\t\tNO_RESULTS_TRY_AGAIN: \"Es wurden keine Treffer gefunden. Versuchen Sie es nochmal.\",\n\t\tDOWNLOAD: \"Download\",\n\t\n\t\tSAVED_SUCCESSFULLY: \"Die Änderung wurde übernommen\",\n\t\n\t\tSELECT: \"Auswählen\",\n\t\n\t\tCUSTOMIZE_COLORS_LOGO: \"Design ändern\",\n\t\tPAGE_SETUP: \"Seite einrichten\",\n\t\tGENERATE: \"Erstellen\",\n\t\tPLU: \"PLU-Code\",\n\t\tENABLE_PLU: \"PLU-Code anzeigen\",\n\t\tPLU_CONFIRMATION: \"Diese Änderung löscht die bereits ausgewählten Etiketten. Möchten Sie fortfahren?\",\n\t\tYES: \"Ja\",\n\t\tNO: \"Nein\",\n\t\tCREATE_LABEL: \"Etikett erstellen\",\n\t\tCREATE_CUSTOM_LABEL: \"Leeretikett erstellen\",\n\t\tOR_CREATE_CUSTOM_LABEL: \"oder Leeretikett erstellen\",\n\t\tRESULTS: \"Ergebnisse\",\n\t\tBACK_SEARCH_RESULTS: \"Zurück zu den Suchergebnissen\",\n\t\tBACK_TO_LABELS_SEARCH_RESULTS: \"Zurück zu Etiketten\",\n\t\tENTER_PRICE_SEARCH_RESULTS: \"Preis\",\n\t\tENTER_PRICE: \"Preis eingeben\",\n\t\tENTER_PLU: \"PLU eingeben\",\n\t\tEDIT_LABEL: \"Etikett editieren\",\n\t\tSAVE_LABEL: \"Etikett speichern\",\n\t\tENTER_BARCODE: \"EAN Barcode eingeben\",\n\t\tENTER_NAME: \"Name eingeben\",\n\t\tENTER_LATIN_NAME: \"Lat. Name eingeben\",\n\t\tCUSTOM_LABEL: \"Leeretikett\",\n\t\tLABEL_SIZE: \"Etikettenformate\",\n\t\n\t\tDUPLICATE_ROW: \"Tier duplizieren\",\n\t\tCLEAR_ROW: \"Tier löschen\",\n\t\tARTICLE_INSTRUCTIONS: \"Hier können Sie Preis, PLU- und EAN Code sowie einen Integrationsnamen hinterlegen, die dann am Etikett angezeigt werden (Erweiterte Einstellungen). Der Integrationsname ist hilfreich, wenn ein anderer Name als der Standardname gewünscht wird oder von demselben Tier mehrere Einträge vorhanden sind. Sie können die Werte in der Tabelle direkt eingeben oder als Excel Datei herunterladen (Datei Download), bearbeiten und mit den Änderungen wieder hochladen (Datei Upload).\",\n\t\tUPLOAD_FILE: \"Datei Upload\",\n\t\tEXPORT_TO_EXCEL: \"Datei Download\",\n\t\n\t\tCUSTOMIZE_LABEL: \"Etiketten-Design ändern\",\n\t\tMAIN: \"Hauptfarben\",\n\t\tBORDER: \"Rahmen\",\n\t\tIMAGE_BORDER: \"Bildrand\",\n\t\tBACKGROUND: \"Hintergrund\",\n\t\tLABEL: \"Detailinfo\",\n\t\tTEXT: \"Text\",\n\t\tPRICE: \"Preis\",\n\t\tTITLE: \"Überschrift\",\n\t\tDETAIL: \"Detailinfo Title\",\n\t\tBARCODE: \"Barcode\",\n\t\tRESTORE_DEFAULT_COLORS: \"Standard wiederherstellen\",\n\t\tLOGO: \"Logo\",\n\t\tLOGO_FORMAT: \"202 x 118 Pixel @ 300 dpi\",\n\t\tRIGHTCOLUMN: \"Rechte Splate\",\n\t\n\t\tPRINTER_ADJUSTMENT: \"Seite anpassen\",\n\t\tADJUSTMENT_INSTRUCTIONS: \"Um Etiketten millimetergenau zu platzieren, kann der Ausdruck vertikal und horizontal justiert werden.
Horizontal:
Soll das Etikett z.B. um 5 mm nach rechts verschoben werden, geben Sie 5 im Feld „Horizontal (mm)“ ein. Bei der Eingabe von -5 wird das Etikett um 5 mm nach links verschoben.
Vertikal:
Wenn das Etikett z.B. um 3 mm nach oben verschoben werden soll, geben Sie 3 im Feld „Vertikal (mm)“ ein. Mit der Eingabe von -3 wird das Etikett um 3 mm nach unten verschoben.
Tipp:
Falls das Etikett nicht der angegebenen Größe entspricht, deaktivieren Sie in den Druckereinstellung den Zoom, der bei einigen Druckern als Standard eingestellt ist.
\",\n\t\tA_VERTICAL: \"Vertikal(mm)\",\n\t\tB_HORIZONTAL: \"Horizontal(mm)\",\n\t\n\t\tCUSTOM_LABEL_PET_LAT_NAME: \"Paracheirodon innesi\",\n\t\tCUSTOM_LABEL_PET_NAME: \"Neonsalmler\",\n\t\tCUSTOM_LABEL_PET_PRICE: \"1,99 €\",\n\t\n\t\tCUSTOM_LABEL_KEY_1: \"Größe\",\n\t\tCUSTOM_LABEL_VALUE_1: \"4 cm\",\n\t\tCUSTOM_LABEL_KEY_2: \"Herkunft\",\n\t\tCUSTOM_LABEL_VALUE_2: \"Süßwasser\",\n\t\tCUSTOM_LABEL_KEY_3: \"Temp.\",\n\t\tCUSTOM_LABEL_VALUE_3: \"21-26 °C\",\n\t\tCUSTOM_LABEL_KEY_4: \"Ernährung\",\n\t\tCUSTOM_LABEL_VALUE_4: \"Carnivor\",\n\t\tCUSTOM_LABEL_KEY_5: \"Haltung\",\n\t\tCUSTOM_LABEL_VALUE_5: \"Gruppe\",\n\t\tCUSTOM_LABEL_KEY_6: \"Aquarium\",\n\t\tCUSTOM_LABEL_VALUE_6: \"Ab 60 cm / 54 l\",\n\t\n\t\tCUSTOM_LABEL_KEY_7: \"Familie\",\n\t\tCUSTOM_LABEL_VALUE_7: \"Characidae\",\n\t\tCUSTOM_LABEL_KEY_8: \"Verbreitung\",\n\t\tCUSTOM_LABEL_VALUE_8: \"Südamerika\",\n\t\tCUSTOM_LABEL_KEY_9: \"Lebensraum\",\n\t\tCUSTOM_LABEL_VALUE_9: \"Süßwasser\",\n\t\tCUSTOM_LABEL_KEY_10: \"Temperatur\",\n\t\tCUSTOM_LABEL_VALUE_10: \"21-26 °C\",\n\t\tCUSTOM_LABEL_KEY_11: \"pH-Wert\",\n\t\tCUSTOM_LABEL_VALUE_11: \"5,5-7,5\",\n\t\tCUSTOM_LABEL_KEY_12: \"Härte\",\n\t\tCUSTOM_LABEL_VALUE_12: \"< 15 °dH\",\n\t\tCUSTOM_LABEL_KEY_13: \"Lebenserwartung\",\n\t\tCUSTOM_LABEL_VALUE_13: \"5 Jahre\",\n\t\tCUSTOM_LABEL_KEY_14: \"Verhalten\",\n\t\tCUSTOM_LABEL_VALUE_14: \"Friedlich\",\n\t\tCUSTOM_LABEL_KEY_15: \"Verhalten\",\n\t\tCUSTOM_LABEL_VALUE_15: \"Friedlich\",\n\t\tCUSTOM_LABEL_KEY_16: \"Fortpflanzung\",\n\t\tCUSTOM_LABEL_VALUE_16: \"Freilaicher\",\n\t\tCUSTOM_LABEL_KEY_17: \"Schwierigkeitsgrad\",\n\t\tCUSTOM_LABEL_VALUE_17: \"Anfänger\",\n\t\tCUSTOM_LABEL_KEY_18: \"Zucht\",\n\t\tCUSTOM_LABEL_VALUE_18: \"Mittelschwer\",\n\t\tCUSTOM_LABEL_KEY_19: \"Artenschutz\",\n\t\tCUSTOM_LABEL_VALUE_19: \"Nein\",\n\t\n\t\tPAGE_NOT_FOUND: \"404 Seite nicht gefunden\",\n\t\tGO_BACK_TO_HOMEPAGE: \"Zurück zur Startseite\",\n\t\n\t\tPLEASE_ENTER_FIRST_NAME: \"Vorname darf nicht leer sein.\",\n\t\tPLEASE_ENTER_LAST_NAME: \"Nachname darf nicht leer sein.\",\n\t\tPLEASE_ENTER_VALID_EMAIL: \"Bitte geben Sie eine gültige E-Mail Adresse an.\",\n\t\tPASSWORD_CHARACTERS: \"Vergeben Sie mind. 8 Zeichen.\",\n\t\tPASSWORDS_DO_NOT_MATCH: \"Passwort stimmt nicht überein.\",\n\t\n\t\tEDIT: \"Editieren\",\n\t\tNEW_PASSWORD: \"Neues Passwort\",\n\t\n\t\tACCESS_WELCOME: \"Willkomen bei Petdata\",\n\t\n\t\tPRINT_CALIBRATION_PAGE: \"Justierungsseite erstellen\",\n\t\n\t\tPREVIEW: \"Voransicht\",\n\t\tCURRENT_PASSWORD: \"Aktuelles Passwort\",\n\t\tSEND_PASSWORD: \"Passwort zurücksetzten\",\n\t\n\t\tRESET_PASSWORD_HEADER: \"Bitte geben Sie Ihre E-Mail Adresse an.\",\n\t\tRESET_PASSWORD_BACK: \"Zurück zum Login\",\n\t\tRESET_PASSWORD_CONFIRMATION: \"Ein neues Passwort wurde an die Ihre E-Mail Adresse versendet.\",\n\t\n\t\tAPPLICATION_ERROR: \"Fehler\",\n\t\tERROR_MESSAGE: \"Ein Anwendungsfehler ist aufgetreten.\",\n\t\n\t\tLABEL_ADDED: \"Etikett erstellt\",\n\t\tLABEL_ADDED_MESSAGE: \"Das Etikett wurde erfolgreich erstellt!\",\n\t\tCONTINUE: \"Weiter\",\n\t\n\t\tADD: \"Erstellen\",\n\t\tMANAGEMENT: \"Abo verwalten\",\n\t\n\t\tDEMO_DE_LOGIN: \"Deutsche Demo\",\n\t\tDEMO_EN_LOGIN: \"English Demo\",\n\t\tDEMO_TEXT: \"Sie können Petdata mit unserer Demoversion ausführlich testen. Alle Funktionen sind verfügbar, ausgenommen Editieren der Etiketten und Benutzerverwaltung.\",\n\t\tDEMO_TITLE: \"Demoversion starten\",\n\t\n\t\tADVANCED_SETTINGS_LINK: \"Erweiterte Einstellungen\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_TITLE: \"Erweiterte Einstellungen\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_DESCRIPTION: \"Hier können Sie bla bla bla\",\n\t\tADVANCED_SETTINGS_LABEL_PLU_TITLE: \"PLU Code\",\n\t\tADVANCED_SETTINGS_LABEL_PLU_DESCRIPTION: \"Petdata Etiketten können auf den Etiketten einen PLU Code anzeigen. Diese Funktion ist standardmäßig aktiviert.\",\n\t\tADVANCED_SETTINGS_LABEL_PLU_FIELD: \"PLU Code verwenden\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_TITLE: \"Etiketten Titel\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_FIELD: \"Reihenfolge\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_DESCRIPTION: \"Auf jedem Etikett stehen zwei Zeilen für den Namen des Tieres zur Verfügung. Die Belegung dieser zwei Zeilen lässt sich konfigurieren.\",\n\t\tADVANCED_SETTINGS_LABEL_METRIC_TITLE: \"Maßeinheiten\",\n\t\tADVANCED_SETTINGS_LABEL_METRIC_DESCRIPTION: \"Tierinformationen stehen in zwei verschiedenen Maßsystemen zur Verfügung. \",\n\t\tADVANCED_SETTINGS_LABEL_METRIC_FIELD: \"Maßeinheit\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_FORMAT_TITLE: \"Seitenformat\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_FORMAT_DESCRIPTION: \"Petdata unterstützt das A4 und Letter Format für die PDF Erstellung.\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_FORMAT_FIELD: \"Format\",\n\t\tADVANCED_SETTINGS_LABEL_PRINTER_CALIBRATION_TITLE: \"Drucker justieren\",\n\t\n\t\tADVANCED_SETTINGS_LABEL_HEADER_N_LAT: \"Zeile 1: Name; Zeile 2: Wissenschaftlicher Name\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_LAT_N: \"Zeile 1: Wissenschaftlicher Name; Zeile 2: Name\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_IN_N_LAT: \"Zeile 1 Integrationsname aus der Artikelverwaltung falls vorhanden, sonst Name; Zeile 2: Wissenschaftlicher Name\",\n\t\n\t\tADVANCED_SETTINGS_LABEL_METRIC_US: \"Angloamerikanisches Maßsystem (pound, inch, )\",\n\t\tADVANCED_SETTINGS_LABEL_METRIC_EU: \"Metrisches Maßsystem (Gramm, Zentimeter, ...)\"\n\t\n\t};\n\n/***/ },\n/* 642 */\n/***/ function(module, exports) {\n\n\t\"use strict\";\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t\tvalue: true\n\t});\n\tvar locale = exports.locale = \"en-US\";\n\t\n\tvar tokens = exports.tokens = {\n\t\tEMAIL_ADDRESS: \"Email Address\",\n\t\tPASSWORD: \"Password\",\n\t\tREMEMBER_ME: \"Remember me\",\n\t\tFORGOT_PASSWORD: \"Forgot Password?\",\n\t\tLOG_IN: \"Log In\",\n\t\tNO_ACCOUNT: \"Don't have a Petdata account? \",\n\t\tSIGN_UP: \"Sign Up\",\n\t\tOR: \" or \",\n\t\tVIEW_DEMO: \"View Demo\",\n\t\tINVALID_CREDENTIALS: \"Invalid email address or password.\",\n\t\tPLEASE_REENTER: \"Please re-enter\",\n\t\n\t\tLABELS: \"Labels\",\n\t\tCARE_SHEETS: \"Care Sheets\",\n\t\tADVERTISING_SPACE: \"Advertising Space\",\n\t\tSTORE_INFO_LOGO: \"Store Info / Logo\",\n\t\tARTICLE_MANAGEMENT: \"Article Management\",\n\t\tUSERS: \"Users\",\n\t\tLOG_OUT: \"Log Out\",\n\t\tCHANGE_STORE: \"Change Store\",\n\t\n\t\tPET_SEARCH_PLACEHOLDER: \"Search for a pet, PLU, or specification. For example: Parrot Africa\",\n\t\n\t\tCREATE_USER: \"Create User\",\n\t\tNAME: \"Name\",\n\t\tSTATUS: \"Status\",\n\t\tACTIVE: \"Active\",\n\t\tINACTIVE: \"Inactive\",\n\t\n\t\tUSER_INFO: \"User Info\",\n\t\tFIRST_NAME: \"First Name\",\n\t\tLAST_NAME: \"Last Name\",\n\t\tCONFIRM_PASSWORD: \"Confirm Password\",\n\t\tCANCEL: \"Cancel\",\n\t\n\t\tPERMISSIONS: \"Permissions\",\n\t\tLOCATION: \"Location\",\n\t\tPRINT_CARE_SHEETS: \"Print Care Sheets\",\n\t\tPRINT_LABELS: \"Print Labels\",\n\t\tEDIT_AD_SPACE: \"Edit Ad Space\",\n\t\tEDIT_STORE_INFO_LOGO: \"Edit Store Info / Logo\",\n\t\n\t\tEDIT_USER: \"Edit User\",\n\t\tCHANGE_PASSWORD: \"Change Password\",\n\t\tSAVE: \"Save\",\n\t\n\t\tADVERTISING_DETAILS: \"Your ad must be 57 x 128 mm or 673 x 1512 px @ 300 dpi. JPG or PNG formats accepted. Your ad will display on the care sheet for each specific pet type.\",\n\t\tPET_TYPE: \"Pet Type\",\n\t\tAD_UPLOADED: \"Ad Uploaded\",\n\t\tUPLOAD: \"Upload\",\n\t\tCLEAR: \"Clear\",\n\t\n\t\tSTORE_INFO_DETAILS: \"Choose whether to use your store information or logo on pet care sheets.\",\n\t\tSTORE_INFO: \"Store Info\",\n\t\tLINE1: \"Line 1\",\n\t\tLINE2: \"Line 2\",\n\t\tLINE3: \"Line 3\",\n\t\tLINE4: \"Line 4\",\n\t\tUSE_LOGO_INSTEAD: \"I want to use my logo instead\",\n\t\tUPLOAD_LOGO: \"Upload Logo\",\n\t\tSTORE_LOGO_DETAILS: \"Your logo must be 57 x 45 mm or 673 x 531 px @ 300 dpi.\",\n\t\tSTORE_LOGO_FORMATS: \"JPG or PNG formats accepted.\",\n\t\n\t\tPREVIEW_CARE_SHEET: \"Preview Care Sheet\",\n\t\n\t\tSEARCH_PETS: \"Search Pets\",\n\t\tSEARCH_FOR_A_PET: \"Search for a pet\",\n\t\tNO_RESULTS_TRY_AGAIN: \"No Results. Please try again.\",\n\t\tDOWNLOAD: \"Download\",\n\t\n\t\tSAVED_SUCCESSFULLY: \"Saved successfully\",\n\t\n\t\tSELECT: \"Select\",\n\t\n\t\tCUSTOMIZE_COLORS_LOGO: \"Customize Colors\",\n\t\tPAGE_SETUP: \"Page Setup\",\n\t\tGENERATE: \"Generate\",\n\t\tPLU: \"PLU\",\n\t\tENABLE_PLU: \"Enable PLU\",\n\t\tPLU_CONFIRMATION: \"Enabling the PLU field will clear the current label sheet. Do you want to continue?\",\n\t\tYES: \"Yes\",\n\t\tNO: \"No\",\n\t\tCREATE_LABEL: \"Create Label\",\n\t\tCREATE_CUSTOM_LABEL: \"Create Custom Label\",\n\t\tOR_CREATE_CUSTOM_LABEL: \"or create a custom label\",\n\t\tRESULTS: \"Results\",\n\t\tBACK_SEARCH_RESULTS: \"Back to search results\",\n\t\tBACK_TO_LABELS_SEARCH_RESULTS: \"Back To Labels\",\n\t\tENTER_PRICE_SEARCH_RESULTS: \"Price\",\n\t\tENTER_PRICE: \"Enter Price\",\n\t\tENTER_PLU: \"Enter PLU\",\n\t\tEDIT_LABEL: \"Edit Label\",\n\t\tSAVE_LABEL: \"Save Label\",\n\t\tENTER_BARCODE: \"Enter EAN Barcode\",\n\t\tENTER_NAME: \"Enter Name\",\n\t\tENTER_LATIN_NAME: \"Enter Latin Name\",\n\t\tCUSTOM_LABEL: \"Custom Label\",\n\t\tLABEL_SIZE: \"Label Size\",\n\t\n\t\tDUPLICATE_ROW: \"Duplicate Row\",\n\t\tCLEAR_ROW: \"Clear Row\",\n\t\tARTICLE_INSTRUCTIONS: \"You can enter the price, PLU and EAN code and an Integrationsname, which are then displayed on the label (Advanced Settings). The Integrationsname is useful if you want a different name than the default name or if there are several entries for the same animal. You can enter the values in the table directly or download as Excel file (File Download), edit and upload with the changes (File Upload).\",\n\t\tUPLOAD_FILE: \"Upload File\",\n\t\tEXPORT_TO_EXCEL: \"Export To Excel\",\n\t\n\t\tCUSTOMIZE_LABEL: \"Customize Label\",\n\t\tMAIN: \"Main\",\n\t\tBORDER: \"Border\",\n\t\tIMAGE_BORDER: \"Image Border\",\n\t\tBACKGROUND: \"Background\",\n\t\tLABEL: \"Labeldetails\",\n\t\tTEXT: \"Text\",\n\t\tPRICE: \"Price\",\n\t\tTITLE: \"Header\",\n\t\tDETAIL: \"Labeldetails Title\",\n\t\tBARCODE: \"Barcode\",\n\t\tRESTORE_DEFAULT_COLORS: \"Restore Default Colors\",\n\t\tLOGO: \"Logo\",\n\t\tLOGO_FORMAT: \"202 x 118 Pixel @ 300 dpi\",\n\t\tRIGHTCOLUMN: \"Right Column\",\n\t\n\t\tPRINTER_ADJUSTMENT: \"Printer Adjustment\",\n\t\tADJUSTMENT_INSTRUCTIONS: \"In order to place labels with millimeter precision, the printout can be adjusted vertically and horizontally.
Horizontal:
If the label is to be used e.g. 5 mm to the right, enter 5 in the Horizontal (mm) box. Entering -5 moves the label 5 mm to the left. P>
Vertical:
If the label is e.g. by 3 mm, enter 3 in the Vertical (mm) field. Enter -3 to move the label down by 3mm. P>
Tip:
If the label does not match the specified size, deactivate the zoom setting in the printer setting, which is the default setting for some printers. p> \",\n\t\tA_VERTICAL: \"A (vertical)\",\n\t\tB_HORIZONTAL: \"B (horizontal)\",\n\t\n\t\tCUSTOM_LABEL_PET_LAT_NAME: \"Paracheirodon innesi\",\n\t\tCUSTOM_LABEL_PET_NAME: \"Neon Tetra\",\n\t\tCUSTOM_LABEL_PET_PRICE: \"1.99 $\",\n\t\n\t\tCUSTOM_LABEL_KEY_1: \"Size\",\n\t\tCUSTOM_LABEL_VALUE_1: \"4 cm\",\n\t\tCUSTOM_LABEL_KEY_2: \"Origin\",\n\t\tCUSTOM_LABEL_VALUE_2: \"South America\",\n\t\tCUSTOM_LABEL_KEY_3: \"Temp.\",\n\t\tCUSTOM_LABEL_VALUE_3: \"21-26 °C\",\n\t\tCUSTOM_LABEL_KEY_4: \"Diet\",\n\t\tCUSTOM_LABEL_VALUE_4: \"Carnivore\",\n\t\tCUSTOM_LABEL_KEY_5: \"Keeping\",\n\t\tCUSTOM_LABEL_VALUE_5: \"Group\",\n\t\tCUSTOM_LABEL_KEY_6: \"Aquarium\",\n\t\tCUSTOM_LABEL_VALUE_6: \"60 cm / 54 l\",\n\t\n\t\tCUSTOM_LABEL_KEY_7: \"Family\",\n\t\tCUSTOM_LABEL_VALUE_7: \"Characidae\",\n\t\tCUSTOM_LABEL_KEY_8: \"Origin\",\n\t\tCUSTOM_LABEL_VALUE_8: \"South America\",\n\t\tCUSTOM_LABEL_KEY_9: \"Habitat\",\n\t\tCUSTOM_LABEL_VALUE_9: \"Tributaries\",\n\t\tCUSTOM_LABEL_KEY_10: \"Temperature\",\n\t\tCUSTOM_LABEL_VALUE_10: \"21-26 °C\",\n\t\tCUSTOM_LABEL_KEY_11: \"pH\",\n\t\tCUSTOM_LABEL_VALUE_11: \"5,5-7,5\",\n\t\tCUSTOM_LABEL_KEY_12: \"Hardness\",\n\t\tCUSTOM_LABEL_VALUE_12: \"5-15 °dH\",\n\t\tCUSTOM_LABEL_KEY_13: \"Life Span\",\n\t\tCUSTOM_LABEL_VALUE_13: \"5 years\",\n\t\tCUSTOM_LABEL_KEY_14: \"Behavior\",\n\t\tCUSTOM_LABEL_VALUE_14: \"Peaceful\",\n\t\tCUSTOM_LABEL_KEY_15: \"Temperament\",\n\t\tCUSTOM_LABEL_VALUE_15: \"\",\n\t\tCUSTOM_LABEL_KEY_16: \"Reporduction\",\n\t\tCUSTOM_LABEL_VALUE_16: \"Egg scatterers\",\n\t\tCUSTOM_LABEL_KEY_17: \"Care Level\",\n\t\tCUSTOM_LABEL_VALUE_17: \"Easy\",\n\t\tCUSTOM_LABEL_KEY_18: \"Breeding\",\n\t\tCUSTOM_LABEL_VALUE_18: \"Moderately difficult\",\n\t\tCUSTOM_LABEL_KEY_19: \"Protection Agrmt.\",\n\t\tCUSTOM_LABEL_VALUE_19: \"No\",\n\t\n\t\tPAGE_NOT_FOUND: \"404 Page Not Found\",\n\t\tGO_BACK_TO_HOMEPAGE: \"Go back to homepage\",\n\t\n\t\tPLEASE_ENTER_FIRST_NAME: \"Please enter a first name.\",\n\t\tPLEASE_ENTER_LAST_NAME: \"Please enter a last name.\",\n\t\tPLEASE_ENTER_VALID_EMAIL: \"Please enter a valid email address\",\n\t\tPASSWORD_CHARACTERS: \"Your password must be between 8-100 characters.\",\n\t\tPASSWORDS_DO_NOT_MATCH: \"Passwords do not match\",\n\t\n\t\tEDIT: \"Edit\",\n\t\tNEW_PASSWORD: \"New Password\",\n\t\n\t\tACCESS_WELCOME: \"Welcome to Petdata\",\n\t\n\t\tPRINT_CALIBRATION_PAGE: \"Print Calibration Page\",\n\t\n\t\tPREVIEW: \"Preview\",\n\t\tCURRENT_PASSWORD: \"Current Password\",\n\t\tSEND_PASSWORD: \"Reset Password\",\n\t\n\t\tRESET_PASSWORD_HEADER: \"Please enter your email address.\",\n\t\tRESET_PASSWORD_BACK: \"Back to Login\",\n\t\tRESET_PASSWORD_CONFIRMATION: \"Your password has been sent to the provided email address.\",\n\t\n\t\tAPPLICATION_ERROR: \"Application Error\",\n\t\tERROR_MESSAGE: \"An application error has occurred. Please contact an administrator if you continue to experience issues.\",\n\t\n\t\tLABEL_ADDED: \"Label Added\",\n\t\tLABEL_ADDED_MESSAGE: \"Successfully added the chosen pet to the label sheet.\",\n\t\tCONTINUE: \"Continue\",\n\t\tADD: \"Add\",\n\t\n\t\tMANAGEMENT: \"Management\",\n\t\n\t\tDEMO_DE_LOGIN: \"Deutsche Demo\",\n\t\tDEMO_EN_LOGIN: \"English Demo\",\n\t\tDEMO_TEXT: \"Our demo lets you explore most of our application. Only user management and detailed label editing features are disabled.\",\n\t\tDEMO_TITLE: \"Start Demo\",\n\t\n\t\tADVANCED_SETTINGS_LINK: \"Advanced Settings\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_TITLE: \"Advanced Settings\",\n\t\n\t\tADVANCED_SETTINGS_LABEL_PLU_TITLE: \"PLU Code\",\n\t\tADVANCED_SETTINGS_LABEL_PLU_DESCRIPTION: \"Petdata Labels support a PLU Code field. This feature can be disabled.\",\n\t\tADVANCED_SETTINGS_LABEL_PLU_FIELD: \"Use PLU Code\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_TITLE: \"Label Title\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_FIELD: \"Order\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_DESCRIPTION: \"Each label has two lines for the name of the animal. The assignment of these two lines can be configured.\",\n\t\tADVANCED_SETTINGS_LABEL_METRIC_TITLE: \"System of measurement\",\n\t\tADVANCED_SETTINGS_LABEL_METRIC_DESCRIPTION: \"Animal information is available in two different measurement systems.\",\n\t\tADVANCED_SETTINGS_LABEL_METRIC_FIELD: \"System of measurement\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_FORMAT_TITLE: \"Page format\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_FORMAT_DESCRIPTION: \"Petdata support A4 and Letter formats for the generated PDFs.\",\n\t\tADVANCED_SETTINGS_LABEL_PAGE_FORMAT_FIELD: \"Format\",\n\t\tADVANCED_SETTINGS_LABEL_PRINTER_CALIBRATION_TITLE: \"Printer Adjustment\",\n\t\n\t\tADVANCED_SETTINGS_LABEL_HEADER_N_LAT: \"Line 1: Common Name; Line2: Scientific Name\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_LAT_N: \"Line 1: Scientific Name; Line 2: Common Name\",\n\t\tADVANCED_SETTINGS_LABEL_HEADER_IN_N_LAT: \"Line 1: Integrationsname from Article Management, if available, otherwise Common Name; Line 2: Scientific Name\",\n\t\n\t\tADVANCED_SETTINGS_LABEL_METRIC_US: \"United States customary units (inch, gallon, degrees Farenheit, pound, …)\",\n\t\tADVANCED_SETTINGS_LABEL_METRIC_EU: \"Metric system (meter, liter, degrees Celsius, kilogramm, …)\"\n\t\n\t};\n\n/***/ },\n/* 643 */\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 _enUS = __webpack_require__(642);\n\t\n\tvar enUS = _interopRequireWildcard(_enUS);\n\t\n\tvar _deDE = __webpack_require__(641);\n\t\n\tvar deDE = _interopRequireWildcard(_deDE);\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\texports.default = { enUS: enUS, deDE: deDE };\n\n/***/ },\n/* 644 */\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.UserIsNotAuthenticated = exports.UserIsAuthenticated = undefined;\n\t\n\tvar _reactRouterRedux = __webpack_require__(20);\n\t\n\tvar _reduxAuthWrapper = __webpack_require__(1136);\n\t\n\tvar UserIsAuthenticated = exports.UserIsAuthenticated = (0, _reduxAuthWrapper.UserAuthWrapper)({\n\t authSelector: function authSelector(state) {\n\t return state.account;\n\t },\n\t authenticatingSelector: function authenticatingSelector(state) {\n\t return state.account.attemptingLogin;\n\t },\n\t redirectAction: _reactRouterRedux.routerActions.replace,\n\t wrapperDisplayName: 'UserIsAuthenticated',\n\t predicate: function predicate(account) {\n\t return account.authenticated === true;\n\t },\n\t failureRedirectPath: function failureRedirectPath(state, ownProps) {\n\t return ownProps.location.query.redirect || '/login';\n\t }\n\t});\n\t\n\tvar UserIsNotAuthenticated = exports.UserIsNotAuthenticated = (0, _reduxAuthWrapper.UserAuthWrapper)({\n\t authSelector: function authSelector(state) {\n\t return state.account;\n\t },\n\t redirectAction: _reactRouterRedux.routerActions.replace,\n\t wrapperDisplayName: 'UserIsNotAuthenticated',\n\t predicate: function predicate(account) {\n\t return account.authenticated === false;\n\t },\n\t failureRedirectPath: function failureRedirectPath(state, ownProps) {\n\t return ownProps.location.query.redirect || '/';\n\t },\n\t allowRedirectBack: false\n\t});\n\n/***/ },\n/* 645 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {\"use strict\";\n\t\n\t__webpack_require__(826);\n\t\n\t__webpack_require__(1186);\n\t\n\t__webpack_require__(646);\n\t\n\tif (global._babelPolyfill) {\n\t throw new Error(\"only one instance of babel-polyfill is allowed\");\n\t}\n\tglobal._babelPolyfill = true;\n\t\n\tvar DEFINE_PROPERTY = \"defineProperty\";\n\tfunction define(O, key, value) {\n\t O[key] || Object[DEFINE_PROPERTY](O, key, {\n\t writable: true,\n\t configurable: true,\n\t value: value\n\t });\n\t}\n\t\n\tdefine(String.prototype, \"padLeft\", \"\".padStart);\n\tdefine(String.prototype, \"padRight\", \"\".padEnd);\n\t\n\t\"pop,reverse,shift,keys,values,entries,indexOf,every,some,forEach,map,filter,find,findIndex,includes,join,slice,concat,push,splice,unshift,sort,lastIndexOf,reduce,reduceRight,copyWithin,fill\".split(\",\").forEach(function (key) {\n\t [][key] && define(Array, key, Function.call.bind([][key]));\n\t});\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ },\n/* 646 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(655);\n\tmodule.exports = __webpack_require__(58).RegExp.escape;\n\n/***/ },\n/* 647 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar isObject = __webpack_require__(15)\n\t , isArray = __webpack_require__(183)\n\t , SPECIES = __webpack_require__(17)('species');\n\t\n\tmodule.exports = function(original){\n\t var C;\n\t if(isArray(original)){\n\t C = original.constructor;\n\t // cross-realm fallback\n\t if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined;\n\t if(isObject(C)){\n\t C = C[SPECIES];\n\t if(C === null)C = undefined;\n\t }\n\t } return C === undefined ? Array : C;\n\t};\n\n/***/ },\n/* 648 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\n\tvar speciesConstructor = __webpack_require__(647);\n\t\n\tmodule.exports = function(original, length){\n\t return new (speciesConstructor(original))(length);\n\t};\n\n/***/ },\n/* 649 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar anObject = __webpack_require__(7)\n\t , toPrimitive = __webpack_require__(52)\n\t , NUMBER = 'number';\n\t\n\tmodule.exports = function(hint){\n\t if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint');\n\t return toPrimitive(anObject(this), hint != NUMBER);\n\t};\n\n/***/ },\n/* 650 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// all enumerable object keys, includes symbols\n\tvar getKeys = __webpack_require__(81)\n\t , gOPS = __webpack_require__(138)\n\t , pIE = __webpack_require__(110);\n\tmodule.exports = function(it){\n\t var result = getKeys(it)\n\t , getSymbols = gOPS.f;\n\t if(getSymbols){\n\t var symbols = getSymbols(it)\n\t , isEnum = pIE.f\n\t , i = 0\n\t , key;\n\t while(symbols.length > i)if(isEnum.call(it, key = symbols[i++]))result.push(key);\n\t } return result;\n\t};\n\n/***/ },\n/* 651 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar getKeys = __webpack_require__(81)\n\t , toIObject = __webpack_require__(38);\n\tmodule.exports = function(object, el){\n\t var O = toIObject(object)\n\t , keys = getKeys(O)\n\t , length = keys.length\n\t , index = 0\n\t , key;\n\t while(length > index)if(O[key = keys[index++]] === el)return key;\n\t};\n\n/***/ },\n/* 652 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar path = __webpack_require__(653)\n\t , invoke = __webpack_require__(134)\n\t , aFunction = __webpack_require__(34);\n\tmodule.exports = function(/* ...pargs */){\n\t var fn = aFunction(this)\n\t , length = arguments.length\n\t , pargs = Array(length)\n\t , i = 0\n\t , _ = path._\n\t , holder = false;\n\t while(length > i)if((pargs[i] = arguments[i++]) === _)holder = true;\n\t return function(/* ...args */){\n\t var that = this\n\t , aLen = arguments.length\n\t , j = 0, k = 0, args;\n\t if(!holder && !aLen)return invoke(fn, pargs, that);\n\t args = pargs.slice();\n\t if(holder)for(;length > j; j++)if(args[j] === _)args[j] = arguments[k++];\n\t while(aLen > k)args.push(arguments[k++]);\n\t return invoke(fn, args, that);\n\t };\n\t};\n\n/***/ },\n/* 653 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tmodule.exports = __webpack_require__(10);\n\n/***/ },\n/* 654 */\n/***/ function(module, exports) {\n\n\tmodule.exports = function(regExp, replace){\n\t var replacer = replace === Object(replace) ? function(part){\n\t return replace[part];\n\t } : replace;\n\t return function(it){\n\t return String(it).replace(regExp, replacer);\n\t };\n\t};\n\n/***/ },\n/* 655 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/benjamingr/RexExp.escape\n\tvar $export = __webpack_require__(3)\n\t , $re = __webpack_require__(654)(/[\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n\t\n\t$export($export.S, 'RegExp', {escape: function escape(it){ return $re(it); }});\n\n\n/***/ },\n/* 656 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.P, 'Array', {copyWithin: __webpack_require__(288)});\n\t\n\t__webpack_require__(93)('copyWithin');\n\n/***/ },\n/* 657 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $every = __webpack_require__(50)(4);\n\t\n\t$export($export.P + $export.F * !__webpack_require__(46)([].every, true), 'Array', {\n\t // 22.1.3.5 / 15.4.4.16 Array.prototype.every(callbackfn [, thisArg])\n\t every: function every(callbackfn /* , thisArg */){\n\t return $every(this, callbackfn, arguments[1]);\n\t }\n\t});\n\n/***/ },\n/* 658 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.P, 'Array', {fill: __webpack_require__(175)});\n\t\n\t__webpack_require__(93)('fill');\n\n/***/ },\n/* 659 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $filter = __webpack_require__(50)(2);\n\t\n\t$export($export.P + $export.F * !__webpack_require__(46)([].filter, true), 'Array', {\n\t // 22.1.3.7 / 15.4.4.20 Array.prototype.filter(callbackfn [, thisArg])\n\t filter: function filter(callbackfn /* , thisArg */){\n\t return $filter(this, callbackfn, arguments[1]);\n\t }\n\t});\n\n/***/ },\n/* 660 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)\n\tvar $export = __webpack_require__(3)\n\t , $find = __webpack_require__(50)(6)\n\t , KEY = 'findIndex'\n\t , forced = true;\n\t// Shouldn't skip holes\n\tif(KEY in [])Array(1)[KEY](function(){ forced = false; });\n\t$export($export.P + $export.F * forced, 'Array', {\n\t findIndex: function findIndex(callbackfn/*, that = undefined */){\n\t return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n\t }\n\t});\n\t__webpack_require__(93)(KEY);\n\n/***/ },\n/* 661 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)\n\tvar $export = __webpack_require__(3)\n\t , $find = __webpack_require__(50)(5)\n\t , KEY = 'find'\n\t , forced = true;\n\t// Shouldn't skip holes\n\tif(KEY in [])Array(1)[KEY](function(){ forced = false; });\n\t$export($export.P + $export.F * forced, 'Array', {\n\t find: function find(callbackfn/*, that = undefined */){\n\t return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n\t }\n\t});\n\t__webpack_require__(93)(KEY);\n\n/***/ },\n/* 662 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $forEach = __webpack_require__(50)(0)\n\t , STRICT = __webpack_require__(46)([].forEach, true);\n\t\n\t$export($export.P + $export.F * !STRICT, 'Array', {\n\t // 22.1.3.10 / 15.4.4.18 Array.prototype.forEach(callbackfn [, thisArg])\n\t forEach: function forEach(callbackfn /* , thisArg */){\n\t return $forEach(this, callbackfn, arguments[1]);\n\t }\n\t});\n\n/***/ },\n/* 663 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar ctx = __webpack_require__(59)\n\t , $export = __webpack_require__(3)\n\t , toObject = __webpack_require__(27)\n\t , call = __webpack_require__(297)\n\t , isArrayIter = __webpack_require__(182)\n\t , toLength = __webpack_require__(24)\n\t , createProperty = __webpack_require__(176)\n\t , getIterFn = __webpack_require__(199);\n\t\n\t$export($export.S + $export.F * !__webpack_require__(136)(function(iter){ Array.from(iter); }), 'Array', {\n\t // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)\n\t from: function from(arrayLike/*, mapfn = undefined, thisArg = undefined*/){\n\t var O = toObject(arrayLike)\n\t , C = typeof this == 'function' ? this : Array\n\t , aLen = arguments.length\n\t , mapfn = aLen > 1 ? arguments[1] : undefined\n\t , mapping = mapfn !== undefined\n\t , index = 0\n\t , iterFn = getIterFn(O)\n\t , length, result, step, iterator;\n\t if(mapping)mapfn = ctx(mapfn, aLen > 2 ? arguments[2] : undefined, 2);\n\t // if object isn't iterable or it's array with default iterator - use simple case\n\t if(iterFn != undefined && !(C == Array && isArrayIter(iterFn))){\n\t for(iterator = iterFn.call(O), result = new C; !(step = iterator.next()).done; index++){\n\t createProperty(result, index, mapping ? call(iterator, mapfn, [step.value, index], true) : step.value);\n\t }\n\t } else {\n\t length = toLength(O.length);\n\t for(result = new C(length); length > index; index++){\n\t createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]);\n\t }\n\t }\n\t result.length = index;\n\t return result;\n\t }\n\t});\n\n\n/***/ },\n/* 664 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $indexOf = __webpack_require__(130)(false)\n\t , $native = [].indexOf\n\t , NEGATIVE_ZERO = !!$native && 1 / [1].indexOf(1, -0) < 0;\n\t\n\t$export($export.P + $export.F * (NEGATIVE_ZERO || !__webpack_require__(46)($native)), 'Array', {\n\t // 22.1.3.11 / 15.4.4.14 Array.prototype.indexOf(searchElement [, fromIndex])\n\t indexOf: function indexOf(searchElement /*, fromIndex = 0 */){\n\t return NEGATIVE_ZERO\n\t // convert -0 to +0\n\t ? $native.apply(this, arguments) || 0\n\t : $indexOf(this, searchElement, arguments[1]);\n\t }\n\t});\n\n/***/ },\n/* 665 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 22.1.2.2 / 15.4.3.2 Array.isArray(arg)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Array', {isArray: __webpack_require__(183)});\n\n/***/ },\n/* 666 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 22.1.3.13 Array.prototype.join(separator)\n\tvar $export = __webpack_require__(3)\n\t , toIObject = __webpack_require__(38)\n\t , arrayJoin = [].join;\n\t\n\t// fallback for not array-like strings\n\t$export($export.P + $export.F * (__webpack_require__(109) != Object || !__webpack_require__(46)(arrayJoin)), 'Array', {\n\t join: function join(separator){\n\t return arrayJoin.call(toIObject(this), separator === undefined ? ',' : separator);\n\t }\n\t});\n\n/***/ },\n/* 667 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toIObject = __webpack_require__(38)\n\t , toInteger = __webpack_require__(68)\n\t , toLength = __webpack_require__(24)\n\t , $native = [].lastIndexOf\n\t , NEGATIVE_ZERO = !!$native && 1 / [1].lastIndexOf(1, -0) < 0;\n\t\n\t$export($export.P + $export.F * (NEGATIVE_ZERO || !__webpack_require__(46)($native)), 'Array', {\n\t // 22.1.3.14 / 15.4.4.15 Array.prototype.lastIndexOf(searchElement [, fromIndex])\n\t lastIndexOf: function lastIndexOf(searchElement /*, fromIndex = @[*-1] */){\n\t // convert -0 to +0\n\t if(NEGATIVE_ZERO)return $native.apply(this, arguments) || 0;\n\t var O = toIObject(this)\n\t , length = toLength(O.length)\n\t , index = length - 1;\n\t if(arguments.length > 1)index = Math.min(index, toInteger(arguments[1]));\n\t if(index < 0)index = length + index;\n\t for(;index >= 0; index--)if(index in O)if(O[index] === searchElement)return index || 0;\n\t return -1;\n\t }\n\t});\n\n/***/ },\n/* 668 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $map = __webpack_require__(50)(1);\n\t\n\t$export($export.P + $export.F * !__webpack_require__(46)([].map, true), 'Array', {\n\t // 22.1.3.15 / 15.4.4.19 Array.prototype.map(callbackfn [, thisArg])\n\t map: function map(callbackfn /* , thisArg */){\n\t return $map(this, callbackfn, arguments[1]);\n\t }\n\t});\n\n/***/ },\n/* 669 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , createProperty = __webpack_require__(176);\n\t\n\t// WebKit Array.of isn't generic\n\t$export($export.S + $export.F * __webpack_require__(13)(function(){\n\t function F(){}\n\t return !(Array.of.call(F) instanceof F);\n\t}), 'Array', {\n\t // 22.1.2.3 Array.of( ...items)\n\t of: function of(/* ...args */){\n\t var index = 0\n\t , aLen = arguments.length\n\t , result = new (typeof this == 'function' ? this : Array)(aLen);\n\t while(aLen > index)createProperty(result, index, arguments[index++]);\n\t result.length = aLen;\n\t return result;\n\t }\n\t});\n\n/***/ },\n/* 670 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $reduce = __webpack_require__(290);\n\t\n\t$export($export.P + $export.F * !__webpack_require__(46)([].reduceRight, true), 'Array', {\n\t // 22.1.3.19 / 15.4.4.22 Array.prototype.reduceRight(callbackfn [, initialValue])\n\t reduceRight: function reduceRight(callbackfn /* , initialValue */){\n\t return $reduce(this, callbackfn, arguments.length, arguments[1], true);\n\t }\n\t});\n\n/***/ },\n/* 671 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $reduce = __webpack_require__(290);\n\t\n\t$export($export.P + $export.F * !__webpack_require__(46)([].reduce, true), 'Array', {\n\t // 22.1.3.18 / 15.4.4.21 Array.prototype.reduce(callbackfn [, initialValue])\n\t reduce: function reduce(callbackfn /* , initialValue */){\n\t return $reduce(this, callbackfn, arguments.length, arguments[1], false);\n\t }\n\t});\n\n/***/ },\n/* 672 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , html = __webpack_require__(180)\n\t , cof = __webpack_require__(44)\n\t , toIndex = __webpack_require__(84)\n\t , toLength = __webpack_require__(24)\n\t , arraySlice = [].slice;\n\t\n\t// fallback for not array-like ES3 strings and DOM objects\n\t$export($export.P + $export.F * __webpack_require__(13)(function(){\n\t if(html)arraySlice.call(html);\n\t}), 'Array', {\n\t slice: function slice(begin, end){\n\t var len = toLength(this.length)\n\t , klass = cof(this);\n\t end = end === undefined ? len : end;\n\t if(klass == 'Array')return arraySlice.call(this, begin, end);\n\t var start = toIndex(begin, len)\n\t , upTo = toIndex(end, len)\n\t , size = toLength(upTo - start)\n\t , cloned = Array(size)\n\t , i = 0;\n\t for(; i < size; i++)cloned[i] = klass == 'String'\n\t ? this.charAt(start + i)\n\t : this[start + i];\n\t return cloned;\n\t }\n\t});\n\n/***/ },\n/* 673 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $some = __webpack_require__(50)(3);\n\t\n\t$export($export.P + $export.F * !__webpack_require__(46)([].some, true), 'Array', {\n\t // 22.1.3.23 / 15.4.4.17 Array.prototype.some(callbackfn [, thisArg])\n\t some: function some(callbackfn /* , thisArg */){\n\t return $some(this, callbackfn, arguments[1]);\n\t }\n\t});\n\n/***/ },\n/* 674 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , aFunction = __webpack_require__(34)\n\t , toObject = __webpack_require__(27)\n\t , fails = __webpack_require__(13)\n\t , $sort = [].sort\n\t , test = [1, 2, 3];\n\t\n\t$export($export.P + $export.F * (fails(function(){\n\t // IE8-\n\t test.sort(undefined);\n\t}) || !fails(function(){\n\t // V8 bug\n\t test.sort(null);\n\t // Old WebKit\n\t}) || !__webpack_require__(46)($sort)), 'Array', {\n\t // 22.1.3.25 Array.prototype.sort(comparefn)\n\t sort: function sort(comparefn){\n\t return comparefn === undefined\n\t ? $sort.call(toObject(this))\n\t : $sort.call(toObject(this), aFunction(comparefn));\n\t }\n\t});\n\n/***/ },\n/* 675 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(83)('Array');\n\n/***/ },\n/* 676 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.3.3.1 / 15.9.4.4 Date.now()\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Date', {now: function(){ return new Date().getTime(); }});\n\n/***/ },\n/* 677 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString()\n\tvar $export = __webpack_require__(3)\n\t , fails = __webpack_require__(13)\n\t , getTime = Date.prototype.getTime;\n\t\n\tvar lz = function(num){\n\t return num > 9 ? num : '0' + num;\n\t};\n\t\n\t// PhantomJS / old WebKit has a broken implementations\n\t$export($export.P + $export.F * (fails(function(){\n\t return new Date(-5e13 - 1).toISOString() != '0385-07-25T07:06:39.999Z';\n\t}) || !fails(function(){\n\t new Date(NaN).toISOString();\n\t})), 'Date', {\n\t toISOString: function toISOString(){\n\t if(!isFinite(getTime.call(this)))throw RangeError('Invalid time value');\n\t var d = this\n\t , y = d.getUTCFullYear()\n\t , m = d.getUTCMilliseconds()\n\t , s = y < 0 ? '-' : y > 9999 ? '+' : '';\n\t return s + ('00000' + Math.abs(y)).slice(s ? -6 : -4) +\n\t '-' + lz(d.getUTCMonth() + 1) + '-' + lz(d.getUTCDate()) +\n\t 'T' + lz(d.getUTCHours()) + ':' + lz(d.getUTCMinutes()) +\n\t ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z';\n\t }\n\t});\n\n/***/ },\n/* 678 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toObject = __webpack_require__(27)\n\t , toPrimitive = __webpack_require__(52);\n\t\n\t$export($export.P + $export.F * __webpack_require__(13)(function(){\n\t return new Date(NaN).toJSON() !== null || Date.prototype.toJSON.call({toISOString: function(){ return 1; }}) !== 1;\n\t}), 'Date', {\n\t toJSON: function toJSON(key){\n\t var O = toObject(this)\n\t , pv = toPrimitive(O);\n\t return typeof pv == 'number' && !isFinite(pv) ? null : O.toISOString();\n\t }\n\t});\n\n/***/ },\n/* 679 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar TO_PRIMITIVE = __webpack_require__(17)('toPrimitive')\n\t , proto = Date.prototype;\n\t\n\tif(!(TO_PRIMITIVE in proto))__webpack_require__(35)(proto, TO_PRIMITIVE, __webpack_require__(649));\n\n/***/ },\n/* 680 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar DateProto = Date.prototype\n\t , INVALID_DATE = 'Invalid Date'\n\t , TO_STRING = 'toString'\n\t , $toString = DateProto[TO_STRING]\n\t , getTime = DateProto.getTime;\n\tif(new Date(NaN) + '' != INVALID_DATE){\n\t __webpack_require__(36)(DateProto, TO_STRING, function toString(){\n\t var value = getTime.call(this);\n\t return value === value ? $toString.call(this) : INVALID_DATE;\n\t });\n\t}\n\n/***/ },\n/* 681 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.P, 'Function', {bind: __webpack_require__(291)});\n\n/***/ },\n/* 682 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar isObject = __webpack_require__(15)\n\t , getPrototypeOf = __webpack_require__(42)\n\t , HAS_INSTANCE = __webpack_require__(17)('hasInstance')\n\t , FunctionProto = Function.prototype;\n\t// 19.2.3.6 Function.prototype[@@hasInstance](V)\n\tif(!(HAS_INSTANCE in FunctionProto))__webpack_require__(22).f(FunctionProto, HAS_INSTANCE, {value: function(O){\n\t if(typeof this != 'function' || !isObject(O))return false;\n\t if(!isObject(this.prototype))return O instanceof this;\n\t // for environment w/o native `@@hasInstance` logic enough `instanceof`, but add this:\n\t while(O = getPrototypeOf(O))if(this.prototype === O)return true;\n\t return false;\n\t}});\n\n/***/ },\n/* 683 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar dP = __webpack_require__(22).f\n\t , createDesc = __webpack_require__(67)\n\t , has = __webpack_require__(32)\n\t , FProto = Function.prototype\n\t , nameRE = /^\\s*function ([^ (]*)/\n\t , NAME = 'name';\n\t\n\tvar isExtensible = Object.isExtensible || function(){\n\t return true;\n\t};\n\t\n\t// 19.2.4.2 name\n\tNAME in FProto || __webpack_require__(21) && dP(FProto, NAME, {\n\t configurable: true,\n\t get: function(){\n\t try {\n\t var that = this\n\t , name = ('' + that).match(nameRE)[1];\n\t has(that, NAME) || !isExtensible(that) || dP(that, NAME, createDesc(5, name));\n\t return name;\n\t } catch(e){\n\t return '';\n\t }\n\t }\n\t});\n\n/***/ },\n/* 684 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.3 Math.acosh(x)\n\tvar $export = __webpack_require__(3)\n\t , log1p = __webpack_require__(299)\n\t , sqrt = Math.sqrt\n\t , $acosh = Math.acosh;\n\t\n\t$export($export.S + $export.F * !($acosh\n\t // V8 bug: https://code.google.com/p/v8/issues/detail?id=3509\n\t && Math.floor($acosh(Number.MAX_VALUE)) == 710\n\t // Tor Browser bug: Math.acosh(Infinity) -> NaN \n\t && $acosh(Infinity) == Infinity\n\t), 'Math', {\n\t acosh: function acosh(x){\n\t return (x = +x) < 1 ? NaN : x > 94906265.62425156\n\t ? Math.log(x) + Math.LN2\n\t : log1p(x - 1 + sqrt(x - 1) * sqrt(x + 1));\n\t }\n\t});\n\n/***/ },\n/* 685 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.5 Math.asinh(x)\n\tvar $export = __webpack_require__(3)\n\t , $asinh = Math.asinh;\n\t\n\tfunction asinh(x){\n\t return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : Math.log(x + Math.sqrt(x * x + 1));\n\t}\n\t\n\t// Tor Browser bug: Math.asinh(0) -> -0 \n\t$export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', {asinh: asinh});\n\n/***/ },\n/* 686 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.7 Math.atanh(x)\n\tvar $export = __webpack_require__(3)\n\t , $atanh = Math.atanh;\n\t\n\t// Tor Browser bug: Math.atanh(-0) -> 0 \n\t$export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', {\n\t atanh: function atanh(x){\n\t return (x = +x) == 0 ? x : Math.log((1 + x) / (1 - x)) / 2;\n\t }\n\t});\n\n/***/ },\n/* 687 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.9 Math.cbrt(x)\n\tvar $export = __webpack_require__(3)\n\t , sign = __webpack_require__(187);\n\t\n\t$export($export.S, 'Math', {\n\t cbrt: function cbrt(x){\n\t return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);\n\t }\n\t});\n\n/***/ },\n/* 688 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.11 Math.clz32(x)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {\n\t clz32: function clz32(x){\n\t return (x >>>= 0) ? 31 - Math.floor(Math.log(x + 0.5) * Math.LOG2E) : 32;\n\t }\n\t});\n\n/***/ },\n/* 689 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.12 Math.cosh(x)\n\tvar $export = __webpack_require__(3)\n\t , exp = Math.exp;\n\t\n\t$export($export.S, 'Math', {\n\t cosh: function cosh(x){\n\t return (exp(x = +x) + exp(-x)) / 2;\n\t }\n\t});\n\n/***/ },\n/* 690 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.14 Math.expm1(x)\n\tvar $export = __webpack_require__(3)\n\t , $expm1 = __webpack_require__(186);\n\t\n\t$export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', {expm1: $expm1});\n\n/***/ },\n/* 691 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.16 Math.fround(x)\n\tvar $export = __webpack_require__(3)\n\t , sign = __webpack_require__(187)\n\t , pow = Math.pow\n\t , EPSILON = pow(2, -52)\n\t , EPSILON32 = pow(2, -23)\n\t , MAX32 = pow(2, 127) * (2 - EPSILON32)\n\t , MIN32 = pow(2, -126);\n\t\n\tvar roundTiesToEven = function(n){\n\t return n + 1 / EPSILON - 1 / EPSILON;\n\t};\n\t\n\t\n\t$export($export.S, 'Math', {\n\t fround: function fround(x){\n\t var $abs = Math.abs(x)\n\t , $sign = sign(x)\n\t , a, result;\n\t if($abs < MIN32)return $sign * roundTiesToEven($abs / MIN32 / EPSILON32) * MIN32 * EPSILON32;\n\t a = (1 + EPSILON32 / EPSILON) * $abs;\n\t result = a - (a - $abs);\n\t if(result > MAX32 || result != result)return $sign * Infinity;\n\t return $sign * result;\n\t }\n\t});\n\n/***/ },\n/* 692 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.17 Math.hypot([value1[, value2[, … ]]])\n\tvar $export = __webpack_require__(3)\n\t , abs = Math.abs;\n\t\n\t$export($export.S, 'Math', {\n\t hypot: function hypot(value1, value2){ // eslint-disable-line no-unused-vars\n\t var sum = 0\n\t , i = 0\n\t , aLen = arguments.length\n\t , larg = 0\n\t , arg, div;\n\t while(i < aLen){\n\t arg = abs(arguments[i++]);\n\t if(larg < arg){\n\t div = larg / arg;\n\t sum = sum * div * div + 1;\n\t larg = arg;\n\t } else if(arg > 0){\n\t div = arg / larg;\n\t sum += div * div;\n\t } else sum += arg;\n\t }\n\t return larg === Infinity ? Infinity : larg * Math.sqrt(sum);\n\t }\n\t});\n\n/***/ },\n/* 693 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.18 Math.imul(x, y)\n\tvar $export = __webpack_require__(3)\n\t , $imul = Math.imul;\n\t\n\t// some WebKit versions fails with big numbers, some has wrong arity\n\t$export($export.S + $export.F * __webpack_require__(13)(function(){\n\t return $imul(0xffffffff, 5) != -5 || $imul.length != 2;\n\t}), 'Math', {\n\t imul: function imul(x, y){\n\t var UINT16 = 0xffff\n\t , xn = +x\n\t , yn = +y\n\t , xl = UINT16 & xn\n\t , yl = UINT16 & yn;\n\t return 0 | xl * yl + ((UINT16 & xn >>> 16) * yl + xl * (UINT16 & yn >>> 16) << 16 >>> 0);\n\t }\n\t});\n\n/***/ },\n/* 694 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.21 Math.log10(x)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {\n\t log10: function log10(x){\n\t return Math.log(x) / Math.LN10;\n\t }\n\t});\n\n/***/ },\n/* 695 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.20 Math.log1p(x)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {log1p: __webpack_require__(299)});\n\n/***/ },\n/* 696 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.22 Math.log2(x)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {\n\t log2: function log2(x){\n\t return Math.log(x) / Math.LN2;\n\t }\n\t});\n\n/***/ },\n/* 697 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.28 Math.sign(x)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {sign: __webpack_require__(187)});\n\n/***/ },\n/* 698 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.30 Math.sinh(x)\n\tvar $export = __webpack_require__(3)\n\t , expm1 = __webpack_require__(186)\n\t , exp = Math.exp;\n\t\n\t// V8 near Chromium 38 has a problem with very small numbers\n\t$export($export.S + $export.F * __webpack_require__(13)(function(){\n\t return !Math.sinh(-2e-17) != -2e-17;\n\t}), 'Math', {\n\t sinh: function sinh(x){\n\t return Math.abs(x = +x) < 1\n\t ? (expm1(x) - expm1(-x)) / 2\n\t : (exp(x - 1) - exp(-x - 1)) * (Math.E / 2);\n\t }\n\t});\n\n/***/ },\n/* 699 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.33 Math.tanh(x)\n\tvar $export = __webpack_require__(3)\n\t , expm1 = __webpack_require__(186)\n\t , exp = Math.exp;\n\t\n\t$export($export.S, 'Math', {\n\t tanh: function tanh(x){\n\t var a = expm1(x = +x)\n\t , b = expm1(-x);\n\t return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));\n\t }\n\t});\n\n/***/ },\n/* 700 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.2.2.34 Math.trunc(x)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {\n\t trunc: function trunc(it){\n\t return (it > 0 ? Math.floor : Math.ceil)(it);\n\t }\n\t});\n\n/***/ },\n/* 701 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar global = __webpack_require__(10)\n\t , has = __webpack_require__(32)\n\t , cof = __webpack_require__(44)\n\t , inheritIfRequired = __webpack_require__(181)\n\t , toPrimitive = __webpack_require__(52)\n\t , fails = __webpack_require__(13)\n\t , gOPN = __webpack_require__(80).f\n\t , gOPD = __webpack_require__(41).f\n\t , dP = __webpack_require__(22).f\n\t , $trim = __webpack_require__(97).trim\n\t , NUMBER = 'Number'\n\t , $Number = global[NUMBER]\n\t , Base = $Number\n\t , proto = $Number.prototype\n\t // Opera ~12 has broken Object#toString\n\t , BROKEN_COF = cof(__webpack_require__(79)(proto)) == NUMBER\n\t , TRIM = 'trim' in String.prototype;\n\t\n\t// 7.1.3 ToNumber(argument)\n\tvar toNumber = function(argument){\n\t var it = toPrimitive(argument, false);\n\t if(typeof it == 'string' && it.length > 2){\n\t it = TRIM ? it.trim() : $trim(it, 3);\n\t var first = it.charCodeAt(0)\n\t , third, radix, maxCode;\n\t if(first === 43 || first === 45){\n\t third = it.charCodeAt(2);\n\t if(third === 88 || third === 120)return NaN; // Number('+0x1') should be NaN, old V8 fix\n\t } else if(first === 48){\n\t switch(it.charCodeAt(1)){\n\t case 66 : case 98 : radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n\t case 79 : case 111 : radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n\t default : return +it;\n\t }\n\t for(var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++){\n\t code = digits.charCodeAt(i);\n\t // parseInt parses a string to a first unavailable symbol\n\t // but ToNumber should return NaN if a string contains unavailable symbols\n\t if(code < 48 || code > maxCode)return NaN;\n\t } return parseInt(digits, radix);\n\t }\n\t } return +it;\n\t};\n\t\n\tif(!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')){\n\t $Number = function Number(value){\n\t var it = arguments.length < 1 ? 0 : value\n\t , that = this;\n\t return that instanceof $Number\n\t // check on 1..constructor(foo) case\n\t && (BROKEN_COF ? fails(function(){ proto.valueOf.call(that); }) : cof(that) != NUMBER)\n\t ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n\t };\n\t for(var keys = __webpack_require__(21) ? gOPN(Base) : (\n\t // ES3:\n\t 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n\t // ES6 (in case, if modules with ES6 Number statics required before):\n\t 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n\t 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n\t ).split(','), j = 0, key; keys.length > j; j++){\n\t if(has(Base, key = keys[j]) && !has($Number, key)){\n\t dP($Number, key, gOPD(Base, key));\n\t }\n\t }\n\t $Number.prototype = proto;\n\t proto.constructor = $Number;\n\t __webpack_require__(36)(global, NUMBER, $Number);\n\t}\n\n/***/ },\n/* 702 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.1.2.1 Number.EPSILON\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Number', {EPSILON: Math.pow(2, -52)});\n\n/***/ },\n/* 703 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.1.2.2 Number.isFinite(number)\n\tvar $export = __webpack_require__(3)\n\t , _isFinite = __webpack_require__(10).isFinite;\n\t\n\t$export($export.S, 'Number', {\n\t isFinite: function isFinite(it){\n\t return typeof it == 'number' && _isFinite(it);\n\t }\n\t});\n\n/***/ },\n/* 704 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.1.2.3 Number.isInteger(number)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Number', {isInteger: __webpack_require__(296)});\n\n/***/ },\n/* 705 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.1.2.4 Number.isNaN(number)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Number', {\n\t isNaN: function isNaN(number){\n\t return number != number;\n\t }\n\t});\n\n/***/ },\n/* 706 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.1.2.5 Number.isSafeInteger(number)\n\tvar $export = __webpack_require__(3)\n\t , isInteger = __webpack_require__(296)\n\t , abs = Math.abs;\n\t\n\t$export($export.S, 'Number', {\n\t isSafeInteger: function isSafeInteger(number){\n\t return isInteger(number) && abs(number) <= 0x1fffffffffffff;\n\t }\n\t});\n\n/***/ },\n/* 707 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.1.2.6 Number.MAX_SAFE_INTEGER\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Number', {MAX_SAFE_INTEGER: 0x1fffffffffffff});\n\n/***/ },\n/* 708 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 20.1.2.10 Number.MIN_SAFE_INTEGER\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Number', {MIN_SAFE_INTEGER: -0x1fffffffffffff});\n\n/***/ },\n/* 709 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3)\n\t , $parseFloat = __webpack_require__(306);\n\t// 20.1.2.12 Number.parseFloat(string)\n\t$export($export.S + $export.F * (Number.parseFloat != $parseFloat), 'Number', {parseFloat: $parseFloat});\n\n/***/ },\n/* 710 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3)\n\t , $parseInt = __webpack_require__(307);\n\t// 20.1.2.13 Number.parseInt(string, radix)\n\t$export($export.S + $export.F * (Number.parseInt != $parseInt), 'Number', {parseInt: $parseInt});\n\n/***/ },\n/* 711 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toInteger = __webpack_require__(68)\n\t , aNumberValue = __webpack_require__(287)\n\t , repeat = __webpack_require__(194)\n\t , $toFixed = 1..toFixed\n\t , floor = Math.floor\n\t , data = [0, 0, 0, 0, 0, 0]\n\t , ERROR = 'Number.toFixed: incorrect invocation!'\n\t , ZERO = '0';\n\t\n\tvar multiply = function(n, c){\n\t var i = -1\n\t , c2 = c;\n\t while(++i < 6){\n\t c2 += n * data[i];\n\t data[i] = c2 % 1e7;\n\t c2 = floor(c2 / 1e7);\n\t }\n\t};\n\tvar divide = function(n){\n\t var i = 6\n\t , c = 0;\n\t while(--i >= 0){\n\t c += data[i];\n\t data[i] = floor(c / n);\n\t c = (c % n) * 1e7;\n\t }\n\t};\n\tvar numToString = function(){\n\t var i = 6\n\t , s = '';\n\t while(--i >= 0){\n\t if(s !== '' || i === 0 || data[i] !== 0){\n\t var t = String(data[i]);\n\t s = s === '' ? t : s + repeat.call(ZERO, 7 - t.length) + t;\n\t }\n\t } return s;\n\t};\n\tvar pow = function(x, n, acc){\n\t return n === 0 ? acc : n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc);\n\t};\n\tvar log = function(x){\n\t var n = 0\n\t , x2 = x;\n\t while(x2 >= 4096){\n\t n += 12;\n\t x2 /= 4096;\n\t }\n\t while(x2 >= 2){\n\t n += 1;\n\t x2 /= 2;\n\t } return n;\n\t};\n\t\n\t$export($export.P + $export.F * (!!$toFixed && (\n\t 0.00008.toFixed(3) !== '0.000' ||\n\t 0.9.toFixed(0) !== '1' ||\n\t 1.255.toFixed(2) !== '1.25' ||\n\t 1000000000000000128..toFixed(0) !== '1000000000000000128'\n\t) || !__webpack_require__(13)(function(){\n\t // V8 ~ Android 4.3-\n\t $toFixed.call({});\n\t})), 'Number', {\n\t toFixed: function toFixed(fractionDigits){\n\t var x = aNumberValue(this, ERROR)\n\t , f = toInteger(fractionDigits)\n\t , s = ''\n\t , m = ZERO\n\t , e, z, j, k;\n\t if(f < 0 || f > 20)throw RangeError(ERROR);\n\t if(x != x)return 'NaN';\n\t if(x <= -1e21 || x >= 1e21)return String(x);\n\t if(x < 0){\n\t s = '-';\n\t x = -x;\n\t }\n\t if(x > 1e-21){\n\t e = log(x * pow(2, 69, 1)) - 69;\n\t z = e < 0 ? x * pow(2, -e, 1) : x / pow(2, e, 1);\n\t z *= 0x10000000000000;\n\t e = 52 - e;\n\t if(e > 0){\n\t multiply(0, z);\n\t j = f;\n\t while(j >= 7){\n\t multiply(1e7, 0);\n\t j -= 7;\n\t }\n\t multiply(pow(10, j, 1), 0);\n\t j = e - 1;\n\t while(j >= 23){\n\t divide(1 << 23);\n\t j -= 23;\n\t }\n\t divide(1 << j);\n\t multiply(1, 1);\n\t divide(2);\n\t m = numToString();\n\t } else {\n\t multiply(0, z);\n\t multiply(1 << -e, 0);\n\t m = numToString() + repeat.call(ZERO, f);\n\t }\n\t }\n\t if(f > 0){\n\t k = m.length;\n\t m = s + (k <= f ? '0.' + repeat.call(ZERO, f - k) + m : m.slice(0, k - f) + '.' + m.slice(k - f));\n\t } else {\n\t m = s + m;\n\t } return m;\n\t }\n\t});\n\n/***/ },\n/* 712 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $fails = __webpack_require__(13)\n\t , aNumberValue = __webpack_require__(287)\n\t , $toPrecision = 1..toPrecision;\n\t\n\t$export($export.P + $export.F * ($fails(function(){\n\t // IE7-\n\t return $toPrecision.call(1, undefined) !== '1';\n\t}) || !$fails(function(){\n\t // V8 ~ Android 4.3-\n\t $toPrecision.call({});\n\t})), 'Number', {\n\t toPrecision: function toPrecision(precision){\n\t var that = aNumberValue(this, 'Number#toPrecision: incorrect invocation!');\n\t return precision === undefined ? $toPrecision.call(that) : $toPrecision.call(that, precision); \n\t }\n\t});\n\n/***/ },\n/* 713 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.3.1 Object.assign(target, source)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S + $export.F, 'Object', {assign: __webpack_require__(300)});\n\n/***/ },\n/* 714 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3)\n\t// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\n\t$export($export.S, 'Object', {create: __webpack_require__(79)});\n\n/***/ },\n/* 715 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3);\n\t// 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties)\n\t$export($export.S + $export.F * !__webpack_require__(21), 'Object', {defineProperties: __webpack_require__(301)});\n\n/***/ },\n/* 716 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3);\n\t// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)\n\t$export($export.S + $export.F * !__webpack_require__(21), 'Object', {defineProperty: __webpack_require__(22).f});\n\n/***/ },\n/* 717 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.5 Object.freeze(O)\n\tvar isObject = __webpack_require__(15)\n\t , meta = __webpack_require__(66).onFreeze;\n\t\n\t__webpack_require__(51)('freeze', function($freeze){\n\t return function freeze(it){\n\t return $freeze && isObject(it) ? $freeze(meta(it)) : it;\n\t };\n\t});\n\n/***/ },\n/* 718 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n\tvar toIObject = __webpack_require__(38)\n\t , $getOwnPropertyDescriptor = __webpack_require__(41).f;\n\t\n\t__webpack_require__(51)('getOwnPropertyDescriptor', function(){\n\t return function getOwnPropertyDescriptor(it, key){\n\t return $getOwnPropertyDescriptor(toIObject(it), key);\n\t };\n\t});\n\n/***/ },\n/* 719 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.7 Object.getOwnPropertyNames(O)\n\t__webpack_require__(51)('getOwnPropertyNames', function(){\n\t return __webpack_require__(302).f;\n\t});\n\n/***/ },\n/* 720 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.9 Object.getPrototypeOf(O)\n\tvar toObject = __webpack_require__(27)\n\t , $getPrototypeOf = __webpack_require__(42);\n\t\n\t__webpack_require__(51)('getPrototypeOf', function(){\n\t return function getPrototypeOf(it){\n\t return $getPrototypeOf(toObject(it));\n\t };\n\t});\n\n/***/ },\n/* 721 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.11 Object.isExtensible(O)\n\tvar isObject = __webpack_require__(15);\n\t\n\t__webpack_require__(51)('isExtensible', function($isExtensible){\n\t return function isExtensible(it){\n\t return isObject(it) ? $isExtensible ? $isExtensible(it) : true : false;\n\t };\n\t});\n\n/***/ },\n/* 722 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.12 Object.isFrozen(O)\n\tvar isObject = __webpack_require__(15);\n\t\n\t__webpack_require__(51)('isFrozen', function($isFrozen){\n\t return function isFrozen(it){\n\t return isObject(it) ? $isFrozen ? $isFrozen(it) : false : true;\n\t };\n\t});\n\n/***/ },\n/* 723 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.13 Object.isSealed(O)\n\tvar isObject = __webpack_require__(15);\n\t\n\t__webpack_require__(51)('isSealed', function($isSealed){\n\t return function isSealed(it){\n\t return isObject(it) ? $isSealed ? $isSealed(it) : false : true;\n\t };\n\t});\n\n/***/ },\n/* 724 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.3.10 Object.is(value1, value2)\n\tvar $export = __webpack_require__(3);\n\t$export($export.S, 'Object', {is: __webpack_require__(308)});\n\n/***/ },\n/* 725 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.14 Object.keys(O)\n\tvar toObject = __webpack_require__(27)\n\t , $keys = __webpack_require__(81);\n\t\n\t__webpack_require__(51)('keys', function(){\n\t return function keys(it){\n\t return $keys(toObject(it));\n\t };\n\t});\n\n/***/ },\n/* 726 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.15 Object.preventExtensions(O)\n\tvar isObject = __webpack_require__(15)\n\t , meta = __webpack_require__(66).onFreeze;\n\t\n\t__webpack_require__(51)('preventExtensions', function($preventExtensions){\n\t return function preventExtensions(it){\n\t return $preventExtensions && isObject(it) ? $preventExtensions(meta(it)) : it;\n\t };\n\t});\n\n/***/ },\n/* 727 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.2.17 Object.seal(O)\n\tvar isObject = __webpack_require__(15)\n\t , meta = __webpack_require__(66).onFreeze;\n\t\n\t__webpack_require__(51)('seal', function($seal){\n\t return function seal(it){\n\t return $seal && isObject(it) ? $seal(meta(it)) : it;\n\t };\n\t});\n\n/***/ },\n/* 728 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 19.1.3.19 Object.setPrototypeOf(O, proto)\n\tvar $export = __webpack_require__(3);\n\t$export($export.S, 'Object', {setPrototypeOf: __webpack_require__(189).set});\n\n/***/ },\n/* 729 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 19.1.3.6 Object.prototype.toString()\n\tvar classof = __webpack_require__(108)\n\t , test = {};\n\ttest[__webpack_require__(17)('toStringTag')] = 'z';\n\tif(test + '' != '[object z]'){\n\t __webpack_require__(36)(Object.prototype, 'toString', function toString(){\n\t return '[object ' + classof(this) + ']';\n\t }, true);\n\t}\n\n/***/ },\n/* 730 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3)\n\t , $parseFloat = __webpack_require__(306);\n\t// 18.2.4 parseFloat(string)\n\t$export($export.G + $export.F * (parseFloat != $parseFloat), {parseFloat: $parseFloat});\n\n/***/ },\n/* 731 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3)\n\t , $parseInt = __webpack_require__(307);\n\t// 18.2.5 parseInt(string, radix)\n\t$export($export.G + $export.F * (parseInt != $parseInt), {parseInt: $parseInt});\n\n/***/ },\n/* 732 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar LIBRARY = __webpack_require__(78)\n\t , global = __webpack_require__(10)\n\t , ctx = __webpack_require__(59)\n\t , classof = __webpack_require__(108)\n\t , $export = __webpack_require__(3)\n\t , isObject = __webpack_require__(15)\n\t , aFunction = __webpack_require__(34)\n\t , anInstance = __webpack_require__(77)\n\t , forOf = __webpack_require__(94)\n\t , speciesConstructor = __webpack_require__(191)\n\t , task = __webpack_require__(196).set\n\t , microtask = __webpack_require__(188)()\n\t , PROMISE = 'Promise'\n\t , TypeError = global.TypeError\n\t , process = global.process\n\t , $Promise = global[PROMISE]\n\t , process = global.process\n\t , isNode = classof(process) == 'process'\n\t , empty = function(){ /* empty */ }\n\t , Internal, GenericPromiseCapability, Wrapper;\n\t\n\tvar USE_NATIVE = !!function(){\n\t try {\n\t // correct subclassing with @@species support\n\t var promise = $Promise.resolve(1)\n\t , FakePromise = (promise.constructor = {})[__webpack_require__(17)('species')] = function(exec){ exec(empty, empty); };\n\t // unhandled rejections tracking support, NodeJS Promise without it fails @@species test\n\t return (isNode || typeof PromiseRejectionEvent == 'function') && promise.then(empty) instanceof FakePromise;\n\t } catch(e){ /* empty */ }\n\t}();\n\t\n\t// helpers\n\tvar sameConstructor = function(a, b){\n\t // with library wrapper special case\n\t return a === b || a === $Promise && b === Wrapper;\n\t};\n\tvar isThenable = function(it){\n\t var then;\n\t return isObject(it) && typeof (then = it.then) == 'function' ? then : false;\n\t};\n\tvar newPromiseCapability = function(C){\n\t return sameConstructor($Promise, C)\n\t ? new PromiseCapability(C)\n\t : new GenericPromiseCapability(C);\n\t};\n\tvar PromiseCapability = GenericPromiseCapability = function(C){\n\t var resolve, reject;\n\t this.promise = new C(function($$resolve, $$reject){\n\t if(resolve !== undefined || reject !== undefined)throw TypeError('Bad Promise constructor');\n\t resolve = $$resolve;\n\t reject = $$reject;\n\t });\n\t this.resolve = aFunction(resolve);\n\t this.reject = aFunction(reject);\n\t};\n\tvar perform = function(exec){\n\t try {\n\t exec();\n\t } catch(e){\n\t return {error: e};\n\t }\n\t};\n\tvar notify = function(promise, isReject){\n\t if(promise._n)return;\n\t promise._n = true;\n\t var chain = promise._c;\n\t microtask(function(){\n\t var value = promise._v\n\t , ok = promise._s == 1\n\t , i = 0;\n\t var run = function(reaction){\n\t var handler = ok ? reaction.ok : reaction.fail\n\t , resolve = reaction.resolve\n\t , reject = reaction.reject\n\t , domain = reaction.domain\n\t , result, then;\n\t try {\n\t if(handler){\n\t if(!ok){\n\t if(promise._h == 2)onHandleUnhandled(promise);\n\t promise._h = 1;\n\t }\n\t if(handler === true)result = value;\n\t else {\n\t if(domain)domain.enter();\n\t result = handler(value);\n\t if(domain)domain.exit();\n\t }\n\t if(result === reaction.promise){\n\t reject(TypeError('Promise-chain cycle'));\n\t } else if(then = isThenable(result)){\n\t then.call(result, resolve, reject);\n\t } else resolve(result);\n\t } else reject(value);\n\t } catch(e){\n\t reject(e);\n\t }\n\t };\n\t while(chain.length > i)run(chain[i++]); // variable length - can't use forEach\n\t promise._c = [];\n\t promise._n = false;\n\t if(isReject && !promise._h)onUnhandled(promise);\n\t });\n\t};\n\tvar onUnhandled = function(promise){\n\t task.call(global, function(){\n\t var value = promise._v\n\t , abrupt, handler, console;\n\t if(isUnhandled(promise)){\n\t abrupt = perform(function(){\n\t if(isNode){\n\t process.emit('unhandledRejection', value, promise);\n\t } else if(handler = global.onunhandledrejection){\n\t handler({promise: promise, reason: value});\n\t } else if((console = global.console) && console.error){\n\t console.error('Unhandled promise rejection', value);\n\t }\n\t });\n\t // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should\n\t promise._h = isNode || isUnhandled(promise) ? 2 : 1;\n\t } promise._a = undefined;\n\t if(abrupt)throw abrupt.error;\n\t });\n\t};\n\tvar isUnhandled = function(promise){\n\t if(promise._h == 1)return false;\n\t var chain = promise._a || promise._c\n\t , i = 0\n\t , reaction;\n\t while(chain.length > i){\n\t reaction = chain[i++];\n\t if(reaction.fail || !isUnhandled(reaction.promise))return false;\n\t } return true;\n\t};\n\tvar onHandleUnhandled = function(promise){\n\t task.call(global, function(){\n\t var handler;\n\t if(isNode){\n\t process.emit('rejectionHandled', promise);\n\t } else if(handler = global.onrejectionhandled){\n\t handler({promise: promise, reason: promise._v});\n\t }\n\t });\n\t};\n\tvar $reject = function(value){\n\t var promise = this;\n\t if(promise._d)return;\n\t promise._d = true;\n\t promise = promise._w || promise; // unwrap\n\t promise._v = value;\n\t promise._s = 2;\n\t if(!promise._a)promise._a = promise._c.slice();\n\t notify(promise, true);\n\t};\n\tvar $resolve = function(value){\n\t var promise = this\n\t , then;\n\t if(promise._d)return;\n\t promise._d = true;\n\t promise = promise._w || promise; // unwrap\n\t try {\n\t if(promise === value)throw TypeError(\"Promise can't be resolved itself\");\n\t if(then = isThenable(value)){\n\t microtask(function(){\n\t var wrapper = {_w: promise, _d: false}; // wrap\n\t try {\n\t then.call(value, ctx($resolve, wrapper, 1), ctx($reject, wrapper, 1));\n\t } catch(e){\n\t $reject.call(wrapper, e);\n\t }\n\t });\n\t } else {\n\t promise._v = value;\n\t promise._s = 1;\n\t notify(promise, false);\n\t }\n\t } catch(e){\n\t $reject.call({_w: promise, _d: false}, e); // wrap\n\t }\n\t};\n\t\n\t// constructor polyfill\n\tif(!USE_NATIVE){\n\t // 25.4.3.1 Promise(executor)\n\t $Promise = function Promise(executor){\n\t anInstance(this, $Promise, PROMISE, '_h');\n\t aFunction(executor);\n\t Internal.call(this);\n\t try {\n\t executor(ctx($resolve, this, 1), ctx($reject, this, 1));\n\t } catch(err){\n\t $reject.call(this, err);\n\t }\n\t };\n\t Internal = function Promise(executor){\n\t this._c = []; // <- awaiting reactions\n\t this._a = undefined; // <- checked in isUnhandled reactions\n\t this._s = 0; // <- state\n\t this._d = false; // <- done\n\t this._v = undefined; // <- value\n\t this._h = 0; // <- rejection state, 0 - default, 1 - handled, 2 - unhandled\n\t this._n = false; // <- notify\n\t };\n\t Internal.prototype = __webpack_require__(82)($Promise.prototype, {\n\t // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)\n\t then: function then(onFulfilled, onRejected){\n\t var reaction = newPromiseCapability(speciesConstructor(this, $Promise));\n\t reaction.ok = typeof onFulfilled == 'function' ? onFulfilled : true;\n\t reaction.fail = typeof onRejected == 'function' && onRejected;\n\t reaction.domain = isNode ? process.domain : undefined;\n\t this._c.push(reaction);\n\t if(this._a)this._a.push(reaction);\n\t if(this._s)notify(this, false);\n\t return reaction.promise;\n\t },\n\t // 25.4.5.1 Promise.prototype.catch(onRejected)\n\t 'catch': function(onRejected){\n\t return this.then(undefined, onRejected);\n\t }\n\t });\n\t PromiseCapability = function(){\n\t var promise = new Internal;\n\t this.promise = promise;\n\t this.resolve = ctx($resolve, promise, 1);\n\t this.reject = ctx($reject, promise, 1);\n\t };\n\t}\n\t\n\t$export($export.G + $export.W + $export.F * !USE_NATIVE, {Promise: $Promise});\n\t__webpack_require__(96)($Promise, PROMISE);\n\t__webpack_require__(83)(PROMISE);\n\tWrapper = __webpack_require__(58)[PROMISE];\n\t\n\t// statics\n\t$export($export.S + $export.F * !USE_NATIVE, PROMISE, {\n\t // 25.4.4.5 Promise.reject(r)\n\t reject: function reject(r){\n\t var capability = newPromiseCapability(this)\n\t , $$reject = capability.reject;\n\t $$reject(r);\n\t return capability.promise;\n\t }\n\t});\n\t$export($export.S + $export.F * (LIBRARY || !USE_NATIVE), PROMISE, {\n\t // 25.4.4.6 Promise.resolve(x)\n\t resolve: function resolve(x){\n\t // instanceof instead of internal slot check because we should fix it without replacement native Promise core\n\t if(x instanceof $Promise && sameConstructor(x.constructor, this))return x;\n\t var capability = newPromiseCapability(this)\n\t , $$resolve = capability.resolve;\n\t $$resolve(x);\n\t return capability.promise;\n\t }\n\t});\n\t$export($export.S + $export.F * !(USE_NATIVE && __webpack_require__(136)(function(iter){\n\t $Promise.all(iter)['catch'](empty);\n\t})), PROMISE, {\n\t // 25.4.4.1 Promise.all(iterable)\n\t all: function all(iterable){\n\t var C = this\n\t , capability = newPromiseCapability(C)\n\t , resolve = capability.resolve\n\t , reject = capability.reject;\n\t var abrupt = perform(function(){\n\t var values = []\n\t , index = 0\n\t , remaining = 1;\n\t forOf(iterable, false, function(promise){\n\t var $index = index++\n\t , alreadyCalled = false;\n\t values.push(undefined);\n\t remaining++;\n\t C.resolve(promise).then(function(value){\n\t if(alreadyCalled)return;\n\t alreadyCalled = true;\n\t values[$index] = value;\n\t --remaining || resolve(values);\n\t }, reject);\n\t });\n\t --remaining || resolve(values);\n\t });\n\t if(abrupt)reject(abrupt.error);\n\t return capability.promise;\n\t },\n\t // 25.4.4.4 Promise.race(iterable)\n\t race: function race(iterable){\n\t var C = this\n\t , capability = newPromiseCapability(C)\n\t , reject = capability.reject;\n\t var abrupt = perform(function(){\n\t forOf(iterable, false, function(promise){\n\t C.resolve(promise).then(capability.resolve, reject);\n\t });\n\t });\n\t if(abrupt)reject(abrupt.error);\n\t return capability.promise;\n\t }\n\t});\n\n/***/ },\n/* 733 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.1 Reflect.apply(target, thisArgument, argumentsList)\n\tvar $export = __webpack_require__(3)\n\t , aFunction = __webpack_require__(34)\n\t , anObject = __webpack_require__(7)\n\t , rApply = (__webpack_require__(10).Reflect || {}).apply\n\t , fApply = Function.apply;\n\t// MS Edge argumentsList argument is optional\n\t$export($export.S + $export.F * !__webpack_require__(13)(function(){\n\t rApply(function(){});\n\t}), 'Reflect', {\n\t apply: function apply(target, thisArgument, argumentsList){\n\t var T = aFunction(target)\n\t , L = anObject(argumentsList);\n\t return rApply ? rApply(T, thisArgument, L) : fApply.call(T, thisArgument, L);\n\t }\n\t});\n\n/***/ },\n/* 734 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.2 Reflect.construct(target, argumentsList [, newTarget])\n\tvar $export = __webpack_require__(3)\n\t , create = __webpack_require__(79)\n\t , aFunction = __webpack_require__(34)\n\t , anObject = __webpack_require__(7)\n\t , isObject = __webpack_require__(15)\n\t , fails = __webpack_require__(13)\n\t , bind = __webpack_require__(291)\n\t , rConstruct = (__webpack_require__(10).Reflect || {}).construct;\n\t\n\t// MS Edge supports only 2 arguments and argumentsList argument is optional\n\t// FF Nightly sets third argument as `new.target`, but does not create `this` from it\n\tvar NEW_TARGET_BUG = fails(function(){\n\t function F(){}\n\t return !(rConstruct(function(){}, [], F) instanceof F);\n\t});\n\tvar ARGS_BUG = !fails(function(){\n\t rConstruct(function(){});\n\t});\n\t\n\t$export($export.S + $export.F * (NEW_TARGET_BUG || ARGS_BUG), 'Reflect', {\n\t construct: function construct(Target, args /*, newTarget*/){\n\t aFunction(Target);\n\t anObject(args);\n\t var newTarget = arguments.length < 3 ? Target : aFunction(arguments[2]);\n\t if(ARGS_BUG && !NEW_TARGET_BUG)return rConstruct(Target, args, newTarget);\n\t if(Target == newTarget){\n\t // w/o altered newTarget, optimization for 0-4 arguments\n\t switch(args.length){\n\t case 0: return new Target;\n\t case 1: return new Target(args[0]);\n\t case 2: return new Target(args[0], args[1]);\n\t case 3: return new Target(args[0], args[1], args[2]);\n\t case 4: return new Target(args[0], args[1], args[2], args[3]);\n\t }\n\t // w/o altered newTarget, lot of arguments case\n\t var $args = [null];\n\t $args.push.apply($args, args);\n\t return new (bind.apply(Target, $args));\n\t }\n\t // with altered newTarget, not support built-in constructors\n\t var proto = newTarget.prototype\n\t , instance = create(isObject(proto) ? proto : Object.prototype)\n\t , result = Function.apply.call(Target, instance, args);\n\t return isObject(result) ? result : instance;\n\t }\n\t});\n\n/***/ },\n/* 735 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.3 Reflect.defineProperty(target, propertyKey, attributes)\n\tvar dP = __webpack_require__(22)\n\t , $export = __webpack_require__(3)\n\t , anObject = __webpack_require__(7)\n\t , toPrimitive = __webpack_require__(52);\n\t\n\t// MS Edge has broken Reflect.defineProperty - throwing instead of returning false\n\t$export($export.S + $export.F * __webpack_require__(13)(function(){\n\t Reflect.defineProperty(dP.f({}, 1, {value: 1}), 1, {value: 2});\n\t}), 'Reflect', {\n\t defineProperty: function defineProperty(target, propertyKey, attributes){\n\t anObject(target);\n\t propertyKey = toPrimitive(propertyKey, true);\n\t anObject(attributes);\n\t try {\n\t dP.f(target, propertyKey, attributes);\n\t return true;\n\t } catch(e){\n\t return false;\n\t }\n\t }\n\t});\n\n/***/ },\n/* 736 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.4 Reflect.deleteProperty(target, propertyKey)\n\tvar $export = __webpack_require__(3)\n\t , gOPD = __webpack_require__(41).f\n\t , anObject = __webpack_require__(7);\n\t\n\t$export($export.S, 'Reflect', {\n\t deleteProperty: function deleteProperty(target, propertyKey){\n\t var desc = gOPD(anObject(target), propertyKey);\n\t return desc && !desc.configurable ? false : delete target[propertyKey];\n\t }\n\t});\n\n/***/ },\n/* 737 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 26.1.5 Reflect.enumerate(target)\n\tvar $export = __webpack_require__(3)\n\t , anObject = __webpack_require__(7);\n\tvar Enumerate = function(iterated){\n\t this._t = anObject(iterated); // target\n\t this._i = 0; // next index\n\t var keys = this._k = [] // keys\n\t , key;\n\t for(key in iterated)keys.push(key);\n\t};\n\t__webpack_require__(184)(Enumerate, 'Object', function(){\n\t var that = this\n\t , keys = that._k\n\t , key;\n\t do {\n\t if(that._i >= keys.length)return {value: undefined, done: true};\n\t } while(!((key = keys[that._i++]) in that._t));\n\t return {value: key, done: false};\n\t});\n\t\n\t$export($export.S, 'Reflect', {\n\t enumerate: function enumerate(target){\n\t return new Enumerate(target);\n\t }\n\t});\n\n/***/ },\n/* 738 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey)\n\tvar gOPD = __webpack_require__(41)\n\t , $export = __webpack_require__(3)\n\t , anObject = __webpack_require__(7);\n\t\n\t$export($export.S, 'Reflect', {\n\t getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, propertyKey){\n\t return gOPD.f(anObject(target), propertyKey);\n\t }\n\t});\n\n/***/ },\n/* 739 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.8 Reflect.getPrototypeOf(target)\n\tvar $export = __webpack_require__(3)\n\t , getProto = __webpack_require__(42)\n\t , anObject = __webpack_require__(7);\n\t\n\t$export($export.S, 'Reflect', {\n\t getPrototypeOf: function getPrototypeOf(target){\n\t return getProto(anObject(target));\n\t }\n\t});\n\n/***/ },\n/* 740 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.6 Reflect.get(target, propertyKey [, receiver])\n\tvar gOPD = __webpack_require__(41)\n\t , getPrototypeOf = __webpack_require__(42)\n\t , has = __webpack_require__(32)\n\t , $export = __webpack_require__(3)\n\t , isObject = __webpack_require__(15)\n\t , anObject = __webpack_require__(7);\n\t\n\tfunction get(target, propertyKey/*, receiver*/){\n\t var receiver = arguments.length < 3 ? target : arguments[2]\n\t , desc, proto;\n\t if(anObject(target) === receiver)return target[propertyKey];\n\t if(desc = gOPD.f(target, propertyKey))return has(desc, 'value')\n\t ? desc.value\n\t : desc.get !== undefined\n\t ? desc.get.call(receiver)\n\t : undefined;\n\t if(isObject(proto = getPrototypeOf(target)))return get(proto, propertyKey, receiver);\n\t}\n\t\n\t$export($export.S, 'Reflect', {get: get});\n\n/***/ },\n/* 741 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.9 Reflect.has(target, propertyKey)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Reflect', {\n\t has: function has(target, propertyKey){\n\t return propertyKey in target;\n\t }\n\t});\n\n/***/ },\n/* 742 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.10 Reflect.isExtensible(target)\n\tvar $export = __webpack_require__(3)\n\t , anObject = __webpack_require__(7)\n\t , $isExtensible = Object.isExtensible;\n\t\n\t$export($export.S, 'Reflect', {\n\t isExtensible: function isExtensible(target){\n\t anObject(target);\n\t return $isExtensible ? $isExtensible(target) : true;\n\t }\n\t});\n\n/***/ },\n/* 743 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.11 Reflect.ownKeys(target)\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Reflect', {ownKeys: __webpack_require__(305)});\n\n/***/ },\n/* 744 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.12 Reflect.preventExtensions(target)\n\tvar $export = __webpack_require__(3)\n\t , anObject = __webpack_require__(7)\n\t , $preventExtensions = Object.preventExtensions;\n\t\n\t$export($export.S, 'Reflect', {\n\t preventExtensions: function preventExtensions(target){\n\t anObject(target);\n\t try {\n\t if($preventExtensions)$preventExtensions(target);\n\t return true;\n\t } catch(e){\n\t return false;\n\t }\n\t }\n\t});\n\n/***/ },\n/* 745 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.14 Reflect.setPrototypeOf(target, proto)\n\tvar $export = __webpack_require__(3)\n\t , setProto = __webpack_require__(189);\n\t\n\tif(setProto)$export($export.S, 'Reflect', {\n\t setPrototypeOf: function setPrototypeOf(target, proto){\n\t setProto.check(target, proto);\n\t try {\n\t setProto.set(target, proto);\n\t return true;\n\t } catch(e){\n\t return false;\n\t }\n\t }\n\t});\n\n/***/ },\n/* 746 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 26.1.13 Reflect.set(target, propertyKey, V [, receiver])\n\tvar dP = __webpack_require__(22)\n\t , gOPD = __webpack_require__(41)\n\t , getPrototypeOf = __webpack_require__(42)\n\t , has = __webpack_require__(32)\n\t , $export = __webpack_require__(3)\n\t , createDesc = __webpack_require__(67)\n\t , anObject = __webpack_require__(7)\n\t , isObject = __webpack_require__(15);\n\t\n\tfunction set(target, propertyKey, V/*, receiver*/){\n\t var receiver = arguments.length < 4 ? target : arguments[3]\n\t , ownDesc = gOPD.f(anObject(target), propertyKey)\n\t , existingDescriptor, proto;\n\t if(!ownDesc){\n\t if(isObject(proto = getPrototypeOf(target))){\n\t return set(proto, propertyKey, V, receiver);\n\t }\n\t ownDesc = createDesc(0);\n\t }\n\t if(has(ownDesc, 'value')){\n\t if(ownDesc.writable === false || !isObject(receiver))return false;\n\t existingDescriptor = gOPD.f(receiver, propertyKey) || createDesc(0);\n\t existingDescriptor.value = V;\n\t dP.f(receiver, propertyKey, existingDescriptor);\n\t return true;\n\t }\n\t return ownDesc.set === undefined ? false : (ownDesc.set.call(receiver, V), true);\n\t}\n\t\n\t$export($export.S, 'Reflect', {set: set});\n\n/***/ },\n/* 747 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar global = __webpack_require__(10)\n\t , inheritIfRequired = __webpack_require__(181)\n\t , dP = __webpack_require__(22).f\n\t , gOPN = __webpack_require__(80).f\n\t , isRegExp = __webpack_require__(135)\n\t , $flags = __webpack_require__(133)\n\t , $RegExp = global.RegExp\n\t , Base = $RegExp\n\t , proto = $RegExp.prototype\n\t , re1 = /a/g\n\t , re2 = /a/g\n\t // \"new\" creates a new object, old webkit buggy here\n\t , CORRECT_NEW = new $RegExp(re1) !== re1;\n\t\n\tif(__webpack_require__(21) && (!CORRECT_NEW || __webpack_require__(13)(function(){\n\t re2[__webpack_require__(17)('match')] = false;\n\t // RegExp constructor can alter flags and IsRegExp works correct with @@match\n\t return $RegExp(re1) != re1 || $RegExp(re2) == re2 || $RegExp(re1, 'i') != '/a/i';\n\t}))){\n\t $RegExp = function RegExp(p, f){\n\t var tiRE = this instanceof $RegExp\n\t , piRE = isRegExp(p)\n\t , fiU = f === undefined;\n\t return !tiRE && piRE && p.constructor === $RegExp && fiU ? p\n\t : inheritIfRequired(CORRECT_NEW\n\t ? new Base(piRE && !fiU ? p.source : p, f)\n\t : Base((piRE = p instanceof $RegExp) ? p.source : p, piRE && fiU ? $flags.call(p) : f)\n\t , tiRE ? this : proto, $RegExp);\n\t };\n\t var proxy = function(key){\n\t key in $RegExp || dP($RegExp, key, {\n\t configurable: true,\n\t get: function(){ return Base[key]; },\n\t set: function(it){ Base[key] = it; }\n\t });\n\t };\n\t for(var keys = gOPN(Base), i = 0; keys.length > i; )proxy(keys[i++]);\n\t proto.constructor = $RegExp;\n\t $RegExp.prototype = proto;\n\t __webpack_require__(36)(global, 'RegExp', $RegExp);\n\t}\n\t\n\t__webpack_require__(83)('RegExp');\n\n/***/ },\n/* 748 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// @@match logic\n\t__webpack_require__(132)('match', 1, function(defined, MATCH, $match){\n\t // 21.1.3.11 String.prototype.match(regexp)\n\t return [function match(regexp){\n\t 'use strict';\n\t var O = defined(this)\n\t , fn = regexp == undefined ? undefined : regexp[MATCH];\n\t return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));\n\t }, $match];\n\t});\n\n/***/ },\n/* 749 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// @@replace logic\n\t__webpack_require__(132)('replace', 2, function(defined, REPLACE, $replace){\n\t // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)\n\t return [function replace(searchValue, replaceValue){\n\t 'use strict';\n\t var O = defined(this)\n\t , fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n\t return fn !== undefined\n\t ? fn.call(searchValue, O, replaceValue)\n\t : $replace.call(String(O), searchValue, replaceValue);\n\t }, $replace];\n\t});\n\n/***/ },\n/* 750 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// @@search logic\n\t__webpack_require__(132)('search', 1, function(defined, SEARCH, $search){\n\t // 21.1.3.15 String.prototype.search(regexp)\n\t return [function search(regexp){\n\t 'use strict';\n\t var O = defined(this)\n\t , fn = regexp == undefined ? undefined : regexp[SEARCH];\n\t return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));\n\t }, $search];\n\t});\n\n/***/ },\n/* 751 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// @@split logic\n\t__webpack_require__(132)('split', 2, function(defined, SPLIT, $split){\n\t 'use strict';\n\t var isRegExp = __webpack_require__(135)\n\t , _split = $split\n\t , $push = [].push\n\t , $SPLIT = 'split'\n\t , LENGTH = 'length'\n\t , LAST_INDEX = 'lastIndex';\n\t if(\n\t 'abbc'[$SPLIT](/(b)*/)[1] == 'c' ||\n\t 'test'[$SPLIT](/(?:)/, -1)[LENGTH] != 4 ||\n\t 'ab'[$SPLIT](/(?:ab)*/)[LENGTH] != 2 ||\n\t '.'[$SPLIT](/(.?)(.?)/)[LENGTH] != 4 ||\n\t '.'[$SPLIT](/()()/)[LENGTH] > 1 ||\n\t ''[$SPLIT](/.?/)[LENGTH]\n\t ){\n\t var NPCG = /()??/.exec('')[1] === undefined; // nonparticipating capturing group\n\t // based on es5-shim implementation, need to rework it\n\t $split = function(separator, limit){\n\t var string = String(this);\n\t if(separator === undefined && limit === 0)return [];\n\t // If `separator` is not a regex, use native split\n\t if(!isRegExp(separator))return _split.call(string, separator, limit);\n\t var output = [];\n\t var flags = (separator.ignoreCase ? 'i' : '') +\n\t (separator.multiline ? 'm' : '') +\n\t (separator.unicode ? 'u' : '') +\n\t (separator.sticky ? 'y' : '');\n\t var lastLastIndex = 0;\n\t var splitLimit = limit === undefined ? 4294967295 : limit >>> 0;\n\t // Make `global` and avoid `lastIndex` issues by working with a copy\n\t var separatorCopy = new RegExp(separator.source, flags + 'g');\n\t var separator2, match, lastIndex, lastLength, i;\n\t // Doesn't need flags gy, but they don't hurt\n\t if(!NPCG)separator2 = new RegExp('^' + separatorCopy.source + '$(?!\\\\s)', flags);\n\t while(match = separatorCopy.exec(string)){\n\t // `separatorCopy.lastIndex` is not reliable cross-browser\n\t lastIndex = match.index + match[0][LENGTH];\n\t if(lastIndex > lastLastIndex){\n\t output.push(string.slice(lastLastIndex, match.index));\n\t // Fix browsers whose `exec` methods don't consistently return `undefined` for NPCG\n\t if(!NPCG && match[LENGTH] > 1)match[0].replace(separator2, function(){\n\t for(i = 1; i < arguments[LENGTH] - 2; i++)if(arguments[i] === undefined)match[i] = undefined;\n\t });\n\t if(match[LENGTH] > 1 && match.index < string[LENGTH])$push.apply(output, match.slice(1));\n\t lastLength = match[0][LENGTH];\n\t lastLastIndex = lastIndex;\n\t if(output[LENGTH] >= splitLimit)break;\n\t }\n\t if(separatorCopy[LAST_INDEX] === match.index)separatorCopy[LAST_INDEX]++; // Avoid an infinite loop\n\t }\n\t if(lastLastIndex === string[LENGTH]){\n\t if(lastLength || !separatorCopy.test(''))output.push('');\n\t } else output.push(string.slice(lastLastIndex));\n\t return output[LENGTH] > splitLimit ? output.slice(0, splitLimit) : output;\n\t };\n\t // Chakra, V8\n\t } else if('0'[$SPLIT](undefined, 0)[LENGTH]){\n\t $split = function(separator, limit){\n\t return separator === undefined && limit === 0 ? [] : _split.call(this, separator, limit);\n\t };\n\t }\n\t // 21.1.3.17 String.prototype.split(separator, limit)\n\t return [function split(separator, limit){\n\t var O = defined(this)\n\t , fn = separator == undefined ? undefined : separator[SPLIT];\n\t return fn !== undefined ? fn.call(separator, O, limit) : $split.call(String(O), separator, limit);\n\t }, $split];\n\t});\n\n/***/ },\n/* 752 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t__webpack_require__(312);\n\tvar anObject = __webpack_require__(7)\n\t , $flags = __webpack_require__(133)\n\t , DESCRIPTORS = __webpack_require__(21)\n\t , TO_STRING = 'toString'\n\t , $toString = /./[TO_STRING];\n\t\n\tvar define = function(fn){\n\t __webpack_require__(36)(RegExp.prototype, TO_STRING, fn, true);\n\t};\n\t\n\t// 21.2.5.14 RegExp.prototype.toString()\n\tif(__webpack_require__(13)(function(){ return $toString.call({source: 'a', flags: 'b'}) != '/a/b'; })){\n\t define(function toString(){\n\t var R = anObject(this);\n\t return '/'.concat(R.source, '/',\n\t 'flags' in R ? R.flags : !DESCRIPTORS && R instanceof RegExp ? $flags.call(R) : undefined);\n\t });\n\t// FF44- RegExp#toString has a wrong name\n\t} else if($toString.name != TO_STRING){\n\t define(function toString(){\n\t return $toString.call(this);\n\t });\n\t}\n\n/***/ },\n/* 753 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.2 String.prototype.anchor(name)\n\t__webpack_require__(37)('anchor', function(createHTML){\n\t return function anchor(name){\n\t return createHTML(this, 'a', 'name', name);\n\t }\n\t});\n\n/***/ },\n/* 754 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.3 String.prototype.big()\n\t__webpack_require__(37)('big', function(createHTML){\n\t return function big(){\n\t return createHTML(this, 'big', '', '');\n\t }\n\t});\n\n/***/ },\n/* 755 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.4 String.prototype.blink()\n\t__webpack_require__(37)('blink', function(createHTML){\n\t return function blink(){\n\t return createHTML(this, 'blink', '', '');\n\t }\n\t});\n\n/***/ },\n/* 756 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.5 String.prototype.bold()\n\t__webpack_require__(37)('bold', function(createHTML){\n\t return function bold(){\n\t return createHTML(this, 'b', '', '');\n\t }\n\t});\n\n/***/ },\n/* 757 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $at = __webpack_require__(192)(false);\n\t$export($export.P, 'String', {\n\t // 21.1.3.3 String.prototype.codePointAt(pos)\n\t codePointAt: function codePointAt(pos){\n\t return $at(this, pos);\n\t }\n\t});\n\n/***/ },\n/* 758 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toLength = __webpack_require__(24)\n\t , context = __webpack_require__(193)\n\t , ENDS_WITH = 'endsWith'\n\t , $endsWith = ''[ENDS_WITH];\n\t\n\t$export($export.P + $export.F * __webpack_require__(179)(ENDS_WITH), 'String', {\n\t endsWith: function endsWith(searchString /*, endPosition = @length */){\n\t var that = context(this, searchString, ENDS_WITH)\n\t , endPosition = arguments.length > 1 ? arguments[1] : undefined\n\t , len = toLength(that.length)\n\t , end = endPosition === undefined ? len : Math.min(toLength(endPosition), len)\n\t , search = String(searchString);\n\t return $endsWith\n\t ? $endsWith.call(that, search, end)\n\t : that.slice(end - search.length, end) === search;\n\t }\n\t});\n\n/***/ },\n/* 759 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.6 String.prototype.fixed()\n\t__webpack_require__(37)('fixed', function(createHTML){\n\t return function fixed(){\n\t return createHTML(this, 'tt', '', '');\n\t }\n\t});\n\n/***/ },\n/* 760 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.7 String.prototype.fontcolor(color)\n\t__webpack_require__(37)('fontcolor', function(createHTML){\n\t return function fontcolor(color){\n\t return createHTML(this, 'font', 'color', color);\n\t }\n\t});\n\n/***/ },\n/* 761 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.8 String.prototype.fontsize(size)\n\t__webpack_require__(37)('fontsize', function(createHTML){\n\t return function fontsize(size){\n\t return createHTML(this, 'font', 'size', size);\n\t }\n\t});\n\n/***/ },\n/* 762 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3)\n\t , toIndex = __webpack_require__(84)\n\t , fromCharCode = String.fromCharCode\n\t , $fromCodePoint = String.fromCodePoint;\n\t\n\t// length should be 1, old FF problem\n\t$export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String', {\n\t // 21.1.2.2 String.fromCodePoint(...codePoints)\n\t fromCodePoint: function fromCodePoint(x){ // eslint-disable-line no-unused-vars\n\t var res = []\n\t , aLen = arguments.length\n\t , i = 0\n\t , code;\n\t while(aLen > i){\n\t code = +arguments[i++];\n\t if(toIndex(code, 0x10ffff) !== code)throw RangeError(code + ' is not a valid code point');\n\t res.push(code < 0x10000\n\t ? fromCharCode(code)\n\t : fromCharCode(((code -= 0x10000) >> 10) + 0xd800, code % 0x400 + 0xdc00)\n\t );\n\t } return res.join('');\n\t }\n\t});\n\n/***/ },\n/* 763 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 21.1.3.7 String.prototype.includes(searchString, position = 0)\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , context = __webpack_require__(193)\n\t , INCLUDES = 'includes';\n\t\n\t$export($export.P + $export.F * __webpack_require__(179)(INCLUDES), 'String', {\n\t includes: function includes(searchString /*, position = 0 */){\n\t return !!~context(this, searchString, INCLUDES)\n\t .indexOf(searchString, arguments.length > 1 ? arguments[1] : undefined);\n\t }\n\t});\n\n/***/ },\n/* 764 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.9 String.prototype.italics()\n\t__webpack_require__(37)('italics', function(createHTML){\n\t return function italics(){\n\t return createHTML(this, 'i', '', '');\n\t }\n\t});\n\n/***/ },\n/* 765 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $at = __webpack_require__(192)(true);\n\t\n\t// 21.1.3.27 String.prototype[@@iterator]()\n\t__webpack_require__(185)(String, 'String', function(iterated){\n\t this._t = String(iterated); // target\n\t this._i = 0; // next index\n\t// 21.1.5.2.1 %StringIteratorPrototype%.next()\n\t}, function(){\n\t var O = this._t\n\t , index = this._i\n\t , point;\n\t if(index >= O.length)return {value: undefined, done: true};\n\t point = $at(O, index);\n\t this._i += point.length;\n\t return {value: point, done: false};\n\t});\n\n/***/ },\n/* 766 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.10 String.prototype.link(url)\n\t__webpack_require__(37)('link', function(createHTML){\n\t return function link(url){\n\t return createHTML(this, 'a', 'href', url);\n\t }\n\t});\n\n/***/ },\n/* 767 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3)\n\t , toIObject = __webpack_require__(38)\n\t , toLength = __webpack_require__(24);\n\t\n\t$export($export.S, 'String', {\n\t // 21.1.2.4 String.raw(callSite, ...substitutions)\n\t raw: function raw(callSite){\n\t var tpl = toIObject(callSite.raw)\n\t , len = toLength(tpl.length)\n\t , aLen = arguments.length\n\t , res = []\n\t , i = 0;\n\t while(len > i){\n\t res.push(String(tpl[i++]));\n\t if(i < aLen)res.push(String(arguments[i]));\n\t } return res.join('');\n\t }\n\t});\n\n/***/ },\n/* 768 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.P, 'String', {\n\t // 21.1.3.13 String.prototype.repeat(count)\n\t repeat: __webpack_require__(194)\n\t});\n\n/***/ },\n/* 769 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.11 String.prototype.small()\n\t__webpack_require__(37)('small', function(createHTML){\n\t return function small(){\n\t return createHTML(this, 'small', '', '');\n\t }\n\t});\n\n/***/ },\n/* 770 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// 21.1.3.18 String.prototype.startsWith(searchString [, position ])\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toLength = __webpack_require__(24)\n\t , context = __webpack_require__(193)\n\t , STARTS_WITH = 'startsWith'\n\t , $startsWith = ''[STARTS_WITH];\n\t\n\t$export($export.P + $export.F * __webpack_require__(179)(STARTS_WITH), 'String', {\n\t startsWith: function startsWith(searchString /*, position = 0 */){\n\t var that = context(this, searchString, STARTS_WITH)\n\t , index = toLength(Math.min(arguments.length > 1 ? arguments[1] : undefined, that.length))\n\t , search = String(searchString);\n\t return $startsWith\n\t ? $startsWith.call(that, search, index)\n\t : that.slice(index, index + search.length) === search;\n\t }\n\t});\n\n/***/ },\n/* 771 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.12 String.prototype.strike()\n\t__webpack_require__(37)('strike', function(createHTML){\n\t return function strike(){\n\t return createHTML(this, 'strike', '', '');\n\t }\n\t});\n\n/***/ },\n/* 772 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.13 String.prototype.sub()\n\t__webpack_require__(37)('sub', function(createHTML){\n\t return function sub(){\n\t return createHTML(this, 'sub', '', '');\n\t }\n\t});\n\n/***/ },\n/* 773 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// B.2.3.14 String.prototype.sup()\n\t__webpack_require__(37)('sup', function(createHTML){\n\t return function sup(){\n\t return createHTML(this, 'sup', '', '');\n\t }\n\t});\n\n/***/ },\n/* 774 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 21.1.3.25 String.prototype.trim()\n\t__webpack_require__(97)('trim', function($trim){\n\t return function trim(){\n\t return $trim(this, 3);\n\t };\n\t});\n\n/***/ },\n/* 775 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// ECMAScript 6 symbols shim\n\tvar global = __webpack_require__(10)\n\t , has = __webpack_require__(32)\n\t , DESCRIPTORS = __webpack_require__(21)\n\t , $export = __webpack_require__(3)\n\t , redefine = __webpack_require__(36)\n\t , META = __webpack_require__(66).KEY\n\t , $fails = __webpack_require__(13)\n\t , shared = __webpack_require__(139)\n\t , setToStringTag = __webpack_require__(96)\n\t , uid = __webpack_require__(85)\n\t , wks = __webpack_require__(17)\n\t , wksExt = __webpack_require__(310)\n\t , wksDefine = __webpack_require__(198)\n\t , keyOf = __webpack_require__(651)\n\t , enumKeys = __webpack_require__(650)\n\t , isArray = __webpack_require__(183)\n\t , anObject = __webpack_require__(7)\n\t , toIObject = __webpack_require__(38)\n\t , toPrimitive = __webpack_require__(52)\n\t , createDesc = __webpack_require__(67)\n\t , _create = __webpack_require__(79)\n\t , gOPNExt = __webpack_require__(302)\n\t , $GOPD = __webpack_require__(41)\n\t , $DP = __webpack_require__(22)\n\t , $keys = __webpack_require__(81)\n\t , gOPD = $GOPD.f\n\t , dP = $DP.f\n\t , gOPN = gOPNExt.f\n\t , $Symbol = global.Symbol\n\t , $JSON = global.JSON\n\t , _stringify = $JSON && $JSON.stringify\n\t , PROTOTYPE = 'prototype'\n\t , HIDDEN = wks('_hidden')\n\t , TO_PRIMITIVE = wks('toPrimitive')\n\t , isEnum = {}.propertyIsEnumerable\n\t , SymbolRegistry = shared('symbol-registry')\n\t , AllSymbols = shared('symbols')\n\t , OPSymbols = shared('op-symbols')\n\t , ObjectProto = Object[PROTOTYPE]\n\t , USE_NATIVE = typeof $Symbol == 'function'\n\t , QObject = global.QObject;\n\t// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\n\tvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\t\n\t// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\n\tvar setSymbolDesc = DESCRIPTORS && $fails(function(){\n\t return _create(dP({}, 'a', {\n\t get: function(){ return dP(this, 'a', {value: 7}).a; }\n\t })).a != 7;\n\t}) ? function(it, key, D){\n\t var protoDesc = gOPD(ObjectProto, key);\n\t if(protoDesc)delete ObjectProto[key];\n\t dP(it, key, D);\n\t if(protoDesc && it !== ObjectProto)dP(ObjectProto, key, protoDesc);\n\t} : dP;\n\t\n\tvar wrap = function(tag){\n\t var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n\t sym._k = tag;\n\t return sym;\n\t};\n\t\n\tvar isSymbol = USE_NATIVE && typeof $Symbol.iterator == 'symbol' ? function(it){\n\t return typeof it == 'symbol';\n\t} : function(it){\n\t return it instanceof $Symbol;\n\t};\n\t\n\tvar $defineProperty = function defineProperty(it, key, D){\n\t if(it === ObjectProto)$defineProperty(OPSymbols, key, D);\n\t anObject(it);\n\t key = toPrimitive(key, true);\n\t anObject(D);\n\t if(has(AllSymbols, key)){\n\t if(!D.enumerable){\n\t if(!has(it, HIDDEN))dP(it, HIDDEN, createDesc(1, {}));\n\t it[HIDDEN][key] = true;\n\t } else {\n\t if(has(it, HIDDEN) && it[HIDDEN][key])it[HIDDEN][key] = false;\n\t D = _create(D, {enumerable: createDesc(0, false)});\n\t } return setSymbolDesc(it, key, D);\n\t } return dP(it, key, D);\n\t};\n\tvar $defineProperties = function defineProperties(it, P){\n\t anObject(it);\n\t var keys = enumKeys(P = toIObject(P))\n\t , i = 0\n\t , l = keys.length\n\t , key;\n\t while(l > i)$defineProperty(it, key = keys[i++], P[key]);\n\t return it;\n\t};\n\tvar $create = function create(it, P){\n\t return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n\t};\n\tvar $propertyIsEnumerable = function propertyIsEnumerable(key){\n\t var E = isEnum.call(this, key = toPrimitive(key, true));\n\t if(this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key))return false;\n\t return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n\t};\n\tvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key){\n\t it = toIObject(it);\n\t key = toPrimitive(key, true);\n\t if(it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key))return;\n\t var D = gOPD(it, key);\n\t if(D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key]))D.enumerable = true;\n\t return D;\n\t};\n\tvar $getOwnPropertyNames = function getOwnPropertyNames(it){\n\t var names = gOPN(toIObject(it))\n\t , result = []\n\t , i = 0\n\t , key;\n\t while(names.length > i){\n\t if(!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META)result.push(key);\n\t } return result;\n\t};\n\tvar $getOwnPropertySymbols = function getOwnPropertySymbols(it){\n\t var IS_OP = it === ObjectProto\n\t , names = gOPN(IS_OP ? OPSymbols : toIObject(it))\n\t , result = []\n\t , i = 0\n\t , key;\n\t while(names.length > i){\n\t if(has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true))result.push(AllSymbols[key]);\n\t } return result;\n\t};\n\t\n\t// 19.4.1.1 Symbol([description])\n\tif(!USE_NATIVE){\n\t $Symbol = function Symbol(){\n\t if(this instanceof $Symbol)throw TypeError('Symbol is not a constructor!');\n\t var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n\t var $set = function(value){\n\t if(this === ObjectProto)$set.call(OPSymbols, value);\n\t if(has(this, HIDDEN) && has(this[HIDDEN], tag))this[HIDDEN][tag] = false;\n\t setSymbolDesc(this, tag, createDesc(1, value));\n\t };\n\t if(DESCRIPTORS && setter)setSymbolDesc(ObjectProto, tag, {configurable: true, set: $set});\n\t return wrap(tag);\n\t };\n\t redefine($Symbol[PROTOTYPE], 'toString', function toString(){\n\t return this._k;\n\t });\n\t\n\t $GOPD.f = $getOwnPropertyDescriptor;\n\t $DP.f = $defineProperty;\n\t __webpack_require__(80).f = gOPNExt.f = $getOwnPropertyNames;\n\t __webpack_require__(110).f = $propertyIsEnumerable;\n\t __webpack_require__(138).f = $getOwnPropertySymbols;\n\t\n\t if(DESCRIPTORS && !__webpack_require__(78)){\n\t redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n\t }\n\t\n\t wksExt.f = function(name){\n\t return wrap(wks(name));\n\t }\n\t}\n\t\n\t$export($export.G + $export.W + $export.F * !USE_NATIVE, {Symbol: $Symbol});\n\t\n\tfor(var symbols = (\n\t // 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n\t 'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'\n\t).split(','), i = 0; symbols.length > i; )wks(symbols[i++]);\n\t\n\tfor(var symbols = $keys(wks.store), i = 0; symbols.length > i; )wksDefine(symbols[i++]);\n\t\n\t$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n\t // 19.4.2.1 Symbol.for(key)\n\t 'for': function(key){\n\t return has(SymbolRegistry, key += '')\n\t ? SymbolRegistry[key]\n\t : SymbolRegistry[key] = $Symbol(key);\n\t },\n\t // 19.4.2.5 Symbol.keyFor(sym)\n\t keyFor: function keyFor(key){\n\t if(isSymbol(key))return keyOf(SymbolRegistry, key);\n\t throw TypeError(key + ' is not a symbol!');\n\t },\n\t useSetter: function(){ setter = true; },\n\t useSimple: function(){ setter = false; }\n\t});\n\t\n\t$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n\t // 19.1.2.2 Object.create(O [, Properties])\n\t create: $create,\n\t // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n\t defineProperty: $defineProperty,\n\t // 19.1.2.3 Object.defineProperties(O, Properties)\n\t defineProperties: $defineProperties,\n\t // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n\t getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n\t // 19.1.2.7 Object.getOwnPropertyNames(O)\n\t getOwnPropertyNames: $getOwnPropertyNames,\n\t // 19.1.2.8 Object.getOwnPropertySymbols(O)\n\t getOwnPropertySymbols: $getOwnPropertySymbols\n\t});\n\t\n\t// 24.3.2 JSON.stringify(value [, replacer [, space]])\n\t$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function(){\n\t var S = $Symbol();\n\t // MS Edge converts symbol values to JSON as {}\n\t // WebKit converts symbol values to JSON as null\n\t // V8 throws on boxed symbols\n\t return _stringify([S]) != '[null]' || _stringify({a: S}) != '{}' || _stringify(Object(S)) != '{}';\n\t})), 'JSON', {\n\t stringify: function stringify(it){\n\t if(it === undefined || isSymbol(it))return; // IE8 returns string on undefined\n\t var args = [it]\n\t , i = 1\n\t , replacer, $replacer;\n\t while(arguments.length > i)args.push(arguments[i++]);\n\t replacer = args[1];\n\t if(typeof replacer == 'function')$replacer = replacer;\n\t if($replacer || !isArray(replacer))replacer = function(key, value){\n\t if($replacer)value = $replacer.call(this, key, value);\n\t if(!isSymbol(value))return value;\n\t };\n\t args[1] = replacer;\n\t return _stringify.apply($JSON, args);\n\t }\n\t});\n\t\n\t// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n\t$Symbol[PROTOTYPE][TO_PRIMITIVE] || __webpack_require__(35)($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n\t// 19.4.3.5 Symbol.prototype[@@toStringTag]\n\tsetToStringTag($Symbol, 'Symbol');\n\t// 20.2.1.9 Math[@@toStringTag]\n\tsetToStringTag(Math, 'Math', true);\n\t// 24.3.3 JSON[@@toStringTag]\n\tsetToStringTag(global.JSON, 'JSON', true);\n\n/***/ },\n/* 776 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , $typed = __webpack_require__(140)\n\t , buffer = __webpack_require__(197)\n\t , anObject = __webpack_require__(7)\n\t , toIndex = __webpack_require__(84)\n\t , toLength = __webpack_require__(24)\n\t , isObject = __webpack_require__(15)\n\t , ArrayBuffer = __webpack_require__(10).ArrayBuffer\n\t , speciesConstructor = __webpack_require__(191)\n\t , $ArrayBuffer = buffer.ArrayBuffer\n\t , $DataView = buffer.DataView\n\t , $isView = $typed.ABV && ArrayBuffer.isView\n\t , $slice = $ArrayBuffer.prototype.slice\n\t , VIEW = $typed.VIEW\n\t , ARRAY_BUFFER = 'ArrayBuffer';\n\t\n\t$export($export.G + $export.W + $export.F * (ArrayBuffer !== $ArrayBuffer), {ArrayBuffer: $ArrayBuffer});\n\t\n\t$export($export.S + $export.F * !$typed.CONSTR, ARRAY_BUFFER, {\n\t // 24.1.3.1 ArrayBuffer.isView(arg)\n\t isView: function isView(it){\n\t return $isView && $isView(it) || isObject(it) && VIEW in it;\n\t }\n\t});\n\t\n\t$export($export.P + $export.U + $export.F * __webpack_require__(13)(function(){\n\t return !new $ArrayBuffer(2).slice(1, undefined).byteLength;\n\t}), ARRAY_BUFFER, {\n\t // 24.1.4.3 ArrayBuffer.prototype.slice(start, end)\n\t slice: function slice(start, end){\n\t if($slice !== undefined && end === undefined)return $slice.call(anObject(this), start); // FF fix\n\t var len = anObject(this).byteLength\n\t , first = toIndex(start, len)\n\t , final = toIndex(end === undefined ? len : end, len)\n\t , result = new (speciesConstructor(this, $ArrayBuffer))(toLength(final - first))\n\t , viewS = new $DataView(this)\n\t , viewT = new $DataView(result)\n\t , index = 0;\n\t while(first < final){\n\t viewT.setUint8(index++, viewS.getUint8(first++));\n\t } return result;\n\t }\n\t});\n\t\n\t__webpack_require__(83)(ARRAY_BUFFER);\n\n/***/ },\n/* 777 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3);\n\t$export($export.G + $export.W + $export.F * !__webpack_require__(140).ABV, {\n\t DataView: __webpack_require__(197).DataView\n\t});\n\n/***/ },\n/* 778 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Float32', 4, function(init){\n\t return function Float32Array(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t});\n\n/***/ },\n/* 779 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Float64', 8, function(init){\n\t return function Float64Array(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t});\n\n/***/ },\n/* 780 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Int16', 2, function(init){\n\t return function Int16Array(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t});\n\n/***/ },\n/* 781 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Int32', 4, function(init){\n\t return function Int32Array(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t});\n\n/***/ },\n/* 782 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Int8', 1, function(init){\n\t return function Int8Array(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t});\n\n/***/ },\n/* 783 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Uint16', 2, function(init){\n\t return function Uint16Array(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t});\n\n/***/ },\n/* 784 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Uint32', 4, function(init){\n\t return function Uint32Array(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t});\n\n/***/ },\n/* 785 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Uint8', 1, function(init){\n\t return function Uint8Array(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t});\n\n/***/ },\n/* 786 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(61)('Uint8', 1, function(init){\n\t return function Uint8ClampedArray(data, byteOffset, length){\n\t return init(this, data, byteOffset, length);\n\t };\n\t}, true);\n\n/***/ },\n/* 787 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar weak = __webpack_require__(294);\n\t\n\t// 23.4 WeakSet Objects\n\t__webpack_require__(131)('WeakSet', function(get){\n\t return function WeakSet(){ return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n\t}, {\n\t // 23.4.3.1 WeakSet.prototype.add(value)\n\t add: function add(value){\n\t return weak.def(this, value, true);\n\t }\n\t}, weak, false, true);\n\n/***/ },\n/* 788 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://github.com/tc39/Array.prototype.includes\n\tvar $export = __webpack_require__(3)\n\t , $includes = __webpack_require__(130)(true);\n\t\n\t$export($export.P, 'Array', {\n\t includes: function includes(el /*, fromIndex = 0 */){\n\t return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n\t }\n\t});\n\t\n\t__webpack_require__(93)('includes');\n\n/***/ },\n/* 789 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-09/sept-25.md#510-globalasap-for-enqueuing-a-microtask\n\tvar $export = __webpack_require__(3)\n\t , microtask = __webpack_require__(188)()\n\t , process = __webpack_require__(10).process\n\t , isNode = __webpack_require__(44)(process) == 'process';\n\t\n\t$export($export.G, {\n\t asap: function asap(fn){\n\t var domain = isNode && process.domain;\n\t microtask(domain ? domain.bind(fn) : fn);\n\t }\n\t});\n\n/***/ },\n/* 790 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/ljharb/proposal-is-error\n\tvar $export = __webpack_require__(3)\n\t , cof = __webpack_require__(44);\n\t\n\t$export($export.S, 'Error', {\n\t isError: function isError(it){\n\t return cof(it) === 'Error';\n\t }\n\t});\n\n/***/ },\n/* 791 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/DavidBruant/Map-Set.prototype.toJSON\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.P + $export.R, 'Map', {toJSON: __webpack_require__(293)('Map')});\n\n/***/ },\n/* 792 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://gist.github.com/BrendanEich/4294d5c212a6d2254703\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {\n\t iaddh: function iaddh(x0, x1, y0, y1){\n\t var $x0 = x0 >>> 0\n\t , $x1 = x1 >>> 0\n\t , $y0 = y0 >>> 0;\n\t return $x1 + (y1 >>> 0) + (($x0 & $y0 | ($x0 | $y0) & ~($x0 + $y0 >>> 0)) >>> 31) | 0;\n\t }\n\t});\n\n/***/ },\n/* 793 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://gist.github.com/BrendanEich/4294d5c212a6d2254703\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {\n\t imulh: function imulh(u, v){\n\t var UINT16 = 0xffff\n\t , $u = +u\n\t , $v = +v\n\t , u0 = $u & UINT16\n\t , v0 = $v & UINT16\n\t , u1 = $u >> 16\n\t , v1 = $v >> 16\n\t , t = (u1 * v0 >>> 0) + (u0 * v0 >>> 16);\n\t return u1 * v1 + (t >> 16) + ((u0 * v1 >>> 0) + (t & UINT16) >> 16);\n\t }\n\t});\n\n/***/ },\n/* 794 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://gist.github.com/BrendanEich/4294d5c212a6d2254703\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {\n\t isubh: function isubh(x0, x1, y0, y1){\n\t var $x0 = x0 >>> 0\n\t , $x1 = x1 >>> 0\n\t , $y0 = y0 >>> 0;\n\t return $x1 - (y1 >>> 0) - ((~$x0 & $y0 | ~($x0 ^ $y0) & $x0 - $y0 >>> 0) >>> 31) | 0;\n\t }\n\t});\n\n/***/ },\n/* 795 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://gist.github.com/BrendanEich/4294d5c212a6d2254703\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'Math', {\n\t umulh: function umulh(u, v){\n\t var UINT16 = 0xffff\n\t , $u = +u\n\t , $v = +v\n\t , u0 = $u & UINT16\n\t , v0 = $v & UINT16\n\t , u1 = $u >>> 16\n\t , v1 = $v >>> 16\n\t , t = (u1 * v0 >>> 0) + (u0 * v0 >>> 16);\n\t return u1 * v1 + (t >>> 16) + ((u0 * v1 >>> 0) + (t & UINT16) >>> 16);\n\t }\n\t});\n\n/***/ },\n/* 796 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toObject = __webpack_require__(27)\n\t , aFunction = __webpack_require__(34)\n\t , $defineProperty = __webpack_require__(22);\n\t\n\t// B.2.2.2 Object.prototype.__defineGetter__(P, getter)\n\t__webpack_require__(21) && $export($export.P + __webpack_require__(137), 'Object', {\n\t __defineGetter__: function __defineGetter__(P, getter){\n\t $defineProperty.f(toObject(this), P, {get: aFunction(getter), enumerable: true, configurable: true});\n\t }\n\t});\n\n/***/ },\n/* 797 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toObject = __webpack_require__(27)\n\t , aFunction = __webpack_require__(34)\n\t , $defineProperty = __webpack_require__(22);\n\t\n\t// B.2.2.3 Object.prototype.__defineSetter__(P, setter)\n\t__webpack_require__(21) && $export($export.P + __webpack_require__(137), 'Object', {\n\t __defineSetter__: function __defineSetter__(P, setter){\n\t $defineProperty.f(toObject(this), P, {set: aFunction(setter), enumerable: true, configurable: true});\n\t }\n\t});\n\n/***/ },\n/* 798 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/tc39/proposal-object-values-entries\n\tvar $export = __webpack_require__(3)\n\t , $entries = __webpack_require__(304)(true);\n\t\n\t$export($export.S, 'Object', {\n\t entries: function entries(it){\n\t return $entries(it);\n\t }\n\t});\n\n/***/ },\n/* 799 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/tc39/proposal-object-getownpropertydescriptors\n\tvar $export = __webpack_require__(3)\n\t , ownKeys = __webpack_require__(305)\n\t , toIObject = __webpack_require__(38)\n\t , gOPD = __webpack_require__(41)\n\t , createProperty = __webpack_require__(176);\n\t\n\t$export($export.S, 'Object', {\n\t getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object){\n\t var O = toIObject(object)\n\t , getDesc = gOPD.f\n\t , keys = ownKeys(O)\n\t , result = {}\n\t , i = 0\n\t , key;\n\t while(keys.length > i)createProperty(result, key = keys[i++], getDesc(O, key));\n\t return result;\n\t }\n\t});\n\n/***/ },\n/* 800 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toObject = __webpack_require__(27)\n\t , toPrimitive = __webpack_require__(52)\n\t , getPrototypeOf = __webpack_require__(42)\n\t , getOwnPropertyDescriptor = __webpack_require__(41).f;\n\t\n\t// B.2.2.4 Object.prototype.__lookupGetter__(P)\n\t__webpack_require__(21) && $export($export.P + __webpack_require__(137), 'Object', {\n\t __lookupGetter__: function __lookupGetter__(P){\n\t var O = toObject(this)\n\t , K = toPrimitive(P, true)\n\t , D;\n\t do {\n\t if(D = getOwnPropertyDescriptor(O, K))return D.get;\n\t } while(O = getPrototypeOf(O));\n\t }\n\t});\n\n/***/ },\n/* 801 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\tvar $export = __webpack_require__(3)\n\t , toObject = __webpack_require__(27)\n\t , toPrimitive = __webpack_require__(52)\n\t , getPrototypeOf = __webpack_require__(42)\n\t , getOwnPropertyDescriptor = __webpack_require__(41).f;\n\t\n\t// B.2.2.5 Object.prototype.__lookupSetter__(P)\n\t__webpack_require__(21) && $export($export.P + __webpack_require__(137), 'Object', {\n\t __lookupSetter__: function __lookupSetter__(P){\n\t var O = toObject(this)\n\t , K = toPrimitive(P, true)\n\t , D;\n\t do {\n\t if(D = getOwnPropertyDescriptor(O, K))return D.set;\n\t } while(O = getPrototypeOf(O));\n\t }\n\t});\n\n/***/ },\n/* 802 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/tc39/proposal-object-values-entries\n\tvar $export = __webpack_require__(3)\n\t , $values = __webpack_require__(304)(false);\n\t\n\t$export($export.S, 'Object', {\n\t values: function values(it){\n\t return $values(it);\n\t }\n\t});\n\n/***/ },\n/* 803 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://github.com/zenparsing/es-observable\n\tvar $export = __webpack_require__(3)\n\t , global = __webpack_require__(10)\n\t , core = __webpack_require__(58)\n\t , microtask = __webpack_require__(188)()\n\t , OBSERVABLE = __webpack_require__(17)('observable')\n\t , aFunction = __webpack_require__(34)\n\t , anObject = __webpack_require__(7)\n\t , anInstance = __webpack_require__(77)\n\t , redefineAll = __webpack_require__(82)\n\t , hide = __webpack_require__(35)\n\t , forOf = __webpack_require__(94)\n\t , RETURN = forOf.RETURN;\n\t\n\tvar getMethod = function(fn){\n\t return fn == null ? undefined : aFunction(fn);\n\t};\n\t\n\tvar cleanupSubscription = function(subscription){\n\t var cleanup = subscription._c;\n\t if(cleanup){\n\t subscription._c = undefined;\n\t cleanup();\n\t }\n\t};\n\t\n\tvar subscriptionClosed = function(subscription){\n\t return subscription._o === undefined;\n\t};\n\t\n\tvar closeSubscription = function(subscription){\n\t if(!subscriptionClosed(subscription)){\n\t subscription._o = undefined;\n\t cleanupSubscription(subscription);\n\t }\n\t};\n\t\n\tvar Subscription = function(observer, subscriber){\n\t anObject(observer);\n\t this._c = undefined;\n\t this._o = observer;\n\t observer = new SubscriptionObserver(this);\n\t try {\n\t var cleanup = subscriber(observer)\n\t , subscription = cleanup;\n\t if(cleanup != null){\n\t if(typeof cleanup.unsubscribe === 'function')cleanup = function(){ subscription.unsubscribe(); };\n\t else aFunction(cleanup);\n\t this._c = cleanup;\n\t }\n\t } catch(e){\n\t observer.error(e);\n\t return;\n\t } if(subscriptionClosed(this))cleanupSubscription(this);\n\t};\n\t\n\tSubscription.prototype = redefineAll({}, {\n\t unsubscribe: function unsubscribe(){ closeSubscription(this); }\n\t});\n\t\n\tvar SubscriptionObserver = function(subscription){\n\t this._s = subscription;\n\t};\n\t\n\tSubscriptionObserver.prototype = redefineAll({}, {\n\t next: function next(value){\n\t var subscription = this._s;\n\t if(!subscriptionClosed(subscription)){\n\t var observer = subscription._o;\n\t try {\n\t var m = getMethod(observer.next);\n\t if(m)return m.call(observer, value);\n\t } catch(e){\n\t try {\n\t closeSubscription(subscription);\n\t } finally {\n\t throw e;\n\t }\n\t }\n\t }\n\t },\n\t error: function error(value){\n\t var subscription = this._s;\n\t if(subscriptionClosed(subscription))throw value;\n\t var observer = subscription._o;\n\t subscription._o = undefined;\n\t try {\n\t var m = getMethod(observer.error);\n\t if(!m)throw value;\n\t value = m.call(observer, value);\n\t } catch(e){\n\t try {\n\t cleanupSubscription(subscription);\n\t } finally {\n\t throw e;\n\t }\n\t } cleanupSubscription(subscription);\n\t return value;\n\t },\n\t complete: function complete(value){\n\t var subscription = this._s;\n\t if(!subscriptionClosed(subscription)){\n\t var observer = subscription._o;\n\t subscription._o = undefined;\n\t try {\n\t var m = getMethod(observer.complete);\n\t value = m ? m.call(observer, value) : undefined;\n\t } catch(e){\n\t try {\n\t cleanupSubscription(subscription);\n\t } finally {\n\t throw e;\n\t }\n\t } cleanupSubscription(subscription);\n\t return value;\n\t }\n\t }\n\t});\n\t\n\tvar $Observable = function Observable(subscriber){\n\t anInstance(this, $Observable, 'Observable', '_f')._f = aFunction(subscriber);\n\t};\n\t\n\tredefineAll($Observable.prototype, {\n\t subscribe: function subscribe(observer){\n\t return new Subscription(observer, this._f);\n\t },\n\t forEach: function forEach(fn){\n\t var that = this;\n\t return new (core.Promise || global.Promise)(function(resolve, reject){\n\t aFunction(fn);\n\t var subscription = that.subscribe({\n\t next : function(value){\n\t try {\n\t return fn(value);\n\t } catch(e){\n\t reject(e);\n\t subscription.unsubscribe();\n\t }\n\t },\n\t error: reject,\n\t complete: resolve\n\t });\n\t });\n\t }\n\t});\n\t\n\tredefineAll($Observable, {\n\t from: function from(x){\n\t var C = typeof this === 'function' ? this : $Observable;\n\t var method = getMethod(anObject(x)[OBSERVABLE]);\n\t if(method){\n\t var observable = anObject(method.call(x));\n\t return observable.constructor === C ? observable : new C(function(observer){\n\t return observable.subscribe(observer);\n\t });\n\t }\n\t return new C(function(observer){\n\t var done = false;\n\t microtask(function(){\n\t if(!done){\n\t try {\n\t if(forOf(x, false, function(it){\n\t observer.next(it);\n\t if(done)return RETURN;\n\t }) === RETURN)return;\n\t } catch(e){\n\t if(done)throw e;\n\t observer.error(e);\n\t return;\n\t } observer.complete();\n\t }\n\t });\n\t return function(){ done = true; };\n\t });\n\t },\n\t of: function of(){\n\t for(var i = 0, l = arguments.length, items = Array(l); i < l;)items[i] = arguments[i++];\n\t return new (typeof this === 'function' ? this : $Observable)(function(observer){\n\t var done = false;\n\t microtask(function(){\n\t if(!done){\n\t for(var i = 0; i < items.length; ++i){\n\t observer.next(items[i]);\n\t if(done)return;\n\t } observer.complete();\n\t }\n\t });\n\t return function(){ done = true; };\n\t });\n\t }\n\t});\n\t\n\thide($Observable.prototype, OBSERVABLE, function(){ return this; });\n\t\n\t$export($export.G, {Observable: $Observable});\n\t\n\t__webpack_require__(83)('Observable');\n\n/***/ },\n/* 804 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , toMetaKey = metadata.key\n\t , ordinaryDefineOwnMetadata = metadata.set;\n\t\n\tmetadata.exp({defineMetadata: function defineMetadata(metadataKey, metadataValue, target, targetKey){\n\t ordinaryDefineOwnMetadata(metadataKey, metadataValue, anObject(target), toMetaKey(targetKey));\n\t}});\n\n/***/ },\n/* 805 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , toMetaKey = metadata.key\n\t , getOrCreateMetadataMap = metadata.map\n\t , store = metadata.store;\n\t\n\tmetadata.exp({deleteMetadata: function deleteMetadata(metadataKey, target /*, targetKey */){\n\t var targetKey = arguments.length < 3 ? undefined : toMetaKey(arguments[2])\n\t , metadataMap = getOrCreateMetadataMap(anObject(target), targetKey, false);\n\t if(metadataMap === undefined || !metadataMap['delete'](metadataKey))return false;\n\t if(metadataMap.size)return true;\n\t var targetMetadata = store.get(target);\n\t targetMetadata['delete'](targetKey);\n\t return !!targetMetadata.size || store['delete'](target);\n\t}});\n\n/***/ },\n/* 806 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar Set = __webpack_require__(313)\n\t , from = __webpack_require__(289)\n\t , metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , getPrototypeOf = __webpack_require__(42)\n\t , ordinaryOwnMetadataKeys = metadata.keys\n\t , toMetaKey = metadata.key;\n\t\n\tvar ordinaryMetadataKeys = function(O, P){\n\t var oKeys = ordinaryOwnMetadataKeys(O, P)\n\t , parent = getPrototypeOf(O);\n\t if(parent === null)return oKeys;\n\t var pKeys = ordinaryMetadataKeys(parent, P);\n\t return pKeys.length ? oKeys.length ? from(new Set(oKeys.concat(pKeys))) : pKeys : oKeys;\n\t};\n\t\n\tmetadata.exp({getMetadataKeys: function getMetadataKeys(target /*, targetKey */){\n\t return ordinaryMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1]));\n\t}});\n\n/***/ },\n/* 807 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , getPrototypeOf = __webpack_require__(42)\n\t , ordinaryHasOwnMetadata = metadata.has\n\t , ordinaryGetOwnMetadata = metadata.get\n\t , toMetaKey = metadata.key;\n\t\n\tvar ordinaryGetMetadata = function(MetadataKey, O, P){\n\t var hasOwn = ordinaryHasOwnMetadata(MetadataKey, O, P);\n\t if(hasOwn)return ordinaryGetOwnMetadata(MetadataKey, O, P);\n\t var parent = getPrototypeOf(O);\n\t return parent !== null ? ordinaryGetMetadata(MetadataKey, parent, P) : undefined;\n\t};\n\t\n\tmetadata.exp({getMetadata: function getMetadata(metadataKey, target /*, targetKey */){\n\t return ordinaryGetMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2]));\n\t}});\n\n/***/ },\n/* 808 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , ordinaryOwnMetadataKeys = metadata.keys\n\t , toMetaKey = metadata.key;\n\t\n\tmetadata.exp({getOwnMetadataKeys: function getOwnMetadataKeys(target /*, targetKey */){\n\t return ordinaryOwnMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1]));\n\t}});\n\n/***/ },\n/* 809 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , ordinaryGetOwnMetadata = metadata.get\n\t , toMetaKey = metadata.key;\n\t\n\tmetadata.exp({getOwnMetadata: function getOwnMetadata(metadataKey, target /*, targetKey */){\n\t return ordinaryGetOwnMetadata(metadataKey, anObject(target)\n\t , arguments.length < 3 ? undefined : toMetaKey(arguments[2]));\n\t}});\n\n/***/ },\n/* 810 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , getPrototypeOf = __webpack_require__(42)\n\t , ordinaryHasOwnMetadata = metadata.has\n\t , toMetaKey = metadata.key;\n\t\n\tvar ordinaryHasMetadata = function(MetadataKey, O, P){\n\t var hasOwn = ordinaryHasOwnMetadata(MetadataKey, O, P);\n\t if(hasOwn)return true;\n\t var parent = getPrototypeOf(O);\n\t return parent !== null ? ordinaryHasMetadata(MetadataKey, parent, P) : false;\n\t};\n\t\n\tmetadata.exp({hasMetadata: function hasMetadata(metadataKey, target /*, targetKey */){\n\t return ordinaryHasMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2]));\n\t}});\n\n/***/ },\n/* 811 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , ordinaryHasOwnMetadata = metadata.has\n\t , toMetaKey = metadata.key;\n\t\n\tmetadata.exp({hasOwnMetadata: function hasOwnMetadata(metadataKey, target /*, targetKey */){\n\t return ordinaryHasOwnMetadata(metadataKey, anObject(target)\n\t , arguments.length < 3 ? undefined : toMetaKey(arguments[2]));\n\t}});\n\n/***/ },\n/* 812 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar metadata = __webpack_require__(60)\n\t , anObject = __webpack_require__(7)\n\t , aFunction = __webpack_require__(34)\n\t , toMetaKey = metadata.key\n\t , ordinaryDefineOwnMetadata = metadata.set;\n\t\n\tmetadata.exp({metadata: function metadata(metadataKey, metadataValue){\n\t return function decorator(target, targetKey){\n\t ordinaryDefineOwnMetadata(\n\t metadataKey, metadataValue,\n\t (targetKey !== undefined ? anObject : aFunction)(target),\n\t toMetaKey(targetKey)\n\t );\n\t };\n\t}});\n\n/***/ },\n/* 813 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/DavidBruant/Map-Set.prototype.toJSON\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.P + $export.R, 'Set', {toJSON: __webpack_require__(293)('Set')});\n\n/***/ },\n/* 814 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://github.com/mathiasbynens/String.prototype.at\n\tvar $export = __webpack_require__(3)\n\t , $at = __webpack_require__(192)(true);\n\t\n\t$export($export.P, 'String', {\n\t at: function at(pos){\n\t return $at(this, pos);\n\t }\n\t});\n\n/***/ },\n/* 815 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://tc39.github.io/String.prototype.matchAll/\n\tvar $export = __webpack_require__(3)\n\t , defined = __webpack_require__(45)\n\t , toLength = __webpack_require__(24)\n\t , isRegExp = __webpack_require__(135)\n\t , getFlags = __webpack_require__(133)\n\t , RegExpProto = RegExp.prototype;\n\t\n\tvar $RegExpStringIterator = function(regexp, string){\n\t this._r = regexp;\n\t this._s = string;\n\t};\n\t\n\t__webpack_require__(184)($RegExpStringIterator, 'RegExp String', function next(){\n\t var match = this._r.exec(this._s);\n\t return {value: match, done: match === null};\n\t});\n\t\n\t$export($export.P, 'String', {\n\t matchAll: function matchAll(regexp){\n\t defined(this);\n\t if(!isRegExp(regexp))throw TypeError(regexp + ' is not a regexp!');\n\t var S = String(this)\n\t , flags = 'flags' in RegExpProto ? String(regexp.flags) : getFlags.call(regexp)\n\t , rx = new RegExp(regexp.source, ~flags.indexOf('g') ? flags : 'g' + flags);\n\t rx.lastIndex = toLength(regexp.lastIndex);\n\t return new $RegExpStringIterator(rx, S);\n\t }\n\t});\n\n/***/ },\n/* 816 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://github.com/tc39/proposal-string-pad-start-end\n\tvar $export = __webpack_require__(3)\n\t , $pad = __webpack_require__(309);\n\t\n\t$export($export.P, 'String', {\n\t padEnd: function padEnd(maxLength /*, fillString = ' ' */){\n\t return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, false);\n\t }\n\t});\n\n/***/ },\n/* 817 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://github.com/tc39/proposal-string-pad-start-end\n\tvar $export = __webpack_require__(3)\n\t , $pad = __webpack_require__(309);\n\t\n\t$export($export.P, 'String', {\n\t padStart: function padStart(maxLength /*, fillString = ' ' */){\n\t return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, true);\n\t }\n\t});\n\n/***/ },\n/* 818 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://github.com/sebmarkbage/ecmascript-string-left-right-trim\n\t__webpack_require__(97)('trimLeft', function($trim){\n\t return function trimLeft(){\n\t return $trim(this, 1);\n\t };\n\t}, 'trimStart');\n\n/***/ },\n/* 819 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://github.com/sebmarkbage/ecmascript-string-left-right-trim\n\t__webpack_require__(97)('trimRight', function($trim){\n\t return function trimRight(){\n\t return $trim(this, 2);\n\t };\n\t}, 'trimEnd');\n\n/***/ },\n/* 820 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(198)('asyncIterator');\n\n/***/ },\n/* 821 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(198)('observable');\n\n/***/ },\n/* 822 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// https://github.com/ljharb/proposal-global\n\tvar $export = __webpack_require__(3);\n\t\n\t$export($export.S, 'System', {global: __webpack_require__(10)});\n\n/***/ },\n/* 823 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $iterators = __webpack_require__(200)\n\t , redefine = __webpack_require__(36)\n\t , global = __webpack_require__(10)\n\t , hide = __webpack_require__(35)\n\t , Iterators = __webpack_require__(95)\n\t , wks = __webpack_require__(17)\n\t , ITERATOR = wks('iterator')\n\t , TO_STRING_TAG = wks('toStringTag')\n\t , ArrayValues = Iterators.Array;\n\t\n\tfor(var collections = ['NodeList', 'DOMTokenList', 'MediaList', 'StyleSheetList', 'CSSRuleList'], i = 0; i < 5; i++){\n\t var NAME = collections[i]\n\t , Collection = global[NAME]\n\t , proto = Collection && Collection.prototype\n\t , key;\n\t if(proto){\n\t if(!proto[ITERATOR])hide(proto, ITERATOR, ArrayValues);\n\t if(!proto[TO_STRING_TAG])hide(proto, TO_STRING_TAG, NAME);\n\t Iterators[NAME] = ArrayValues;\n\t for(key in $iterators)if(!proto[key])redefine(proto, key, $iterators[key], true);\n\t }\n\t}\n\n/***/ },\n/* 824 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar $export = __webpack_require__(3)\n\t , $task = __webpack_require__(196);\n\t$export($export.G + $export.B, {\n\t setImmediate: $task.set,\n\t clearImmediate: $task.clear\n\t});\n\n/***/ },\n/* 825 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t// ie9- setTimeout & setInterval additional parameters fix\n\tvar global = __webpack_require__(10)\n\t , $export = __webpack_require__(3)\n\t , invoke = __webpack_require__(134)\n\t , partial = __webpack_require__(652)\n\t , navigator = global.navigator\n\t , MSIE = !!navigator && /MSIE .\\./.test(navigator.userAgent); // <- dirty ie9- check\n\tvar wrap = function(set){\n\t return MSIE ? function(fn, time /*, ...args */){\n\t return set(invoke(\n\t partial,\n\t [].slice.call(arguments, 2),\n\t typeof fn == 'function' ? fn : Function(fn)\n\t ), time);\n\t } : set;\n\t};\n\t$export($export.G + $export.B + $export.F * MSIE, {\n\t setTimeout: wrap(global.setTimeout),\n\t setInterval: wrap(global.setInterval)\n\t});\n\n/***/ },\n/* 826 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t__webpack_require__(775);\n\t__webpack_require__(714);\n\t__webpack_require__(716);\n\t__webpack_require__(715);\n\t__webpack_require__(718);\n\t__webpack_require__(720);\n\t__webpack_require__(725);\n\t__webpack_require__(719);\n\t__webpack_require__(717);\n\t__webpack_require__(727);\n\t__webpack_require__(726);\n\t__webpack_require__(722);\n\t__webpack_require__(723);\n\t__webpack_require__(721);\n\t__webpack_require__(713);\n\t__webpack_require__(724);\n\t__webpack_require__(728);\n\t__webpack_require__(729);\n\t__webpack_require__(681);\n\t__webpack_require__(683);\n\t__webpack_require__(682);\n\t__webpack_require__(731);\n\t__webpack_require__(730);\n\t__webpack_require__(701);\n\t__webpack_require__(711);\n\t__webpack_require__(712);\n\t__webpack_require__(702);\n\t__webpack_require__(703);\n\t__webpack_require__(704);\n\t__webpack_require__(705);\n\t__webpack_require__(706);\n\t__webpack_require__(707);\n\t__webpack_require__(708);\n\t__webpack_require__(709);\n\t__webpack_require__(710);\n\t__webpack_require__(684);\n\t__webpack_require__(685);\n\t__webpack_require__(686);\n\t__webpack_require__(687);\n\t__webpack_require__(688);\n\t__webpack_require__(689);\n\t__webpack_require__(690);\n\t__webpack_require__(691);\n\t__webpack_require__(692);\n\t__webpack_require__(693);\n\t__webpack_require__(694);\n\t__webpack_require__(695);\n\t__webpack_require__(696);\n\t__webpack_require__(697);\n\t__webpack_require__(698);\n\t__webpack_require__(699);\n\t__webpack_require__(700);\n\t__webpack_require__(762);\n\t__webpack_require__(767);\n\t__webpack_require__(774);\n\t__webpack_require__(765);\n\t__webpack_require__(757);\n\t__webpack_require__(758);\n\t__webpack_require__(763);\n\t__webpack_require__(768);\n\t__webpack_require__(770);\n\t__webpack_require__(753);\n\t__webpack_require__(754);\n\t__webpack_require__(755);\n\t__webpack_require__(756);\n\t__webpack_require__(759);\n\t__webpack_require__(760);\n\t__webpack_require__(761);\n\t__webpack_require__(764);\n\t__webpack_require__(766);\n\t__webpack_require__(769);\n\t__webpack_require__(771);\n\t__webpack_require__(772);\n\t__webpack_require__(773);\n\t__webpack_require__(676);\n\t__webpack_require__(678);\n\t__webpack_require__(677);\n\t__webpack_require__(680);\n\t__webpack_require__(679);\n\t__webpack_require__(665);\n\t__webpack_require__(663);\n\t__webpack_require__(669);\n\t__webpack_require__(666);\n\t__webpack_require__(672);\n\t__webpack_require__(674);\n\t__webpack_require__(662);\n\t__webpack_require__(668);\n\t__webpack_require__(659);\n\t__webpack_require__(673);\n\t__webpack_require__(657);\n\t__webpack_require__(671);\n\t__webpack_require__(670);\n\t__webpack_require__(664);\n\t__webpack_require__(667);\n\t__webpack_require__(656);\n\t__webpack_require__(658);\n\t__webpack_require__(661);\n\t__webpack_require__(660);\n\t__webpack_require__(675);\n\t__webpack_require__(200);\n\t__webpack_require__(747);\n\t__webpack_require__(752);\n\t__webpack_require__(312);\n\t__webpack_require__(748);\n\t__webpack_require__(749);\n\t__webpack_require__(750);\n\t__webpack_require__(751);\n\t__webpack_require__(732);\n\t__webpack_require__(311);\n\t__webpack_require__(313);\n\t__webpack_require__(314);\n\t__webpack_require__(787);\n\t__webpack_require__(776);\n\t__webpack_require__(777);\n\t__webpack_require__(782);\n\t__webpack_require__(785);\n\t__webpack_require__(786);\n\t__webpack_require__(780);\n\t__webpack_require__(783);\n\t__webpack_require__(781);\n\t__webpack_require__(784);\n\t__webpack_require__(778);\n\t__webpack_require__(779);\n\t__webpack_require__(733);\n\t__webpack_require__(734);\n\t__webpack_require__(735);\n\t__webpack_require__(736);\n\t__webpack_require__(737);\n\t__webpack_require__(740);\n\t__webpack_require__(738);\n\t__webpack_require__(739);\n\t__webpack_require__(741);\n\t__webpack_require__(742);\n\t__webpack_require__(743);\n\t__webpack_require__(744);\n\t__webpack_require__(746);\n\t__webpack_require__(745);\n\t__webpack_require__(788);\n\t__webpack_require__(814);\n\t__webpack_require__(817);\n\t__webpack_require__(816);\n\t__webpack_require__(818);\n\t__webpack_require__(819);\n\t__webpack_require__(815);\n\t__webpack_require__(820);\n\t__webpack_require__(821);\n\t__webpack_require__(799);\n\t__webpack_require__(802);\n\t__webpack_require__(798);\n\t__webpack_require__(796);\n\t__webpack_require__(797);\n\t__webpack_require__(800);\n\t__webpack_require__(801);\n\t__webpack_require__(791);\n\t__webpack_require__(813);\n\t__webpack_require__(822);\n\t__webpack_require__(790);\n\t__webpack_require__(792);\n\t__webpack_require__(794);\n\t__webpack_require__(793);\n\t__webpack_require__(795);\n\t__webpack_require__(804);\n\t__webpack_require__(805);\n\t__webpack_require__(807);\n\t__webpack_require__(806);\n\t__webpack_require__(809);\n\t__webpack_require__(808);\n\t__webpack_require__(810);\n\t__webpack_require__(811);\n\t__webpack_require__(812);\n\t__webpack_require__(789);\n\t__webpack_require__(803);\n\t__webpack_require__(825);\n\t__webpack_require__(824);\n\t__webpack_require__(823);\n\tmodule.exports = __webpack_require__(58);\n\n/***/ },\n/* 827 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar pSlice = Array.prototype.slice;\n\tvar objectKeys = __webpack_require__(829);\n\tvar isArguments = __webpack_require__(828);\n\t\n\tvar deepEqual = module.exports = function (actual, expected, opts) {\n\t if (!opts) opts = {};\n\t // 7.1. All identical values are equivalent, as determined by ===.\n\t if (actual === expected) {\n\t return true;\n\t\n\t } else if (actual instanceof Date && expected instanceof Date) {\n\t return actual.getTime() === expected.getTime();\n\t\n\t // 7.3. Other pairs that do not both pass typeof value == 'object',\n\t // equivalence is determined by ==.\n\t } else if (!actual || !expected || typeof actual != 'object' && typeof expected != 'object') {\n\t return opts.strict ? actual === expected : actual == expected;\n\t\n\t // 7.4. For all other Object pairs, including Array objects, equivalence is\n\t // determined by having the same number of owned properties (as verified\n\t // with Object.prototype.hasOwnProperty.call), the same set of keys\n\t // (although not necessarily the same order), equivalent values for every\n\t // corresponding key, and an identical 'prototype' property. Note: this\n\t // accounts for both named and indexed properties on Arrays.\n\t } else {\n\t return objEquiv(actual, expected, opts);\n\t }\n\t}\n\t\n\tfunction isUndefinedOrNull(value) {\n\t return value === null || value === undefined;\n\t}\n\t\n\tfunction isBuffer (x) {\n\t if (!x || typeof x !== 'object' || typeof x.length !== 'number') return false;\n\t if (typeof x.copy !== 'function' || typeof x.slice !== 'function') {\n\t return false;\n\t }\n\t if (x.length > 0 && typeof x[0] !== 'number') return false;\n\t return true;\n\t}\n\t\n\tfunction objEquiv(a, b, opts) {\n\t var i, key;\n\t if (isUndefinedOrNull(a) || isUndefinedOrNull(b))\n\t return false;\n\t // an identical 'prototype' property.\n\t if (a.prototype !== b.prototype) return false;\n\t //~~~I've managed to break Object.keys through screwy arguments passing.\n\t // Converting to array solves the problem.\n\t if (isArguments(a)) {\n\t if (!isArguments(b)) {\n\t return false;\n\t }\n\t a = pSlice.call(a);\n\t b = pSlice.call(b);\n\t return deepEqual(a, b, opts);\n\t }\n\t if (isBuffer(a)) {\n\t if (!isBuffer(b)) {\n\t return false;\n\t }\n\t if (a.length !== b.length) return false;\n\t for (i = 0; i < a.length; i++) {\n\t if (a[i] !== b[i]) return false;\n\t }\n\t return true;\n\t }\n\t try {\n\t var ka = objectKeys(a),\n\t kb = objectKeys(b);\n\t } catch (e) {//happens when one is a string literal and the other isn't\n\t return false;\n\t }\n\t // having the same number of owned properties (keys incorporates\n\t // hasOwnProperty)\n\t if (ka.length != kb.length)\n\t return false;\n\t //the same set of keys (although not necessarily the same order),\n\t ka.sort();\n\t kb.sort();\n\t //~~~cheap key test\n\t for (i = ka.length - 1; i >= 0; i--) {\n\t if (ka[i] != kb[i])\n\t return false;\n\t }\n\t //equivalent values for every corresponding key, and\n\t //~~~possibly expensive deep test\n\t for (i = ka.length - 1; i >= 0; i--) {\n\t key = ka[i];\n\t if (!deepEqual(a[key], b[key], opts)) return false;\n\t }\n\t return typeof a === typeof b;\n\t}\n\n\n/***/ },\n/* 828 */\n/***/ function(module, exports) {\n\n\tvar supportsArgumentsClass = (function(){\n\t return Object.prototype.toString.call(arguments)\n\t})() == '[object Arguments]';\n\t\n\texports = module.exports = supportsArgumentsClass ? supported : unsupported;\n\t\n\texports.supported = supported;\n\tfunction supported(object) {\n\t return Object.prototype.toString.call(object) == '[object Arguments]';\n\t};\n\t\n\texports.unsupported = unsupported;\n\tfunction unsupported(object){\n\t return object &&\n\t typeof object == 'object' &&\n\t typeof object.length == 'number' &&\n\t Object.prototype.hasOwnProperty.call(object, 'callee') &&\n\t !Object.prototype.propertyIsEnumerable.call(object, 'callee') ||\n\t false;\n\t};\n\n\n/***/ },\n/* 829 */\n/***/ function(module, exports) {\n\n\texports = module.exports = typeof Object.keys === 'function'\n\t ? Object.keys : shim;\n\t\n\texports.shim = shim;\n\tfunction shim (obj) {\n\t var keys = [];\n\t for (var key in obj) keys.push(key);\n\t return keys;\n\t}\n\n\n/***/ },\n/* 830 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tfunction _extendableBuiltin(cls) {\n\t function ExtendableBuiltin() {\n\t cls.apply(this, arguments);\n\t }\n\t\n\t ExtendableBuiltin.prototype = Object.create(cls.prototype, {\n\t constructor: {\n\t value: cls,\n\t enumerable: false,\n\t writable: true,\n\t configurable: true\n\t }\n\t });\n\t\n\t if (Object.setPrototypeOf) {\n\t Object.setPrototypeOf(ExtendableBuiltin, cls);\n\t } else {\n\t ExtendableBuiltin.__proto__ = cls;\n\t }\n\t\n\t return ExtendableBuiltin;\n\t}\n\t\n\tvar ExtendableError = function (_extendableBuiltin2) {\n\t _inherits(ExtendableError, _extendableBuiltin2);\n\t\n\t function ExtendableError() {\n\t var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';\n\t\n\t _classCallCheck(this, ExtendableError);\n\t\n\t // extending Error is weird and does not propagate `message`\n\t var _this = _possibleConstructorReturn(this, (ExtendableError.__proto__ || Object.getPrototypeOf(ExtendableError)).call(this, message));\n\t\n\t Object.defineProperty(_this, 'message', {\n\t configurable: true,\n\t enumerable: false,\n\t value: message,\n\t writable: true\n\t });\n\t\n\t Object.defineProperty(_this, 'name', {\n\t configurable: true,\n\t enumerable: false,\n\t value: _this.constructor.name,\n\t writable: true\n\t });\n\t\n\t if (Error.hasOwnProperty('captureStackTrace')) {\n\t Error.captureStackTrace(_this, _this.constructor);\n\t return _possibleConstructorReturn(_this);\n\t }\n\t\n\t Object.defineProperty(_this, 'stack', {\n\t configurable: true,\n\t enumerable: false,\n\t value: new Error(message).stack,\n\t writable: true\n\t });\n\t return _this;\n\t }\n\t\n\t return ExtendableError;\n\t}(_extendableBuiltin(Error));\n\t\n\texports.default = ExtendableError;\n\tmodule.exports = exports['default'];\n\n\n/***/ },\n/* 831 */\n/***/ function(module, exports) {\n\n\t// removed by extract-text-webpack-plugin\n\n/***/ },\n/* 832 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\t/**\n\t * Copyright (c) 2013-present, 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 * @typechecks\n\t */\n\t\n\tvar invariant = __webpack_require__(6);\n\t\n\t/**\n\t * The CSSCore module specifies the API (and implements most of the methods)\n\t * that should be used when dealing with the display of elements (via their\n\t * CSS classes and visibility on screen. It is an API focused on mutating the\n\t * display and not reading it as no logical state should be encoded in the\n\t * display of elements.\n\t */\n\t\n\t/* Slow implementation for browsers that don't natively support .matches() */\n\tfunction matchesSelector_SLOW(element, selector) {\n\t var root = element;\n\t while (root.parentNode) {\n\t root = root.parentNode;\n\t }\n\t\n\t var all = root.querySelectorAll(selector);\n\t return Array.prototype.indexOf.call(all, element) !== -1;\n\t}\n\t\n\tvar CSSCore = {\n\t\n\t /**\n\t * Adds the class passed in to the element if it doesn't already have it.\n\t *\n\t * @param {DOMElement} element the element to set the class on\n\t * @param {string} className the CSS className\n\t * @return {DOMElement} the element passed in\n\t */\n\t addClass: function addClass(element, className) {\n\t !!/\\s/.test(className) ? false ? invariant(false, 'CSSCore.addClass takes only a single class name. \"%s\" contains ' + 'multiple classes.', className) : invariant(false) : void 0;\n\t\n\t if (className) {\n\t if (element.classList) {\n\t element.classList.add(className);\n\t } else if (!CSSCore.hasClass(element, className)) {\n\t element.className = element.className + ' ' + className;\n\t }\n\t }\n\t return element;\n\t },\n\t\n\t /**\n\t * Removes the class passed in from the element\n\t *\n\t * @param {DOMElement} element the element to set the class on\n\t * @param {string} className the CSS className\n\t * @return {DOMElement} the element passed in\n\t */\n\t removeClass: function removeClass(element, className) {\n\t !!/\\s/.test(className) ? false ? invariant(false, 'CSSCore.removeClass takes only a single class name. \"%s\" contains ' + 'multiple classes.', className) : invariant(false) : void 0;\n\t\n\t if (className) {\n\t if (element.classList) {\n\t element.classList.remove(className);\n\t } else if (CSSCore.hasClass(element, className)) {\n\t element.className = element.className.replace(new RegExp('(^|\\\\s)' + className + '(?:\\\\s|$)', 'g'), '$1').replace(/\\s+/g, ' ') // multiple spaces to one\n\t .replace(/^\\s*|\\s*$/g, ''); // trim the ends\n\t }\n\t }\n\t return element;\n\t },\n\t\n\t /**\n\t * Helper to add or remove a class from an element based on a condition.\n\t *\n\t * @param {DOMElement} element the element to set the class on\n\t * @param {string} className the CSS className\n\t * @param {*} bool condition to whether to add or remove the class\n\t * @return {DOMElement} the element passed in\n\t */\n\t conditionClass: function conditionClass(element, className, bool) {\n\t return (bool ? CSSCore.addClass : CSSCore.removeClass)(element, className);\n\t },\n\t\n\t /**\n\t * Tests whether the element has the class specified.\n\t *\n\t * @param {DOMNode|DOMWindow} element the element to check the class on\n\t * @param {string} className the CSS className\n\t * @return {boolean} true if the element has the class, false if not\n\t */\n\t hasClass: function hasClass(element, className) {\n\t !!/\\s/.test(className) ? false ? invariant(false, 'CSS.hasClass takes only a single class name.') : invariant(false) : void 0;\n\t if (element.classList) {\n\t return !!className && element.classList.contains(className);\n\t }\n\t return (' ' + element.className + ' ').indexOf(' ' + className + ' ') > -1;\n\t },\n\t\n\t /**\n\t * Tests whether the element matches the selector specified\n\t *\n\t * @param {DOMNode|DOMWindow} element the element that we are querying\n\t * @param {string} selector the CSS selector\n\t * @return {boolean} true if the element matches the selector, false if not\n\t */\n\t matchesSelector: function matchesSelector(element, selector) {\n\t var matchesImpl = element.matches || element.webkitMatchesSelector || element.mozMatchesSelector || element.msMatchesSelector || function (s) {\n\t return matchesSelector_SLOW(element, s);\n\t };\n\t return matchesImpl.call(element, selector);\n\t }\n\t\n\t};\n\t\n\tmodule.exports = CSSCore;\n\n/***/ },\n/* 833 */\n/***/ function(module, exports) {\n\n\t\"use strict\";\n\t\n\t/**\n\t * Copyright (c) 2013-present, 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 * @typechecks\n\t */\n\t\n\tvar _hyphenPattern = /-(.)/g;\n\t\n\t/**\n\t * Camelcases a hyphenated string, for example:\n\t *\n\t * > camelize('background-color')\n\t * < \"backgroundColor\"\n\t *\n\t * @param {string} string\n\t * @return {string}\n\t */\n\tfunction camelize(string) {\n\t return string.replace(_hyphenPattern, function (_, character) {\n\t return character.toUpperCase();\n\t });\n\t}\n\t\n\tmodule.exports = camelize;\n\n/***/ },\n/* 834 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2013-present, 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 * @typechecks\n\t */\n\t\n\t'use strict';\n\t\n\tvar camelize = __webpack_require__(833);\n\t\n\tvar msPattern = /^-ms-/;\n\t\n\t/**\n\t * Camelcases a hyphenated CSS property name, for example:\n\t *\n\t * > camelizeStyleName('background-color')\n\t * < \"backgroundColor\"\n\t * > camelizeStyleName('-moz-transition')\n\t * < \"MozTransition\"\n\t * > camelizeStyleName('-ms-transition')\n\t * < \"msTransition\"\n\t *\n\t * As Andi Smith suggests\n\t * (http://www.andismith.com/blog/2012/02/modernizr-prefixed/), an `-ms` prefix\n\t * is converted to lowercase `ms`.\n\t *\n\t * @param {string} string\n\t * @return {string}\n\t */\n\tfunction camelizeStyleName(string) {\n\t return camelize(string.replace(msPattern, 'ms-'));\n\t}\n\t\n\tmodule.exports = camelizeStyleName;\n\n/***/ },\n/* 835 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\t/**\n\t * Copyright (c) 2013-present, 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 */\n\t\n\tvar isTextNode = __webpack_require__(843);\n\t\n\t/*eslint-disable no-bitwise */\n\t\n\t/**\n\t * Checks if a given DOM node contains or is another DOM node.\n\t */\n\tfunction containsNode(outerNode, innerNode) {\n\t if (!outerNode || !innerNode) {\n\t return false;\n\t } else if (outerNode === innerNode) {\n\t return true;\n\t } else if (isTextNode(outerNode)) {\n\t return false;\n\t } else if (isTextNode(innerNode)) {\n\t return containsNode(outerNode, innerNode.parentNode);\n\t } else if ('contains' in outerNode) {\n\t return outerNode.contains(innerNode);\n\t } else if (outerNode.compareDocumentPosition) {\n\t return !!(outerNode.compareDocumentPosition(innerNode) & 16);\n\t } else {\n\t return false;\n\t }\n\t}\n\t\n\tmodule.exports = containsNode;\n\n/***/ },\n/* 836 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\t/**\n\t * Copyright (c) 2013-present, 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 * @typechecks\n\t */\n\t\n\tvar invariant = __webpack_require__(6);\n\t\n\t/**\n\t * Convert array-like objects to arrays.\n\t *\n\t * This API assumes the caller knows the contents of the data type. For less\n\t * well defined inputs use createArrayFromMixed.\n\t *\n\t * @param {object|function|filelist} obj\n\t * @return {array}\n\t */\n\tfunction toArray(obj) {\n\t var length = obj.length;\n\t\n\t // Some browsers builtin objects can report typeof 'function' (e.g. NodeList\n\t // in old versions of Safari).\n\t !(!Array.isArray(obj) && (typeof obj === 'object' || typeof obj === 'function')) ? false ? invariant(false, 'toArray: Array-like object expected') : invariant(false) : void 0;\n\t\n\t !(typeof length === 'number') ? false ? invariant(false, 'toArray: Object needs a length property') : invariant(false) : void 0;\n\t\n\t !(length === 0 || length - 1 in obj) ? false ? invariant(false, 'toArray: Object should have keys for indices') : invariant(false) : void 0;\n\t\n\t !(typeof obj.callee !== 'function') ? false ? invariant(false, 'toArray: Object can\\'t be `arguments`. Use rest params ' + '(function(...args) {}) or Array.from() instead.') : invariant(false) : void 0;\n\t\n\t // Old IE doesn't give collections access to hasOwnProperty. Assume inputs\n\t // without method will throw during the slice call and skip straight to the\n\t // fallback.\n\t if (obj.hasOwnProperty) {\n\t try {\n\t return Array.prototype.slice.call(obj);\n\t } catch (e) {\n\t // IE < 9 does not support Array#slice on collections objects\n\t }\n\t }\n\t\n\t // Fall back to copying key by key. This assumes all keys have a value,\n\t // so will not preserve sparsely populated inputs.\n\t var ret = Array(length);\n\t for (var ii = 0; ii < length; ii++) {\n\t ret[ii] = obj[ii];\n\t }\n\t return ret;\n\t}\n\t\n\t/**\n\t * Perform a heuristic test to determine if an object is \"array-like\".\n\t *\n\t * A monk asked Joshu, a Zen master, \"Has a dog Buddha nature?\"\n\t * Joshu replied: \"Mu.\"\n\t *\n\t * This function determines if its argument has \"array nature\": it returns\n\t * true if the argument is an actual array, an `arguments' object, or an\n\t * HTMLCollection (e.g. node.childNodes or node.getElementsByTagName()).\n\t *\n\t * It will return false for other array-like objects like Filelist.\n\t *\n\t * @param {*} obj\n\t * @return {boolean}\n\t */\n\tfunction hasArrayNature(obj) {\n\t return (\n\t // not null/false\n\t !!obj && (\n\t // arrays are objects, NodeLists are functions in Safari\n\t typeof obj == 'object' || typeof obj == 'function') &&\n\t // quacks like an array\n\t 'length' in obj &&\n\t // not window\n\t !('setInterval' in obj) &&\n\t // no DOM node should be considered an array-like\n\t // a 'select' element has 'length' and 'item' properties on IE8\n\t typeof obj.nodeType != 'number' && (\n\t // a real array\n\t Array.isArray(obj) ||\n\t // arguments\n\t 'callee' in obj ||\n\t // HTMLCollection/NodeList\n\t 'item' in obj)\n\t );\n\t}\n\t\n\t/**\n\t * Ensure that the argument is an array by wrapping it in an array if it is not.\n\t * Creates a copy of the argument if it is already an array.\n\t *\n\t * This is mostly useful idiomatically:\n\t *\n\t * var createArrayFromMixed = require('createArrayFromMixed');\n\t *\n\t * function takesOneOrMoreThings(things) {\n\t * things = createArrayFromMixed(things);\n\t * ...\n\t * }\n\t *\n\t * This allows you to treat `things' as an array, but accept scalars in the API.\n\t *\n\t * If you need to convert an array-like object, like `arguments`, into an array\n\t * use toArray instead.\n\t *\n\t * @param {*} obj\n\t * @return {array}\n\t */\n\tfunction createArrayFromMixed(obj) {\n\t if (!hasArrayNature(obj)) {\n\t return [obj];\n\t } else if (Array.isArray(obj)) {\n\t return obj.slice();\n\t } else {\n\t return toArray(obj);\n\t }\n\t}\n\t\n\tmodule.exports = createArrayFromMixed;\n\n/***/ },\n/* 837 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\t/**\n\t * Copyright (c) 2013-present, 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 * @typechecks\n\t */\n\t\n\t/*eslint-disable fb-www/unsafe-html*/\n\t\n\tvar ExecutionEnvironment = __webpack_require__(30);\n\t\n\tvar createArrayFromMixed = __webpack_require__(836);\n\tvar getMarkupWrap = __webpack_require__(838);\n\tvar invariant = __webpack_require__(6);\n\t\n\t/**\n\t * Dummy container used to render all markup.\n\t */\n\tvar dummyNode = ExecutionEnvironment.canUseDOM ? document.createElement('div') : null;\n\t\n\t/**\n\t * Pattern used by `getNodeName`.\n\t */\n\tvar nodeNamePattern = /^\\s*<(\\w+)/;\n\t\n\t/**\n\t * Extracts the `nodeName` of the first element in a string of markup.\n\t *\n\t * @param {string} markup String of markup.\n\t * @return {?string} Node name of the supplied markup.\n\t */\n\tfunction getNodeName(markup) {\n\t var nodeNameMatch = markup.match(nodeNamePattern);\n\t return nodeNameMatch && nodeNameMatch[1].toLowerCase();\n\t}\n\t\n\t/**\n\t * Creates an array containing the nodes rendered from the supplied markup. The\n\t * optionally supplied `handleScript` function will be invoked once for each\n\t *