extends React.Component
{\r\n tokens: any[] = []\r\n\r\n subscribe = (messageType: messageTypes, func: Function) => {\r\n this.tokens.push(PubSub.subscribe(messageType.toString(), func))\r\n }\r\n\r\n publish \n The environment mitigation levy applies only within the MSA Levy Area. Conservation Areas are not included within the\n MSA Levy Area.\n \n Twelve precincts (which have precinct structure plans gazetted prior to 1 March 2012) are included within the broader\n MSA program but are not included within the MSA Levy Area. Instead, biodiversity offset requirements are set out in\n the relevant precinct structure plan, native vegetation precinct plan, and any applicable conservation management\n plan. Please contact{' '}\n \n The tool also identifies land parcels which are subject to DEECA’s Salvage and Translocation Protocol for Melbourne’s\n Growth Corridors. Additional requirements may apply to planning permits on these parcels. More information on salvage\n and translocation is available on the{' '}\n \n For information about the requirements of the Melbourne Strategic Assessment (Environment Mitigation Levy) Act 2020,\n the MSA program approvals under section 146B of the Environment Protection and Biodiversity Conservation Act 1999\n (Cth) and the circumstances and areas to which they apply, either refer to the{' '}\n \n This tool is a component of the environment mitigation information system established under section 19 of the{' '}\n ;\\n }\\n ```\\n \");\n }\n\n return _this;\n }\n\n var _proto = ScrollContainerImplementation.prototype;\n\n _proto.componentDidMount = function componentDidMount() {\n var _this2 = this;\n\n // eslint-disable-next-line react/no-find-dom-node\n var node = _reactDom.default.findDOMNode(this);\n\n var _this$props = this.props,\n location = _this$props.location,\n scrollKey = _this$props.scrollKey;\n if (!node) return;\n node.addEventListener(\"scroll\", function () {\n _this2.props.context.save(location, scrollKey, node.scrollTop);\n });\n var position = this.props.context.read(location, scrollKey);\n node.scrollTo(0, position || 0);\n };\n\n _proto.render = function render() {\n return this.props.children;\n };\n\n return ScrollContainerImplementation;\n}(React.Component);\n\nvar ScrollContainer = function ScrollContainer(props) {\n return /*#__PURE__*/React.createElement(_router.Location, null, function (_ref) {\n var location = _ref.location;\n return /*#__PURE__*/React.createElement(_scrollHandler.ScrollContext.Consumer, null, function (context) {\n return /*#__PURE__*/React.createElement(ScrollContainerImplementation, (0, _extends2.default)({}, props, {\n context: context,\n location: location\n }));\n });\n });\n};\n\nexports.ScrollContainer = ScrollContainer;\nScrollContainer.propTypes = propTypes;","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","const preferDefault = m => (m && m.default) || m\n\nif (process.env.BUILD_STAGE === `develop`) {\n module.exports = preferDefault(require(`./public-page-renderer-dev`))\n} else if (process.env.BUILD_STAGE === `build-javascript`) {\n module.exports = preferDefault(require(`./public-page-renderer-prod`))\n} else {\n module.exports = () => null\n}\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","/*\n Why commonjs and not ES imports/exports?\n\n This module is used to alias `create-react-context` package, but drop the the actual implementation part\n because Gatsby requires version of react that has implementatoin baked in.\n \n Package source is using ES modules:\n - https://github.com/jamiebuilds/create-react-context/blob/v0.3.0/src/index.js\n \n But to build this package `babel-plugin-add-module-exports` is used ( https://www.npmjs.com/package/babel-plugin-add-module-exports).\n Which result in both `module.exports` and `exports.default` being set to same thing.\n\n We don't use that babel plugin so we only have `exports.default`.\n\n This cause problems in various 3rd party react components that rely on `module.exports` being set.\n See https://github.com/gatsbyjs/gatsby/issues/23645 for example of it.\n \n Instead of adding same babel plugin we mimic output here. Adding babel plugin just for this would:\n a) unnecesairly slow down compilation for all other files (if we just apply it everywhere)\n b) or complicate babel-loader configuration with overwrite specifically for this file\n*/\n\nconst { createContext } = require(`react`)\n\nmodule.exports = createContext\nmodule.exports.default = createContext\n","module.exports = __webpack_public_path__ + \"static/deeca-logo-575e35f010dfb949017d4c6b685a4b69.png\";","module.exports = __webpack_public_path__ + \"static/vicmap-aerial-icon-e73f30936cd13ad768b44cd7faa8ea95.png\";","function _extends() {\n module.exports = _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nmodule.exports = _extends;","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.es/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","import React from 'react'\r\nimport colours from '../lib/colours'\r\nimport styled from 'styled-components'\r\nimport IEventedComponent from '../components/IEventedComponent'\r\n\r\nconst StyledBackground = styled.div`\r\n width: 100%;\r\n background-color: ${colours.white} !important;\r\n`\r\n\r\nconst ContentDiv = styled.div`\r\n color: ${colours.darkPurple};\r\n padding-top: 40px;\r\n padding-bottom: 20px;\r\n`\r\n\r\ninterface IProps {}\r\n\r\ninterface IState {}\r\n\r\nclass MainContent extends IEventedComponent
console.log(newState)\"\n * @param {Array} script: [{\"type\": \"text/javascript\", \"src\": \"http://mysite.com/js/test.js\"}]\n * @param {Array} style: [{\"type\": \"text/css\", \"cssText\": \"div { display: block; color: blue; }\"}]\n * @param {String} title: \"Title\"\n * @param {Object} titleAttributes: {\"itemprop\": \"name\"}\n * @param {String} titleTemplate: \"MySite.com - %s\"\n */\n set: function set$$1(canUseDOM) {\n Component.canUseDOM = canUseDOM;\n }\n }]);\n return HelmetWrapper;\n }(React.Component), _class.propTypes = {\n base: PropTypes.object,\n bodyAttributes: PropTypes.object,\n children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]),\n defaultTitle: PropTypes.string,\n defer: PropTypes.bool,\n encodeSpecialCharacters: PropTypes.bool,\n htmlAttributes: PropTypes.object,\n link: PropTypes.arrayOf(PropTypes.object),\n meta: PropTypes.arrayOf(PropTypes.object),\n noscript: PropTypes.arrayOf(PropTypes.object),\n onChangeClientState: PropTypes.func,\n script: PropTypes.arrayOf(PropTypes.object),\n style: PropTypes.arrayOf(PropTypes.object),\n title: PropTypes.string,\n titleAttributes: PropTypes.object,\n titleTemplate: PropTypes.string\n }, _class.defaultProps = {\n defer: true,\n encodeSpecialCharacters: true\n }, _class.peek = Component.peek, _class.rewind = function () {\n var mappedState = Component.rewind();\n\n if (!mappedState) {\n // provide fallback if mappedState is undefined\n mappedState = mapStateOnServer({\n baseTag: [],\n bodyAttributes: {},\n encodeSpecialCharacters: true,\n htmlAttributes: {},\n linkTags: [],\n metaTags: [],\n noscriptTags: [],\n scriptTags: [],\n styleTags: [],\n title: \"\",\n titleAttributes: {}\n });\n }\n\n return mappedState;\n }, _temp;\n};\n\nvar NullComponent = function NullComponent() {\n return null;\n};\n\nvar HelmetSideEffects = withSideEffect(reducePropsToState, handleClientStateChange, mapStateOnServer)(NullComponent);\nvar HelmetExport = Helmet(HelmetSideEffects);\nHelmetExport.renderStatic = HelmetExport.rewind;\nexport default HelmetExport;\nexport { HelmetExport as Helmet };","module.exports = __webpack_public_path__ + \"static/background-image-triple-a42ec8adf4bb46d5d49bf440a178c168.jpg\";","export default function _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) { throw it; };\n\nmodule.exports = function (METHOD_NAME, options) {\n if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];\n if (!options) options = {};\n var method = [][METHOD_NAME];\n var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;\n var argument0 = has(options, 0) ? options[0] : thrower;\n var argument1 = has(options, 1) ? options[1] : undefined;\n\n return cache[METHOD_NAME] = !!method && !fails(function () {\n if (ACCESSORS && !DESCRIPTORS) return true;\n var O = { length: -1 };\n\n if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });\n else O[1] = 1;\n\n method.call(O, argument0, argument1);\n });\n};\n","import React from \"react\"\nimport PropTypes from \"prop-types\"\n\nimport loader from \"./loader\"\nimport InternalPageRenderer from \"./page-renderer\"\n\nconst ProdPageRenderer = ({ location }) => {\n const pageResources = loader.loadPageSync(location.pathname)\n if (!pageResources) {\n return null\n }\n return React.createElement(InternalPageRenderer, {\n location,\n pageResources,\n ...pageResources.json,\n })\n}\n\nProdPageRenderer.propTypes = {\n location: PropTypes.shape({\n pathname: PropTypes.string.isRequired,\n }).isRequired,\n}\n\nexport default ProdPageRenderer\n","import mapscapeIcon from '../images/mapscape-icon.png'\r\nimport mapscapeGreyscaleIcon from '../images/mapscape-greyscale-icon.png'\r\nimport vicmapAerialIcon from '../images/vicmap-aerial-icon.png'\r\nimport vicmapCartoIcon from '../images/vicmap-carto-icon.png'\r\nimport { basemapTypes, SearchControlPlaceholder } from '../lib/constants'\r\n\r\nconst mapshareAddressGeocoder =\r\n 'https://corp-geo.mapshare.vic.gov.au/arcgis/rest/services/Geocoder/VMAddressEZIAdd/GeocodeServer'\r\nconst mapshareParcelGeocoder = 'https://corp-geo.mapshare.vic.gov.au/arcgis/rest/services/Geocoder/VMParcelSPI/GeocodeServer'\r\nconst arcgisServerBaseUrl = 'https://nvr-gis.mapshare.vic.gov.au/arcgis/rest/services'\r\n\r\nconst mapConfig: any = {\r\n initialExtent: {\r\n xmin: 2429801,\r\n ymin: 2366989,\r\n xmax: 2568497,\r\n ymax: 2457491\r\n },\r\n arcgisServerBaseUrl: arcgisServerBaseUrl,\r\n arcgisServerGeometryUrl: `${arcgisServerBaseUrl}/Utilities/Geometry/GeometryServer`,\r\n basemaps: {\r\n vicmapCarto: {\r\n title: 'Vicmap - Carto',\r\n type: basemapTypes.wmts,\r\n url: 'https://base.maps.vic.gov.au/service',\r\n thumbnail: vicmapCartoIcon,\r\n layerId: 'CARTO_VG',\r\n serviceMode: 'KVP',\r\n opacity: 1, // Opacity must be 1 otherwise WMTS basemap covers all operational layers when viewed on mobile device.\r\n maxScale: 1 // This is set at 1 as otherwise basemap gallery has an issue thinking vicmapAerial is the same layer if they both have the same props\r\n },\r\n vicmapAerial: {\r\n title: 'Vicmap - Aerial',\r\n type: basemapTypes.wmts,\r\n url: 'https://base.maps.vic.gov.au/service',\r\n thumbnail: vicmapAerialIcon,\r\n layerId: 'AERIAL_VG',\r\n serviceMode: 'KVP',\r\n opacity: 1, // Opacity must be 1 otherwise WMTS basemap covers all operational layers when viewed on mobile device.\r\n maxScale: 0\r\n },\r\n},\r\n dynamicMapServices: {\r\n emisMsa: {\r\n includeInMap: true,\r\n url: `${arcgisServerBaseUrl}/EMIS_PUBLIC/EMIS_MSA/MapServer`,\r\n layers: {\r\n environmentMitigation: {\r\n name: 'MSA Environment Mitigation Dataset (EMD)',\r\n visible: true,\r\n legendGroup: 'MSA LEVY INFORMATION',\r\n legendOrder: 1\r\n },\r\n scatteredTrees: {\r\n name: 'MSA Environment Mitigation Dataset Scattered Tree Locations',\r\n visible: true,\r\n legendGroup: 'MSA LEVY INFORMATION',\r\n legendOrder: 2\r\n },\r\n paymentStatus: {\r\n name: 'MSA Payment Status',\r\n visible: true,\r\n legendGroup: 'MSA LEVY INFORMATION',\r\n legendOrder: 3\r\n },\r\n levyArea: {\r\n name: 'MSA Levy Area Boundary',\r\n visible: true,\r\n legendGroup: 'MSA LEVY INFORMATION',\r\n legendOrder: 4\r\n },\r\n conservationArea: {\r\n name: 'MSA Conservation Area',\r\n visible: true,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 5\r\n },\r\n omr: {\r\n name: 'Outer Metropolitan Ring Transport Corridor',\r\n visible: false,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 6\r\n },\r\n twelvePrecincts: {\r\n name: 'Twelve Precincts',\r\n visible: false,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 7\r\n },\r\n vpaPrecinctBoundaries: {\r\n name: 'VPA Precinct Boundaries',\r\n visible: false,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 8\r\n },\r\n ugb: {\r\n name: 'Urban Growth Boundary',\r\n visible: false,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 9\r\n },\r\n lgas: {\r\n name: 'Local Government Areas',\r\n visible: false,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 10\r\n },\r\n crownLand: {\r\n name: 'Crown Land',\r\n visible: false,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 11\r\n },\r\n parcels: {\r\n name: 'Parcels',\r\n visible: true,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 12\r\n },\r\n properties: {\r\n name: 'Properties',\r\n visible: false,\r\n legendGroup: 'MSA GENERAL',\r\n legendOrder: 13\r\n },\r\n growlingGrassFrogAreasOfStrategicImportance: {\r\n name: 'MSA Growling Grass Frog Areas of Strategic Importance',\r\n visible: false,\r\n legendGroup: 'PLANNING PERMIT INFORMATION',\r\n legendOrder: 14\r\n },\r\n salvageAndTranslocation: {\r\n name: 'MSA Salvage and Translocation',\r\n visible: false,\r\n legendGroup: 'PLANNING PERMIT INFORMATION',\r\n legendOrder: 15\r\n },\r\n nativeVegetationRegulationsArea: {\r\n name: 'Native Vegetation Regulations Area',\r\n visible: true\r\n }\r\n },\r\n tables: {\r\n msaLevyRates: { name: 'MSA Levy Rates', layerId: 16 }\r\n }\r\n },\r\n parcelAddress: {\r\n includeInMap: false,\r\n url: `https://corp-geo.mapshare.vic.gov.au/arcgis/rest/services/Geocoder/VMParcelAddressLookup/MapServer`,\r\n tables: {\r\n parcelAddress: { name: 'PARCEL_APPROVED_ADDRESS', layerId: 1 }\r\n }\r\n }\r\n },\r\n geoprocessingServices: {\r\n calculateLevyLiabilities: {\r\n url: `${arcgisServerBaseUrl}/EMIS_PUBLIC/EMIS_Public_HCO_Tools/GPServer/Calculate%20Levy%20Liabilities`\r\n }\r\n },\r\n searchConfig: {\r\n allPlaceholder: SearchControlPlaceholder,\r\n includeDefaultSources: false,\r\n locationEnabled: false\r\n },\r\n searchSources: [\r\n {\r\n url: mapshareAddressGeocoder,\r\n singleLineFieldName: 'SingleLine',\r\n outFields: ['Address'],\r\n name: 'Street Address',\r\n minSuggestCharacters: 5\r\n },\r\n {\r\n url: mapshareParcelGeocoder,\r\n singleLineFieldName: 'SingleLine',\r\n outFields: ['Address'],\r\n name: 'Parcel SPI',\r\n minSuggestCharacters: 3\r\n }\r\n ],\r\n parcelSelectionScale: 25000\r\n}\r\n\r\nexport default mapConfig\r\n","import \"core-js/modules/es.array.reduce.js\";\nimport { typeOf as e, isElement as t, isValidElementType as n } from \"react-is\";\nimport r, { useState as o, useContext as s, useMemo as i, useEffect as a, useRef as c, createElement as u, useDebugValue as l, useLayoutEffect as d } from \"react\";\nimport h from \"shallowequal\";\nimport p from \"@emotion/stylis\";\nimport f from \"@emotion/unitless\";\nimport m from \"@emotion/is-prop-valid\";\nimport y from \"hoist-non-react-statics\";\n\nfunction v() {\n return (v = Object.assign || function (e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n\n for (var r in n) {\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n }\n\n return e;\n }).apply(this, arguments);\n}\n\nvar g = function g(e, t) {\n for (var n = [e[0]], r = 0, o = t.length; r < o; r += 1) {\n n.push(t[r], e[r + 1]);\n }\n\n return n;\n},\n S = function S(t) {\n return null !== t && \"object\" == typeof t && \"[object Object]\" === (t.toString ? t.toString() : Object.prototype.toString.call(t)) && !e(t);\n},\n w = Object.freeze([]),\n E = Object.freeze({});\n\nfunction b(e) {\n return \"function\" == typeof e;\n}\n\nfunction _(e) {\n return \"production\" !== process.env.NODE_ENV && \"string\" == typeof e && e || e.displayName || e.name || \"Component\";\n}\n\nfunction N(e) {\n return e && \"string\" == typeof e.styledComponentId;\n}\n\nvar A = \"undefined\" != typeof process && (process.env.REACT_APP_SC_ATTR || process.env.SC_ATTR) || \"data-styled\",\n C = \"5.2.1\",\n I = \"undefined\" != typeof window && \"HTMLElement\" in window,\n P = Boolean(\"boolean\" == typeof SC_DISABLE_SPEEDY ? SC_DISABLE_SPEEDY : \"undefined\" != typeof process && void 0 !== process.env.REACT_APP_SC_DISABLE_SPEEDY && \"\" !== process.env.REACT_APP_SC_DISABLE_SPEEDY ? \"false\" !== process.env.REACT_APP_SC_DISABLE_SPEEDY && process.env.REACT_APP_SC_DISABLE_SPEEDY : \"undefined\" != typeof process && void 0 !== process.env.SC_DISABLE_SPEEDY && \"\" !== process.env.SC_DISABLE_SPEEDY ? \"false\" !== process.env.SC_DISABLE_SPEEDY && process.env.SC_DISABLE_SPEEDY : \"production\" !== process.env.NODE_ENV),\n O = {},\n R = \"production\" !== process.env.NODE_ENV ? {\n 1: \"Cannot create styled-component for component: %s.\\n\\n\",\n 2: \"Can't collect styles once you've consumed a `ServerStyleSheet`'s styles! `ServerStyleSheet` is a one off instance for each server-side render cycle.\\n\\n- Are you trying to reuse it across renders?\\n- Are you accidentally calling collectStyles twice?\\n\\n\",\n 3: \"Streaming SSR is only supported in a Node.js environment; Please do not try to call this method in the browser.\\n\\n\",\n 4: \"The `StyleSheetManager` expects a valid target or sheet prop!\\n\\n- Does this error occur on the client and is your target falsy?\\n- Does this error occur on the server and is the sheet falsy?\\n\\n\",\n 5: \"The clone method cannot be used on the client!\\n\\n- Are you running in a client-like environment on the server?\\n- Are you trying to run SSR on the client?\\n\\n\",\n 6: \"Trying to insert a new style tag, but the given Node is unmounted!\\n\\n- Are you using a custom target that isn't mounted?\\n- Does your document not have a valid head element?\\n- Have you accidentally removed a style tag manually?\\n\\n\",\n 7: 'ThemeProvider: Please return an object from your \"theme\" prop function, e.g.\\n\\n```js\\ntheme={() => ({})}\\n```\\n\\n',\n 8: 'ThemeProvider: Please make your \"theme\" prop an object.\\n\\n',\n 9: \"Missing document ``\\n\\n\",\n 10: \"Cannot find a StyleSheet instance. Usually this happens if there are multiple copies of styled-components loaded at once. Check out this issue for how to troubleshoot and fix the common cases where this situation can happen: https://github.com/styled-components/styled-components/issues/1941#issuecomment-417862021\\n\\n\",\n 11: \"_This error was replaced with a dev-time warning, it will be deleted for v4 final._ [createGlobalStyle] received children which will not be rendered. Please use the component without passing children elements.\\n\\n\",\n 12: \"It seems you are interpolating a keyframe declaration (%s) into an untagged string. This was supported in styled-components v3, but is not longer supported in v4 as keyframes are now injected on-demand. Please wrap your string in the css\\\\`\\\\` helper which ensures the styles are injected correctly. See https://www.styled-components.com/docs/api#css\\n\\n\",\n 13: \"%s is not a styled component and cannot be referred to via component selector. See https://www.styled-components.com/docs/advanced#referring-to-other-components for more details.\\n\\n\",\n 14: 'ThemeProvider: \"theme\" prop is required.\\n\\n',\n 15: \"A stylis plugin has been supplied that is not named. We need a name for each plugin to be able to prevent styling collisions between different stylis configurations within the same app. Before you pass your plugin to `