{"version":3,"file":"static/chunks/6515.6926dbd5992b58fe.js","mappings":"6JAqCAA,EAAA,QA7BiB,OAAC,CAAEC,QAAAA,CAAO,CAAqB,CAAAC,EAC9C,MACE,GAAAC,EAAAC,GAAA,EAACC,EAAAA,CAAaA,CAAAA,CACZC,WAAY,CACVC,EAAG,OAAC,CAAEC,KAAAA,CAAI,CAAEC,SAAAA,CAAQ,CAAE,CAAAP,EAEdQ,EAAUF,EAAKC,QAAQ,CAACE,IAAI,CAACC,GAE/B,iBAAOA,GACP,YAAaA,GACbA,MAAAA,EAAMC,OAAO,SAIjB,EACS,GAAAV,EAAAC,GAAA,EAAAD,EAAAW,QAAA,WAAGL,IAGL,GAAAN,EAAAC,GAAA,EAACG,IAAAA,UAAGE,GACb,EACAM,EAAG,OAAC,CAAEP,KAAAA,CAAI,CAAE,GAAGQ,EAAO,CAAAd,QAAK,GAAAC,EAAAC,GAAA,EAACW,IAAAA,CAAG,GAAGC,CAAK,EAAG,CAC5C,EACAC,cAAe,CAACC,EAAAA,CAASA,CAAC,UAEzBjB,GAGP,sCC1BA,IAAAkB,EAA2BC,EAAQ,OAEnC,SAAAC,IAAA,CACA,SAAAC,IAAA,CACAA,EAAAC,iBAAA,CAAAF,EAEAG,EAAAC,OAAA,YACA,SAAAC,EAAAV,CAAA,CAAAW,CAAA,CAAAC,CAAA,CAAAC,CAAA,CAAAC,CAAA,CAAAC,CAAA,EACA,GAAAA,IAAAZ,GAIA,IAAAa,EAAA,MACA,kLAKA,OADAA,EAAAC,IAAA,uBACAD,EACA,CAEA,SAAAE,IACA,OAAAR,CACA,CAHAA,EAAAS,UAAA,CAAAT,EAMA,IAAAU,EAAA,CACAC,MAAAX,EACAY,OAAAZ,EACAa,KAAAb,EACAc,KAAAd,EACAe,OAAAf,EACAgB,OAAAhB,EACAiB,OAAAjB,EACAkB,OAAAlB,EAEAmB,IAAAnB,EACAoB,QAAAZ,EACAa,QAAArB,EACAsB,YAAAtB,EACAuB,WAAAf,EACA1B,KAAAkB,EACAwB,SAAAhB,EACAiB,MAAAjB,EACAkB,UAAAlB,EACAmB,MAAAnB,EACAoB,MAAApB,EAEAqB,eAAAjC,EACAC,kBAAAF,CACA,EAIA,OAFAe,EAAAoB,SAAA,CAAApB,EAEAA,CACA,yBC/CAZ,EAAAC,OAAA,CAAmBL,EAAQ,wCCN3BI,CAAAA,EAAAC,OAAA,CAFA","sources":["webpack://_N_E/./utils/react-markdown.tsx","webpack://_N_E/./node_modules/prop-types/factoryWithThrowingShims.js","webpack://_N_E/./node_modules/prop-types/index.js","webpack://_N_E/./node_modules/prop-types/lib/ReactPropTypesSecret.js","webpack://_N_E/"],"sourcesContent":["import ReactMarkdown from 'react-markdown';\nimport rehypeRaw from 'rehype-raw';\nimport React from 'react';\n\ninterface MARKDOWNINTERFACE {\n content: string;\n}\n\nconst MARKDOWN = ({ content }: MARKDOWNINTERFACE) => {\n return (\n {\n // Avoid wrapping

if it directly contains an element\n const hasLink = node.children.some(child => {\n return (\n typeof child === 'object' &&\n 'tagName' in child &&\n child.tagName === 'a'\n );\n });\n\n if (hasLink) {\n return <>{children}; // Don't wrap in

if it has an \n }\n\n return

{children}

; // Wrap normal content in

\n },\n a: ({ node, ...props }) => // Custom rendering\n }}\n rehypePlugins={[rehypeRaw]}\n >\n {content}\n \n );\n};\n\nexport default MARKDOWN;\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n"],"names":["__webpack_exports__","content","param","react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__","jsx","ReactMarkdown","components","p","node","children","hasLink","some","child","tagName","Fragment","a","props","rehypePlugins","rehypeRaw","ReactPropTypesSecret","__webpack_require__","emptyFunction","emptyFunctionWithReset","resetWarningCache","module","exports","shim","propName","componentName","location","propFullName","secret","err","name","getShim","isRequired","ReactPropTypes","array","bigint","bool","func","number","object","string","symbol","any","arrayOf","element","elementType","instanceOf","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes"],"sourceRoot":""}