svg-icons 2.5.0.1 → 2.5.0.2
raw patch · 5 files changed
+1040/−7 lines, 5 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ SvgIcons.Core.Geometry: anglesHelp :: Svg
+ SvgIcons.Images.CountryFlags: cv :: Svg
+ SvgIcons.Images.CountryFlags: dz :: Svg
+ SvgIcons.Images.CountryFlags: eg :: Svg
+ SvgIcons.Images.CountryFlags: er :: Svg
+ SvgIcons.Images.CountryFlags: gm :: Svg
+ SvgIcons.Images.CountryFlags: gn :: Svg
+ SvgIcons.Images.CountryFlags: gw :: Svg
+ SvgIcons.Images.CountryFlags: lbr :: Svg
+ SvgIcons.Images.CountryFlags: ly :: Svg
+ SvgIcons.Images.CountryFlags: ma :: Svg
+ SvgIcons.Images.CountryFlags: ml :: Svg
+ SvgIcons.Images.CountryFlags: mrt :: Svg
+ SvgIcons.Images.CountryFlags: ne :: Svg
+ SvgIcons.Images.CountryFlags: sd :: Svg
+ SvgIcons.Images.CountryFlags: sl :: Svg
+ SvgIcons.Images.CountryFlags: sn :: Svg
+ SvgIcons.Images.CountryFlags: td :: Svg
+ SvgIcons.Images.CountryFlags: tn :: Svg
+ SvgIcons.Images.CountryFlagsCoAs: egCoA :: Svg
+ SvgIcons.Images.CountryFlagsCoAs: erCoA :: Svg
Files
- src/Main.hs +1/−0
- src/SvgIcons/Core/Geometry.hs +121/−0
- src/SvgIcons/Images/CountryFlags.hs +771/−6
- src/SvgIcons/Images/CountryFlagsCoAs.hs +146/−0
- svg-icons.cabal +1/−1
src/Main.hs view
@@ -83,6 +83,7 @@ renderGeometryExamples :: FilePath -> IO () renderGeometryExamples path = do createDirectory p + renderSvgFiles p [("anglesHelp", anglesHelp)] renderSvgFiles p (map fillIcons geometryExamples) renderSvgFiles p (map fullIcons geometryExamples) renderSvgFiles p (map strkIcons geometryExamples)
src/SvgIcons/Core/Geometry.hs view
@@ -10,6 +10,7 @@ module SvgIcons.Core.Geometry ( geometryExamples + , anglesHelp , regularPolygon , starPolygonFirstSpecies , starPolygonWithBorder @@ -74,6 +75,126 @@ , (,) "asterisk_3" $ asterisk 3 0.9 (0,0) , (,) "asterisk_star_3" $ asteriskStar 3 0.9 (0,0) ] + + + +{- | +`anglesHelp` is just a helpful graphic showing some angles (in radians) +involved in regular polygons and first species star polygons of @n@ vertices: + + (1) In black: central angle of a regular polygon. + (2) In blue: inner angles of a regular polygon. + (3) In red: outer angle of a first species star polygon. + (4) In green: inner angle of a first species star polygon. + + +-} +anglesHelp :: Svg +anglesHelp = + S.svg + ! A.viewbox "-1 -1 2 2" + ! A.width "500" + ! A.height "500" + $ do + pentagon + centralAngle + internalAngle + starOuterAngle + starInnerAngle + mkText "apothema = r cos(π/n)" (0 , -0.2) + ! A.fill "indigo" + where + r1 = 0.9 + vertice k = + (r1 * sin(k*2*pi/7) , -r1 * cos(k*2*pi/7)) + pentagon = + S.path + ! A.fill "white" + ! A.stroke "silver" + ! A.strokeWidth "0.02" + ! A.d pentagonDirs + pentagonDirs = mkPath $ do + uncurry S.m $ vertice 0 + mapM_ ((uncurry S.l) . vertice . fromIntegral) [1 .. 6] + S.z + mkText txt (t1,t2) = + S.text_ txt + ! A.stroke "none" + ! (A.x .: t1) + ! (A.y .: t2) + ! A.fontSize "0.09" + ! A.fontWeight "bold" + ! A.dominantBaseline "middle" + ! A.textAnchor "middle" + centralAngle = + S.g + ! A.stroke "black" + ! A.fill "black" + $ do + S.path + ! A.fill "none" + ! A.strokeWidth "0.01" + ! A.d centralDirs + mkText "2π/n" (0 , 0.25) + centralDirs = mkPath $ do + uncurry S.m $ vertice 3 + uncurry S.l $ (0,0) + uncurry S.l $ vertice 4 + internalAngle = + S.g + ! A.stroke "blue" + ! A.fill "blue" + $ do + S.path + ! A.fill "none" + ! A.strokeWidth "0.01" + ! A.d internalDirs + mkText + "π - 2π/n" + ( 0.18 + (fst $ vertice 6) + , 0.05 + (snd $ vertice 6) + ) + internalDirs = mkPath $ do + uncurry S.m $ vertice 0 + uncurry S.l $ vertice 6 + uncurry S.l $ vertice 5 + starOuterAngle = + S.g + ! A.stroke "red" + ! A.fill "red" + $ do + S.path + ! A.fill "none" + ! A.strokeWidth "0.01" + ! A.d starOuterAngleDirs + mkText + "π/n" + ( 0.3 + (fst $ vertice 0) + , 0.25 + (snd $ vertice 0) + ) + starOuterAngleDirs = mkPath $ do + uncurry S.m $ vertice 1 + uncurry S.l $ vertice 0 + uncurry S.l $ vertice 2 + starInnerAngle = + S.g + ! A.stroke "green" + ! A.fill "green" + $ do + S.path + ! A.fill "none" + ! A.strokeWidth "0.01" + ! A.d starInnerAngleDirs + mkText + "π - 4π/n" + ( -0.05 + (fst $ vertice 3) + , -0.5 + (snd $ vertice 3) + ) + starInnerAngleDirs = mkPath $ do + uncurry S.m $ vertice 1 + uncurry S.l $ vertice 3 + uncurry S.l $ vertice 5 +
src/SvgIcons/Images/CountryFlags.hs view
@@ -37,29 +37,42 @@ > , (,) "bg" bg > , (,) "by" blr > , (,) "ch" ch +> , (,) "cv" cv > , (,) "cy" cyp > , (,) "cz" cz > , (,) "de" de > , (,) "dk" dk +> , (,) "dz" dz > , (,) "ee" ee +> , (,) "eg" eg +> , (,) "er" er > , (,) "es" es > , (,) "eu" eu > , (,) "fi" fi > , (,) "fr" fr +> , (,) "gm" gm +> , (,) "gn" gn > , (,) "gr" gr +> , (,) "gw" gw > , (,) "hr" hrv > , (,) "ie" ie > , (,) "is" is > , (,) "it" it > , (,) "li" li +> , (,) "lr" lbr > , (,) "lt" lt > , (,) "lu" lu > , (,) "lv" lv +> , (,) "ly" ly +> , (,) "ma" ma > , (,) "mc" mc > , (,) "md" md > , (,) "me" me > , (,) "mk" mk +> , (,) "ml" ml +> , (,) "mr" mrt > , (,) "mt" mt +> , (,) "ne" ne > , (,) "nl" nl > , (,) "no" no > , (,) "pl" pl @@ -67,10 +80,15 @@ > , (,) "ro" ro > , (,) "rs" rs > , (,) "ru" ru +> , (,) "sd" sd > , (,) "se" se > , (,) "si" si > , (,) "sk" sk +> , (,) "sl" sl > , (,) "sm" sm +> , (,) "sn" sn +> , (,) "td" td +> , (,) "tn" tn > , (,) "ua" ua > , (,) "uk" uk > , (,) "va" va @@ -88,29 +106,42 @@ , (,) "bg" bg , (,) "by" blr , (,) "ch" ch + , (,) "cv" cv , (,) "cy" cyp , (,) "cz" cz , (,) "de" de , (,) "dk" dk + , (,) "dz" dz , (,) "ee" ee + , (,) "eg" eg + , (,) "er" er , (,) "es" es , (,) "eu" eu , (,) "fi" fi , (,) "fr" fr + , (,) "gm" gm + , (,) "gn" gn , (,) "gr" gr + , (,) "gw" gw , (,) "hr" hrv , (,) "ie" ie , (,) "is" is , (,) "it" it , (,) "li" li + , (,) "lr" lbr , (,) "lt" lt , (,) "lu" lu , (,) "lv" lv + , (,) "ly" ly + , (,) "ma" ma , (,) "mc" mc , (,) "md" md , (,) "me" me , (,) "mk" mk + , (,) "ml" ml + , (,) "mr" mrt , (,) "mt" mt + , (,) "ne" ne , (,) "nl" nl , (,) "no" no , (,) "pl" pl @@ -118,10 +149,15 @@ , (,) "ro" ro , (,) "rs" rs , (,) "ru" ru + , (,) "sd" sd , (,) "se" se , (,) "si" si , (,) "sk" sk + , (,) "sl" sl , (,) "sm" sm + , (,) "sn" sn + , (,) "td" td + , (,) "tn" tn , (,) "ua" ua , (,) "uk" uk , (,) "va" va @@ -134,7 +170,7 @@ Handy function to draw a flag with 3 vertical stripes of the same size. -} flagV3Eq - :: (Float,Float) -- ^ @w@ and @h@ parameters for the viewbox (multiplied by 100 for width and height) + :: (Float,Float) -- ^ @w@ and @h@ parameters for the viewbox -> String -- ^ color for the left stripe -> String -- ^ color for the central stripe -> String -- ^ color for the right stripe @@ -180,7 +216,7 @@ Handy function to draw a flag with 3 horizontal stripes of the same size. -} flagH3Eq - :: (Float,Float) -- ^ @w@ and @h@ parameters for the viewbox (multiplied by 100 for width and height) + :: (Float,Float) -- ^ @w@ and @h@ parameters for the viewbox -> String -- ^ color for the top stripe -> String -- ^ color for the central stripe -> String -- ^ color for the bottom stripe @@ -558,11 +594,61 @@ {- | +Flag of Cabo Verde + + +-} +cv :: Svg +cv = + S.svg + ! A.viewbox "0 0 450 300" + ! A.width "300" + ! A.height "200" + $ do + blueBand + whiteBand + redBand + starCircle + where + blueBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "450" + ! A.height "300" + ! A.fill "#003893" + whiteBand = + S.rect + ! A.x "0" + ! A.y "150" + ! A.width "450" + ! A.height "75" + ! A.fill "#FFFFFF" + redBand = + S.rect + ! A.x "0" + ! A.y "175" + ! A.width "450" + ! A.height "25" + ! A.fill "#CF2027" + star (c1,c2) = + starRegular 5 12.5 (c1,c2) + ! A.fill "#F7D116" + getCentre k = + ( 168.75 - 75 * sin (k * 2*pi / 10) + , 187.5 + 75 * cos (k * 2*pi / 10) + ) + starCircle = + S.g $ mapM_ (star . getCentre . fromIntegral) [0 .. 9] + + + +{- | Flag of Cyprus  -} -cyp :: S.Svg +cyp :: Svg cyp = S.svg ! A.viewbox "0 0 900 600" @@ -687,6 +773,58 @@ {- | +Flag of Algeria + + +-} +dz :: Svg +dz = + S.svg + ! A.viewbox "0 0 30 20" + ! A.width "300" + ! A.height "200" + $ do + leftBand + rightBand + moon + star + where + leftBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "15" + ! A.height "20" + ! A.fill "#006633" + rightBand = + S.rect + ! A.x "15" + ! A.y "0" + ! A.width "15" + ! A.height "20" + ! A.fill "#FFFFFF" + x1 = 2.5 / tan (pi/6) + y1 = 2.5 + r1 = 5 + r2 = 4 + moon = + S.path + ! A.fill "#D21034" + ! A.d moonDirs + moonDirs = mkPath $ do + m (15 + x1) (10 - y1) + aa r1 r1 0 True False (15 + x1) (10 + y1) + aa r2 r2 0 True True (15 + x1) (10 - y1) + S.z + b = (5 + 5 * sqrt 5) / 8 + star = + starRegular 5 2.5 (15 + b, 10) + ! A.fill "#D21034" + ! A.transform (rotateAround 90 (15 + b) 10) + + + +{- | Flag of Estonia  @@ -702,6 +840,90 @@ {- | +Flag of Egypt + + +-} +eg :: Svg +eg = + S.svg + ! A.viewbox "0 0 900 600" + ! A.width "300" + ! A.height "200" + $ do + topBand + midBand + botBand + egCoA + where + topBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "900" + ! A.height "200" + ! A.fill "#CE1126" + midBand = + S.rect + ! A.x "0" + ! A.y "200" + ! A.width "900" + ! A.height "200" + ! A.fill "#FFFFFF" + botBand = + S.rect + ! A.x "0" + ! A.y "400" + ! A.width "900" + ! A.height "200" + ! A.fill "#000000" + + + +{- | +Flag of Eritrea + + +-} +er :: Svg +er = + S.svg + ! A.viewbox "0 0 1200 600" + ! A.width "300" + ! A.height "150" + $ do + topBand + botBand + redTriangle + erCoA + where + topBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "1200" + ! A.height " 300" + ! A.fill "#0BAC24" + botBand = + S.rect + ! A.x "0" + ! A.y "300" + ! A.width "1200" + ! A.height " 300" + ! A.fill "#3C8BDC" + redTriangle = + S.path + ! A.fill "#EB0433" + ! A.d triangleDirs + triangleDirs = mkPath $ do + m 0 0 + l 1200 300 + l 0 600 + S.z + + + +{- | Flag of Spain  @@ -824,6 +1046,69 @@ {- | +Flag of Gambia + + +-} +gm :: Svg +gm = + S.svg + ! A.viewbox "0 0 27 18" + ! A.width "300" + ! A.height "200" + $ do + topBand + midBand + botBand + blueBand + where + topBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "27" + ! A.height "6" + ! A.fill "#CE1126" + midBand = + S.rect + ! A.x "0" + ! A.y "6" + ! A.width "27" + ! A.height "6" + ! A.fill "#FFFFFF" + botBand = + S.rect + ! A.x "0" + ! A.y "12" + ! A.width "27" + ! A.height "6" + ! A.fill "#3A7728" + blueBand = + S.rect + ! A.x "0" + ! A.y "7" + ! A.width "27" + ! A.height "4" + ! A.fill "#0C1C8C" + + + +{- | +Flag of Guinea (Conakry) + + +-} +gn :: Svg +gn = + flagV3Eq + (3,2) + "#CE1126" + "#FCD116" + "#009460" + + + +{- | Flag of Greece  @@ -886,6 +1171,50 @@ {- | +Flag of Guinea Bissau + + +-} +gw :: Svg +gw = + S.svg + ! A.viewbox "0 0 12 6" + ! A.width "300" + ! A.height "150" + $ do + topBand + botBand + leftBand + star + where + topBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "12" + ! A.height "3" + ! A.fill "#FCD116" + botBand = + S.rect + ! A.x "0" + ! A.y "3" + ! A.width "12" + ! A.height "3" + ! A.fill "#009E49" + leftBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "4" + ! A.height "6" + ! A.fill "#CE1126" + star = + starRegular 5 1 (2,3) + ! A.fill "#000000" + + + +{- | Flag of Croatia  @@ -1029,6 +1358,53 @@ {- | +Flag of Liberia + + +-} +lbr :: Svg +lbr = + S.svg + ! A.viewbox "0 0 209 110" + ! A.width "300" + ! A.height "157.894736" + $ do + redBackground + whiteStripes + blueSquare + star + where + redBackground = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "209" + ! A.height "110" + ! A.fill "#B22234" + whiteStripe ky = + S.rect + ! A.x "0" + ! A.y (S.toValue ky) + ! A.width "209" + ! A.height "10" + ! A.fill "#FFFFFF" + whiteStripes = + S.g $ mapM_ whiteStripe ([10, 30, 50, 70, 90] :: [Int]) + blueSquare = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "50" + ! A.height "50" + ! A.fill "#00205B" + r1 = 30 / (1 + cos(pi/5)) + star = + starRegular 5 r1 (25,25) + ! A.fill "#FFFFFF" + + + +{- | Flag of Lithuania  @@ -1102,6 +1478,99 @@ {- | +Flag of Libya + + +-} +ly :: Svg +ly = + S.svg + ! A.viewbox "0 0 48 24" + ! A.width "300" + ! A.height "150" + $ do + topBand + midBand + botBand + moon + star + where + topBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "48" + ! A.height "6" + ! A.fill "#E70013" + midBand = + S.rect + ! A.x "0" + ! A.y "6" + ! A.width "48" + ! A.height "12" + ! A.fill "#000000" + botBand = + S.rect + ! A.x "0" + ! A.y "18" + ! A.width "48" + ! A.height "6" + ! A.fill "#239E46" + x1 = 24 + 3 * cos(pi/4) + y1 = 12 - 3 * sin(pi/4) + y2 = 12 + 3 * sin(pi/4) + a = 0.5 * sqrt (706 - 480 * sqrt 2) + c = (1/5) * (15 - 3 * sqrt 5) * sqrt (5 + sqrt 5) + d = 3 + (c/8) * (-1 + sqrt 5) + moon = + S.path + ! A.fill "#FFFFFF" + ! A.d moonDirs + moonDirs = mkPath $ do + m x1 y1 + aa 3 3 0 True False x1 y2 + aa a a 0 True True x1 y1 + S.z + star = + starRegular 5 (c/2) (24 + d , 12) + ! A.fill "#FFFFFF" + ! A.transform (rotateAround (-90) (24 + d) 12) + + + +{- | +Flag of Morocco + + +-} +ma :: Svg +ma = + S.svg + ! A.viewbox "0 0 6 4" + ! A.width "300" + ! A.height "200" + $ do + back + centralStar + where + back = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "300" + ! A.height "200" + ! A.fill "#C1272D" + a = 0.5 * sqrt (10 + 2 * sqrt 5) + b = a / 20 + centralStar = + starPolygonOverlap 5 1 b (3,2) + ! A.fill "#006233" + ! A.stroke "#000000" + ! A.strokeWidth "0.01" + + + +{- | Flag of Monaco  @@ -1291,6 +1760,82 @@ {- | +Flag of Mali + + +-} +ml :: Svg +ml = + flagV3Eq + (3,2) + "#14B53A" + "#FCD116" + "#CE1126" + + + +{- | +Flag of Mauritania + + +-} +mrt :: Svg +mrt = + S.svg + ! A.viewbox "0 0 1500 1000" + ! A.width "300" + ! A.height "200" + $ do + topBand + midBand + botBand + moon + star + where + topBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "1500" + ! A.height " 200" + ! A.fill "#D01C1F" + midBand = + S.rect + ! A.x "0" + ! A.y "200" + ! A.width "1500" + ! A.height " 600" + ! A.fill "#00A95C" + botBand = + S.rect + ! A.x "0" + ! A.y "800" + ! A.width "1500" + ! A.height " 200" + ! A.fill "#D01C1F" + x1 = 750 - 375 + x2 = 750 + 375 + y1 = 325 + r1 = 375 + r2 = (273^2 + 375^2) / (2 * 273) + moon = + S.path + ! A.fill "#FFD700" + ! A.d moonDirs + moonDirs = mkPath $ do + m x1 y1 + aa r1 r1 0 True False x2 y1 + aa r2 r2 0 False True x1 y1 + S.z + r3 = 191 / (1 + cos (pi/5)) + y3 = 300 + r3 + star = + starRegular 5 r3 (750 , y3) + ! A.fill "#FFD700" + + + +{- | Flag of Malta  @@ -1326,6 +1871,53 @@ {- | +Flag of Niger + + +-} +ne :: Svg +ne = + S.svg + ! A.viewbox "0 0 7 6" + ! A.width "300" + ! (A.height .: 300 * 6 / 7) + $ do + topBand + midBand + botBand + centralCircle + where + topBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "7" + ! A.height "2" + ! A.fill "#E05206" + midBand = + S.rect + ! A.x "0" + ! A.y "2" + ! A.width "7" + ! A.height "2" + ! A.fill "#FFFFFF" + botBand = + S.rect + ! A.x "0" + ! A.y "4" + ! A.width "7" + ! A.height "2" + ! A.fill "#0DB02B" + centralCircle = + S.circle + ! A.fill "#E05206" + ! A.cx "3.5" + ! A.cy "3" + ! A.r "0.85" + + + +{- | Flag of the Netherlands  @@ -1499,6 +2091,56 @@ {- | +Flag of Sudan + + +-} +sd :: Svg +sd = + S.svg + ! A.viewbox "0 0 6 3" + ! A.width "300" + ! A.height "150" + $ do + topBand + midBand + botBand + leftTriangle + where + topBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "6" + ! A.height "1" + ! A.fill "#D21034" + midBand = + S.rect + ! A.x "0" + ! A.y "1" + ! A.width "6" + ! A.height "1" + ! A.fill "#FFFFFF" + botBand = + S.rect + ! A.x "0" + ! A.y "2" + ! A.width "6" + ! A.height "1" + ! A.fill "#000000" + leftTriangle = + S.path + ! A.fill "#007229" + ! A.d triangleDirs + triangleDirs = mkPath $ do + m 0 0 + l 2 1.5 + l 0 3 + S.z + + + +{- | Flag of Sweden  @@ -1611,10 +2253,25 @@ ! (A.height .: 200) ! A.stroke "none" ! A.fill "#EE1C25" - + {- | +Flag of Sierra Leona + + +-} +sl :: Svg +sl = + flagH3Eq + (3,2) + "#1EB53A" + "#FFFFFF" + "#0072C6" + + + +{- | Flag of San Marino  @@ -1650,6 +2307,114 @@ {- | +Flag of Senegal + + +-} +sn :: Svg +sn = + S.svg + ! A.viewbox "0 0 300 200" + ! A.width "300" + ! A.height "200" + $ do + leftBand + midBand + rightBand + starRegular 5 33 (150,100) + ! A.fill "#00853F" + where + leftBand = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "100" + ! A.height "200" + ! A.fill "#00853F" + midBand = + S.rect + ! A.x "100" + ! A.y "0" + ! A.width "100" + ! A.height "200" + ! A.fill "#FDEF42" + rightBand = + S.rect + ! A.x "200" + ! A.y "0" + ! A.width "100" + ! A.height "200" + ! A.fill "#E31B23" + + + +{- | +Flag of Chad + + +-} +td :: Svg +td = + flagV3Eq + (3,2) + "#002669" + "#FFCC00" + "#D20F36" + + + +{- | +Flag of Tunisia + + +-} +tn :: Svg +tn = + S.svg + ! A.viewbox "0 0 60 40" + ! A.width "300" + ! A.height "200" + $ do + redBackground + whiteCircle + moon + star + where + redBackground = + S.rect + ! A.x "0" + ! A.y "0" + ! A.width "60" + ! A.height "40" + ! A.fill "#E70013" + whiteCircle = + S.circle + ! A.cx "30" + ! A.cy "20" + ! A.r "10" + ! A.fill "#FFFFFF" + x1 = 31 + 81/16 + b = -40 + c = x1^2 - 64*x1 + 32^2 + 20^2 - 36 + y1 = 0.5 * (-b + sqrt (b^2 - 4*c)) + y2 = 0.5 * (-b - sqrt (b^2 - 4*c)) + moon = + S.path + ! A.fill "#E70013" + ! A.d moonDirs + moonDirs = mkPath $ do + m x1 y1 + aa 7.5 7.5 0 True True x1 y2 + aa 6 6 0 True False x1 y1 + S.z + star = + starRegular 5 4.5 (32,20) + ! A.fill "#E70013" + ! A.transform (rotateAround (-90) 32 20) + + + +{- | Flag of Ukraine  @@ -1684,9 +2449,9 @@ {- | -Flag of Great Britain +Flag of the United Kingdom - + -} uk :: S.Svg uk =
src/SvgIcons/Images/CountryFlagsCoAs.hs view
@@ -178,6 +178,152 @@ {- | +Flag of Egypt coat of arms. +Drawn for a @viewbox 0 0 900 600@ +-} +egCoA :: Svg +egCoA = S.g $ do + S.defs + $ do + S.clippath + ! A.id_ "HaskellSvgIcons-egCoA-shield" + ! A.clippathunits "userSpaceOnUse" + $ do + S.path + ! A.fill "#FFFFFF" + ! A.stroke "#C09600" + ! A.strokeWidth "0.242" + ! A.d "m -109.44854,181.5283 c -0.0743,0.005 -0.14904,0.007 -0.22429,0.007 -1.64187,0 -5.45544,-0.84238 -6.92547,-2.10534 -1.53974,1.16668 -5.41628,2.10534 -7.03156,2.10534 -0.0758,0 -0.15062,-0.009 -0.22481,-0.0229 -0.004,0.36798 0.0154,0.74941 0.0382,1.09633 0.0855,1.29667 0.3129,2.59794 0.65818,3.85022 1.08693,3.94096 3.31152,7.29006 6.50134,9.83059 3.19246,-2.54265 5.41973,-5.89492 6.50902,-9.8388 0.34583,-1.25198 0.57398,-2.55315 0.66026,-3.84968 0.0202,-0.36299 0.0404,-0.80747 0.0391,-1.07276 z" + S.g + ! A.fill "#FFFFFF" + ! A.stroke "#C09300" + ! A.strokeLinejoin "round" + ! A.transform + ( S.translate (-0.0051) 0.00275 + <> S.matrix 0.233 0 0 0.233 344.146 97.431 + ) + $ do + S.path + ! A.strokeWidth "5.45" + ! A.d "m 457.60208,879.34399 293.822,272.76201 -20.918,-495.38002 c -3.073,-75.078 -68.316,-57.853 -115.709,-30.77 -48.01,30.77 -102.783,30.77 -160.648,10.454 -57.852,20.315 -112.629,20.315 -160.64,-10.455 -47.388,-27.08 -112.624,-44.308 -115.704,30.77 l -20.931,495.38102 z" + S.path + ! A.id_ "HaskellSvgIcons-egCoA-wing" + ! A.stroke "none" + ! A.fill "#C09300" + ! A.transform (translate (-225.928) 881.606 <> S.matrix 4.29 0 0 4.29 (-1250.5) (-1299.595)) + ! A.d "m 393.47,246.49 -4.734,112.32 -8.035,7.168 4.879,-115.47 c 2.294,-1.578 6.313,-4.017 7.89,-4.017 z m 9.62,8.04 -4.017,93.955 -8.032,8.22 4.877,-108.49 c 1.579,1.577 6.314,5.45 7.172,6.31 z m 8.75,7.17 -3.155,78.362 -6.455,6.31 4.018,-89.406 c 1.574,1.578 4.73,3.874 5.592,4.734 z m 9.47,4.02 -3.156,66.787 -6.313,5.12 3.156,-74.345 c 1.579,0.717 4.735,2.438 6.313,2.438 z m 8.75,0 -2.297,55.657 -6.455,6.313 2.44,-61.252 c 1.575,0 5.593,0 6.312,-0.718 z" + S.use + ! A.xlinkHref "#HaskellSvgIcons-egCoA-wing" + ! A.transform (S.matrix (-1) 0 0 1 908.254 5.1265e-7) + S.path + ! A.fill "#c09300" + ! A.strokeWidth "4.607" + ! A.d "m 467.68408,933.65699 41.24,187.71501 -13.547,13.536 -14.154,-10.463 -23.39,-167.39201 9.849,167.39201 -13.544,17.228 -13.54,-17.228 9.85,-167.39201 -23.383,167.39201 -14.168,10.463 -13.533,-13.536 41.233,-187.71601 h 27.087 z" + S.g + ! A.id_ "HaskellSvgIcons-egCoA-zigzag" + ! A.fill "none" + ! A.stroke "C09300" + ! A.strokeWidth "1.27" + ! A.transform (translate (-225.928) 881.606) + $ do + S.path + ! A.fill "#FFFFFF" + ! A.strokeWidth "5.101" + ! A.d "m 587.732,-30.405 -81.856,290.463 112.637,17.236 47.998,-218.47 -78.78,-89.23 z" + S.path + ! A.strokeWidth "5.448" + ! A.d "m 560.661,68.697 9.848,23.994 53.219,-50.83" + S.path + ! A.strokeWidth "5.448" + ! A.d "M 597.513,8.55 608.649,112.997 642.5,68.688 m -13.54,17.212 18.49,63.816 m 7.25,-23.446 -37.4,56.806 m 11.665,56.698 -11.97,-56.62 -10.45,-57.587 -25.056,33.93 -10.989,-39.121 -35.07,35.971 17.836,65.429 24.615,-40.477 13.538,41.238 25.27,-39.307" + S.path + ! A.strokeWidth "5.448" + ! A.d "m 529.858,253.301 22.736,-31.934 14.813,49.152 20.31,-34.46 13.547,41.244" + S.use + ! A.xlinkHref "#HaskellSvgIcons-egCoA-zigzag" + ! A.transform (S.matrix (-1) 0 0 1 908.254 5.12656e-7) + S.g + ! A.strokeWidth "1.27" + ! A.transform (S.matrix 4.29 0 0 4.29 (-1476.428) (-418)) + $ do + S.path + ! A.strokeWidth "1.218" + ! A.d "m 462.31,253.09 c 0.667,0.04 -0.902,-3.568 -0.902,-3.568 1.765,1.804 8.43,2.235 8.43,2.235 -4,-1.766 -7.998,-15.096 -7.528,-25.721 0.432,-10.664 -1.528,-14.86 -3.097,-16.428 -2,-2 -8.43,-3.764 -12.664,-4 -2.392,-0.117 -2,1.804 -2,1.804 -4.43,-1.137 -8.86,-1.568 -10.86,-0.235 -1.883,1.255 -2.275,7.528 -0.902,6.43 3.332,-2.666 6.234,-0.235 8.233,2.666 1.764,2.549 1.647,9.763 -0.902,18.192 -2.666,8.861 -9.959,17.722 -9.959,17.722 3.96,0 9.528,-3.528 9.528,-3.528 l -1.333,5.528 c 4.195,-2 7.528,-5.097 7.528,-5.097 l 3.999,4.195 c 1.333,-1.764 4,-4.195 4,-4.195 0,0 3.332,3.529 8.429,4 z" + S.path + ! A.fill "none" + ! A.d "m 446.12,227.57 c 0,0 -2.235,16.428 -6.43,21.094 m 9.96,-21.524 c 0,0 -0.863,16.623 -3.764,21.956 m 6.894,-21.286 c 0,0 0,18.192 1.098,21.289 m 2.862,-20.389 c 0,0 0.902,15.291 4.666,20.819" + S.path + ! A.fill "#C09300" + ! A.strokeWidth "0.354" + ! A.d "m 442.08,219.61 c -0.196,-1.45 -0.549,-2.588 -1.059,-3.333 -2,-2.901 -4.9,-5.332 -8.233,-2.666 0,0 1.137,-3.529 3.568,-3.646 1.882,-0.118 6.155,1.411 9.92,7.841 0,0 -2.784,-0.627 -3.45,-0.039 -1.256,1.098 -0.746,1.843 -0.746,1.843 z" + S.path + ! A.fill "#C09300" + ! A.strokeWidth "0.354" + ! A.d "m 432.44,209.26 c 0.274,-0.902 0.706,-1.725 1.255,-2.078 2,-1.333 6.43,-0.902 10.86,0.235 0,0 -0.392,-1.921 2,-1.803 4.234,0.235 10.664,2 12.663,3.999 0.47,0.51 1.02,1.255 1.49,2.391 h -0.078 c -0.98,-1.372 -3.764,-1.293 -4.431,-1.215 -1.059,0.118 -1.725,0.078 -3.137,0.431 -0.666,0.157 -1.686,0.353 -2.235,0.784 -0.43,0.353 -0.784,1.647 -1.45,1.647 -1.059,0 -0.98,-0.274 -1.255,-0.588 -0.353,-0.431 -0.549,-1.059 -0.902,-1.02 -1.097,0.197 -2.862,-0.666 -5.096,-2.43 -2.235,-1.765 -3.098,-2.196 -5.999,-2 -2.862,0.235 -3.764,1.843 -3.764,1.843 z" + S.circle + ! A.cx "448.824" + ! A.cy "210.672" + ! A.r "1.176" + ! A.stroke "none" + S.path + ! A.strokeWidth "1.15" + ! A.transform (S.matrix 4.29 0 0 4.29 (-1476.436) (-418)) + ! A.d "m 449.98,327.23 c 32.642,-25.106 29.843,-61.883 29.843,-61.883 -0.8613,0.17223 -1.6795,0.25835 -2.5408,0.25835 -6.8471,0 -23.178,-3.9171 -26.988,-8.8926 -4.0812,4.5034 -20.77,8.8926 -27.574,8.8926 -0.86129,0 -1.7225,-0.0861 -2.5407,-0.25835 0,0 -2.8422,36.776 29.8,61.883 z" + S.path + ! A.fill "none" + ! A.strokeWidth "0.916" + ! A.transform (S.matrix 4.29 0 0 4.29 (-1476.436) (-418)) + ! A.d "m 477.22,268.04 c -0.28097,0.0176 -0.5633,0.0264 -0.8477,0.0264 -6.2055,0 -20.619,-3.1838 -26.175,-7.9572 -5.8195,4.4095 -20.471,7.9572 -26.576,7.9572 -0.28635,0 -0.56925,-0.035 -0.84965,-0.0865 -0.0142,1.3908 0.0581,2.8324 0.14448,4.1436 0.323,4.9008 1.1826,9.819 2.4876,14.552 4.1081,14.895 12.516,27.553 24.572,37.155 12.066,-9.61 20.484,-22.28 24.601,-37.186 1.3071,-4.7319 2.1694,-9.6497 2.4955,-14.55 0.0763,-1.3719 0.15265,-3.05185 0.14777,-4.0545 z" + S.g + ! A.stroke "none" + ! A.fillRule "evenodd" + ! A.clipPath "url(#HaskellSvgIcons-egCoA-shield)" + ! A.transform (S.matrix 16.042 0 0 16.042 2325.464 (-2179.285)) + $ do + S.path + ! A.fill "#C09600" + ! A.d "M-123.976 179.26H-119.093V196.458H-123.976z" + S.path + ! A.d "M-119.093 179.26H-114.21000000000001V196.458H-119.093z" + S.path + ! A.fill "#C09600" + ! A.d "M-114.21 179.26H-109.327V196.458H-114.21z" + S.g + ! A.strokeWidth "1.27" + ! A.strokeLinecap "round" + ! A.strokeLinejoin "round" + ! A.transform (translate (-225.928) 881.606) + $ do + S.path + ! A.strokeWidth "10.202" + ! A.d "m 680.055,389.899 c 85.558,0 167.418,-6.769 215.42,-20.31 20.316,-3.684 20.316,-14.147 20.316,-27.694 20.315,-6.768 9.845,-30.762 24,-30.762 -14.155,3.7 -17.228,-24 -34.462,-20.299 0,-24.01 -24.006,-27.083 -44.317,-20.325 -40.626,13.546 -112.637,16.625 -180.958,16.625 -68.316,-3.079 -139.716,-3.079 -180.953,-16.625 -20.31,-6.758 -44.304,-3.685 -44.304,20.325 -17.239,-3.7 -20.315,24 -34.467,20.3 14.152,0 3.687,23.993 24,30.761 0,13.547 0,24.01 20.926,27.694 47.385,13.541 129.253,20.31 214.798,20.31 z" + S.path + ! A.strokeWidth "5.448" + ! A.d "m 563.75,260.036 c 27.69,3.695 58.466,6.769 82.478,3.695 13.528,0 23.378,23.383 -3.701,27.083 -23.995,3.068 -61.542,0 -81.856,-3.7 -17.233,-3.078 -54.776,-9.844 -78.783,-16.625 -24.003,-10.452 -6.762,-30.751 6.766,-27.68 20.931,6.765 48.015,13.54 75.099,17.228 z m 232.653,0 c -27.7,3.695 -58.466,6.769 -81.86,3.695 -14.16,0 -24.008,23.383 3.077,27.083 24.005,3.068 61.55,0 81.847,-3.7 17.242,-3.078 54.78,-9.844 78.784,-16.625 24.01,-10.452 6.78,-30.751 -6.767,-27.68 -20.926,6.765 -48.006,13.54 -75.081,17.228 z" + S.path + ! A.strokeWidth "5.448" + ! A.d "m 478.805,246.523 c -20.923,-3.695 -30.77,20.299 -23.993,33.835 3.073,-6.768 17.23,-6.768 20.312,-13.536 3.681,-10.455 -3.082,-10.455 3.681,-20.3 z m 81.856,62.936 c 0,-13.526 13.533,-11.863 13.533,-25.404 0,-6.766 -3.685,-17.234 -10.454,-17.234 -6.772,0 -13.546,6.768 -13.546,13.536 -3.08,13.544 10.467,15.578 10.467,29.102 z m 97.429,-38.955 c 20.294,0 18.283,27.089 8.432,40.627 0,-9.846 -17.23,-13.538 -17.23,-20.299 0,-10.476 15.556,-10.476 8.798,-20.328 z m 223.215,-23.981 c 20.926,-3.695 30.778,20.299 24.004,33.835 -3.08,-6.768 -17.233,-6.768 -20.31,-13.536 -3.694,-10.455 3.08,-10.455 -3.694,-20.3 z m -81.855,62.936 c 0,-13.526 -13.528,-11.863 -13.528,-25.404 0,-6.766 3.687,-17.234 10.459,-17.234 6.766,0 13.54,6.768 13.54,13.536 3.08,13.544 -10.471,15.578 -10.471,29.102 z m -97.43,-38.955 c -20.302,0 -18.288,27.089 -8.44,40.627 0,-9.846 17.228,-13.538 17.228,-20.299 0.003,-10.476 -15.556,-10.476 -8.787,-20.328 z" + S.path + ! A.strokeWidth "3.822" + ! A.d "m 485.584,253.301 c 6.778,0 17.236,3.079 20.315,6.766 l -20.335,-6.779 z m 33.806,10.468 c 3.697,0 17.239,3.073 24.007,6.758 l -24.025,-6.779 z m 123.127,13.514 c -6.769,0 -20.31,0 -23.994,3.068 l 23.982,-3.089 z m -37.539,0 c -3.684,-3.7 -17.231,-3.7 -23.997,0 h 23.982 z M 874.57,253.301 c -6.769,0 -16.623,3.079 -20.316,6.766 z m -33.85,10.468 c -3.69,0 -17.234,3.073 -24.004,6.758 l 24.024,-6.779 z m -123.126,13.514 c 6.776,0 20.314,0 24.004,3.068 l -24.024,-3.089 z m 37.538,0 c 3.69,-3.7 17.24,-3.7 24.005,0 h -24.025 z" + S.g + ! A.fill "#C09600" + ! A.stroke "none" + $ do + S.path ! A.d "m 479.878,307.4 c -2.291,-0.438 -3.494,-2.251 -2.918,-4.396 0.703,-2.613 2.796,-4.108 4.773,-3.408 1.258,0.444 3.56,2.765 3.57,3.598 0.012,0.956 -1.205,3.229 -1.728,3.234 -0.226,0.002 -0.576,0.2 -0.778,0.437 -0.429,0.507 -1.773,0.753 -2.919,0.534 z m 235.656,16.817 c -0.852,-0.316 -2.21,-2.225 -2.208,-3.105 0.008,-1.661 2.463,-4.367 3.984,-4.382 0.752,-0.005 2.81,1.064 3.579,1.864 1.394,1.45 1.09,3.83 -0.662,5.182 -0.862,0.666 -3.433,0.907 -4.692,0.44 z m 1.545,10.639 c -1.803,-0.61 -2.462,-1.492 -2.609,-3.49 -0.152,-2.083 0.05,-2.407 2.25,-3.607 l 1.569,-0.855 1.486,0.663 c 2.06,0.918 2.975,1.908 3.048,3.292 0.078,1.492 -1.029,3.018 -2.747,3.788 -1.508,0.676 -1.598,0.682 -2.997,0.21 z" + S.path ! A.d "m 498.797,288.137 c -1.485,-0.047 -3.523,1.318 -4.692,2.01 -2.785,0.654 -6.026,2.365 -8.714,0.537 -2.648,-0.818 -6.17,-0.173 -6.57,3.084 0.68,2.796 4.598,4.394 6.972,2.547 1.762,-2.306 6.57,-3.659 7.105,0.268 -1.96,2.97 -1.737,6.902 -3.351,10.055 -0.263,1.964 -1.08,3.829 -2.145,5.497 -1.983,0.199 -4.092,-0.035 -5.765,1.206 -2.686,0.147 -5.426,1.482 -6.972,3.754 -1.73,2.48 -3.383,5 -3.888,8.044 0.46,3.11 4.022,4.002 6.704,4.156 2.86,0.788 5.724,1.82 8.58,2.682 4.656,1.042 9.018,2.725 13.675,3.753 6.797,2.05 13.934,2.992 20.78,4.827 0.718,0.238 1.39,0.445 2.145,0.536 2.842,0.59 4.324,-2.5 4.558,-4.826 1.41,-4.975 2.486,-10.035 3.888,-15.016 0.965,-1.997 2.13,-6.509 -1.742,-5.496 -2.21,1.324 -4.084,3.318 -6.838,3.485 -3.75,0.219 -1.61,4.055 -0.134,5.631 0.326,2.52 -0.471,5.53 -2.145,7.508 -2.23,1.414 -5.026,-0.24 -7.374,-0.804 -2.465,0.042 -7.393,-1.216 -5.094,-4.559 0.816,-2.475 0.888,-5.183 1.877,-7.641 1.259,-2.637 1.439,-5.514 2.01,-8.312 -1.55,-3.335 -4.198,1.097 -6.3,1.474 -1.45,1.007 -6.888,1.434 -4.023,4.022 2.468,1.875 0.576,5.134 0.134,7.508 -0.158,3.304 -3.594,4.093 -6.301,3.352 -2.693,-0.13 -6.441,-2.135 -4.156,-5.095 0.52,-2.467 1.381,-4.891 1.877,-7.374 1.018,-2.993 1.876,-5.846 2.95,-8.848 0.465,-2.66 1.42,-5.182 2.68,-7.508 0.075,-2.94 2.05,-5.47 2.011,-8.446 -0.2,-1.454 -0.851,-1.983 -1.742,-2.011 z M 483.38,319.24 c 0.35,-0.06 0.6,-0.008 0.938,0.134 1.071,0.456 1.103,1.327 0,2.28 -0.482,0.415 -1.03,0.816 -1.207,0.804 -2.006,-0.173 -2.598,-0.471 -2.68,-1.207 -0.075,-0.649 0.13,-0.835 1.474,-1.475 0.667,-0.318 1.124,-0.475 1.475,-0.536 z m -4.446,21.537 c -2.128,-2 -1.785,-3.46 1.361,-5.806 1.347,-1.003 2.163,-0.89 3.703,0.515 2.37,2.162 2.465,3.53 0.373,5.383 -1.034,0.916 -1.486,1.104 -2.69,1.116 -1.259,0.013 -1.616,-0.144 -2.747,-1.208 z m 13.085,3.947 a 3.688,3.688 0 0 1 -2.67,-4.666 c 0.55,-1.865 0.87,-2.048 3.604,-2.076 3.067,-0.03 3.662,0.483 3.691,3.183 0.017,1.52 -0.1,1.872 -0.857,2.576 -0.888,0.826 -2.596,1.271 -3.768,0.982 z m 382.293,0.343 c -0.974,-0.81 -1.17,-1.177 -1.181,-2.209 -0.013,-1.761 1.002,-3.053 3.2,-4.049 2.926,-1.325 4.118,-1.143 5.22,0.797 1.465,2.58 1.395,3.633 -0.36,5.371 -0.969,0.96 -1.15,1.016 -3.368,1.038 -2.177,0.013 -2.426,-0.045 -3.511,-0.948 z M 509.394,350 c -1.561,-0.416 -2.37,-1.588 -2.39,-3.46 -0.018,-1.433 0.086,-1.661 1.087,-2.445 0.65,-0.508 1.674,-0.943 2.482,-1.053 1.145,-0.157 1.564,-0.057 2.485,0.59 2.362,1.66 2.864,3.303 1.496,4.897 -1.457,1.697 -2.837,2.091 -5.16,1.471 z m 94.04,4.205 c -0.347,-0.432 -1.112,-0.687 -1.191,-1.232 0.137,-2.38 0.251,-4.79 1.01,-7.07 0.412,-2.244 0.05,-4.588 0.833,-6.773 0.802,-3.977 0.801,-8.077 1.725,-12.028 0.043,-2.035 0.236,-4.071 0.826,-6.03 0.676,-3.096 0.058,-6.333 0.97,-9.392 -0.098,-1.15 1.225,-4.218 2.387,-2.4 1.687,2.473 3.91,4.483 6.096,6.5 1.878,1.084 0.154,2.68 -1.144,3.217 -1.781,0.702 -2.214,2.664 -2.088,4.385 -0.25,1.779 -0.963,3.462 -1.036,5.277 -0.377,2.67 -0.303,5.383 -0.65,8.05 -0.781,2.613 -0.482,5.405 -0.743,8.098 0.034,1.71 -0.778,3.263 -0.666,4.979 -0.208,1.74 -0.286,3.836 -1.747,5.03 -1.41,0.712 -3.45,0.589 -4.583,-0.611 z M 730.85,312.161 c -2.069,1.565 -3.919,3.412 -5.765,5.23 -2.542,1.925 2.088,3.045 2.681,4.692 0.675,2.515 0.635,5.193 0.805,7.776 0.769,2.365 1.108,4.884 0.938,7.374 -0.222,2.67 -3.704,2.107 -5.228,3.62 -2.11,0.888 -2.952,2.962 -4.559,4.423 -1.056,2.071 -1.339,4.618 -1.474,6.972 0.151,1.921 -1.298,4.072 0,5.765 0.167,0.239 0.365,0.566 0.536,0.804 0.434,0.623 1.47,0.126 2.145,0.268 2.16,-0.12 4.412,0.203 6.435,-0.67 5.191,-0.898 10.43,-0.97 15.686,-1.207 3.214,0.103 6.307,-1.016 9.519,-0.938 2.517,0.557 3.65,-2.172 3.62,-4.156 -1.426,-2.804 -0.194,-6.129 -1.341,-8.983 -1.008,-2.885 -0.611,-6.126 -1.073,-9.116 -0.063,-2.353 -3.049,-3.225 -4.558,-1.475 -1.465,1.48 -3.83,1.776 -4.96,3.62 -1.273,2.584 2.691,2.587 3.351,4.558 0.755,1.992 0.508,4.207 0.67,6.301 0.49,2.542 -2.27,2.687 -4.021,2.95 -2.303,0.863 -5.535,1.44 -6.838,-1.34 -0.819,-2.058 -0.707,-4.26 -0.938,-6.436 -0.057,-3.826 -0.977,-7.587 -1.207,-11.395 -0.22,-4.706 -1.033,-9.381 -1.34,-14.077 -0.044,-1.954 -0.304,-5.14 -3.084,-4.558 z m -2.681,35.394 1.34,0.134 0.134,1.609 0.134,1.608 -1.743,0.537 c -0.923,0.273 -1.73,0.404 -1.742,0.402 a 10.938,10.938 0 0 1 -0.805,-0.537 c -0.942,-0.68 -0.701,-1.651 0.536,-2.949 0.698,-0.73 1.025,-0.872 2.145,-0.804 z M 599.615,307.743 c -1.63,0.579 -3.7,2.973 -5.362,2.95 -3.776,0.266 -3.249,3.943 -0.537,5.228 0.358,1.115 0.022,2.522 0.134,3.754 0.527,3.387 -1.61,6.113 -1.206,9.519 -0.19,3.733 -1.317,7.369 -1.475,11.127 -1.06,3.876 -1.072,7.86 -1.743,11.798 -0.447,3.532 -3.001,2.286 -5.229,1.341 -0.017,-1.531 -0.116,-3.027 -0.134,-4.558 0.929,-3.506 -1.892,-4.529 -4.692,-4.96 -2.944,0.278 -4.388,-2.245 -3.754,-4.827 1.265,-1.506 4.445,-1.087 6.435,-1.34 4.21,0.872 4.04,-4.77 1.877,-6.704 -1.479,-2.727 -5.14,-3.9 -6.167,-6.703 0.41,-3.717 -2.058,-7.432 -5.094,-9.25 -4.67,-0.328 -8.196,3.702 -9.921,7.641 -1.942,0.561 -3.878,1.144 -5.765,1.877 -3.042,0.761 -7.378,6.036 -3.218,8.044 2.335,0.643 9.44,2.264 6.301,5.496 -1.768,3.034 -5.152,3.086 -8.178,2.28 -3.104,0.002 -6.56,-1.51 -6.435,-5.095 -0.633,-3.217 -0.529,-6.684 -2.01,-9.653 -0.638,-3.6 -4.723,-2.758 -4.961,0.536 -3.146,2.292 -2.727,5.997 -0.536,8.715 1.367,3.127 0.013,6.768 -1.34,9.652 -0.82,3.754 -4.96,3.882 -7.911,5.095 -1.448,0.562 -6.986,-0.334 -4.96,2.815 3.23,1.14 7.09,2.166 10.457,1.34 3.53,-0.437 6.596,-2.851 8.312,-5.898 2.371,-2.403 6.444,-1.145 9.519,-1.207 3.315,-0.008 6.704,2.328 9.92,0.805 0.933,-2.421 5.243,-6.417 6.57,-2.28 -0.226,3.702 3.043,5.688 6.435,5.23 3.706,-0.212 2.336,2.62 2.28,4.826 0.244,4.009 2.83,6.112 6.166,7.776 1.137,0.306 2.338,0.203 3.486,0 3.209,-1.009 6.665,-2.44 7.642,-6.033 1.302,-2.92 1.333,-6.224 2.279,-9.25 0.76,-4.848 1.741,-9.696 1.877,-14.613 1.184,-4.455 0.844,-9.164 1.742,-13.675 0.568,-3.354 0.99,-6.707 1.341,-10.055 -0.393,-1.79 -1.166,-2.09 -2.145,-1.743 z m -29.092,17.83 c 0.65,0.08 1.01,0.876 1.073,2.28 0.068,1.561 0.885,2.834 1.877,3.083 0.782,0.196 0.715,1.025 -0.134,1.609 -0.494,0.34 -1.377,0.545 -2.95,0.536 -2.48,-0.013 -4.017,-0.655 -5.362,-2.011 l -0.805,-0.804 1.207,-0.805 a 27.579,27.579 0 0 0 2.413,-2.145 c 1.222,-1.247 2.032,-1.822 2.681,-1.743 z m 283.282,-33.79 c -2.433,0.112 -4.879,0.506 -7.105,1.073 -4.463,-0.278 -6.703,4.406 -2.413,6.703 2.58,6.583 6.608,-1.359 10.725,-0.804 6.167,1.2 6.688,7.86 7.642,12.87 0.347,4.963 1.777,9.789 3.217,14.48 4.128,4.588 -3.092,7.465 -6.167,3.887 -2.622,-2.85 -8.239,-6.347 -11.395,-2.413 -3.877,1.642 -4.036,6.823 -7.24,8.312 -5.187,1.58 -5.84,-4.8 -8.58,-7.507 -2.52,-3.537 -7.338,-3.846 -11.262,-5.095 -1.84,-3.727 -0.881,-10.063 -4.692,-12.602 -3.2,1.305 -9.066,7.302 -4.156,10.055 4.795,4.121 -2.093,6.01 -4.29,8.848 -3.139,3.495 -3.64,8.306 -4.157,12.737 -5.402,2.984 -6.454,-3.38 -7.105,-7.374 -0.42,-4.768 -4.444,-3.369 -7.24,-1.609 -4.086,1.656 -6.126,5.536 -8.982,8.58 -0.343,2.779 0.16,5.82 0.134,8.715 0.928,3.48 5.158,1.846 7.776,1.608 4.199,-1.756 5.918,2.692 2.547,5.23 -2.282,2.9 -9.523,1.385 -8.848,6.032 2.333,0.273 4.764,0.185 7.105,0 4.678,-1.278 9.701,-4.579 10.189,-9.787 0.616,-4.54 7.154,-3.713 10.725,-4.692 4.465,-1.287 9.845,-1.618 10.86,4.022 3.043,3.196 9.646,6.795 13.004,2.413 3.408,-2.082 5.046,-5.739 4.826,-9.653 -0.695,-3.366 5.443,-3.488 6.971,-1.609 2.237,3.681 9.228,2.595 12.603,0.537 3.587,-2.648 4.365,-7.315 9.519,-7.374 7.646,-2.29 15.59,-3.61 23.059,-6.435 6.05,-1.319 -0.9,-5.139 -2.413,-7.374 -4.607,-2.278 -8.615,7.044 -13.81,2.413 -4.013,-3.072 -3.74,-8.909 -5.228,-13.407 -1.017,-5.823 -0.76,-12.538 -4.96,-17.16 -2.885,-3.067 -6.804,-3.806 -10.86,-3.62 z m -29.226,40.623 c 0.54,-0.013 1.148,0.254 2.145,0.804 1.88,1.038 3.22,2.758 3.217,4.156 -10e-4,0.912 -0.233,0.974 -1.608,1.609 -0.846,0.39 -1.808,0.809 -2.146,0.804 -0.776,-0.008 -2.678,-1.53 -2.68,-2.145 -0.004,-0.255 -0.25,-1.229 -0.537,-2.01 -0.505,-1.376 -0.427,-1.358 0.268,-2.28 0.444,-0.59 0.801,-0.924 1.34,-0.938 z m 28.02,1.474 c 1.597,-0.104 2.546,0.394 3.217,1.61 0.78,1.41 0.25,2.492 -1.743,3.35 -0.873,0.378 -1.746,0.684 -1.877,0.671 -0.131,-0.013 -0.851,-0.44 -1.609,-0.938 -1.158,-0.763 -1.327,-1.132 -1.34,-2.011 -0.013,-1.353 1.498,-2.56 3.351,-2.682 z m -38.344,0.402 c 0.468,-0.072 0.894,0.172 1.475,0.67 0.772,0.664 1.016,1.197 1.207,2.548 0.134,0.939 0.113,2.153 0,2.681 -0.209,0.97 -0.229,0.926 -2.413,0.939 -2.747,0.026 -3.002,-0.274 -2.95,-2.816 0.034,-1.616 0.05,-2.051 0.939,-2.949 0.688,-0.696 1.275,-1 1.742,-1.073 z m -23.595,6.168 c 0.856,0.2 1.664,0.847 1.877,1.876 0.281,1.363 0.034,1.983 -1.073,2.548 -0.953,0.485 -3.149,0.647 -3.754,0.268 -0.196,-0.123 -0.6,-0.442 -0.804,-0.805 -0.292,-0.52 -0.238,-0.77 0.134,-1.072 0.26,-0.211 0.538,-0.514 0.536,-0.67 -0.002,-0.157 0.289,-0.7 0.67,-1.207 0.627,-0.832 1.558,-1.14 2.413,-0.938 z m 39.683,5.094 c 0.764,-0.004 1.41,0.261 1.877,0.67 0.795,0.697 0.768,1.718 -0.134,2.414 -0.58,0.447 -3.74,0.406 -4.826,0 -0.484,-0.181 -0.668,-0.424 -0.67,-0.939 -0.009,-0.604 0.16,-0.977 1.206,-1.475 0.877,-0.418 1.784,-0.665 2.548,-0.67 z m -73.666,20.673 c -0.411,-0.268 -1.02,-0.502 -0.407,-0.95 0.741,-1.298 2.222,-1.747 3.537,-2.23 2.35,-1.018 4.379,-2.747 5.893,-4.798 0.214,-1.429 1.818,-2.204 1.811,-3.697 0.013,-2.038 0.134,-4.126 -0.363,-6.118 -0.55,-1.826 -1.937,-3.226 -3.546,-4.178 -1.1,-0.865 -2.891,-1.103 -3.298,-2.635 -0.225,-1.47 1.088,-2.59 1.547,-3.9 0.958,-1.81 1.764,-3.706 2.793,-5.47 1.111,-1.235 2.826,-0.068 3.401,1.125 0.812,1.191 1.531,2.47 1.934,3.85 1.297,1.424 2.447,3.093 2.913,4.985 0.637,1.332 1.644,2.584 1.585,4.144 0,1.787 1.008,3.378 0.945,5.175 0.057,2.405 0.056,4.912 -0.823,7.182 -0.6,1.26 -1.804,2.015 -2.602,3.143 -1.368,1.268 -2.876,2.484 -4.632,3.158 -1.24,0.395 -1.96,1.826 -3.515,1.479 -2.207,0.039 -4.447,0.339 -6.637,-0.017 0.138,0.232 -0.671,-0.393 -0.536,-0.246 z m -29.387,1.931 c -1.042,-1.071 -1.267,-1.525 -1.279,-2.576 -0.012,-1.062 0.192,-1.483 1.211,-2.513 1.88,-1.899 2.8,-1.945 6.045,-0.302 3.102,1.57 4.151,1.712 4.429,0.6 0.268,-1.073 2.054,-2.055 3.75,-2.062 1.073,-0.009 1.68,0.205 2.54,0.874 1.078,0.84 1.13,0.97 1.158,2.914 0.017,1.987 -0.009,2.062 -1.246,3.158 -1.19,1.047 -1.381,1.111 -2.855,0.964 -1.876,-0.189 -3.001,-1.047 -3.307,-2.525 -0.221,-1.072 -0.598,-1.328 -0.88,-0.6 -0.09,0.235 -0.552,0.524 -1.025,0.643 -0.873,0.22 -2.355,1.152 -3.407,2.145 -0.398,0.375 -1.095,0.552 -2.225,0.563 -1.526,0.013 -1.738,-0.078 -2.91,-1.283 z m -85.03,-38.182 c -2.852,0.03 -5.923,2.429 -6.302,5.228 0.652,3.228 3.333,6.39 1.609,9.787 1.19,4.346 -3.267,5.995 -6.302,3.486 -1.832,-4.167 -2.76,-8.734 -5.496,-12.468 -3.45,-0.977 -4.953,4.534 -7.374,6.435 1.2,3.24 4.701,6.145 5.094,10.189 0.838,3.925 -1.55,8.282 -4.96,10.323 -2.942,2.809 -6.973,1.805 -10.591,2.413 -4.394,2.568 3.225,3.507 5.229,3.62 4.494,0.457 9.16,-0.136 12.467,-3.486 3.3,-1.575 3.045,-7.281 6.972,-7.91 6.814,-0.304 13.568,1.045 20.378,1.207 3.644,0.872 9.282,-0.434 11.798,2.279 0.008,4.751 4.036,7.681 7.91,9.519 2.14,0.595 4.394,-2.057 6.569,-2.548 4.141,-1.32 2.882,-6.443 5.363,-8.446 7.08,-0.383 14.227,-0.302 21.316,-0.402 1.35,0.034 1.748,-1.887 2.682,-2.681 -0.156,-2.74 -0.255,-5.46 -0.67,-8.178 -1.366,-3.46 0.22,-7.914 -2.28,-10.86 -3.56,-0.97 -6.59,2.29 -10.189,2.548 -3.973,1.77 -7.32,5.439 -7.507,9.92 -2.353,3.847 -6.125,-0.684 -4.827,-3.887 -0.148,-1.396 0.302,-3.022 -0.134,-4.29 -2.175,-2.61 -5.983,-1.757 -8.982,-2.145 -4.37,0.174 -8.635,-0.77 -13.005,-0.67 -3.83,-0.29 -7.816,0.333 -11.53,-0.67 -4.425,-0.127 -3.816,-4.455 -4.558,-7.509 -0.785,-0.582 -1.73,-0.814 -2.68,-0.804 z m 8.58,15.82 c 1.471,0.03 2.859,0.222 4.29,0.401 1.848,0.305 3.817,-0.635 5.63,0 4.19,0.713 8.381,0.545 12.603,0.939 1.114,-0.017 1.912,0.792 2.68,1.475 0.01,2.932 0.004,5.915 0,8.848 -0.127,1.105 0.328,2.566 -0.67,3.352 -0.32,0.22 -0.679,0.46 -1.072,0.536 -1.161,-0.3 -2.39,-1.064 -2.95,-2.145 -0.177,-1.534 0.077,-3.02 0.134,-4.558 -0.03,-0.398 0.174,-1.017 0,-1.341 -0.912,-0.647 -1.947,-1.068 -3.083,-1.073 -3.644,-0.125 -7.216,-0.393 -10.86,-0.536 -3.032,-0.191 -6.148,0.26 -9.116,-0.536 -1.151,-0.419 -2.65,-0.275 -3.351,-1.475 -1.005,-1.168 0.444,-2.56 1.474,-3.083 1.366,-0.621 2.819,-0.833 4.29,-0.805 z m 48.396,1.072 c 0.681,-0.009 0.898,0.214 1.207,1.475 0.197,0.805 0.427,1.79 0.536,2.145 0.156,0.506 -0.093,0.67 -0.804,0.938 -2.12,0.8 -4.229,0.72 -4.96,-0.268 -0.333,-0.448 0.055,-1.864 0.67,-2.413 1.242,-1.11 2.616,-1.875 3.351,-1.877 z" + + + +erCoA :: Svg +erCoA = + S.path + ! A.fill "#FBC724" + ! A.d "m 215.42175,135.39237 c -2.17233,0.0318 -4.90004,0.38584 -8.03908,1.14648 -10.40324,2.52071 -20.20173,12.2582 -26.62895,23.82037 -1.97376,2.43357 -7.38726,4.61372 -9.90237,4.90626 -0.23951,-1.52256 0.61785,-5.82033 2.25,-9.07229 1.38294,-2.75555 7.1869,-8.41392 13.77152,-13.23244 l 6.50977,-4.76368 -8.46681,0.9375 c -16.46416,1.81854 -30.48576,11.1853 -37.21101,24.94927 -1.74529,3.57195 -3.58081,10.43856 -4.37697,16.27542 -0.73439,5.38406 -1.54229,8.9746 -2.4004,10.90823 -0.45939,1.03518 -0.75,1.2207 -0.75,1.2207 -0.0816,-0.002 -0.87845,-0.8032 -1.79296,-3.57423 -1.4142,-4.28516 -0.88138,-9.04165 2.38281,-18.36332 1.1994,-3.42467 2.40535,-7.51173 0.25195,-7.51173 -0.93891,0 -4.07997,1.88412 -7.22853,3.98829 -11.47404,7.66823 -18.42667,22.35734 -19.36918,40.43368 -0.45337,8.69477 -0.16892,12.40585 1.39844,16.15238 1.76681,4.22327 2.10678,8.45488 1.51758,9.56643 -3.79595,-1.62359 -8.18896,-20.29707 -6.21485,-30.28132 l 1.78711,-9.0469 -5.72853,5.48829 c -5.21115,4.9922 -10.088753,13.25512 -13.013693,21.94927 -2.17733,6.47183 -2.53724,9.80295 -2.0957,19.23247 0.47071,10.05282 1.07852,12.56814 5.04297,20.81059 2.45401,5.10209 6.568533,11.58211 9.169943,14.40433 4.09442,4.44192 4.97991,7.80834 3.79297,8.81642 -2.65551,-1.02423 -11.448963,-10.21249 -14.103533,-15.33988 -1.44565,-2.79201 -3.50034,-8.18683 -4.55861,-11.98635 l -2.79883,-10.0508 -3.16211,8.8047 c -1.34715,3.75341 -2.36581,11.00078 -2.74025,19.22856 -0.50648,11.12968 -0.20722,14.61368 1.89453,21.53325 4.32349,14.23413 15.543323,28.47382 28.906313,36.72273 5.35842,3.30771 7.44486,5.56748 7.59181,7.33791 -0.58527,-0.0418 -1.52577,-0.29343 -3.27931,-0.91211 -9.9932,-3.5258 -20.039493,-11.16668 -28.535203,-21.77543 l -5.64454,-7.04495 0.76562,9.52151 c 2.55801,31.79375 26.172103,59.86539 56.392693,66.98842 4.18733,0.98696 8.91665,1.81979 10.65823,1.83009 2.23859,0.0137 6.28794,3.11719 7.01173,4.74805 -0.18024,0.029 -0.27823,0.062 -0.55469,0.082 -4.33763,0.31429 -16.47919,-1.11986 -25.88092,-3.32814 -5.31111,-1.24747 -13.56051,-4.07593 -18.33792,-6.28321 -3.92162,-1.8119 -7.21313,-3.04235 -8.28517,-2.97658 -0.18082,0.0111 -0.62827,0.10718 -0.89258,0.42188 -0.46765,0.55678 -0.24356,1.05387 -0.0801,1.33398 12.12475,20.76752 34.10662,38.02586 59.11145,46.45909 15.66615,5.28361 26.72006,6.80647 52.58019,7.28713 13.86549,0.25768 25.716,0.46322 26.70514,0.45312 -0.64541,0.626 -1.71258,1.39116 -3.41212,2.36133 -2.47245,1.41135 -7.77876,5.04555 -11.81838,8.08205 l -8.12112,6.10353 3.11329,4.20899 c 1.33705,1.80843 2.30218,3.74405 4.84767,2.5879 1.92204,-0.873 4.98731,-3.61173 11.58401,-9.21291 3.78854,-3.2168 6.97147,-5.39157 7.47463,-5.62892 0.19492,1.51702 -0.66721,5.52729 -2.49416,9.18947 -0.87574,1.75517 -1.60013,3.47606 -1.59179,4.14063 0.002,0.15146 0.0122,0.55181 0.41601,0.86719 0.48053,0.3755 3.81995,0.78229 7.50587,1.19728 l 7.95315,0.89648 -0.72071,-6.83791 c -0.31607,-3.00397 -0.12041,-6.92042 0.39063,-8.6836 l 0.54687,-1.88868 9.60159,9.09767 0.28906,0.27735 h 0.0254 c 5.17985,4.89369 9.8572,9.06053 11.31448,9.959 0.16641,0.1026 0.47929,0.28516 0.82813,0.28516 1.02792,0 2.84565,-1.55057 4.30274,-3.10157 l 3.31446,-3.53126 -6.86134,-6.16993 c -3.39388,-3.05139 -9.65784,-7.63227 -13.918,-10.18361 -2.76702,-1.65716 -4.44585,-2.70085 -5.31642,-3.39454 0.0691,-0.0185 0.1329,-0.0392 0.21094,-0.0586 1.28786,-0.32117 14.51168,-0.85598 29.04498,-1.07422 23.592,-0.35411 27.95908,-0.74108 39.27547,-3.46876 15.59557,-3.75914 28.4679,-8.95166 39.27548,-15.87112 9.69904,-6.20975 20.40373,-16.7089 24.34576,-23.94537 l 4.30469,-7.89845 -8.58205,4.27931 c -7.15991,3.57076 -13.7139,5.14058 -25.29303,5.99415 -5.1739,0.38138 -11.9265,0.96167 -15.00979,1.28711 -4.34334,0.45848 -4.459,0.15131 -4.459,-0.17774 0,-1.5287 4.50697,-3.89584 11.83402,-4.83204 8.39475,-1.07263 20.10356,-5.40754 27.586,-10.209 17.10195,-10.97411 29.80709,-34.07246 29.86724,-54.29894 l 0.0273,-9.09768 -3.8672,5.58009 c -5.23941,7.56517 -23.29387,20.67778 -27.96295,20.67778 -1.21088,0 -1.24677,-0.29023 -0.63867,-1.31446 0.5806,-0.97791 1.75228,-2.21543 3.56641,-3.56641 13.50637,-10.05822 24.73835,-24.66496 29.54694,-38.48055 3.15892,-9.07592 3.08866,-29.66129 -0.0918,-40.46883 l -3.20704,-10.89456 -2.96484,9.98244 c -2.76684,9.32029 -12.63071,25.88367 -16.78911,29.06256 -0.43278,0.33085 -0.63179,0.39569 -0.6875,0.39845 -1.11608,0.0553 -0.3043,-4.53748 4.084,-10.32035 9.37077,-12.34875 12.74092,-23.33774 11.52346,-37.74031 -0.87278,-10.32502 -5.76936,-22.88815 -12.53909,-32.23834 l -6.1465,-8.48635 -0.90039,14.89065 c -0.69459,11.4866 -2.47223,19.88719 -4.27736,22.45709 -0.37804,0.5382 -0.60156,0.58789 -0.60156,0.58789 0,0 -0.0875,-0.0172 -0.24804,-0.17774 -1.03504,-1.03503 -1.10579,-4.8528 0.58593,-15.56839 3.23717,-20.50476 -4.38691,-40.19817 -20.51371,-52.97082 -2.36509,-1.87313 -4.64041,-3.42769 -5.51563,-3.5625 -0.18323,-0.0282 -0.65988,-0.0517 -1.01758,0.32617 -0.26648,0.28152 -0.31156,0.7238 -0.31446,0.85938 -0.0225,1.05613 0.79865,4.96623 1.92188,9.334 2.08747,8.11739 2.36414,15.34528 1.22461,17.64653 -0.21594,0.43608 -0.40234,0.46874 -0.40235,0.46874 0,0 0.1045,0.0572 -0.0371,-0.0859 -0.79884,-0.80735 -1.91995,-3.79526 -3.41798,-9.71877 -1.47877,-5.84734 -3.98853,-13.33466 -5.60158,-16.6602 -5.64901,-11.64625 -18.14513,-22.09892 -30.60943,-25.60552 -5.04755,-1.42004 -7.74824,-2.18342 -8.70705,-2.08594 -0.34313,0.0349 -1.03881,0.27203 -1.13672,1.01562 -0.13494,1.02493 1.34751,2.06103 3.06445,3.4336 9.07467,7.25481 16.34882,17.30137 15.42192,19.71684 -0.21984,0.57288 -0.74757,0.90181 -3.25392,0.42773 -1.48571,-0.28102 -2.55371,-0.64954 -3.50196,-1.11718 -0.11772,-0.4278 -0.28856,-0.85509 -0.51367,-1.2793 -6.37294,-12.00724 -17.16697,-21.25142 -27.84186,-23.83794 -12.55613,-3.04259 -18.55575,0.42565 -8.5801,4.9629 5.13432,2.33353 8.42971,5.82836 8.42971,8.93752 0,1.71437 -1.13614,1.20904 -4.48243,-2.00001 -9.89907,-9.48062 -32.04077,-12.25439 -26.0274,-3.25976 3.2564,4.87347 8.70355,7.38752 19.63481,9.05861 10.44514,1.59786 12.89236,2.67702 7.54493,3.32617 -7.60825,0.92208 -10.94758,0.66782 -14.25394,-1.08984 -6.45952,-3.43539 -6.79265,-1.33435 -0.77929,4.89063 7.87133,8.14577 15.31268,11.23198 25.29498,10.48635 8.30047,-0.6212 13.7887,-1.90729 17.17972,-3.54297 1.90583,0.0697 3.57072,0.70297 6.9883,2.26758 4.05779,1.85771 5.98243,3.55431 5.98243,4.02345 0,0.50257 -0.38281,0.86574 -10.40041,0.44531 -6.28866,-0.26397 -12.28269,-0.92962 -13.25394,-1.36523 -0.82873,-0.37172 -1.72685,-0.80284 -2.41016,-0.42969 -1.2888,0.7038 -0.30215,2.34441 0.72266,4.32618 2.89841,5.60487 10.3798,12.24997 17.68363,15.84769 5.88574,2.89921 8.19699,3.29496 19.49222,3.3418 11.56016,0.0481 12.43917,0.28392 14.87504,2.57227 1.55917,1.46479 2.65625,3.40896 2.65625,4.2129 0,0.86949 0.2811,1.06055 -5.63672,0.44726 -5.88549,-0.60998 -15.19115,-2.84553 -19.83989,-4.75586 -0.49523,-0.2035 -1.28869,-0.35353 -1.82227,0.29882 -0.36736,0.44914 -0.33208,1.09739 -0.25,1.48828 0.62542,2.97822 7.4375,12.67267 12.47073,17.31059 6.70693,6.18057 21.10203,13.83883 28.34186,15.0137 3.02131,0.49028 3.73833,1.0715 5.63087,5.34962 1.27815,2.88944 2.25001,5.7976 2.25001,6.4844 0,0.67806 -1.63873,0.87528 -2.15431,0.041 -0.63998,-1.03558 -3.83084,-1.87884 -6.91798,-2.3418 -6.15721,-0.92331 -12.08745,-3.68686 -17.33402,-8.10158 l -3.71876,-3.12696 -1.59375,1.14649 2.34765,5.95118 c 4.92034,12.48301 6.18737,14.96506 11.30081,22.13091 5.4306,7.61032 14.98997,16.94815 21.07231,20.54105 2.48391,1.46728 2.86865,2.14783 2.85352,5.85354 -0.009,2.29645 -0.25453,4.01704 -0.66211,5.17579 -0.50898,1.44705 -0.96096,1.58133 -1.64649,1.0918 -0.91078,-0.65039 -4.75854,-3.36687 -8.55665,-6.04103 -7.69479,-5.41767 -10.85033,-8.64812 -13.4473,-13.57425 l -1.85938,-3.5254 -1.9082,0.4668 -0.0371,7.63478 c -0.0778,15.59191 4.82935,34.75836 11.77736,45.89072 7.20736,11.54782 7.1853,11.8421 4.06446,18.89848 -1.15321,2.60762 -2.13886,4.21228 -2.99218,5.03908 -0.39553,0.38324 -0.63869,0.43359 -0.63869,0.43359 -0.0461,-0.009 -0.41981,-0.318 -0.71093,-1.82032 -0.29547,-1.52484 -2.13284,-4.85943 -4.06251,-7.66407 -5.2406,-7.61698 -7.98176,-14.76036 -8.90236,-23.12115 l -1.26563,-11.49221 -4.02735,8.93361 c -5.13123,11.38702 -6.71783,22.60009 -6.87306,47.67197 l -0.14453,23.07623 -4.18751,4.81446 c -3.17843,3.6538 -5.81098,6.02487 -7.68556,7.16018 -1.04145,0.63072 -1.51362,0.6298 -1.5547,0.63085 -0.0172,-0.0858 -0.0334,-0.20579 -0.0176,-0.41601 0.0466,-0.61906 0.29723,-1.54063 0.85157,-2.85548 0.99126,-2.35108 2.06005,-10.15413 2.54298,-17.61137 0.52505,-8.10821 1.82174,-16.36657 3.25586,-20.84965 1.20392,-3.76317 2.08749,-7.21801 2.04297,-8.23439 -0.007,-0.1577 -0.004,-0.51407 -0.33984,-0.84961 -0.61285,-0.61285 -1.43042,-0.2801 -1.8418,-0.0625 -3.17396,1.67907 -14.56505,13.72424 -21.01372,22.27544 -4.17662,5.53839 -10.76277,16.26663 -14.6387,23.84185 -7.66502,14.98069 -10.8973,19.34727 -16.5137,22.81841 -2.9633,1.83143 -21.00032,9.55536 -23.29498,10.15431 -0.23475,-2.6009 -0.6104,-9.5128 -0.94336,-17.77738 -0.6795,-16.86609 -1.47561,-24.10944 -3.70508,-33.54499 -0.30848,-1.3054 -0.21728,-1.57953 1.69922,-2.06056 1.98445,-0.49805 7.08452,-4.66111 11.49416,-9.13282 l 7.5547,-7.66018 5.11916,1.58984 c 12.31408,3.82341 28.86204,-0.11406 36.82039,-8.85353 3.16894,-3.48001 7.13469,-8.99561 7.79494,-10.71291 0.0801,-0.20822 0.19459,-0.66811 0.10742,-0.9961 -0.2674,-1.00596 -1.23495,-0.87467 -1.65235,-0.67578 -0.60143,0.28656 -4.02312,1.93803 -7.6172,3.67579 -6.31893,3.05526 -10.78902,4.1972 -12.45511,3.94727 -0.0398,-0.006 -0.0353,-0.0129 -0.0664,-0.0195 0.28914,-0.72133 1.64736,-2.13209 4.88282,-4.26954 6.04966,-3.99659 12.65095,-12.21354 14.75003,-18.43558 0.71303,-2.11387 1.81355,-5.15431 -0.0527,-5.15431 -0.52807,0 -2.66874,0.87181 -4.99024,1.8418 -2.20685,0.92208 -6.28301,1.68358 -9.07619,1.6836 -7.03347,0 -11.78346,1.75108 -15.16995,5.86133 -1.4207,1.72434 -2.82549,2.19815 -3.53322,2.06447 -0.45593,-0.0861 -0.99999,-0.57847 -0.54883,-2.26173 0.41401,-1.54476 0.74247,-4.61544 0.75196,-6.8379 0.0111,-2.72209 0.79251,-4.22536 4.06055,-7.21877 l 4.37697,-4.00586 -1.01758,-1.70118 -3.8711,1.34766 c -8.06362,2.81099 -15.11906,8.69639 -18.68754,15.65042 -3.03848,5.92122 -3.37877,7.79073 -2.92384,15.7891 0.33205,5.83806 -0.005,9.5021 -0.9336,11.32034 -1.93375,3.78794 -9.5592,10.6114 -15.25589,13.5176 -4.39312,2.2412 -3.828,1.94614 -4.53712,0.6211 -4.22517,-7.89474 -10.59603,-38.14823 -10.41212,-49.58019 0.17685,-10.99607 0.76697,-11.7725 6.66602,-13.27737 3.24258,-0.82719 8.23087,-3.17908 11.06839,-5.21681 5.38852,-3.86977 12.24919,-4.53283 17.04886,-1.78906 7.87693,4.50285 23.43236,0.5145 31.11921,-7.66799 1.9376,-2.06272 3.47709,-3.61692 2.75976,-4.70704 -0.78451,-1.19224 -2.77235,-0.0827 -5.22657,1.19726 -3.70379,1.93166 -9.77359,2.1465 -14.72073,0.42189 -2.10354,-0.7333 -2.87037,-1.45854 -2.92383,-1.65431 0,0 1.00188,-0.9312 4.60547,-1.41211 6.85021,-0.91418 14.53345,-5.70599 19.67193,-12.1719 1.98061,-2.49231 3.81835,-4.80349 3.81835,-5.44728 0,-1.25662 -0.76391,-1.02178 -1.00781,-1.03711 -0.64521,-0.0406 -2.50202,0.53822 -4.64063,1.27344 -3.36164,1.15567 -4.86475,1.1345 -9.91018,-0.30078 -6.07556,-1.72833 -6.96117,-1.68936 -11.74611,0.80469 -2.28092,1.18889 -3.61782,1.87266 -4.39259,2.13282 -0.004,10e-4 -0.008,5.7e-4 -0.0117,0.002 -0.006,-0.14526 -0.01,-0.29896 -0.01,-0.50195 0,-1.22321 1.19981,-2.91769 7.08595,-8.9883 l 4.23048,-4.35743 h -5.81446 c -5.54298,0 -13.84799,4.5578 -16.71293,9.19338 -1.3622,2.20407 -3.82519,7.64756 -5.50978,12.13283 -4.05694,10.80185 -7.55785,15.02355 -14.85354,18.25004 -3.47293,1.53592 -6.7716,2.7129 -7.06056,2.7129 -0.32343,0 -0.0974,-2.46589 5.57813,-12.99417 6.62211,-12.28404 11.8667,-24.57247 14.19535,-33.30867 1.78795,-6.70768 3.18902,-8.54467 10.67384,-13.60745 5.25025,-3.55128 5.72704,-3.67201 12.40433,-3.04883 11.37893,1.06258 17.57794,-0.25259 23.4688,-5.29494 2.03323,-1.74036 3.53727,-3.3057 4.36914,-4.48829 1.7751,-2.52343 0.52441,-4.24383 -2.62109,-2.93164 -3.64839,1.52194 -11.63677,2.70126 -13.04691,2.16016 -1.11219,-0.42665 -1.12157,-0.88301 -1.04687,-1.08203 0.161,-0.42889 0.94116,-1.14314 2.60157,-1.50782 5.6043,-1.23092 16.12503,-11.80521 16.12503,-16.6016 0,-1.23076 -0.68236,-2.26526 -2.14845,-1.75977 -0.51103,0.17619 -1.22413,0.61161 -2.05468,1.19336 -1.42321,0.99686 -4.62706,1.64455 -8.7676,1.64453 -6.50912,0 -7.51945,0.37242 -10.80666,4.4922 -1.21063,1.51729 -2.2332,2.5112 -2.97462,3.14454 -0.13487,-0.63682 -0.26563,-1.40467 -0.26563,-2.46484 0,-2.75826 0.87693,-4.57783 4.23829,-8.11135 l 6.14454,-6.45704 h -5.5293 c -4.78287,0 -11.30503,4.76751 -13.93363,9.95119 -1.22448,2.41474 -2.70735,8.28907 -3.35937,13.1094 -0.98335,7.2697 -1.66832,8.90322 -4.72853,12.06057 -2.97975,3.07432 -4.62914,3.74339 -4.78712,3.64455 0,0 -0.2845,-0.65468 0.125,-2.59962 3.65447,-17.35697 3.38518,-24.93855 -1.41212,-38.33602 -2.73466,-7.63727 -2.7001,-7.86871 -1.0625,-11.30276 1.09569,-2.29781 1.98183,-6.51599 1.97462,-9.34572 -0.0131,-5.49015 -4.34016,-16.22399 -7.8047,-19.08988 -1.1124,-0.92023 -2.70377,-1.56299 -3.26759,0.56054 -0.30839,1.16154 -0.33984,3.45643 -0.33985,7.56251 0,8.10164 -0.19822,7.93948 -1.33593,7.93948 -0.99081,0 -1.3779,-0.44895 -1.37891,-0.48438 -0.0375,-1.28253 -3.2012,-5.19034 -6.74221,-8.94728 l -7.53126,-7.99221 -1.81055,4.75587 c -1.78308,4.68958 -0.52113,9.07841 3.82227,14.53714 1.46231,1.83781 2.39407,3.22824 2.84767,4.20704 0.49709,1.07266 0.37719,0.97007 -0.0684,0.96876 -1.50803,-0.005 -8.56794,-4.2505 -10.44144,-6.52736 -0.552,-0.67085 -1.1178,-1.37144 -1.79101,-1.40821 -1.7557,-0.0959 -1.19587,1.98277 -0.80664,3.78712 1.89817,8.79956 11.31441,15.88095 21.89847,16.74613 9.11,0.74467 9.83195,1.73533 9.69924,22.47856 -0.0901,14.08936 -0.53055,17.41635 -4.2207,31.81062 -2.28331,8.90655 -4.49317,16.33499 -4.57423,16.41604 -0.92507,0.92507 -5.86887,-1.44858 -12.82229,-7.95314 l -7.29104,-6.82032 0.10352,-6.79884 c 0.0649,-4.28159 -0.6896,-9.37024 -1.83008,-12.0762 -1.65415,-3.92468 -11.13334,-15.12396 -14.46292,-17.38481 -0.38554,-0.26178 -0.96178,-0.54883 -1.38672,-0.54883 -2.22307,0 -0.81607,3.39268 0.39453,5.86329 1.15005,2.34706 2.42839,6.4398 2.8457,9.10745 0.61564,3.93532 0.3765,3.82422 -0.0508,3.82422 -0.47524,0 -1.29529,-0.63393 -1.61914,-1.65429 -1.25347,-3.9494 -7.34773,-6.56838 -13.7637,-6.56838 -4.19927,0 -5.3018,-0.47062 -8.19143,-3.50195 l -6.14649,-6.4512 1.5664,7.07424 c 1.73071,7.80778 5.92896,14.30824 11.80863,18.13871 4.04051,2.63231 4.99721,4.09457 4.92579,4.22072 -0.25376,0.44827 -2.73374,0.9353 -8.1719,0.70508 l -11.19923,-0.47266 4.57813,4.97071 c 5.67915,6.16249 11.56941,7.82889 26.43755,7.85743 l 12.99808,0.0254 7.30471,6.41213 c 9.82337,8.62444 10.14186,9.88585 6.85547,15.09183 -12.37868,19.60905 -18.16974,42.53586 -14.77346,59.05286 1.15897,5.63568 1.14118,8.1061 0.86523,8.28322 -0.15598,0.10011 -2.0704,-0.97564 -5.99806,-4.82423 -8.44219,-8.27258 -9.21886,-9.97646 -9.91994,-21.72857 -0.88397,-14.81853 -5.83274,-22.69352 -17.73832,-27.92387 -2.45927,-1.08043 -4.20493,-1.7759 -5.18751,-2.05861 -1.56946,-0.45158 -3.22927,0.30326 -1.64844,1.94337 0.32645,0.3387 0.94878,0.82278 1.77344,1.40039 1.2058,0.84459 2.6936,3.07137 3.29103,5.04298 2.15111,7.09928 2.08844,10.66397 1.61132,10.92385 -0.0765,0.0417 -1.28029,-0.40536 -3.48243,-3.15039 -3.36006,-4.18843 -4.47762,-4.67775 -10.29885,-4.67775 -7.62614,0 -12.90304,-1.58409 -16.11331,-4.59962 l -4.45509,-4.1836 v 4.93946 c 2e-5,7.51189 11.46483,20.62555 21.45317,25.06451 2.68701,1.19415 4.39259,2.77256 4.39259,2.87696 0,0 -0.008,-0.007 -0.24024,0.10742 -1.66391,0.82551 -6.77158,0.56145 -10.49416,-1.09376 -5.07482,-2.25659 -10.71078,-4.043 -12.44339,-3.87695 -0.2474,0.0237 -0.67658,0.12189 -0.96289,0.4082 -0.44019,0.44019 -0.40668,1.02427 -0.33398,1.3711 0.47994,2.28954 5.97797,8.76887 9.33596,11.13478 11.74626,8.27587 24.10145,10.33499 34.04108,5.38673 l 4.43751,-2.20898 5.24415,5.49805 c 2.52359,2.64582 4.6468,5.12072 5.35743,6.18361 0.0164,0.0246 0.0307,0.0502 0.0449,0.0723 0.0129,0.0198 0.0242,0.037 0.0351,0.0547 0.0101,0.0159 0.019,0.033 0.0274,0.0469 0.007,0.0125 0.0153,0.0245 0.0215,0.0352 0.005,0.0101 0.009,0.0174 0.0137,0.0254 0.004,0.007 0.009,0.0139 0.0117,0.0195 l -0.0312,-0.23243 c 0,1.11239 2.90196,3.57729 5.97854,5.92385 6.19091,4.72194 8.02383,7.5925 8.07813,11.77541 0.0263,2.03104 1.55488,7.1148 3.34571,11.52542 3.22869,7.95172 3.15379,7.56621 2.85744,33.89851 -0.14278,12.68755 -0.44015,23.05852 -0.67578,25.60356 -3.5382,-1.07793 -16.60086,-8.03603 -21.8067,-11.85744 -6.26304,-4.59749 -13.15221,-13.25825 -20.50785,-25.89654 -12.92955,-22.21523 -21.78655,-33.05963 -34.12117,-41.61142 -1.81135,-1.25585 -3.37173,-2.11163 -4.36133,-2.43945 -1.25041,-0.41422 -2.84144,-0.005 -2.27345,1.66601 0.16978,0.49936 0.66961,1.20536 1.33203,1.9336 1.44242,1.5859 3.60611,11.82005 4.65626,23.67974 0.5589,6.31162 1.82384,13.14443 2.98439,15.3887 1.66916,3.22783 1.288,4.40626 0.17578,4.40626 -0.0998,0 -3.25181,-2.34682 -6.62501,-5.53712 l -5.83596,-5.51954 -0.16992,-16.36722 c -0.21745,-20.93282 -4.85952,-46.67819 -10.29494,-56.48841 -0.35592,-0.64238 -0.68084,-1.20428 -0.96289,-1.54296 -0.95482,-1.14651 -2.09025,-0.68182 -2.51173,0.64648 -0.26379,0.83134 -0.48034,2.37048 -0.79883,4.77735 -0.88452,6.68431 -4.20729,15.1403 -7.11524,18.35356 -1.22064,1.34881 -2.75,4.9786 -3.54493,8.1094 -0.80276,3.16154 -1.94163,4.70479 -2.03711,4.76954 -0.027,-0.019 -0.0562,-0.0396 -0.0898,-0.0664 -0.93354,-0.74055 -2.57701,-3.03264 -4.03516,-5.86721 l -3.09181,-6.00977 4.0879,-6.39454 c 9.14225,-14.29167 13.68437,-30.91357 13.5723,-49.57043 l -0.0684,-10.91603 -1.94728,-0.37891 -1.98828,4.834 c -2.60595,6.32821 -4.11911,7.94893 -10.39065,11.12697 -3.09846,1.57013 -7.08275,4.54022 -8.83205,6.61916 -1.84564,2.19341 -3.09668,3.00757 -3.60352,3 -0.5191,-0.008 -1.29883,-1.70346 -1.29883,-6.91603 0,-3.54222 0.29943,-4.11844 5.42579,-7.70705 2.15063,-1.50554 3.77172,-3.11547 4.67775,-4.02149 13.80004,-13.80004 17.00561,-19.8923 22.11137,-31.89655 1.87831,-4.53749 3.13369,-7.94883 3.69922,-9.93947 0.33793,-1.18951 0.69859,-2.50649 -0.17187,-3.06642 -1.29554,-0.83335 -2.49096,1.2666 -3.91797,3.78712 -2.93922,5.19151 -6.30739,7.0944 -14.77934,7.96876 -3.56517,0.36797 -7.38229,1.39475 -8.39845,2.61915 -1.31778,1.58783 -3.94727,1.44383 -3.94727,0.40821 0,-0.82839 1.01742,-3.99239 2.3457,-7.0801 2.24067,-5.20855 2.05635,-5.0828 7.89651,-5.68556 9.14129,-0.94345 16.45924,-4.56415 24.23442,-11.90822 5.94012,-5.61081 13.63971,-16.42209 13.67386,-19.79106 0.005,-0.45214 -0.27129,-1.01398 -0.83789,-1.19337 -0.97046,-0.30727 -2.29793,0.67848 -3.49025,1.76955 -3.40672,3.11809 -5.64858,3.65137 -14.17971,2.69726 -6.39554,-0.71529 -6.90996,-1.13514 -7.09181,-2.40625 -0.12361,-0.86409 0.80536,-3.10924 2.29883,-4.72071 l 2.41602,-2.60353 4.91212,2.17189 c 4.5368,2.00679 7.42317,2.42524 13.03909,1.91601 9.85284,-0.89342 21.57992,-6.73805 26.31841,-13.27932 1.90428,-2.62878 3.64455,-5.35494 3.64455,-6.24611 0,-1.75994 -3.1842,-1.61682 -5.77346,-1.26953 -2.43557,0.32668 -7.88895,0.24091 -12.08987,-0.20898 -4.74801,-0.50846 -6.6569,-1.33722 -6.74611,-1.68556 -0.0513,-0.20028 1.1545,-1.49088 5.2676,-3.39648 3.82014,-1.76992 5.31357,-3.02641 10.47072,-2.9922 3.38667,1.13366 8.39277,2.75433 14.62308,3.32227 9.9823,0.74563 17.42365,-2.34058 25.29497,-10.48635 6.01336,-6.22498 5.68022,-8.32407 -0.7793,-4.88869 -3.30636,1.75767 -6.64567,2.00997 -14.25393,1.0879 -5.34742,-0.64915 -2.90021,-1.72832 7.54494,-3.32618 10.93126,-1.67108 16.37841,-4.18318 19.6348,-9.05666 6.01337,-8.99463 -16.12833,-6.2228 -26.0274,3.25782 -3.34628,3.20904 -4.48243,3.71634 -4.48243,2.00196 0,-3.10915 3.29734,-6.60594 8.43166,-8.93948 7.48174,-3.40293 5.976,-6.20472 -0.54102,-6.10938 z" + + + +{- | Flag of Croatia coat of arms. Drawn for a @viewbox 0 0 1200 600@ -}
svg-icons.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: svg-icons -version: 2.5.0.1 +version: 2.5.0.2 homepage: https://github.com/RamiroPastor/SvgIcons license: BSD-3-Clause license-file: LICENSE