{"version":3,"file":"mp-DGJNsd3P.cjs","names":[],"sources":["../src/components/flags/mp.vue","../src/components/flags/mp.vue"],"sourcesContent":["<template>\r\n  <svg\r\n    xmlns=\"http://www.w3.org/2000/svg\"\r\n    class=\"svg-circle-flags\"\r\n    :viewBox=\"`${viewBoxOrigin} ${viewBoxOrigin} ${svgSize} ${svgSize}`\"\r\n  >\r\n    <mask id=\"2a88958b-da2e-462f-b997-f83bd532dc91\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#2a88958b-da2e-462f-b997-f83bd532dc91)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path fill=\"#338af3\" d=\"M0 0h512v512H0z\" />\r\n      <path\r\n        fill=\"#eee\"\r\n        d=\"M248 417.2a16.7 16.7 0 0 1-15-11 16.7 16.7 0 0 1-29.7-7.6 16.7 16.7 0 0 1-27.6-13.5 16.7 16.7 0 0 1-24.3-18.9 16.7 16.7 0 0 1-17.8-5 16.7 16.7 0 0 1-2.3-18.3 16.7 16.7 0 0 1-15-26.8 16.7 16.7 0 0 1-9.2-29.4 16.7 16.7 0 0 1-3.1-30.5 16.7 16.7 0 0 1 3-30.6 16.7 16.7 0 0 1 9.2-29.4 16.7 16.7 0 0 1 15-26.9 16.7 16.7 0 0 1 2.2-18.3c4.5-5.2 11.5-7 17.7-5a16.7 16.7 0 0 1 6-17.5 16.7 16.7 0 0 1 18.3-1.4 16.7 16.7 0 0 1 27.6-13.6 16.7 16.7 0 0 1 29.7-7.7 16.7 16.7 0 0 1 30.7-1.6 16.7 16.7 0 0 1 30.4 4.6 16.7 16.7 0 0 1 28.9 10.6 16.7 16.7 0 0 1 26.1 16.2c6-2.6 13.2-1.5 18.2 3.2a16.7 16.7 0 0 1 4.1 18 16.7 16.7 0 0 1 17.7 25.1 16.7 16.7 0 0 1 15.4 10.1 16.7 16.7 0 0 1-3.2 18.2 16.7 16.7 0 0 1 6.2 30c6 2.6 10.2 8.5 10.2 15.4v.4c0 6.9-4.2 12.8-10.2 15.4a16.7 16.7 0 0 1-6.1 30 16.7 16.7 0 0 1-12.2 28.3 16.7 16.7 0 0 1-.4 18.5 16.7 16.7 0 0 1-17.1 6.8 16.7 16.7 0 0 1-4.2 18c-5 4.7-12.2 5.7-18.1 3.2a16.7 16.7 0 0 1-26 16.3 16.7 16.7 0 0 1-28.8 10.7 16.7 16.7 0 0 1-30.5 4.6 16.7 16.7 0 0 1-15.9 9.4z\"\r\n      />\r\n      <circle cx=\"256\" cy=\"256\" r=\"111.3\" fill=\"#338af3\" />\r\n      <path\r\n        fill=\"#acabb1\"\r\n        d=\"M280.4 218.2c5.4-4 9-10.5 9-17.9v-11c0-12.4-10-22.3-22.3-22.3H245c-12.3 0-22.3 10-22.3 22.2v11.1c0 7.4 3.6 13.9 9 18L211.5 423s11.1 11 44.5 11 44.5-11 44.5-11z\"\r\n      />\r\n      <path\r\n        fill=\"#eee\"\r\n        d=\"m256 167 19.3 59.5H338l-50.6 36.8 19.3 59.5L256 286l-50.6 36.8 19.3-59.5-50.6-36.8h62.6z\"\r\n      />\r\n    </g>\r\n    <g fill=\"none\">\r\n      <circle\r\n        cx=\"256\"\r\n        cy=\"256\"\r\n        :r=\"circleStroke\"\r\n        fill=\"none\"\r\n        :style=\"{ stroke: props.strokeColor, strokeWidth: props.strokeWidth }\"\r\n      />\r\n    </g>\r\n  </svg>\r\n</template>\r\n<script setup lang=\"ts\">\r\n  import { computed } from 'vue';\r\n\r\n  const props = withDefaults(\r\n    defineProps<{\r\n      flagName: string | undefined;\r\n      strokeColor?: string;\r\n      strokeWidth?: number;\r\n    }>(),\r\n    {\r\n      strokeColor: '#000',\r\n      strokeWidth: 0\r\n    }\r\n  );\r\n\r\n  const svgSize = computed(() => 512 + 2 * props.strokeWidth),\r\n    viewBoxOrigin = computed(() => -props.strokeWidth),\r\n    circleStroke = computed(() => 256 + props.strokeWidth / 2);\r\n</script>\r\n","<template>\r\n  <svg\r\n    xmlns=\"http://www.w3.org/2000/svg\"\r\n    class=\"svg-circle-flags\"\r\n    :viewBox=\"`${viewBoxOrigin} ${viewBoxOrigin} ${svgSize} ${svgSize}`\"\r\n  >\r\n    <mask id=\"2a88958b-da2e-462f-b997-f83bd532dc91\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#2a88958b-da2e-462f-b997-f83bd532dc91)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path fill=\"#338af3\" d=\"M0 0h512v512H0z\" />\r\n      <path\r\n        fill=\"#eee\"\r\n        d=\"M248 417.2a16.7 16.7 0 0 1-15-11 16.7 16.7 0 0 1-29.7-7.6 16.7 16.7 0 0 1-27.6-13.5 16.7 16.7 0 0 1-24.3-18.9 16.7 16.7 0 0 1-17.8-5 16.7 16.7 0 0 1-2.3-18.3 16.7 16.7 0 0 1-15-26.8 16.7 16.7 0 0 1-9.2-29.4 16.7 16.7 0 0 1-3.1-30.5 16.7 16.7 0 0 1 3-30.6 16.7 16.7 0 0 1 9.2-29.4 16.7 16.7 0 0 1 15-26.9 16.7 16.7 0 0 1 2.2-18.3c4.5-5.2 11.5-7 17.7-5a16.7 16.7 0 0 1 6-17.5 16.7 16.7 0 0 1 18.3-1.4 16.7 16.7 0 0 1 27.6-13.6 16.7 16.7 0 0 1 29.7-7.7 16.7 16.7 0 0 1 30.7-1.6 16.7 16.7 0 0 1 30.4 4.6 16.7 16.7 0 0 1 28.9 10.6 16.7 16.7 0 0 1 26.1 16.2c6-2.6 13.2-1.5 18.2 3.2a16.7 16.7 0 0 1 4.1 18 16.7 16.7 0 0 1 17.7 25.1 16.7 16.7 0 0 1 15.4 10.1 16.7 16.7 0 0 1-3.2 18.2 16.7 16.7 0 0 1 6.2 30c6 2.6 10.2 8.5 10.2 15.4v.4c0 6.9-4.2 12.8-10.2 15.4a16.7 16.7 0 0 1-6.1 30 16.7 16.7 0 0 1-12.2 28.3 16.7 16.7 0 0 1-.4 18.5 16.7 16.7 0 0 1-17.1 6.8 16.7 16.7 0 0 1-4.2 18c-5 4.7-12.2 5.7-18.1 3.2a16.7 16.7 0 0 1-26 16.3 16.7 16.7 0 0 1-28.8 10.7 16.7 16.7 0 0 1-30.5 4.6 16.7 16.7 0 0 1-15.9 9.4z\"\r\n      />\r\n      <circle cx=\"256\" cy=\"256\" r=\"111.3\" fill=\"#338af3\" />\r\n      <path\r\n        fill=\"#acabb1\"\r\n        d=\"M280.4 218.2c5.4-4 9-10.5 9-17.9v-11c0-12.4-10-22.3-22.3-22.3H245c-12.3 0-22.3 10-22.3 22.2v11.1c0 7.4 3.6 13.9 9 18L211.5 423s11.1 11 44.5 11 44.5-11 44.5-11z\"\r\n      />\r\n      <path\r\n        fill=\"#eee\"\r\n        d=\"m256 167 19.3 59.5H338l-50.6 36.8 19.3 59.5L256 286l-50.6 36.8 19.3-59.5-50.6-36.8h62.6z\"\r\n      />\r\n    </g>\r\n    <g fill=\"none\">\r\n      <circle\r\n        cx=\"256\"\r\n        cy=\"256\"\r\n        :r=\"circleStroke\"\r\n        fill=\"none\"\r\n        :style=\"{ stroke: props.strokeColor, strokeWidth: props.strokeWidth }\"\r\n      />\r\n    </g>\r\n  </svg>\r\n</template>\r\n<script setup lang=\"ts\">\r\n  import { computed } from 'vue';\r\n\r\n  const props = withDefaults(\r\n    defineProps<{\r\n      flagName: string | undefined;\r\n      strokeColor?: string;\r\n      strokeWidth?: number;\r\n    }>(),\r\n    {\r\n      strokeColor: '#000',\r\n      strokeWidth: 0\r\n    }\r\n  );\r\n\r\n  const svgSize = computed(() => 512 + 2 * props.strokeWidth),\r\n    viewBoxOrigin = computed(() => -props.strokeWidth),\r\n    circleStroke = computed(() => 256 + props.strokeWidth / 2);\r\n</script>\r\n"],"mappings":"m2DAoDQ,GAAA,EAAA,EAAA,cAAyB,IAAM,EAAI,EAAM,WAAW,EACxD,GAAA,EAAA,EAAA,cAA+B,CAAC,EAAM,WAAW,EACjD,GAAA,EAAA,EAAA,cAA8B,IAAM,EAAM,YAAc,CAAC"}