{"version":3,"file":"link.CTK_wAO2.js","sources":["../../../../../packages/web-components/src/lib/components/link/link.ts"],"sourcesContent":["// disable requiredSlot lint until requiredSlot error can be investigated for this component (causes other components that use this as a base class to fail tests)\n/* eslint-disable @nx/workspace-enforce-required-slot-decorator */\n\nimport { PropertyValueMap, html, nothing } from 'lit';\nimport {\n property,\n query,\n queryAssignedElements,\n queryAssignedNodes,\n state,\n} from 'lit/decorators.js';\nimport { ifDefined } from 'lit/directives/if-defined.js';\nimport { pdsCustomElement as customElement } from '../../decorators/pds-custom-element';\nimport { PdsElement } from '../PdsElement';\nimport styles from './link.scss?inline';\nimport { handleExternalLink } from './link-utils';\nimport { getAriaDescribedByElementIds } from '../../../utils/get-aria-described-by-element-ids';\n\nconst size = ['default', 'sm', 'lg', 'xl'] as const;\nexport type LinkSize = (typeof size)[number];\n\n/**\n * @summary This component renders a styled anchor tag\n *\n * @slot icon-left Optional: Holds an icon to the left of the link, restricted to pds-icon\n * @slot default Required: Holds the link contents\n * @slot icon-right Optional: Holds an icon to the right of the link, restricted to pds-icon\n *\n * @fires pds-link-click A custom event dispatched on click\n */\n@customElement('pds-link', {\n category: 'component',\n type: 'component',\n state: 'stable',\n styles,\n})\nexport class PdsLink extends PdsElement {\n // TODOv4: remove deprecated emphasis variants\n /**\n * - **default** renders link for basic action\n * - **DEPRECATED**\n * - **emphasis** provide more affordance\n * - **emphasis-inverted** provide more affordance on a darker background\n * - **inverted** used on a darker background\n * - **strong** provide more affordance\n * - **strong-inverted** provide more affordance on a darker background\n * - **subtle** used for less important actions\n * - **subtle-inverted** used for less important actions on a darker background\n *\n */\n @property()\n // TODOv4: remove deprecated emphasis variants\n variant:\n | 'default'\n | 'emphasis'\n | 'inverted'\n | 'emphasis-inverted'\n | 'subtle'\n | 'subtle-inverted'\n | 'strong'\n | 'strong-inverted' = 'default';\n\n /**\n * - **default** renders default size\n * - **sm** smaller size\n * - **lg** larger size (not valid for link button)\n * - **xl** extra large size (not valid for link button)\n */\n @property()\n size: LinkSize = 'default';\n\n /**\n * Redirect url\n */\n @property({ reflect: true })\n href: string;\n\n /**\n * Indicates that the link references a file to download, see https://www.w3schools.com/tags/att_a_download.asp\n */\n @property()\n download?: string | boolean;\n\n /**\n * Specifies information about a linked document\n * Automatically set to 'noopener noreferrer' when target is '_blank'\n */\n @property()\n rel?: string;\n\n /**\n * Specifies the two-character language code of the document in the link\n */\n @property()\n hreflang?: string;\n\n /**\n * Specifes target to open the linked document\n */\n @property({ reflect: true })\n target?: '_self' | '_blank' | '_parent' | '_top';\n\n /**\n * Specifies an aria-label for the link\n */\n @property()\n ariaLabel: string;\n\n /**\n * Specifies an aria-current for the link\n */\n @property()\n ariaCurrent: 'page' | 'step' | 'location' | 'date' | 'time' | 'true';\n\n // TODOv4: Remove this property in favor of ariaDescribedbyIds\n /**\n * A space-separated list of element IDs that provide additional information to the user about the link\n * There needs to be an element with the same ID as the value of this property in the light DOM or else the aria-describedby attribute will not be set.\n * **DEPRECATED**\n */\n @property()\n ariaDescribedby: string;\n\n /**\n *\n * A space-separated list of element IDs that provide additional information to the user about the link\n * There needs to be an associated element with the same ID in the light DOM or else the aria-describedby attribute will not be set.\n */\n @property()\n ariaDescribedbyIds: string;\n\n /**\n * Specifies a role for the link\n */\n @property()\n role: string;\n\n /**\n * Specifies the Internet media type (formerly known as MIME type)\n * of the linked document for links, or the type of button if button\n * property is true\n */\n @property()\n type?: string | 'button' | 'reset' | 'submit';\n\n /**\n * Render the link as a button variant\n *\n * - **default** renders the button used for the most common calls to action that don't require as much visual attention.\n * - **default-inverted** renders a default button for use on darker backgrounds.\n * - **primary** renders the button used for the most important calls to action.\n * - **primary-inverted** renders a primary button for use on darker backgrounds.\n * - **icon** renders the button used for icon.\n * - **icon-inverted** renders the button for icons used on darker backgrounds.\n */\n @property()\n button:\n | 'default'\n | 'default-inverted'\n | 'primary'\n | 'primary-inverted'\n | 'icon'\n | 'icon-inverted'\n | '' = '';\n\n /**\n * Programatically indicate a link should display as hover state\n */\n @property({ type: Boolean })\n hover: boolean = false;\n\n /**\n * Checks to see if the icon size is valid\n * @internal\n */\n @state()\n isIconSizeValid: boolean = true;\n\n /**\n * Checks to see if the content is passed to default slot\n * @internal\n */\n @state()\n isSlotValid: boolean = true;\n\n /**\n * The full text of the link\n * @internal\n */\n @state()\n linkText: string | undefined;\n\n /**\n * The last word of the link text - used when there is a right icon in the link to append it\n * to the last word to prevent orphan icons when wrapping\n * @internal\n */\n @state()\n lastWord: string | undefined;\n\n handleClick(e: MouseEvent) {\n const customEvent = new CustomEvent('pds-link-click', {\n bubbles: true,\n composed: true,\n cancelable: true,\n detail: {\n summary: this.textContent,\n },\n });\n\n this.dispatchEvent(customEvent);\n\n if (customEvent.defaultPrevented) {\n e.preventDefault();\n }\n }\n\n handleSlotChange(e: Event) {\n // We could re-render here to make sure slot changes from\n // icon-left to icon-right are handled on the fly, but that's\n // likely not going to be a need for users. If it ever does\n // become an issue, then we can address it here by re-rendering\n // with something like requestUpdate().\n this.handleSlotValidation(e);\n this.addSizeToLinkIcon();\n if (this.slotNotEmpty('icon-right')) {\n this.handleRightIconSlotChange();\n }\n }\n\n /**\n * If the user passes an icon in the right slot, remove the last word from the slotted text (it will be added back\n * in the render function in a span with the icon)\n * @internal\n */\n handleRightIconSlotChange() {\n let restOfLinkText = '';\n\n if (this.linkText) {\n // split the text into an array\n const linkTextArray = this.linkText.trim().split(' ');\n // remove the last word from the array\n linkTextArray.pop();\n // join the remaining words back together\n restOfLinkText = linkTextArray.join(' ');\n\n // if the slotted node contains the original text, clear it out so that it doesn't display when the\n // slotted content is overwritten with restofLinkText\n this.defaultSlotElement.forEach((node: any) => {\n if (node.textContent.trim() === this.linkText) {\n // eslint-disable-next-line no-param-reassign\n node.textContent = '';\n }\n });\n }\n\n // replace the slotted text with the string that doesn't include the last word (will be added in render)\n if (this.defaultSlotElement.length > 0) {\n this.defaultSlotElement[0].textContent = `${restOfLinkText} `;\n }\n }\n\n /**\n * Set the linkText state to the original text passed into the default slot before any changes are made\n * @internal\n */\n setLinkText() {\n let linkText = '';\n\n this.defaultSlotElement.forEach((node: any) => {\n linkText += node.textContent;\n });\n\n this.linkText = linkText.trim();\n }\n\n /**\n * @returns the last word of the link text\n * @internal\n */\n getLinkTextLastWord() {\n let linkText = '';\n this.defaultSlotElement.forEach((node: any) => {\n linkText += node.textContent;\n });\n\n // turn the title into an array\n const linkTextArray = linkText.trim().split(' ');\n // get the last word for attaching with the icon\n const lastWord = linkTextArray.pop();\n\n return lastWord;\n }\n\n /**\n * @internal\n */\n get classNames() {\n return {\n [this.variant]: !!this.variant,\n 'icon-left': !!this.slotNotEmpty('icon-left'),\n 'icon-right': !!this.slotNotEmpty('icon-right'),\n [this.size]: !!this.size,\n [`button-${this.button}`]: !!this.button,\n button: !!this.button,\n hover: !!this.hover,\n };\n }\n\n /**\n * @internal\n */\n @query('a')\n anchor: HTMLAnchorElement;\n\n /**\n * This grabs the icon-left slot\n * @internal\n */\n @queryAssignedElements({ slot: 'icon-left' })\n iconLeftList: HTMLElement[];\n\n /**\n * This grabs the icon-right slot\n * @internal\n */\n @queryAssignedElements({ slot: 'icon-right' })\n iconRightList: HTMLElement[];\n\n /**\n * This grabs the content from the default slot\n * @internal\n */\n @queryAssignedNodes({ slot: undefined })\n defaultSlotElement: any;\n\n addSizeToLinkIcon() {\n const icons = [...this.iconLeftList, ...this.iconRightList];\n if (icons && icons.length && size.includes(this.size)) {\n icons.forEach((icon) => {\n if (this.size && this.size === 'xl') {\n this.isIconSizeValid = false;\n } else if (this.size) {\n icon.setAttribute('size', this.size);\n }\n });\n }\n }\n\n connectedCallback() {\n super.connectedCallback();\n this.initLocalization();\n }\n\n defaultSlotValidation() {\n if (this.defaultSlotElement.length === 0) {\n this.isSlotValid = false;\n }\n }\n\n protected override firstUpdated() {\n super.firstUpdated();\n this.handleSlotValidation('icon-left');\n this.handleSlotValidation('icon-right');\n this.defaultSlotValidation();\n this.setLinkText();\n this.lastWord = this.getLinkTextLastWord();\n }\n\n async updated(\n changedProperties: PropertyValueMap | Map,\n ) {\n await this.updateComplete;\n this.addSizeToLinkIcon();\n\n if (this.slotNotEmpty('icon-right')) {\n this.handleRightIconSlotChange();\n }\n\n // TODOv4: Remove logic for ariaDescribedby property once we remove the property\n if (\n (changedProperties.has('ariaDescribedbyIds') &&\n this.ariaDescribedbyIds) ||\n (changedProperties.has('ariaDescribedby') && this.ariaDescribedby)\n ) {\n const ariaDescribedby = getAriaDescribedByElementIds(this);\n this.anchor.setAttribute('aria-describedby', ariaDescribedby);\n } else if (\n !this.ariaDescribedby &&\n !this.ariaDescribedbyIds &&\n this.target === '_blank'\n ) {\n this.anchor.setAttribute('aria-describedby', 'hyperlink-sr-label');\n }\n }\n\n render() {\n // TODOv4: remove this deprecation warning\n if (this.variant === 'emphasis' || this.variant === 'emphasis-inverted') {\n const newVariant =\n this.variant === 'emphasis-inverted' ? 'strong-inverted' : 'strong';\n console.warn(\n `The ${this.variant} link variant is deprecated and will be removed in the next major version of PDS. Please use the ${newVariant} variant instead.`,\n );\n }\n\n // TODOv4: remove this deprecation warning\n if (this.ariaDescribedby) {\n console.warn(\n `The ariaDescribedby property is deprecated and will be removed in the next major version of PDS. Please use the ariaDescribedbyIds instead.`,\n );\n }\n\n // https://docs.principal.com/display/FEDX/Use+noopener+and+noreferrer+when+opening+a+new+tab+or+window\n if (this.target === '_blank') {\n this.rel = 'noopener noreferrer';\n }\n\n if (!this.isSlotValid) {\n console.error(\n 'PdsLink requires text content in the default slot to render the component.',\n );\n return nothing;\n }\n\n if (!this.isIconSizeValid) {\n console.error(\n 'Icon size \"xl\" is not valid for an icon link. Please use a smaller size, like \"lg\".',\n );\n return nothing;\n }\n\n return html`${this.slotNotEmpty('icon-left')\n ? html`\n \n `\n : ''}\n ${this.slotNotEmpty('icon-right')\n ? html`\n ${this.lastWord}\n \n `\n : ''}${this.target === '_blank' ? handleExternalLink() : nothing}`;\n }\n}\n"],"names":["size","PdsLink","PdsElement","customEvent","restOfLinkText","linkTextArray","node","linkText","icons","icon","changedProperties","ariaDescribedby","getAriaDescribedByElementIds","newVariant","html","ifDefined","handleExternalLink","nothing","__decorateClass","property","state","query","queryAssignedElements","queryAssignedNodes","customElement","styles"],"mappings":";;;;;;;;;;;;;;AAkBA,MAAMA,IAAO,CAAC,WAAW,MAAM,MAAM,IAAI;AAkB5B,IAAAC,IAAN,cAAsBC,EAAW;AAAA,EAAjC,cAAA;AAAA,UAAA,GAAA,SAAA,GAwBmB,KAAA,UAAA,WASP,KAAA,OAAA,WA8FR,KAAA,SAAA,IAMQ,KAAA,QAAA,IAOU,KAAA,kBAAA,IAOJ,KAAA,cAAA;AAAA,EAAA;AAAA,EAiBvB,YAAY,GAAe;AACnB,UAAAC,IAAc,IAAI,YAAY,kBAAkB;AAAA,MACpD,SAAS;AAAA,MACT,UAAU;AAAA,MACV,YAAY;AAAA,MACZ,QAAQ;AAAA,QACN,SAAS,KAAK;AAAA,MAAA;AAAA,IAChB,CACD;AAED,SAAK,cAAcA,CAAW,GAE1BA,EAAY,oBACd,EAAE,eAAe;AAAA,EACnB;AAAA,EAGF,iBAAiB,GAAU;AAMzB,SAAK,qBAAqB,CAAC,GAC3B,KAAK,kBAAkB,GACnB,KAAK,aAAa,YAAY,KAChC,KAAK,0BAA0B;AAAA,EACjC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQF,4BAA4B;AAC1B,QAAIC,IAAiB;AAErB,QAAI,KAAK,UAAU;AAEjB,YAAMC,IAAgB,KAAK,SAAS,KAAK,EAAE,MAAM,GAAG;AAEpD,MAAAA,EAAc,IAAI,GAEDD,IAAAC,EAAc,KAAK,GAAG,GAIlC,KAAA,mBAAmB,QAAQ,CAACC,MAAc;AAC7C,QAAIA,EAAK,YAAY,KAAK,MAAM,KAAK,aAEnCA,EAAK,cAAc;AAAA,MACrB,CACD;AAAA,IAAA;AAIC,IAAA,KAAK,mBAAmB,SAAS,MACnC,KAAK,mBAAmB,CAAC,EAAE,cAAc,GAAGF,CAAc;AAAA,EAC5D;AAAA;AAAA;AAAA;AAAA;AAAA,EAOF,cAAc;AACZ,QAAIG,IAAW;AAEV,SAAA,mBAAmB,QAAQ,CAACD,MAAc;AAC7C,MAAAC,KAAYD,EAAK;AAAA,IAAA,CAClB,GAEI,KAAA,WAAWC,EAAS,KAAK;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOhC,sBAAsB;AACpB,QAAIA,IAAW;AACV,gBAAA,mBAAmB,QAAQ,CAACD,MAAc;AAC7C,MAAAC,KAAYD,EAAK;AAAA,IAAA,CAClB,GAGqBC,EAAS,KAAK,EAAE,MAAM,GAAG,EAEhB,IAAI;AAAA,EAE5B;AAAA;AAAA;AAAA;AAAA,EAMT,IAAI,aAAa;AACR,WAAA;AAAA,MACL,CAAC,KAAK,OAAO,GAAG,CAAC,CAAC,KAAK;AAAA,MACvB,aAAa,CAAC,CAAC,KAAK,aAAa,WAAW;AAAA,MAC5C,cAAc,CAAC,CAAC,KAAK,aAAa,YAAY;AAAA,MAC9C,CAAC,KAAK,IAAI,GAAG,CAAC,CAAC,KAAK;AAAA,MACpB,CAAC,UAAU,KAAK,MAAM,EAAE,GAAG,CAAC,CAAC,KAAK;AAAA,MAClC,QAAQ,CAAC,CAAC,KAAK;AAAA,MACf,OAAO,CAAC,CAAC,KAAK;AAAA,IAChB;AAAA,EAAA;AAAA,EA8BF,oBAAoB;AAClB,UAAMC,IAAQ,CAAC,GAAG,KAAK,cAAc,GAAG,KAAK,aAAa;AAC1D,IAAIA,KAASA,EAAM,UAAUR,EAAK,SAAS,KAAK,IAAI,KAC5CQ,EAAA,QAAQ,CAACC,MAAS;AACtB,MAAI,KAAK,QAAQ,KAAK,SAAS,OAC7B,KAAK,kBAAkB,KACd,KAAK,QACTA,EAAA,aAAa,QAAQ,KAAK,IAAI;AAAA,IACrC,CACD;AAAA,EACH;AAAA,EAGF,oBAAoB;AAClB,UAAM,kBAAkB,GACxB,KAAK,iBAAiB;AAAA,EAAA;AAAA,EAGxB,wBAAwB;AAClB,IAAA,KAAK,mBAAmB,WAAW,MACrC,KAAK,cAAc;AAAA,EACrB;AAAA,EAGiB,eAAe;AAChC,UAAM,aAAa,GACnB,KAAK,qBAAqB,WAAW,GACrC,KAAK,qBAAqB,YAAY,GACtC,KAAK,sBAAsB,GAC3B,KAAK,YAAY,GACZ,KAAA,WAAW,KAAK,oBAAoB;AAAA,EAAA;AAAA,EAG3C,MAAM,QACJC,GACA;AAUG,QATH,MAAM,KAAK,gBACX,KAAK,kBAAkB,GAEnB,KAAK,aAAa,YAAY,KAChC,KAAK,0BAA0B,GAK9BA,EAAkB,IAAI,oBAAoB,KACzC,KAAK,sBACNA,EAAkB,IAAI,iBAAiB,KAAK,KAAK,iBAClD;AACM,YAAAC,IAAkBC,EAA6B,IAAI;AACpD,WAAA,OAAO,aAAa,oBAAoBD,CAAe;AAAA,IAAA,MAC9D,CACE,CAAC,KAAK,mBACN,CAAC,KAAK,sBACN,KAAK,WAAW,YAEX,KAAA,OAAO,aAAa,oBAAoB,oBAAoB;AAAA,EACnE;AAAA,EAGF,SAAS;AAEP,QAAI,KAAK,YAAY,cAAc,KAAK,YAAY,qBAAqB;AACvE,YAAME,IACJ,KAAK,YAAY,sBAAsB,oBAAoB;AACrD,cAAA;AAAA,QACN,OAAO,KAAK,OAAO,qGAAqGA,CAAU;AAAA,MACpI;AAAA,IAAA;AAeE,WAXA,KAAK,mBACC,QAAA;AAAA,MACN;AAAA,IACF,GAIE,KAAK,WAAW,aAClB,KAAK,MAAM,wBAGR,KAAK,cAOL,KAAK,kBAOHC;AAAAA,iBACM,KAAK,UAAU;AAAA,eACjBC,EAAU,KAAK,IAAI,CAAC;AAAA,cACrBA,EAAU,KAAK,GAAG,CAAC;AAAA,kBACfA,EAAU,KAAK,MAAM,CAAC;AAAA;AAAA,mBAErBA,EAAU,KAAK,QAAQ,CAAC;AAAA,qBACtBA,EAAU,KAAK,SAAS,CAAC;AAAA,uBACvBA,EAAU,KAAK,WAAW,CAAC;AAAA,eACnCA,EAAU,KAAK,IAAI,CAAC;AAAA,eACpBA,EAAU,KAAK,IAAI,CAAC;AAAA,mBAChBA,EAAU,KAAK,QAAQ,CAAC;AAAA,iBAC1B,KAAK,WAAW;AAAA,WACtB,KAAK,aAAa,WAAW,IAC5BD;AAAAA;AAAAA;AAAAA;AAAAA,8BAIkB,KAAK,gBAAgB;AAAA;AAAA,uBAGvC,EAAE;AAAA;AAAA,0BAEY,KAAK,aAAa,YAAY,IAC1CA;AAAAA,kBACI,KAAK,QAAQ;AAAA;AAAA;AAAA;AAAA,gCAIC,KAAK,gBAAgB;AAAA;AAAA,yBAGvC,EAAE;AAAA;AAAA,SAEP,KAAK,WAAW,WAAWE,MAAuBC,CAAO,MAxCpD,QAAA;AAAA,MACN;AAAA,IACF,GACOA,MAVC,QAAA;AAAA,MACN;AAAA,IACF,GACOA;AAAAA,EA4CqD;AAElE;AAhaEC,EAAA;AAAA,EAFCC,EAAS;AAAA,GAdClB,EAgBX,WAAA,WAAA,CAAA;AAiBAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GAhCClB,EAiCX,WAAA,QAAA,CAAA;AAMAiB,EAAA;AAAA,EADCC,EAAS,EAAE,SAAS,GAAM,CAAA;AAAA,GAtChBlB,EAuCX,WAAA,QAAA,CAAA;AAMAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GA5CClB,EA6CX,WAAA,YAAA,CAAA;AAOAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GAnDClB,EAoDX,WAAA,OAAA,CAAA;AAMAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GAzDClB,EA0DX,WAAA,YAAA,CAAA;AAMAiB,EAAA;AAAA,EADCC,EAAS,EAAE,SAAS,GAAM,CAAA;AAAA,GA/DhBlB,EAgEX,WAAA,UAAA,CAAA;AAMAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GArEClB,EAsEX,WAAA,aAAA,CAAA;AAMAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GA3EClB,EA4EX,WAAA,eAAA,CAAA;AASAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GApFClB,EAqFX,WAAA,mBAAA,CAAA;AAQAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GA5FClB,EA6FX,WAAA,sBAAA,CAAA;AAMAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GAlGClB,EAmGX,WAAA,QAAA,CAAA;AAQAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GA1GClB,EA2GX,WAAA,QAAA,CAAA;AAaAiB,EAAA;AAAA,EADCC,EAAS;AAAA,GAvHClB,EAwHX,WAAA,UAAA,CAAA;AAaAiB,EAAA;AAAA,EADCC,EAAS,EAAE,MAAM,QAAS,CAAA;AAAA,GApIhBlB,EAqIX,WAAA,SAAA,CAAA;AAOAiB,EAAA;AAAA,EADCE,EAAM;AAAA,GA3IInB,EA4IX,WAAA,mBAAA,CAAA;AAOAiB,EAAA;AAAA,EADCE,EAAM;AAAA,GAlJInB,EAmJX,WAAA,eAAA,CAAA;AAOAiB,EAAA;AAAA,EADCE,EAAM;AAAA,GAzJInB,EA0JX,WAAA,YAAA,CAAA;AAQAiB,EAAA;AAAA,EADCE,EAAM;AAAA,GAjKInB,EAkKX,WAAA,YAAA,CAAA;AAmHAiB,EAAA;AAAA,EADCG,EAAM,GAAG;AAAA,GApRCpB,EAqRX,WAAA,UAAA,CAAA;AAOAiB,EAAA;AAAA,EADCI,EAAsB,EAAE,MAAM,YAAa,CAAA;AAAA,GA3RjCrB,EA4RX,WAAA,gBAAA,CAAA;AAOAiB,EAAA;AAAA,EADCI,EAAsB,EAAE,MAAM,aAAc,CAAA;AAAA,GAlSlCrB,EAmSX,WAAA,iBAAA,CAAA;AAOAiB,EAAA;AAAA,EADCK,EAAmB,EAAE,MAAM,OAAW,CAAA;AAAA,GAzS5BtB,EA0SX,WAAA,sBAAA,CAAA;AA1SWA,IAANiB,EAAA;AAAA,EANNM,EAAc,YAAY;AAAA,IACzB,UAAU;AAAA,IACV,MAAM;AAAA,IACN,OAAO;AAAA,IACP,QAAAC;AAAA,EACD,CAAA;AAAA,GACYxB,CAAA;"}