metanorma-iho 1.2.5 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -210,47 +210,12 @@
210
210
  <xsl:with-param name="month_year" select="$month_year"/>
211
211
  </xsl:call-template>
212
212
 
213
- <xsl:choose>
214
- <xsl:when test="/mn:metanorma/mn:boilerplate/*[not(self::mn:feedback-statement)]">
215
- <fo:page-sequence master-reference="preface" format="i" force-page-count="no-force">
216
- <xsl:call-template name="insertHeaderFooter">
217
- <xsl:with-param name="title_header" select="$title_header"/>
218
- <xsl:with-param name="docidentifier" select="$docidentifier"/>
219
- <xsl:with-param name="edition" select="$edition"/>
220
- <xsl:with-param name="month_year" select="$month_year"/>
221
- <xsl:with-param name="font-weight">normal</xsl:with-param>
222
- </xsl:call-template>
223
- <fo:flow flow-name="xsl-region-body">
224
- <fo:block-container margin-left="-1.5mm" margin-right="-1mm">
225
- <fo:block-container margin-left="0mm" margin-right="0mm" border="0.5pt solid black">
226
- <fo:block-container margin-top="6.5mm" margin-left="7.5mm" margin-right="8.5mm" margin-bottom="7.5mm">
227
- <fo:block-container margin="0">
228
- <fo:block text-align="justify">
229
- <xsl:apply-templates select="/mn:metanorma/mn:boilerplate/*[not(self::mn:feedback-statement)]"/>
230
- </fo:block>
231
- </fo:block-container>
232
- </fo:block-container>
233
- </fo:block-container>
234
- </fo:block-container>
235
- </fo:flow>
236
- </fo:page-sequence>
237
- </xsl:when>
238
- <xsl:otherwise>
239
- <!-- https://github.com/metanorma/metanorma-iho/issues/293:
240
- If the publication has no copyright boxed note (normally on page ii of the publication), page ii should be "Page intentionally left blank". -->
241
- <fo:page-sequence master-reference="blankpage" format="i" force-page-count="no-force">
242
- <xsl:call-template name="insertHeaderFooterBlank">
243
- <xsl:with-param name="title_header" select="$title_header"/>
244
- <xsl:with-param name="docidentifier" select="$docidentifier"/>
245
- <xsl:with-param name="edition" select="$edition"/>
246
- <xsl:with-param name="month_year" select="$month_year"/>
247
- </xsl:call-template>
248
- <fo:flow flow-name="xsl-region-body">
249
- <fo:block/>
250
- </fo:flow>
251
- </fo:page-sequence>
252
- </xsl:otherwise>
253
- </xsl:choose>
213
+ <xsl:call-template name="inner-cover-page">
214
+ <xsl:with-param name="title_header" select="$title_header"/>
215
+ <xsl:with-param name="docidentifier" select="$docidentifier"/>
216
+ <xsl:with-param name="edition" select="$edition"/>
217
+ <xsl:with-param name="month_year" select="$month_year"/>
218
+ </xsl:call-template>
254
219
 
255
220
  <xsl:variable name="updated_xml_with_pages">
256
221
  <xsl:call-template name="processPrefaceAndMainSectionsIHO_items"/>
@@ -435,6 +400,9 @@
435
400
  <!-- =========================== -->
436
401
  <!-- =========================== -->
437
402
  </xsl:for-each>
403
+
404
+ <xsl:call-template name="back-page"/>
405
+
438
406
  </fo:root>
439
407
  </xsl:template>
440
408
 
@@ -626,6 +594,57 @@
626
594
  <!-- =========================== -->
627
595
  </xsl:template>
628
596
 
597
+ <xsl:template name="inner-cover-page">
598
+ <xsl:param name="title_header"/>
599
+ <xsl:param name="docidentifier"/>
600
+ <xsl:param name="edition"/>
601
+ <xsl:param name="month_year"/>
602
+ <xsl:choose>
603
+ <xsl:when test="/mn:metanorma/mn:boilerplate/*[not(self::mn:feedback-statement)]">
604
+ <fo:page-sequence master-reference="preface" format="i" force-page-count="no-force">
605
+ <xsl:call-template name="insertHeaderFooter">
606
+ <xsl:with-param name="title_header" select="$title_header"/>
607
+ <xsl:with-param name="docidentifier" select="$docidentifier"/>
608
+ <xsl:with-param name="edition" select="$edition"/>
609
+ <xsl:with-param name="month_year" select="$month_year"/>
610
+ <xsl:with-param name="font-weight">normal</xsl:with-param>
611
+ </xsl:call-template>
612
+ <fo:flow flow-name="xsl-region-body">
613
+ <fo:block-container margin-left="-1.5mm" margin-right="-1mm">
614
+ <fo:block-container margin-left="0mm" margin-right="0mm" border="0.5pt solid black">
615
+ <fo:block-container margin-top="6.5mm" margin-left="7.5mm" margin-right="8.5mm" margin-bottom="7.5mm">
616
+ <fo:block-container margin="0">
617
+ <fo:block text-align="justify">
618
+ <xsl:apply-templates select="/mn:metanorma/mn:boilerplate/*[not(self::mn:feedback-statement)]"/>
619
+ </fo:block>
620
+ </fo:block-container>
621
+ </fo:block-container>
622
+ </fo:block-container>
623
+ </fo:block-container>
624
+ </fo:flow>
625
+ </fo:page-sequence>
626
+ </xsl:when>
627
+ <xsl:otherwise>
628
+ <!-- https://github.com/metanorma/metanorma-iho/issues/293:
629
+ If the publication has no copyright boxed note (normally on page ii of the publication), page ii should be "Page intentionally left blank". -->
630
+ <fo:page-sequence master-reference="blankpage" format="i" force-page-count="no-force">
631
+ <xsl:call-template name="insertHeaderFooterBlank">
632
+ <xsl:with-param name="title_header" select="$title_header"/>
633
+ <xsl:with-param name="docidentifier" select="$docidentifier"/>
634
+ <xsl:with-param name="edition" select="$edition"/>
635
+ <xsl:with-param name="month_year" select="$month_year"/>
636
+ </xsl:call-template>
637
+ <fo:flow flow-name="xsl-region-body">
638
+ <fo:block/>
639
+ </fo:flow>
640
+ </fo:page-sequence>
641
+ </xsl:otherwise>
642
+ </xsl:choose>
643
+ </xsl:template> <!-- inner-cover-page -->
644
+
645
+ <xsl:template name="back-page">
646
+ </xsl:template>
647
+
629
648
  <xsl:template name="insertListOf_Title">
630
649
  <xsl:param name="title"/>
631
650
  <fo:block xsl:use-attribute-sets="toc-listof-title-style">
@@ -1252,101 +1271,176 @@
1252
1271
  </xsl:template>
1253
1272
 
1254
1273
  <xsl:variable name="Image-IHO-SVG">
1255
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100px" height="100px" viewBox="0 0 100 100" version="1.1">
1256
- <g>
1257
- <polygon fill="#00AAA9" points="0 100 100 100 100 0 0 0"/>
1258
- <g transform="translate(20.000000, 36.000000)" fill="#FEFEFE">
1259
- <polygon points="0.510089944 25.6344052 8.07929262 25.6344052 8.07929262 1.10633647 0.510089944 1.10633647"/>
1260
- <polygon points="11.970913 1.1068918 19.5401156 1.1068918 19.5401156 9.62685265 26.628734 9.62685265 26.628734 1.1068918 34.1979367 1.1068918 34.1979367 25.6349606 26.628734 25.6349606 26.628734 15.9132532 19.5401156 15.9132532 19.5401156 25.6349606 11.970913 25.6349606"/>
1261
- <path d="M48.3801795,20.104372 C50.3069666,20.104372 53.2661199,18.8326531 53.2661199,13.3714815 C53.2661199,7.90919922 50.3069666,6.63748039 48.3801795,6.63748039 C46.4533925,6.63748039 43.4942392,7.90919922 43.4942392,13.3714815 C43.4942392,18.8326531 46.4533925,20.104372 48.3801795,20.104372 M48.3801795,0.523233944 C55.8459231,0.523233944 60.8353226,5.88222379 60.8353226,13.3714815 C60.8353226,20.8607392 55.8459231,26.2186184 48.3801795,26.2186184 C40.9133235,26.2186184 35.9239241,20.8607392 35.9239241,13.3714815 C35.9239241,5.88222379 40.9133235,0.523233944 48.3801795,0.523233944"/>
1262
- </g>
1263
- </g>
1264
- </svg>
1274
+ <xsl:choose>
1275
+ <xsl:when test="$lang = 'es' or $lang = 'fr'">
1276
+ <svg xmlns="http://www.w3.org/2000/svg" id="uuid-77734ae3-e014-495b-ac9d-44601be3ed54" width="235.3mm" height="235.3mm" viewBox="0 0 667 667">
1277
+ <rect width="667" height="667" style="fill:#01a9aa;"/>
1278
+ <path d="M292.18,332.88c0,49.89-35.07,84.97-84.97,84.97s-84.72-35.07-84.72-86.2,34.58-85.95,84.72-85.95,84.97,34.83,84.97,87.19ZM173.62,331.64c0,27.42,13.09,44.95,33.84,44.95s33.59-17.54,33.59-44.46-13.09-45.2-33.84-45.2-33.59,17.54-33.59,44.71Z" style="fill:#fff;"/>
1279
+ <path d="M356.97,348.93v65.21h-49.4v-164.75h49.4v55.82h47.42v-55.82h49.4v164.75h-49.4v-65.21h-47.42Z" style="fill:#fff;"/>
1280
+ <path d="M533.35,414.14h-51.13v-164.75h51.13v164.75Z" style="fill:#fff;"/>
1281
+ </svg>
1282
+ </xsl:when>
1283
+ <xsl:otherwise> <!-- default 'en' -->
1284
+ <svg xmlns="http://www.w3.org/2000/svg" id="uuid-f75324d8-fec1-4d12-b47f-c98c06f1dded" width="235.3mm" height="235.3mm" viewBox="0 0 667 667">
1285
+ <rect width="667" height="667" style="fill:#01a9aa;"/>
1286
+ <path d="M183.55,413.03h-51.13v-164.75h51.13v164.75Z" style="fill:#fff;"/>
1287
+ <path d="M259.62,347.82v65.21h-49.4v-164.75h49.4v55.82h47.42v-55.82h49.4v164.75h-49.4v-65.21h-47.42Z" style="fill:#fff;"/>
1288
+ <path d="M536.65,331.77c0,49.89-35.07,84.97-84.97,84.97s-84.72-35.07-84.72-86.2,34.58-85.95,84.72-85.95,84.97,34.83,84.97,87.19ZM418.1,330.53c0,27.42,13.09,44.95,33.84,44.95s33.59-17.54,33.59-44.46-13.09-45.2-33.84-45.2-33.59,17.54-33.59,44.71Z" style="fill:#fff;"/>
1289
+ </svg>
1290
+ </xsl:otherwise>
1291
+ </xsl:choose>
1265
1292
  </xsl:variable>
1266
1293
 
1267
1294
  <xsl:variable name="Image-Logo-IHO-SVG">
1268
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100px" height="100px" viewBox="0 0 100 100" version="1.1">
1269
- <g>
1270
- <polygon fill="#05164D" points="0 100 100 100 100 0 0 0"/>
1271
- <g transform="translate(19.811321, 15.277778)" fill="#FEDC5B">
1272
- <path d="M28.7238836,10.581 C28.5202673,10.5876667 28.3749843,10.7354444 28.3815881,10.9365556 C28.3881918,11.1343333 28.5433805,11.2721111 28.7480975,11.2643333 C28.9528145,11.2565556 29.0958962,11.1076667 29.0892925,10.911 C29.0826887,10.7098889 28.9286006,10.5732222 28.7238836,10.581"/>
1273
- <path d="M30.2124843,35.6943333 L30.5393711,33.2898889 C30.5778931,33.0098889 30.6615409,32.7465556 30.765,32.4921111 L24.4705031,32.4921111 L24.4705031,24.2676667 L20.2396855,24.2676667 L20.2396855,44.8998889 L24.4705031,44.8998889 L24.4705031,36.471 L30.201478,36.471 C30.1761635,36.2176667 30.1761635,35.9576667 30.2124843,35.6943333"/>
1274
- <path d="M33.993805,26.334 C33.8474214,25.704 33.4677044,25.1717778 32.9250943,24.8328889 L32.3538679,24.4762222 L32.3538679,25.824 C32.6246226,26.0028889 32.8161321,26.274 32.8920755,26.5962222 C32.9691195,26.9284444 32.9151887,27.2695556 32.7379874,27.5573333 C32.6400314,27.7195556 32.5046541,27.8451111 32.3538679,27.9462222 L32.3538679,29.1895556 C32.9151887,29.0195556 33.391761,28.664 33.7010377,28.1584444 C34.0367296,27.6117778 34.1401887,26.9628889 33.993805,26.334"/>
1275
- <path d="M28.2444497,47.4391111 L28.6043553,46.8035556 C28.4733805,46.6046667 28.3578145,46.3946667 28.2697642,46.1657778 C27.9538836,45.3468889 27.9725943,44.4546667 28.3214937,43.6557778 L29.2889465,41.4335556 C29.7038836,40.4802222 30.5381604,39.8057778 31.5166195,39.5702222 L31.5166195,38.7924444 C31.0587579,38.4524444 30.6966509,37.9968889 30.4655189,37.4746667 L27.641305,37.4746667 L27.641305,47.4735556 C27.8063994,47.448 27.9725943,47.4302222 28.1420912,47.4302222 C28.1762107,47.4302222 28.2103302,47.438 28.2444497,47.4391111"/>
1276
- <path d="M29.5788522,20.4073333 C28.9206761,20.4073333 28.2746069,20.4562222 27.6417453,20.5462222 L27.6417453,31.4884444 L31.4257075,31.4884444 C31.4290094,31.4851111 31.4323113,31.4817778 31.4356132,31.4784444 L31.5170597,31.4784444 L31.5170597,31.3862222 L31.5170597,30.9673333 L31.5170597,21.1562222 L31.5170597,20.5462222 C30.8830975,20.4562222 30.2370283,20.4073333 29.5788522,20.4073333"/>
1277
- <path d="M44.0848113,55.2396667 C43.7953459,55.4474444 43.7381132,55.8074444 43.9549371,56.1152222 C44.1706604,56.423 44.5261635,56.4896667 44.8167296,56.2807778 C45.106195,56.0741111 45.162327,55.7141111 44.9466038,55.4052222 C44.7297799,55.0974444 44.3753774,55.0318889 44.0848113,55.2396667"/>
1278
- <polygon points="31.5727516 60.0921111 32.4015252 60.0132222 31.8787264 58.891"/>
1279
- <path d="M14.1195283,55.3286667 C13.9016038,55.6364444 13.9566352,55.9997778 14.2461006,56.2075556 C14.535566,56.4164444 14.8932704,56.3531111 15.111195,56.0453333 C15.3302201,55.7364444 15.2740881,55.3753333 14.9846226,55.1664444 C14.6940566,54.9564444 14.3374528,55.0208889 14.1195283,55.3286667"/>
1280
- <path d="M38.4392453,57.2156667 C37.9219497,57.4223333 37.7040252,57.9501111 37.9197484,58.499 C38.1365723,59.049 38.6527673,59.2823333 39.1711635,59.0756667 C39.6884591,58.8678889 39.9063836,58.3401111 39.6895597,57.7912222 C39.4738365,57.2401111 38.9565409,57.0078889 38.4392453,57.2156667"/>
1281
- <path d="M51.7951572,46.8437778 C51.4803774,47.4226667 51.1413836,47.986 50.7847799,48.5371111 L52.0725157,49.376 L36.1255031,54.6782222 C34.6539623,55.1671111 33.1119811,55.4993333 31.5171698,55.6482222 L31.5171698,54.326 C30.878805,54.3893333 30.2327358,54.4237778 29.5789623,54.4237778 C29.5041195,54.4237778 29.4303774,54.4182222 29.3555346,54.4171111 L29.1618239,54.6615556 C28.7920126,55.1226667 28.313239,55.4582222 27.7761321,55.6604444 C26.1890252,55.5226667 24.6536478,55.2037778 23.1865094,54.7293333 L7.08540881,49.376 L8.37424528,48.5371111 C8.01764151,47.986 7.67754717,47.4226667 7.3627673,46.8437778 L0.140440252,50.836 C0.549874214,51.5904444 0.991226415,52.3226667 1.45459119,53.0404444 L3.62503145,51.6282222 L29.5789623,68.4337778 L55.5328931,51.6282222 L57.7033333,53.0404444 C58.1666981,52.3226667 58.6080503,51.5893333 59.0174843,50.836 L51.7951572,46.8437778 Z"/>
1282
- <path d="M32.2681289,41.4832222 C32.2219025,41.4832222 32.1756761,41.4854444 32.1305503,41.4898889 C31.6814937,41.5398889 31.2918711,41.8287778 31.1113679,42.2432222 L30.1439151,44.4643333 C30.0096384,44.7732222 30.001934,45.1187778 30.1252044,45.4365556 C30.2484748,45.7554444 30.4840094,46.0054444 30.7899843,46.1398889 C30.9506761,46.2121111 31.120173,46.2487778 31.2940723,46.2487778 C31.4503616,46.2487778 31.6055503,46.2187778 31.7541352,46.161 C32.0689151,46.0365556 32.3165566,45.7976667 32.451934,45.4876667 L33.4193868,43.2665556 C33.6989465,42.6243333 33.4083805,41.8732222 32.772217,41.5898889 C32.6126258,41.5187778 32.4431289,41.4832222 32.2681289,41.4832222 M31.2929717,47.391 C30.9616824,47.391 30.6391981,47.3232222 30.3343239,47.1876667 C29.7509906,46.9276667 29.301934,46.4543333 29.0697013,45.8521111 C28.8374686,45.2487778 28.8506761,44.5921111 29.1071226,44.0043333 L30.0745755,41.7832222 C30.4564937,40.9054444 31.3182862,40.3398889 32.2692296,40.3398889 C32.6016195,40.3398889 32.9241038,40.4076667 33.2278774,40.5432222 C34.4363679,41.0798889 34.9866824,42.5087778 34.4561792,43.7287778 L33.4887264,45.9487778 C33.2311792,46.5387778 32.7623113,46.991 32.1646698,47.2254444 C31.9665566,47.3032222 31.7596384,47.3543333 31.5516195,47.3776667 C31.4657704,47.3865556 31.3788208,47.391 31.2929717,47.391"/>
1283
- <path d="M33.7427516,32.4657778 C33.4752987,32.4691111 33.2177516,32.558 33.0009277,32.7257778 C32.7312736,32.9313333 32.5573742,33.2291111 32.5122484,33.5646667 L32.184261,35.968 C32.1380346,36.3046667 32.2260849,36.6391111 32.4297013,36.9102222 C32.6333176,37.1813333 32.9293868,37.3568889 33.2617767,37.4024444 C33.3201101,37.4113333 33.3784434,37.4146667 33.4356761,37.4146667 C34.0608333,37.4146667 34.5968396,36.9424444 34.6826887,36.3157778 L35.0095755,33.9113333 C35.0558019,33.5746667 34.9688522,33.2402222 34.7652358,32.9691111 C34.5616195,32.698 34.2655503,32.5235556 33.9320597,32.4768889 C33.8781289,32.4691111 33.8219969,32.4657778 33.7669654,32.4657778 L33.7647642,32.4657778 L33.7427516,32.4657778 Z M33.4279717,38.558 C33.3223113,38.558 33.2155503,38.5502222 33.1076887,38.5346667 C32.4759277,38.4468889 31.9135063,38.1146667 31.5271855,37.6013333 C31.1408648,37.0857778 30.9757704,36.4502222 31.0627201,35.8124444 L31.3907075,33.4091111 C31.4765566,32.7713333 31.8056447,32.2057778 32.3163365,31.8146667 C32.7367767,31.4924444 33.2364623,31.3213333 33.7581604,31.3213333 C33.8671226,31.3213333 33.9771855,31.3291111 34.0861478,31.3446667 C34.7190094,31.4313333 35.2803302,31.7635556 35.6677516,32.2791111 C36.0540723,32.7935556 36.2191667,33.4291111 36.1311164,34.0668889 L35.8042296,36.4702222 C35.6446384,37.6446667 34.6397642,38.5413333 33.4675943,38.558 L33.4279717,38.558 Z"/>
1284
- <path d="M23.9811635,17.3453333 C23.8644969,17.3453333 23.7467296,17.362 23.6344654,17.3953333 C22.9663836,17.5908889 22.5800629,18.2975556 22.772673,18.9708889 L23.4396541,21.302 C23.5948428,21.8431111 24.0945283,22.2208889 24.6525472,22.2208889 C24.7703145,22.2208889 24.8869811,22.2053333 25.0003459,22.172 C25.3228302,22.0775556 25.590283,21.8608889 25.7531761,21.562 C25.9160692,21.2631111 25.9545912,20.9197778 25.8621384,20.5953333 L25.1951572,18.2642222 C25.1027044,17.9408889 24.8880818,17.6708889 24.5920126,17.5053333 C24.4951572,17.4508889 24.3905975,17.4097778 24.2805346,17.382 C24.1825786,17.3575556 24.0813208,17.3453333 23.9811635,17.3453333 M24.6525472,23.3642222 C24.4610377,23.3642222 24.2684277,23.3408889 24.0813208,23.2942222 C23.2514465,23.0875556 22.5888679,22.4464444 22.3522327,21.6197778 L21.6852516,19.2886667 C21.3187421,18.0097778 22.051761,16.6675556 23.3185849,16.2975556 C23.5365094,16.2342222 23.7610377,16.202 23.9844654,16.202 C24.3839937,16.202 24.783522,16.3053333 25.1390252,16.5042222 C25.7003459,16.8164444 26.106478,17.3286667 26.2825786,17.9475556 L26.9506604,20.2786667 C27.126761,20.8964444 27.0541195,21.5486667 26.7448428,22.1142222 C26.4344654,22.6808889 25.9281761,23.0908889 25.3151258,23.2697778 C25.0994025,23.3331111 24.8759748,23.3642222 24.6525472,23.3642222"/>
1285
- <path d="M22.1641352,8.82855556 C22.3677516,8.54744444 22.6704245,8.34633333 23.0270283,8.30411111 C23.075456,8.29855556 23.1238836,8.29633333 23.1734119,8.29633333 C23.2669654,8.29633333 23.3616195,8.30633333 23.4540723,8.32744444 C23.6830031,8.37966667 23.8866195,8.49855556 24.0517138,8.66188889 L25.329544,8.54966667 C25.2877201,8.45855556 25.2502987,8.36744444 25.1963679,8.28188889 C24.855173,7.73411111 24.3246698,7.35522222 23.7028145,7.213 C23.5289151,7.17188889 23.3495126,7.153 23.1723113,7.153 C22.0980975,7.153 21.1482547,7.90188889 20.868695,8.943 L22.1641352,8.82855556 Z"/>
1286
- <path d="M29.6740566,5.19522222 C29.4033019,4.83855556 28.8827044,4.76077778 28.5128931,5.02188889 L23.236478,8.73411111 L26.4558176,8.44966667 L29.4935535,6.31188889 C29.8644654,6.05188889 29.9448113,5.55188889 29.6740566,5.19522222"/>
1287
- <path d="M20.2831604,13.9051111 C20.313978,13.9662222 20.3370912,14.0295556 20.3745126,14.0884444 C20.7157075,14.6351111 21.2451101,15.0151111 21.8669654,15.1573333 C22.0441667,15.1984444 22.2235692,15.2184444 22.4018711,15.2184444 C22.4932233,15.2184444 22.5856761,15.2128889 22.6770283,15.2017778 C23.0303302,15.1595556 23.3638208,15.0395556 23.6708962,14.844 C23.9185377,14.6873333 24.125456,14.4862222 24.2971541,14.2595556 L20.2831604,13.9051111 Z"/>
1288
- <path d="M21.1678459,12.52 L21.5211478,10.95 C21.2834119,10.9455556 21.0456761,10.9433333 20.8068396,10.9366667 C20.660456,10.9322222 20.5173742,10.9066667 20.3753931,10.8822222 L20.0639151,12.2666667 C20.0088836,12.5122222 20.0033805,12.7588889 20.0231918,13.0022222 L21.1799528,13.1044444 C21.1326258,12.9133333 21.1238208,12.7155556 21.1678459,12.52"/>
1289
- <path d="M25.2779245,10.8554444 C24.8894025,10.8876667 24.5008805,10.911 24.1112579,10.9276667 L23.6269811,13.0832222 C23.6082704,13.1632222 23.5818553,13.2398889 23.5510377,13.3132222 L24.7044969,13.4154444 C24.7122013,13.3887778 24.7254088,13.3643333 24.7309119,13.3365556 L25.2636164,10.971 C25.2724214,10.9321111 25.2713208,10.8943333 25.2779245,10.8554444"/>
1290
- <path d="M34.6886321,24.268 L34.6886321,30.5957778 C36.1997956,31.0502222 37.2035692,32.5613333 36.9823428,34.1857778 L36.655456,36.5891111 C36.4958648,37.7568889 35.7177201,38.7168889 34.6886321,39.1602222 L34.6886321,40.5713333 C35.5086006,41.5024444 35.7694497,42.8646667 35.2411478,44.0768889 L34.8834434,44.9002222 L38.9183491,44.9002222 L38.9183491,24.268 L34.6886321,24.268 Z"/>
1291
- <path d="M29.5788522,15.8918889 C28.4165881,15.8918889 27.2818396,16.0052222 26.1801101,16.2118889 C26.6148585,16.6141111 26.9406447,17.1218889 27.1079403,17.7063333 L27.5845126,19.3752222 C28.2382862,19.2885556 28.903066,19.2396667 29.5788522,19.2396667 C37.9678459,19.2396667 44.7686321,26.1041111 44.7686321,34.573 C44.7686321,42.4685556 38.8571541,48.9685556 31.2595126,49.8118889 C31.3090409,49.9907778 31.3519654,50.1741111 31.3717767,50.3618889 C31.4642296,51.2363333 31.2154874,52.0907778 30.6706761,52.7718889 L30.2997642,53.2363333 C40.1856132,52.8541111 48.0837264,44.6474444 48.0837264,34.573 C48.0837264,24.2552222 39.7992925,15.8918889 29.5788522,15.8918889"/>
1292
- <path d="M24.0999214,50.5392222 L25.1378145,49.2403333 C18.9159591,47.3214444 14.3890723,41.4825556 14.3890723,34.5736667 C14.3890723,29.1203333 17.2110849,24.3358889 21.4584119,21.617 L20.8607704,19.5292222 C20.7264937,19.0625556 20.7033805,18.5914444 20.7705189,18.1403333 C14.9955189,21.3025556 11.073978,27.4747778 11.073978,34.5736667 C11.073978,42.7081111 16.226022,49.6247778 23.4142296,52.1881111 C23.4879717,51.5892222 23.7158019,51.0203333 24.0999214,50.5392222"/>
1293
- <path d="M29.0833491,51.4821111 L27.6107075,53.3998889 C27.4048899,53.6665556 27.1077201,53.8376667 26.7720283,53.881 C26.6135377,53.901 26.4561478,53.8921111 26.304261,53.8532222 C26.1358648,53.811 25.9795755,53.7332222 25.8419969,53.6254444 C25.5778459,53.4187778 25.4094497,53.1187778 25.3665252,52.7787778 C25.3225,52.4398889 25.4138522,52.1065556 25.6185692,51.8398889 L27.0912107,49.9232222 C27.3652673,49.5643333 27.8143239,49.3798889 28.2600786,49.4421111 C28.3052044,49.4498889 28.3514308,49.4576667 28.3965566,49.4687778 C28.5660535,49.5121111 28.7212421,49.5887778 28.8599214,49.6965556 C29.4080346,50.1265556 29.5092925,50.9276667 29.0833491,51.4821111 M29.5533176,48.7932222 C29.2902673,48.5876667 28.9941981,48.4421111 28.6728145,48.3598889 C27.7504874,48.1265556 26.7775314,48.4654444 26.1952987,49.2221111 L24.7237579,51.1387778 C24.3330346,51.6465556 24.1613365,52.281 24.242783,52.9232222 C24.3231289,53.5643333 24.6445126,54.1354444 25.1475,54.5276667 C25.1519025,54.531 25.156305,54.5332222 25.1607075,54.5365556 C25.8937264,54.701 26.6333491,54.8265556 27.3773742,54.9087778 C27.8220283,54.7587778 28.2127516,54.481 28.5055189,54.0998889 L29.9781604,52.1832222 C30.786022,51.131 30.5967138,49.6098889 29.5533176,48.7932222"/>
1294
- <path d="M33.8245283,34.0461111 C33.7441824,34.0461111 33.6649371,34.0305556 33.591195,34.0016667 C33.4294025,33.9383333 33.3017296,33.8138889 33.2323899,33.6516667 L32.3397799,31.5594444 L32.345283,28.2361111 L34.427673,33.1105556 C34.5718553,33.445 34.4199686,33.8394444 34.0886792,33.9883333 C34.0050314,34.0261111 33.9158805,34.0461111 33.8245283,34.0461111"/>
1295
- <path d="M24.4374843,21.7246667 C24.3175157,21.5991111 24.2536792,21.4335556 24.2558805,21.2591111 C24.2591824,21.0846667 24.328522,20.9213333 24.4539937,20.7991111 C24.5750629,20.6802222 24.7335535,20.6146667 24.9019497,20.6146667 C25.0802516,20.6146667 25.2464465,20.6857778 25.3708176,20.8157778 L26.8148428,22.328 L26.8148428,24.2135556 L24.4374843,21.7246667 Z"/>
1296
- <path d="M32.2858491,43.0652222 C32.2484277,43.0652222 32.2121069,43.0618889 32.1735849,43.0552222 C31.8070755,42.9785556 31.5858491,42.6474444 31.645283,42.2996667 L32.6699686,36.3496667 C32.7238994,36.0352222 32.9924528,35.8074444 33.3083333,35.8074444 C33.3446541,35.8074444 33.3820755,35.8096667 33.4194969,35.8174444 C33.5867925,35.8418889 33.7320755,35.933 33.8333333,36.073 C33.9356918,36.2163333 33.9775157,36.3985556 33.9477987,36.573 L32.9231132,42.523 C32.8691824,42.8363333 32.6017296,43.0652222 32.2858491,43.0652222"/>
1297
- <path d="M26.5785377,54.7134444 C26.1052673,54.6423333 25.6804245,54.5645556 25.2863994,54.479 L25.8928459,52.7212222 C25.9830975,52.459 26.2296384,52.2823333 26.5058962,52.2823333 C26.5785377,52.2823333 26.648978,52.2945556 26.7183176,52.319 C26.8823113,52.3756667 27.0143868,52.4945556 27.0881289,52.6523333 C27.1640723,52.809 27.1750786,52.9867778 27.1178459,53.1523333 L26.5785377,54.7134444 Z"/>
1298
- <path d="M28.1730189,51.1153333 C28.0607547,51.1153333 27.9506918,51.0853333 27.8516352,51.0286667 C27.7019497,50.942 27.5940881,50.8008889 27.5489623,50.632 C27.5027358,50.4642222 27.5258491,50.2875556 27.6116981,50.1353333 L30.5800943,44.8931111 C30.6956604,44.6908889 30.9113836,44.5642222 31.144717,44.5642222 C31.2558805,44.5642222 31.367044,44.5942222 31.465,44.6508889 C31.7753774,44.8297778 31.883239,45.2308889 31.7049371,45.5431111 L28.7365409,50.7853333 C28.6220755,50.9886667 28.4074528,51.1142222 28.1763208,51.1153333 L28.1730189,51.1153333 Z"/>
1299
- <path d="M23.9289937,18.8638889 C23.6417296,18.8583333 23.3885849,18.6572222 23.3148428,18.3772222 L22.2538365,14.3172222 L23.5977044,14.3261111 L24.5684591,18.0416667 C24.6135849,18.2116667 24.5893711,18.3872222 24.5024214,18.5383333 C24.4143711,18.6894444 24.2745912,18.7972222 24.1072956,18.8416667 C24.0533648,18.8561111 23.9972327,18.8638889 23.9411006,18.8638889 L23.9289937,18.8638889 Z"/>
1300
- <path d="M32.2675786,12.7185556 L32.4822013,11.0318889 L31.9197799,11.1685556 L31.9913208,10.6163333 L33.1370755,10.3318889 L32.8222956,12.7907778 L32.2675786,12.7185556 Z M31.6072013,12.103 L31.5796855,12.6263333 L29.9342453,12.5418889 L29.9562579,12.0996667 L30.8334591,11.3174444 C30.9567296,11.2085556 31.0227673,11.0918889 31.0293711,10.9596667 C31.0392767,10.7774444 30.9127044,10.6485556 30.73,10.6396667 C30.5109748,10.6285556 30.3623899,10.7496667 30.2259119,10.8852222 L29.914434,10.4852222 C30.0729245,10.3096667 30.3546855,10.0796667 30.8158491,10.1041111 C31.3243396,10.1296667 31.6369182,10.4596667 31.6127044,10.933 C31.5983962,11.223 31.477327,11.4007778 31.2142767,11.6407778 L30.7542138,12.0596667 L31.6072013,12.103 Z M29.4587736,11.5685556 L28.8501258,12.5641111 L28.1765409,12.5874444 L28.7268553,11.7441111 L28.689434,11.7463333 C28.1468239,11.7652222 27.8089308,11.4152222 27.793522,10.9618889 C27.7759119,10.4707778 28.1677358,10.0952222 28.7059434,10.0763333 C29.2408491,10.0563333 29.6623899,10.3952222 29.6788994,10.8796667 C29.6877044,11.1096667 29.6051572,11.333 29.4587736,11.5685556 Z M26.9999686,12.7041111 L26.8106604,11.0185556 L26.2977673,11.2852222 L26.2361321,10.7341111 L27.2795283,10.1818889 L27.5546855,12.6407778 L26.9999686,12.7041111 Z M46.8454088,10.5496667 L31.5169497,9.19633333 L31.5169497,8.29522222 C32.7452516,7.60744444 33.5784277,6.28522222 33.5784277,4.76633333 C33.5784277,2.53855556 31.788805,0.733 29.5831447,0.733 C27.3763836,0.733 25.586761,2.53855556 25.586761,4.76633333 C25.586761,5.26633333 25.684717,5.74188889 25.8498113,6.183 L27.677956,4.89633333 C27.6735535,4.853 27.6647484,4.81077778 27.6647484,4.76633333 C27.6647484,3.69744444 28.523239,2.83077778 29.5831447,2.83077778 C30.6419497,2.83077778 31.5004403,3.69744444 31.5004403,4.76633333 C31.5004403,4.86855556 31.4861321,4.96522222 31.4707233,5.063 C31.4542138,5.17077778 31.4266981,5.27522222 31.3936792,5.37633333 C31.3903774,5.38744444 31.3870755,5.39966667 31.3837736,5.40966667 C31.3507547,5.503 31.3100314,5.59077778 31.2649057,5.67744444 C31.255,5.69633333 31.2450943,5.71522222 31.2351887,5.73411111 C31.1911635,5.81077778 31.1416352,5.883 31.088805,5.953 C31.0689937,5.97855556 31.0480818,6.00411111 31.0271698,6.02855556 C30.9765409,6.08744444 30.9226101,6.14411111 30.8653774,6.19633333 C30.8323585,6.22633333 30.7971384,6.25411111 30.7630189,6.283 C30.7090881,6.32522222 30.6562579,6.36633333 30.5990252,6.40188889 C30.5494969,6.433 30.4988679,6.45966667 30.4471384,6.48522222 C30.3965094,6.51188889 30.3458805,6.53966667 30.2919497,6.56188889 C30.2237107,6.58966667 30.1521698,6.60855556 30.0806289,6.62855556 C30.0465094,6.63744444 30.0145912,6.64744444 29.9804717,6.65633333 C29.9309434,6.703 29.8825157,6.75077778 29.8241824,6.79188889 L27.6416352,8.32744444 L27.6416352,9.22411111 L12.2977673,10.5796667 L13.6350314,12.4385556 L27.6416352,13.6752222 L27.6416352,14.8207778 C28.2788994,14.7574444 28.9249686,14.723 29.5787421,14.723 C30.2325157,14.723 30.8785849,14.7574444 31.5169497,14.8207778 L31.5169497,13.7041111 L45.4619182,12.4718889 L46.8454088,10.5496667 Z"/>
1301
- </g>
1302
- </g>
1295
+ <svg xmlns="http://www.w3.org/2000/svg" id="uuid-36096db9-e6d6-4ead-b6c6-4aee04678126" width="235.3mm" height="235.3mm" viewBox="0 0 667 667">
1296
+ <rect width="667" height="667" style="fill:#00154c;"/>
1297
+ <path d="M345.73,314.66v-75.32c-4.09-.54-8.25-.82-12.48-.82s-8.57.3-12.73.86v75.28h25.22Z" style="fill:#fdda5a;"/>
1298
+ <path d="M215.62,172.83l9.45,13,95.44,7.97v9.33c4.21-.4,8.45-.61,12.73-.61s8.36.2,12.48.59v-9.31l93.48-7.68,10.74-13.29-104.22-8.45v-7.09c8.47-4.6,14.23-13.57,14.23-23.89,0-15-12.16-27.16-27.16-27.16s-27.16,12.16-27.16,27.16c0,3.66.74,7.15,2.05,10.33,4.9-3.49,9.75-6.94,13.33-9.49,0-.12-.02-.23-.02-.35,0-6.52,5.29-11.81,11.81-11.81s11.81,5.29,11.81,11.81c0,4.99-3.09,9.24-7.46,10.98l-2.47,1.76-14.87,10.62c.22.12.44.25.67.37v6.76l-104.89,8.45Z" style="fill:#fdda5a;"/>
1299
+ <path d="M362.63,311.41c-.73-.06-1.45-.05-2.17-.01-2.24-5.11-4.71-10.73-6.47-14.73,2.05-.98,3.92-2.4,5.45-4.28,5.55-6.8,4.54-16.81-2.26-22.36-1.02-.83-3.22-2.99-5.58-5.31v9.72c.44.4.82.74,1.15,1,3.8,3.1,4.37,8.71,1.27,12.51-.68.84-1.51,1.52-2.41,2.05v24.68s0,0,0,.02c-3.4,2.64-5.74,6.63-6.11,11.25-.23,2.86-2.46,13.85-2.76,17.56-.55,6.7,3.16,12.76,8.85,15.55-.63,3.84-1.31,8.05-1.95,11.98-5.46.88-10.3,4.59-12.37,10.14-1,2.69-6.13,12.65-7.43,16.14-2.18,5.86-.67,12.19,3.35,16.45-1.95,3.31-4.1,6.95-6.11,10.37-.81-.13-1.62-.19-2.43-.19-5.07,0-10.05,2.42-13.13,6.91-1.62,2.37-9.01,10.8-11.11,13.87-4.15,6.06-3.52,13.96,1.03,19.29l-3.82,5.59,9.38,2.97,2.38-3.53c1.36.37,2.74.56,4.13.56,5.07,0,10.05-2.42,13.13-6.91,1.62-2.37,9.01-10.8,11.11-13.87,4.5-6.57,3.38-15.3-2.26-20.57,1.93-3.28,3.96-6.73,5.81-9.89,1.15.26,2.3.4,3.44.4,6.45,0,12.51-3.95,14.9-10.35,1-2.69,6.13-12.65,7.43-16.14,2.92-7.82-.73-16.47-8.17-19.94.63-3.87,1.3-8.01,1.91-11.81,7.2-1.01,13.01-6.89,13.63-14.44.23-2.86,2.46-13.85,2.76-17.56.71-8.75-5.8-16.42-14.55-17.13ZM331.95,444.89c-.94,1.37-3.63,4.62-5.8,7.23-2.71,3.27-4.42,5.34-5.31,6.64-1.62,2.36-4.27,3.78-7.13,3.86l2.71-4.03h0c.32-.57.53-1.2.59-1.88.22-2.57-1.68-4.83-4.25-5.05-1.67-.14-3.2.62-4.14,1.87h0s-2.98,4.35-2.98,4.35c-.41-.78-.7-1.62-.87-2.51-.44-2.34.06-4.7,1.41-6.66.94-1.37,3.63-4.62,5.8-7.23,2.71-3.27,4.42-5.34,5.31-6.64,1.34-1.95,3.39-3.25,5.67-3.69-1.94,3.29-3.34,5.68-3.66,6.23-1.29,2.23-.52,5.09,1.71,6.38s5.09.52,6.38-1.71c.18-.31,1.95-3.32,4.38-7.46,2.19,2.96,2.39,7.1.19,10.31ZM360.24,383.04c.99,2.16,1.07,4.58.24,6.8-.58,1.55-2.41,5.36-3.88,8.41-1.84,3.83-3,6.25-3.55,7.73-1.24,3.32-4.36,5.57-7.87,5.76,1.06-1.8,1.89-3.21,2.37-4.03.15-.2.27-.42.38-.65.05-.09.08-.14.08-.14h0c.27-.59.42-1.24.42-1.92,0-2.58-2.09-4.67-4.67-4.67-1.68,0-3.14.89-3.96,2.22h0s-1.11,1.87-2.79,4.73c-1.26-2.21-1.57-4.95-.62-7.51.58-1.55,2.41-5.36,3.88-8.41,1.84-3.83,3-6.25,3.55-7.73.83-2.22,2.5-3.96,4.57-4.94-.6,3.7-1.03,6.38-1.13,7-.39,2.55,1.36,4.93,3.91,5.33,2.55.39,4.93-1.36,5.33-3.91.05-.32.52-3.23,1.18-7.34,1.09.86,1.97,1.97,2.56,3.27ZM370.2,327.98c-.13,1.65-.86,5.81-1.45,9.15-.73,4.18-1.19,6.83-1.32,8.41-.28,3.42-2.47,6.23-5.43,7.47.38-2.33.68-4.18.84-5.2.06-.24.1-.49.12-.74.02-.1.03-.16.03-.16h0c.04-.64-.05-1.3-.3-1.94-.94-2.4-3.64-3.59-6.05-2.66-1.56.61-2.6,1.97-2.89,3.51h0s-.37,2.28-.94,5.76c-2.1-1.79-3.34-4.52-3.1-7.48.13-1.65.86-5.81,1.45-9.15.73-4.18,1.19-6.83,1.32-8.41.16-1.99.98-3.76,2.21-5.15,1.07,2.38,2.1,4.72,2.45,5.74.85,2.44,3.51,3.73,5.94,2.88,2.44-.85,3.73-3.51,2.88-5.94-.09-.26-1-2.36-2.31-5.38,4.07,1.09,6.91,4.96,6.56,9.31Z" style="fill:#fdda5a;"/>
1300
+ <path d="M314.84,237.85c-.99-2.69-3.59-13.6-4.88-17.09-2.29-6.22-8.08-10.14-14.32-10.38-.78-2.82-1.62-5.9-2.45-8.93,1.25-.85,2.37-1.87,3.34-3.04-8.7-.79-17.64-1.59-26.13-2.35,2.25,4.03,6.23,7.05,11.14,7.9.92.16,1.83.24,2.74.24.79,2.91,1.6,5.85,2.34,8.58-6.26,3.9-9.14,11.78-6.49,18.97.99,2.69,3.59,13.6,4.88,17.09,2.37,6.42,8.45,10.4,14.91,10.4,1.83,0,3.68-.32,5.49-.98.65-.24,1.26-.52,1.85-.83,2.62,2.56,5.5,5.37,8.24,8.05v-13.04c-.54-.53-1.08-1.05-1.61-1.57,2.08-3.87,2.57-8.58.93-13.02ZM304.96,242.14c-.16-.19-.35-.36-.54-.53-.07-.07-.12-.12-.12-.12h0c-.51-.39-1.1-.7-1.76-.87-.37-.09-.75-.14-1.12-.14-2.1,0-4.01,1.43-4.53,3.56-.4,1.63.12,3.26,1.21,4.38h0s1.45,1.42,3.68,3.6c-.61.13-1.22.2-1.84.2-3.71,0-7.06-2.34-8.35-5.82-.57-1.56-1.66-5.63-2.54-8.91-1.1-4.1-1.8-6.69-2.34-8.18-1.21-3.29-.34-6.84,1.93-9.22.69,2.53,1.18,4.3,1.32,4.78.7,2.48,3.28,3.92,5.77,3.22,2.48-.7,3.92-3.28,3.22-5.77-.07-.24-.55-1.98-1.26-4.59,2.6.81,4.75,2.78,5.72,5.42.57,1.56,1.66,5.63,2.54,8.91,1.1,4.1,1.8,6.69,2.34,8.18.64,1.74.72,3.59.25,5.35-1.6-1.56-2.85-2.78-3.56-3.47Z" style="fill:#fdda5a;"/>
1301
+ <path d="M330.34,135.59c-1.53-.68-3.23-.46-4.52.42h0s-15.71,11.17-25.45,18.12c-2.22-2.17-5.09-3.72-8.37-4.29-.92-.16-1.84-.24-2.75-.24-7.58,0-14.29,5.44-15.64,13.16-.01.07-.03.15-.04.23l7.37-.62c1.28-3.42,4.55-5.77,8.31-5.77.51,0,1.03.05,1.55.14,1.37.24,2.63.79,3.71,1.58-.8.57-1.37.98-1.59,1.14-.73.53-1.26,1.24-1.57,2.03l16.79-1.42c8.43-6.02,19.71-14.07,22.68-16.19.22-.13.42-.28.61-.44.08-.06.14-.1.14-.1h0c.48-.43.89-.96,1.17-1.59,1.05-2.36,0-5.12-2.36-6.17Z" style="fill:#fdda5a;"/>
1302
+ <path d="M367.51,382.73v8.09c.73-2.73.68-5.5,0-8.09Z" style="fill:#fdda5a;"/>
1303
+ <path d="M324.31,418.97l2.83-4.8c-3.54-5.48-4.34-12.31-2-18.58.77-2.07,2.57-5.81,4.31-9.43,1.28-2.66,2.73-5.67,3.12-6.71,2.18-5.85,6.86-10.37,12.65-12.41l.51-3.1v-2.66c-3.4-2.64-5.88-6.22-7.12-10.27h-18.09v68.37c1.24-.25,2.51-.39,3.8-.41Z" style="fill:#fdda5a;"/>
1304
+ <path d="M298.14,346h39.57c-.03-.46-.04-.93-.03-1.4,0-.01,0-.03,0-.04,0-.48.03-.96.07-1.45.18-2.2.9-6.29,1.59-10.25.51-2.91,1.09-6.2,1.18-7.31.05-.56.12-1.11.21-1.65.05-.28.11-.56.17-.84.05-.24.1-.47.16-.71.09-.37.19-.74.3-1.1.03-.11.07-.22.1-.33.14-.43.28-.85.45-1.26h0s-43.76,0-43.76,0v-55.42h-28.77v138.67h28.77v-56.91Z" style="fill:#fdda5a;"/>
1305
+ <path d="M367.51,264.24v13.63c.07.31.12.62.18.94.04.21.07.43.1.64.07.5.12.99.16,1.49.01.18.02.37.03.55.02.56.02,1.11,0,1.67,0,.14,0,.28-.02.42-.06,1.08-.21,2.16-.44,3.23v20.48c.2.06.39.14.58.2.36.12.71.25,1.06.39.23.09.45.19.68.29.32.14.64.3.96.45.2.1.41.2.61.31.49.27.96.55,1.43.85.1.06.19.13.28.2.39.27.77.55,1.15.84.15.12.31.25.46.38.32.27.63.55.94.83.13.13.27.25.4.38.42.42.83.85,1.22,1.31,3.61,4.25,5.35,9.66,4.9,15.22-.18,2.2-.9,6.29-1.59,10.25-.51,2.91-1.09,6.2-1.18,7.31-.04.51-.1,1.01-.18,1.5-.03.17-.06.34-.09.5-.06.32-.11.64-.19.96-.05.2-.1.4-.15.6-.07.27-.14.55-.22.81-.07.22-.14.43-.21.65-.08.24-.17.48-.26.72-.09.23-.18.45-.27.67-.09.22-.18.43-.28.64-.11.24-.22.47-.33.7-.09.18-.19.36-.29.55-.13.25-.27.49-.41.73-.08.14-.18.28-.26.42-.17.27-.34.54-.52.8-.05.07-.1.13-.15.2-1.27,1.78-2.8,3.34-4.56,4.64,0,0,0,0,0,0-.35.26-.72.51-1.09.75-.01,0-.03.02-.04.03-.37.24-.75.46-1.13.67-.01,0-.03.01-.04.02-.39.22-.79.42-1.2.61v8.95c1.6,1.75,2.88,3.76,3.8,5.92,0,.01.01.03.02.04.16.38.31.76.44,1.15.03.1.07.19.1.29.12.35.23.71.33,1.07.04.13.07.27.11.41.09.34.18.69.25,1.03.03.16.06.31.09.47.19,1.04.31,2.1.34,3.16,0,.28.02.57.02.85,0,.24-.02.47-.03.71-.01.3-.03.6-.06.9-.02.23-.04.45-.07.68-.04.32-.09.63-.14.95-.04.21-.07.42-.11.63-.07.35-.16.7-.25,1.05-.04.17-.08.35-.13.52-.15.52-.31,1.04-.51,1.56-.09.25-.21.53-.33.83-.04.1-.09.21-.13.32-.09.21-.17.42-.27.64-.06.14-.13.3-.2.44-.09.21-.18.41-.28.63-.08.17-.16.35-.24.52-.1.21-.19.42-.29.64-.09.2-.19.41-.29.61-.09.2-.19.4-.28.61-.11.23-.22.47-.33.71-.09.19-.18.38-.27.57-.12.26-.25.51-.37.77-.09.18-.17.36-.26.54-.16.32-.31.65-.47.97-.01.03-.03.06-.04.09h28.6v-138.67h-28.77Z" style="fill:#fdda5a;"/>
1306
+ <path d="M297.62,453.35s0,0,0,0c0,0,0-.02,0-.02,0,0,0,.02,0,.02Z" style="fill:#fdda5a;"/>
1307
+ <path d="M292.72,451.78s0,0,0,0c.03-.38.08-.76.14-1.14.01-.07.02-.15.03-.22.05-.34.12-.68.19-1.01.02-.12.05-.23.07-.35.07-.31.15-.61.23-.91.04-.15.08-.3.13-.45.08-.28.17-.55.26-.82.06-.18.13-.36.2-.54.09-.24.18-.49.29-.73.09-.21.19-.42.28-.63.1-.21.19-.42.29-.62.13-.26.27-.51.41-.76.09-.16.17-.32.26-.47.24-.41.49-.81.77-1.21,1.25-1.82,3.9-5.02,6.46-8.11.31-.38.63-.76.95-1.14.02-.03.05-.06.07-.09.32-.39.64-.78.96-1.16-42.43-12.35-73.44-51.51-73.44-97.93,0-36.15,18.81-67.91,47.18-86.02-1.73-6.25-3.75-14.28-4.7-16.85-.77-2.1-1.2-4.25-1.32-6.37-9.98,5.58-19.26,12.56-27.56,20.87-23.61,23.61-36.61,54.99-36.61,88.37s13,64.77,36.61,88.37c13.7,13.7,30.03,23.82,47.85,29.91Z" style="fill:#fdda5a;"/>
1308
+ <path d="M482.4,415.39l-7.09,12.11,8.27,4.73s-91.47,40.65-137.86,48.14v-22.51c28.67-2.82,55.25-15.35,75.89-35.99,23.61-23.61,36.61-54.99,36.61-88.37s-13-64.77-36.61-88.37c-23.61-23.61-54.99-36.61-88.37-36.61-7.28,0-14.47.62-21.51,1.83,1.14,1.58,2.1,3.32,2.81,5.24,1.18,3.21,3.18,11,4.77,16.88,4.55-.62,9.2-.95,13.93-.95,56.32,0,101.98,45.66,101.98,101.98,0,52.26-39.32,95.34-89.99,101.27-.11.01-.21.02-.32.03.03.12.05.24.08.36.08.33.15.66.21.99.03.17.06.34.09.5.05.35.1.7.14,1.06h0c.01.13.03.25.04.38,0,0,0,.01,0,.02.03.4.05.8.06,1.2,0,.16,0,.32,0,.49,0,.34,0,.68-.02,1.02,0,.12,0,.25-.02.37-.03.44-.07.88-.13,1.32-.02.14-.04.28-.06.42-.05.35-.11.69-.18,1.04-.03.13-.05.25-.08.38-.1.44-.21.89-.34,1.33-.02.06-.04.12-.06.19-.01.04-.03.09-.04.13-.11.36-.23.72-.37,1.07-.05.12-.09.24-.14.37-.17.44-.36.88-.56,1.31-.03.06-.07.13-.1.19-.18.38-.38.75-.59,1.12-.07.12-.13.23-.2.35-.25.42-.51.85-.79,1.26-.15.21-.31.45-.5.7-.06.09-.14.18-.2.27-.13.17-.25.34-.39.52-.09.11-.18.23-.27.34-.08.11-.17.22-.26.34-.05.07-.1.13-.16.2-.1.13-.21.26-.31.39-.14.18-.29.37-.44.55-.11.14-.23.28-.34.43-.15.19-.31.38-.46.57-.13.16-.25.31-.38.47-.11.14-.23.28-.34.41-.42.52-.86,1.04-1.3,1.57h0c-.37.45-.74.89-1.11,1.34-1.88,2.27-4.02,4.85-4.65,5.76-2.53,3.69-6.13,6.41-10.23,7.87v7c-3.52-.56-7.3-1.3-11.27-2.2l-.2.29-3.57-1.13-.61-.19c-49.1-12.02-123.43-44.64-123.43-44.64l9.43-5.6-7.97-12.7-49.16,27.97,9.75,14.84,14.4-9.53,175.37,112.61,174.56-112.24,14.77,8.86,8.57-13.88-48.73-27.47Z" style="fill:#fdda5a;"/>
1303
1309
  </svg>
1304
1310
  </xsl:variable>
1305
1311
 
1306
1312
  <xsl:variable name="Image-Text-IHO-SVG">
1307
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100px" height="100px" viewBox="0 0 100 100" version="1.1">
1308
- <polygon fill="#F5EED6" points="0 100 100 100 100 0 0 0"/>
1309
- <polygon fill="#2F4565" points="16 41 17 41 17 33 16 33"/>
1310
- <g>
1311
- <path d="M18.9185915,35.2588028 L19.6073239,35.2588028 L19.6073239,36.231338 L19.6284507,36.231338 C19.8805634,35.5538732 20.6340845,35.0947183 21.4312676,35.0947183 C23.0164789,35.0947183 23.4967606,35.9257042 23.4967606,37.2693662 L23.4967606,40.896831 L22.8080282,40.896831 L22.8080282,37.3785211 C22.8080282,36.4059859 22.491831,35.6735915 21.3770423,35.6735915 C20.2840845,35.6735915 19.6284507,36.5038732 19.6073239,37.6080986 L19.6073239,40.896831 L18.9185915,40.896831 L18.9185915,35.2588028 Z" fill="#2F4565"/>
1312
- <path d="M26.4402113,35.2588028 L27.5873944,35.2588028 L27.5873944,35.8383803 L26.4402113,35.8383803 L26.4402113,39.6397887 C26.4402113,40.0890845 26.5057042,40.3503521 26.9972535,40.3841549 C27.1944366,40.3841549 27.3902113,40.3728873 27.5873944,40.3503521 L27.5873944,40.940493 C27.3789437,40.940493 27.183169,40.9623239 26.9754225,40.9623239 C26.0585211,40.9623239 25.7409155,40.6566901 25.7514789,39.6954225 L25.7514789,35.8383803 L24.7683803,35.8383803 L24.7683803,35.2588028 L25.7514789,35.2588028 L25.7514789,33.5651408 L26.4402113,33.5651408 L26.4402113,35.2588028 Z" fill="#2F4565"/>
1313
- <path d="M33.1842958,37.6847183 C33.1519014,36.6466901 32.506831,35.6741549 31.3927465,35.6741549 C30.2673944,35.6741549 29.6441549,36.6579577 29.535,37.6847183 L33.1842958,37.6847183 Z M29.535,38.2628873 C29.5455634,39.2685211 30.0702113,40.4819014 31.3927465,40.4819014 C32.3976761,40.4819014 32.9448592,39.8917606 33.1624648,39.0396479 L33.8511972,39.0396479 C33.5561268,40.3178169 32.813169,41.0600704 31.3927465,41.0600704 C29.600493,41.0600704 28.8469718,39.6847183 28.8469718,38.0783803 C28.8469718,36.5917606 29.600493,35.0945775 31.3927465,35.0945775 C33.2061268,35.0945775 33.9272535,36.6790845 33.8730282,38.2628873 L29.535,38.2628873 Z" fill="#2F4565"/>
1314
- <path d="M35.3523239,35.2588028 L35.9847183,35.2588028 L35.9847183,36.581338 L36.0072535,36.581338 C36.3565493,35.6735915 37.1227465,35.1390845 38.1389437,35.1827465 L38.1389437,35.8707746 C36.8924648,35.8045775 36.0410563,36.7228873 36.0410563,37.8919014 L36.0410563,40.896831 L35.3523239,40.896831 L35.3523239,35.2588028 Z" fill="#2F4565"/>
1315
- <path d="M39.5288732,35.2588028 L40.2176056,35.2588028 L40.2176056,36.231338 L40.2387324,36.231338 C40.4894366,35.5538732 41.243662,35.0947183 42.0415493,35.0947183 C43.6253521,35.0947183 44.1070423,35.9257042 44.1070423,37.2693662 L44.1070423,40.896831 L43.4183099,40.896831 L43.4183099,37.3785211 C43.4183099,36.4059859 43.1021127,35.6735915 41.9873239,35.6735915 C40.893662,35.6735915 40.2387324,36.5038732 40.2176056,37.6080986 L40.2176056,40.896831 L39.5288732,40.896831 L39.5288732,35.2588028 Z" fill="#2F4565"/>
1316
- <path d="M49.5626761,37.8154225 L49.5408451,37.8154225 C49.4535211,37.979507 49.1478873,38.0344366 48.9619718,38.066831 C47.7922535,38.2752817 46.3394366,38.2633099 46.3394366,39.3675352 C46.3394366,40.0562676 46.9514085,40.4823239 47.5964789,40.4823239 C48.6450704,40.4823239 49.5732394,39.8154225 49.5626761,38.7119014 L49.5626761,37.8154225 Z M45.8915493,36.9851408 C45.9570423,35.6626056 46.8859155,35.0942958 48.1746479,35.0942958 C49.1690141,35.0942958 50.2514085,35.4006338 50.2514085,36.9090845 L50.2514085,39.9027465 C50.2514085,40.1647183 50.3830986,40.3175352 50.656338,40.3175352 C50.7323944,40.3175352 50.8197183,40.2957042 50.8739437,40.2738732 L50.8739437,40.8534507 C50.721831,40.8865493 50.6119718,40.8971127 50.4267606,40.8971127 C49.7267606,40.8971127 49.6183099,40.5041549 49.6183099,39.9133099 L49.5964789,39.9133099 C49.1147887,40.6457042 48.6239437,41.060493 47.5415493,41.060493 C46.5035211,41.060493 45.6507042,40.5471127 45.6507042,39.4111972 C45.6507042,37.8266901 47.1922535,37.7717606 48.678169,37.5971127 C49.2464789,37.5309155 49.5626761,37.4548592 49.5626761,36.8316197 C49.5626761,35.9034507 48.8971831,35.6738732 48.0873239,35.6738732 C47.2359155,35.6738732 46.6014085,36.066831 46.5802817,36.9851408 L45.8915493,36.9851408 Z" fill="#2F4565"/>
1317
- <path d="M53.2709155,35.2588028 L54.4188028,35.2588028 L54.4188028,35.8383803 L53.2709155,35.8383803 L53.2709155,39.6397887 C53.2709155,40.0890845 53.3364085,40.3503521 53.828662,40.3841549 C54.0244366,40.3841549 54.2216197,40.3728873 54.4188028,40.3503521 L54.4188028,40.940493 C54.2110563,40.940493 54.0138732,40.9623239 53.806831,40.9623239 C52.8885211,40.9623239 52.5716197,40.6566901 52.5821831,39.6954225 L52.5821831,35.8383803 L51.5983803,35.8383803 L51.5983803,35.2588028 L52.5821831,35.2588028 L52.5821831,33.5651408 L53.2709155,33.5651408 L53.2709155,35.2588028 Z" fill="#2F4565"/>
1318
- <g/>
1319
- <path d="M55.9725352,40.8971831 L56.6612676,40.8971831 L56.6612676,35.2591549 L55.9725352,35.2591549 L55.9725352,40.8971831 Z M55.9725352,34.1985915 L56.6612676,34.1985915 L56.6612676,33.0950704 L55.9725352,33.0950704 L55.9725352,34.1985915 Z" fill="#2F4565"/>
1320
- <path d="M58.9352817,38.0780986 C58.9352817,39.279507 59.5909155,40.4823239 60.9127465,40.4823239 C62.2352817,40.4823239 62.8909155,39.279507 62.8909155,38.0780986 C62.8909155,36.8759859 62.2352817,35.6738732 60.9127465,35.6738732 C59.5909155,35.6738732 58.9352817,36.8759859 58.9352817,38.0780986 M63.5789437,38.0780986 C63.5789437,39.6957042 62.6388028,41.060493 60.9127465,41.060493 C59.1859859,41.060493 58.2465493,39.6957042 58.2465493,38.0780986 C58.2465493,36.460493 59.1859859,35.0942958 60.9127465,35.0942958 C62.6388028,35.0942958 63.5789437,36.460493 63.5789437,38.0780986" fill="#2F4565"/>
1321
- <path d="M65.1457746,35.2588028 L65.834507,35.2588028 L65.834507,36.231338 L65.8556338,36.231338 C66.1077465,35.5538732 66.8612676,35.0947183 67.6584507,35.0947183 C69.243662,35.0947183 69.7239437,35.9257042 69.7239437,37.2693662 L69.7239437,40.896831 L69.0352113,40.896831 L69.0352113,37.3785211 C69.0352113,36.4059859 68.7190141,35.6735915 67.6042254,35.6735915 C66.5112676,35.6735915 65.8556338,36.5038732 65.834507,37.6080986 L65.834507,40.896831 L65.1457746,40.896831 L65.1457746,35.2588028 Z" fill="#2F4565"/>
1322
- <path d="M75.1806338,37.8154225 L75.1588028,37.8154225 C75.0714789,37.979507 74.7658451,38.0344366 74.5799296,38.066831 C73.4102113,38.2752817 71.9573944,38.2633099 71.9573944,39.3675352 C71.9573944,40.0562676 72.5693662,40.4823239 73.2144366,40.4823239 C74.2637324,40.4823239 75.1919014,39.8154225 75.1806338,38.7119014 L75.1806338,37.8154225 Z M71.509507,36.9851408 C71.575,35.6626056 72.5038732,35.0942958 73.7926056,35.0942958 C74.7869718,35.0942958 75.8693662,35.4006338 75.8693662,36.9090845 L75.8693662,39.9027465 C75.8693662,40.1647183 76.0010563,40.3175352 76.2742958,40.3175352 C76.3503521,40.3175352 76.4376761,40.2957042 76.4919014,40.2738732 L76.4919014,40.8534507 C76.3397887,40.8865493 76.2299296,40.8971127 76.0447183,40.8971127 C75.3447183,40.8971127 75.2362676,40.5041549 75.2362676,39.9133099 L75.2144366,39.9133099 C74.7327465,40.6457042 74.2419014,41.060493 73.159507,41.060493 C72.1214789,41.060493 71.268662,40.5471127 71.268662,39.4111972 C71.268662,37.8266901 72.8102113,37.7717606 74.2961268,37.5971127 C74.8644366,37.5309155 75.1806338,37.4548592 75.1806338,36.8316197 C75.1806338,35.9034507 74.5151408,35.6738732 73.7059859,35.6738732 C72.8538732,35.6738732 72.2193662,36.066831 72.1982394,36.9851408 L71.509507,36.9851408 Z" fill="#2F4565"/>
1323
- <polygon fill="#2F4565" points="77.8070423 40.8971831 78.4957746 40.8971831 78.4957746 33.0950704 77.8070423 33.0950704"/>
1324
- <polygon fill="#2F4565" points="16.0861972 47.4462676 16.8305634 47.4462676 16.8305634 50.8328873 21.4629577 50.8328873 21.4629577 47.4462676 22.2059155 47.4462676 22.2059155 55.2483803 21.4629577 55.2483803 21.4629577 51.4666901 16.8305634 51.4666901 16.8305634 55.2483803 16.0861972 55.2483803"/>
1325
- <path d="M23.565493,49.6094366 L24.2978873,49.6094366 L26.156338,54.4178873 L27.893662,49.6094366 L28.5823944,49.6094366 L26.1338028,56.1108451 C25.7408451,57.0615493 25.5112676,57.335493 24.6471831,57.335493 C24.3746479,57.3242254 24.2323944,57.3242254 24.1232394,57.2805634 L24.1232394,56.7009859 C24.2866197,56.7340845 24.4401408,56.7552113 24.5929577,56.7552113 C25.2049296,56.7552113 25.3464789,56.3953521 25.5760563,55.8714085 L25.8169014,55.226338 L23.565493,49.6094366 Z" fill="#2F4565"/>
1326
- <path d="M32.1028873,54.8330282 C33.5669718,54.8330282 34.0810563,53.5978169 34.0810563,52.4288028 C34.0810563,51.2597887 33.5669718,50.0245775 32.1028873,50.0245775 C30.7909155,50.0245775 30.2564085,51.2597887 30.2564085,52.4288028 C30.2564085,53.5978169 30.7909155,54.8330282 32.1028873,54.8330282 Z M34.7697887,55.2478169 L34.1352817,55.2478169 L34.1352817,54.1773944 L34.1134507,54.1773944 C33.8183803,54.9090845 32.9233099,55.4111972 32.1028873,55.4111972 C30.3866901,55.4111972 29.5676761,54.0245775 29.5676761,52.4288028 C29.5676761,50.8330282 30.3866901,49.445 32.1028873,49.445 C32.9444366,49.445 33.7641549,49.8724648 34.0592254,50.6809155 L34.0810563,50.6809155 L34.0810563,47.4464085 L34.7697887,47.4464085 L34.7697887,55.2478169 Z" fill="#2F4565"/>
1327
- <path d="M36.6311972,49.6094366 L37.2635915,49.6094366 L37.2635915,50.9319718 L37.2861268,50.9319718 C37.6354225,50.0242254 38.4016197,49.4897183 39.4178169,49.5333803 L39.4178169,50.2221127 C38.171338,50.1552113 37.3199296,51.0735211 37.3199296,52.2425352 L37.3199296,55.248169 L36.6311972,55.248169 L36.6311972,49.6094366 Z" fill="#2F4565"/>
1328
- <path d="M40.8293662,52.4288028 C40.8293662,53.6302113 41.485,54.8330282 42.806831,54.8330282 C44.1293662,54.8330282 44.785,53.6302113 44.785,52.4288028 C44.785,51.2273944 44.1293662,50.0245775 42.806831,50.0245775 C41.485,50.0245775 40.8293662,51.2273944 40.8293662,52.4288028 M45.4730282,52.4288028 C45.4730282,54.0464085 44.5328873,55.4111972 42.806831,55.4111972 C41.0800704,55.4111972 40.1406338,54.0464085 40.1406338,52.4288028 C40.1406338,50.8111972 41.0800704,49.445 42.806831,49.445 C44.5328873,49.445 45.4730282,50.8111972 45.4730282,52.4288028" fill="#2F4565"/>
1329
- <path d="M51.1269014,52.3634507 C51.1269014,51.2599296 50.6128169,50.0247183 49.3128169,50.0247183 C48.0015493,50.0247183 47.4550704,51.1937324 47.4550704,52.3634507 C47.4550704,53.4993662 48.0452113,54.6028873 49.3128169,54.6028873 C50.503662,54.6028873 51.1269014,53.5106338 51.1269014,52.3634507 Z M51.8156338,54.789507 C51.8043662,56.4711972 51.1592958,57.498662 49.3128169,57.498662 C48.1867606,57.498662 47.0726761,56.9965493 46.9747887,55.7951408 L47.6628169,55.7951408 C47.8149296,56.6247183 48.5473239,56.920493 49.3128169,56.920493 C50.5804225,56.920493 51.1269014,56.1662676 51.1269014,54.789507 L51.1269014,54.0247183 L51.1050704,54.0247183 C50.788169,54.7120423 50.1212676,55.1824648 49.3128169,55.1824648 C47.5092958,55.1824648 46.766338,53.8930282 46.766338,52.2873944 C46.766338,50.7345775 47.6846479,49.4451408 49.3128169,49.4451408 C50.1325352,49.4451408 50.831831,49.9592254 51.1050704,50.5824648 L51.1269014,50.5824648 L51.1269014,49.6092254 L51.8156338,49.6092254 L51.8156338,54.789507 Z" fill="#2F4565"/>
1330
- <path d="M53.6759859,49.6094366 L54.3097887,49.6094366 L54.3097887,50.9319718 L54.3316197,50.9319718 C54.6816197,50.0242254 55.4464085,49.4897183 56.4626056,49.5333803 L56.4626056,50.2221127 C55.2175352,50.1552113 54.3647183,51.0735211 54.3647183,52.2425352 L54.3647183,55.248169 L53.6759859,55.248169 L53.6759859,49.6094366 Z" fill="#2F4565"/>
1331
- <path d="M61.2728873,52.1664085 L61.2510563,52.1664085 C61.1644366,52.330493 60.8580986,52.3854225 60.6714789,52.4178169 C59.503169,52.6262676 58.0496479,52.6142958 58.0496479,53.7185211 C58.0496479,54.4072535 58.6609155,54.8333099 59.3059859,54.8333099 C60.3545775,54.8333099 61.2841549,54.1664085 61.2728873,53.0628873 L61.2728873,52.1664085 Z M57.6010563,51.3361268 C57.6672535,50.0135915 58.5954225,49.4452817 59.8855634,49.4452817 C60.8799296,49.4452817 61.9616197,49.7509155 61.9616197,51.2600704 L61.9616197,54.2530282 C61.9616197,54.5157042 62.0926056,54.6685211 62.3658451,54.6685211 C62.4419014,54.6685211 62.5299296,54.6466901 62.5848592,54.6248592 L62.5848592,55.2044366 C62.431338,55.236831 62.3221831,55.2480986 62.1362676,55.2480986 C61.4362676,55.2480986 61.3278169,54.8544366 61.3278169,54.2642958 L61.3059859,54.2642958 C60.825,54.9966901 60.3334507,55.4114789 59.2510563,55.4114789 C58.2130282,55.4114789 57.3609155,54.8980986 57.3609155,53.7621831 C57.3609155,52.1769718 58.9017606,52.1227465 60.3876761,51.9480986 C60.9559859,51.8819014 61.2728873,51.8058451 61.2728873,51.1826056 C61.2728873,50.2544366 60.6066901,50.0241549 59.7982394,50.0241549 C58.9454225,50.0241549 58.3109155,50.4178169 58.2890845,51.3361268 L57.6010563,51.3361268 Z" fill="#2F4565"/>
1332
- <path d="M66.5542254,50.024507 C65.0359155,50.024507 64.5767606,51.1498592 64.5767606,52.4287324 C64.5767606,53.5977465 65.0901408,54.8329577 66.5542254,54.8329577 C67.865493,54.8329577 68.4021127,53.5977465 68.4021127,52.4287324 C68.4021127,51.2597183 67.865493,50.024507 66.5542254,50.024507 Z M63.8887324,49.6097183 L64.5211268,49.6097183 L64.5211268,50.6808451 L64.543662,50.6808451 C64.8605634,49.9160563 65.6478873,49.4449296 66.5542254,49.4449296 C68.2697183,49.4449296 69.0894366,50.8329577 69.0894366,52.4287324 C69.0894366,54.024507 68.2697183,55.4111268 66.5542254,55.4111268 C65.7133803,55.4111268 64.8929577,54.9850704 64.5985915,54.1773239 L64.5767606,54.1773239 L64.5767606,57.3350704 L63.8887324,57.3350704 L63.8887324,49.6097183 Z" fill="#2F4565"/>
1333
- <path d="M70.6990845,47.4462676 L71.3878169,47.4462676 L71.3878169,50.5821831 L71.4089437,50.5821831 C71.6610563,49.9047183 72.4152817,49.4448592 73.2117606,49.4448592 C74.7969718,49.4448592 75.2772535,50.2765493 75.2772535,51.6209155 L75.2772535,55.2483803 L74.5892254,55.2483803 L74.5892254,51.7293662 C74.5892254,50.756831 74.2723239,50.0244366 73.1575352,50.0244366 C72.0652817,50.0244366 71.4089437,50.8547183 71.3878169,51.9596479 L71.3878169,55.2483803 L70.6990845,55.2483803 L70.6990845,47.4462676 Z" fill="#2F4565"/>
1334
- <path d="M77.1394366,55.2478873 L77.828169,55.2478873 L77.828169,49.6091549 L77.1394366,49.6091549 L77.1394366,55.2478873 Z M77.1394366,48.55 L77.828169,48.55 L77.828169,47.4464789 L77.1394366,47.4464789 L77.1394366,48.55 Z" fill="#2F4565"/>
1335
- <path d="M83.6753521,51.3796479 C83.4901408,50.5388028 82.9760563,50.0247183 82.0802817,50.0247183 C80.7577465,50.0247183 80.1021127,51.2275352 80.1021127,52.4289437 C80.1021127,53.6303521 80.7577465,54.833169 82.0802817,54.833169 C82.9323944,54.833169 83.6316901,54.1662676 83.7197183,53.2261268 L84.4084507,53.2261268 C84.221831,54.5810563 83.3380282,55.411338 82.0802817,55.411338 C80.3542254,55.411338 79.4140845,54.0465493 79.4140845,52.4289437 C79.4140845,50.811338 80.3542254,49.4451408 82.0802817,49.4451408 C83.2816901,49.4451408 84.2112676,50.0902113 84.3640845,51.3796479 L83.6753521,51.3796479 Z" fill="#2F4565"/>
1336
- <path d="M19.3542254,69.1293662 C21.4084507,69.1293662 22.2823944,67.4026056 22.2823944,65.6976761 C22.2823944,63.9934507 21.4084507,62.2666901 19.3542254,62.2666901 C17.2887324,62.2666901 16.4140845,63.9934507 16.4140845,65.6976761 C16.4140845,67.4026056 17.2887324,69.1293662 19.3542254,69.1293662 M19.3542254,61.6321831 C21.8021127,61.6321831 23.0253521,63.5673944 23.0253521,65.6976761 C23.0253521,67.828662 21.8021127,69.7624648 19.3542254,69.7624648 C16.8957746,69.7624648 15.6711268,67.828662 15.6711268,65.6976761 C15.6711268,63.5673944 16.8957746,61.6321831 19.3542254,61.6321831" fill="#2F4565"/>
1337
- <path d="M24.6046479,63.960493 L25.2377465,63.960493 L25.2377465,65.2830282 L25.2595775,65.2830282 C25.6088732,64.3752817 26.3750704,63.8407746 27.3912676,63.8844366 L27.3912676,64.573169 C26.145493,64.5062676 25.2933803,65.4245775 25.2933803,66.5935915 L25.2933803,69.5985211 L24.6046479,69.5985211 L24.6046479,63.960493 Z" fill="#2F4565"/>
1338
- <path d="M32.6702113,66.7144366 C32.6702113,65.6109155 32.156831,64.3757042 30.8561268,64.3757042 C29.5448592,64.3757042 28.9990845,65.5440141 28.9990845,66.7144366 C28.9990845,67.8503521 29.5885211,68.9538732 30.8561268,68.9538732 C32.0469718,68.9538732 32.6702113,67.8616197 32.6702113,66.7144366 Z M33.3589437,69.140493 C33.3476761,70.8221831 32.7026056,71.8496479 30.8561268,71.8496479 C29.7314789,71.8496479 28.6166901,71.3475352 28.5180986,70.1461268 L29.2061268,70.1461268 C29.3596479,70.9757042 30.0920423,71.2707746 30.8561268,71.2707746 C32.1244366,71.2707746 32.6702113,70.5172535 32.6702113,69.140493 L32.6702113,68.3757042 L32.6483803,68.3757042 C32.3314789,69.0630282 31.6645775,69.5334507 30.8561268,69.5334507 C29.0533099,69.5334507 28.3110563,68.2440141 28.3110563,66.6383803 C28.3110563,65.0855634 29.2279577,63.7961268 30.8561268,63.7961268 C31.6758451,63.7961268 32.3751408,64.3102113 32.6483803,64.9334507 L32.6702113,64.9334507 L32.6702113,63.9602113 L33.3589437,63.9602113 L33.3589437,69.140493 Z" fill="#2F4565"/>
1339
- <path d="M38.8259859,66.5170423 L38.8041549,66.5170423 C38.716831,66.681831 38.4111972,66.7360563 38.2259859,66.7684507 C37.0555634,66.9769014 35.6027465,66.9649296 35.6027465,68.0698592 C35.6027465,68.7578873 36.2147183,69.1839437 36.8597887,69.1839437 C37.9090845,69.1839437 38.8372535,68.5170423 38.8259859,67.4135211 L38.8259859,66.5170423 Z M35.1548592,65.6867606 C35.2203521,64.3642254 36.1499296,63.7959155 37.4379577,63.7959155 C38.4330282,63.7959155 39.5147183,64.1022535 39.5147183,65.6107042 L39.5147183,68.6043662 C39.5147183,68.8670423 39.6464085,69.0191549 39.9196479,69.0191549 C39.9964085,69.0191549 40.0830282,68.9973239 40.1379577,68.975493 L40.1379577,69.5550704 C39.9851408,69.588169 39.8752817,69.5987324 39.6900704,69.5987324 C38.9907746,69.5987324 38.8816197,69.2057746 38.8816197,68.6149296 L38.8597887,68.6149296 C38.3780986,69.3473239 37.8872535,69.7621127 36.8055634,69.7621127 C35.7675352,69.7621127 34.9140141,69.2494366 34.9140141,68.1128169 C34.9140141,66.5283099 36.4555634,66.4733803 37.9414789,66.2994366 C38.510493,66.2325352 38.8259859,66.1564789 38.8259859,65.5339437 C38.8259859,64.6057746 38.160493,64.375493 37.351338,64.375493 C36.4992254,64.375493 35.8654225,64.7691549 35.8435915,65.6867606 L35.1548592,65.6867606 Z" fill="#2F4565"/>
1340
- <path d="M41.4307746,63.960493 L42.119507,63.960493 L42.119507,64.9330282 L42.1406338,64.9330282 C42.3927465,64.2555634 43.1462676,63.7964085 43.9434507,63.7964085 C45.528662,63.7964085 46.0089437,64.6273944 46.0089437,65.9710563 L46.0089437,69.5985211 L45.3209155,69.5985211 L45.3209155,66.0802113 C45.3209155,65.1076761 45.0040141,64.3752817 43.8892254,64.3752817 C42.7969718,64.3752817 42.1406338,65.2055634 42.119507,66.3097887 L42.119507,69.5985211 L41.4307746,69.5985211 L41.4307746,63.960493 Z" fill="#2F4565"/>
1341
- <path d="M47.8711268,69.5985915 L48.5598592,69.5985915 L48.5598592,63.9605634 L47.8711268,63.9605634 L47.8711268,69.5985915 Z M47.8711268,62.9007042 L48.5598592,62.9007042 L48.5598592,61.7971831 L47.8711268,61.7971831 L47.8711268,62.9007042 Z" fill="#2F4565"/>
1342
- <polygon fill="#2F4565" points="50.7685915 69.0193662 54.6474648 69.0193662 54.6474648 69.5989437 49.9376056 69.5989437 49.9376056 69.0411972 53.6207042 64.5397887 50.1890141 64.5397887 50.1890141 63.9602113 54.4939437 63.9602113 54.4939437 64.4517606"/>
1343
- <path d="M59.6443662,66.5170423 L59.6225352,66.5170423 C59.5359155,66.681831 59.2295775,66.7360563 59.0429577,66.7684507 C57.8739437,66.9769014 56.4211268,66.9649296 56.4211268,68.0698592 C56.4211268,68.7578873 57.0323944,69.1839437 57.6774648,69.1839437 C58.7260563,69.1839437 59.6556338,68.5170423 59.6443662,67.4135211 L59.6443662,66.5170423 Z M55.9725352,65.6867606 C56.0387324,64.3642254 56.9669014,63.7959155 58.256338,63.7959155 C59.2514085,63.7959155 60.3330986,64.1022535 60.3330986,65.6107042 L60.3330986,68.6043662 C60.3330986,68.8670423 60.4640845,69.0191549 60.7373239,69.0191549 C60.8133803,69.0191549 60.9014085,68.9973239 60.956338,68.975493 L60.956338,69.5550704 C60.8028169,69.588169 60.693662,69.5987324 60.5070423,69.5987324 C59.8077465,69.5987324 59.6992958,69.2057746 59.6992958,68.6149296 L59.6767606,68.6149296 C59.1964789,69.3473239 58.7042254,69.7621127 57.6225352,69.7621127 C56.584507,69.7621127 55.7323944,69.2494366 55.7323944,68.1128169 C55.7323944,66.5283099 57.2732394,66.4733803 58.7591549,66.2994366 C59.3274648,66.2325352 59.6443662,66.1564789 59.6443662,65.5339437 C59.6443662,64.6057746 58.978169,64.375493 58.1697183,64.375493 C57.3161972,64.375493 56.6823944,64.7691549 56.6605634,65.6867606 L55.9725352,65.6867606 Z" fill="#2F4565"/>
1344
- <path d="M63.3525352,63.960493 L64.4997183,63.960493 L64.4997183,64.5400704 L63.3525352,64.5400704 L63.3525352,68.3421831 C63.3525352,68.7907746 63.4180282,69.0520423 63.9095775,69.0858451 C64.1060563,69.0858451 64.3025352,69.0752817 64.4997183,69.0520423 L64.4997183,69.6421831 C64.2912676,69.6421831 64.095493,69.6647183 63.8877465,69.6647183 C62.9701408,69.6647183 62.6532394,69.3583803 62.6638028,68.3971127 L62.6638028,64.5400704 L61.68,64.5400704 L61.68,63.960493 L62.6638028,63.960493 L62.6638028,62.266831 L63.3525352,62.266831 L63.3525352,63.960493 Z" fill="#2F4565"/>
1345
- <path d="M66.0535211,69.5985915 L66.7422535,69.5985915 L66.7422535,63.9605634 L66.0535211,63.9605634 L66.0535211,69.5985915 Z M66.0535211,62.9007042 L66.7422535,62.9007042 L66.7422535,61.7971831 L66.0535211,61.7971831 L66.0535211,62.9007042 Z" fill="#2F4565"/>
1346
- <path d="M69.0159155,66.7797887 C69.0159155,67.9811972 69.6722535,69.1840141 70.9940845,69.1840141 C72.3166197,69.1840141 72.9729577,67.9811972 72.9729577,66.7797887 C72.9729577,65.5783803 72.3166197,64.3755634 70.9940845,64.3755634 C69.6722535,64.3755634 69.0159155,65.5783803 69.0159155,66.7797887 M73.6609859,66.7797887 C73.6609859,68.3973944 72.7208451,69.7621831 70.9940845,69.7621831 C69.2673239,69.7621831 68.3271831,68.3973944 68.3271831,66.7797887 C68.3271831,65.1621831 69.2673239,63.7959859 70.9940845,63.7959859 C72.7208451,63.7959859 73.6609859,65.1621831 73.6609859,66.7797887" fill="#2F4565"/>
1347
- <path d="M75.2273944,63.960493 L75.9161268,63.960493 L75.9161268,64.9330282 L75.9379577,64.9330282 C76.1879577,64.2555634 76.9421831,63.7964085 77.7407746,63.7964085 C79.3245775,63.7964085 79.8055634,64.6273944 79.8055634,65.9710563 L79.8055634,69.5985211 L79.1175352,69.5985211 L79.1175352,66.0802113 C79.1175352,65.1076761 78.8006338,64.3752817 77.6858451,64.3752817 C76.5921831,64.3752817 75.9379577,65.2055634 75.9161268,66.3097887 L75.9161268,69.5985211 L75.2273944,69.5985211 L75.2273944,63.960493 Z" fill="#2F4565"/>
1348
- </g>
1349
- </svg>
1313
+ <xsl:choose>
1314
+ <xsl:when test="$lang = 'es'">
1315
+ <svg xmlns="http://www.w3.org/2000/svg" id="uuid-0d4fc8fd-8217-4339-8f76-2243238eb027" width="235.3mm" height="235.3mm" viewBox="0 0 667 667">
1316
+ <rect width="667" height="667" style="fill:#f0ebd8;"/>
1317
+ <path d="M109.69,232.12c1.04-3.3,2.59-6.23,4.66-8.77,2.07-2.54,4.67-4.56,7.81-6.07,3.13-1.5,6.77-2.26,10.92-2.26s7.77.75,10.88,2.26,5.7,3.53,7.77,6.07c2.07,2.54,3.63,5.46,4.66,8.77,1.04,3.31,1.55,6.78,1.55,10.43s-.52,7.13-1.55,10.43c-1.04,3.31-2.59,6.22-4.66,8.73-2.07,2.52-4.66,4.53-7.77,6.03s-6.73,2.26-10.88,2.26-7.78-.75-10.92-2.26c-3.13-1.5-5.74-3.51-7.81-6.03-2.07-2.52-3.63-5.43-4.66-8.73-1.04-3.3-1.55-6.78-1.55-10.43s.52-7.13,1.55-10.43ZM114.31,251.03c.76,2.79,1.95,5.28,3.55,7.47,1.6,2.2,3.66,3.96,6.18,5.29,2.52,1.33,5.52,2,9.03,2s6.5-.67,8.99-2c2.49-1.33,4.54-3.1,6.14-5.29,1.6-2.19,2.79-4.69,3.55-7.47s1.15-5.61,1.15-8.47-.38-5.75-1.15-8.51c-.76-2.76-1.95-5.24-3.55-7.44-1.6-2.19-3.65-3.96-6.14-5.29-2.49-1.33-5.49-2-8.99-2s-6.51.67-9.03,2c-2.52,1.33-4.58,3.1-6.18,5.29-1.6,2.2-2.79,4.67-3.55,7.44-.77,2.76-1.15,5.6-1.15,8.51s.38,5.69,1.15,8.47Z" style="fill:#00154c;"/>
1318
+ <path d="M172.37,230.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.19-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1319
+ <path d="M225.9,273.49c-.62,2.27-1.59,4.19-2.92,5.77-1.33,1.58-3.07,2.79-5.22,3.63-2.15.84-4.77,1.26-7.88,1.26-1.92,0-3.8-.22-5.62-.67-1.83-.44-3.47-1.13-4.92-2.07-1.46-.94-2.66-2.13-3.63-3.59s-1.52-3.19-1.67-5.22h4.66c.25,1.43.73,2.63,1.44,3.59.71.96,1.58,1.74,2.59,2.33,1.01.59,2.13,1.02,3.37,1.29,1.23.27,2.49.41,3.77.41,4.34,0,7.47-1.23,9.4-3.7s2.89-6.02,2.89-10.66v-5.18h-.15c-1.08,2.37-2.68,4.27-4.77,5.7-2.1,1.43-4.55,2.15-7.36,2.15-3.06,0-5.67-.51-7.84-1.52-2.17-1.01-3.96-2.41-5.37-4.18-1.41-1.78-2.43-3.86-3.07-6.25-.64-2.39-.96-4.95-.96-7.66s.38-5.09,1.15-7.44c.76-2.34,1.87-4.39,3.33-6.14,1.45-1.75,3.26-3.13,5.4-4.14,2.15-1.01,4.6-1.52,7.36-1.52,1.43,0,2.78.2,4.03.59,1.26.4,2.41.95,3.44,1.67,1.04.72,1.96,1.54,2.77,2.48.81.94,1.44,1.92,1.89,2.96h.15v-6.59h4.66v35.08c0,2.81-.31,5.35-.92,7.62ZM215.21,263.31c1.53-.86,2.81-2,3.85-3.4,1.04-1.41,1.81-3.02,2.33-4.85.52-1.82.78-3.7.78-5.62s-.22-3.75-.67-5.62c-.44-1.87-1.16-3.58-2.15-5.11-.99-1.53-2.26-2.76-3.81-3.7-1.55-.94-3.44-1.41-5.66-1.41s-4.12.46-5.7,1.37c-1.58.91-2.89,2.11-3.92,3.59-1.04,1.48-1.79,3.17-2.26,5.07-.47,1.9-.7,3.84-.7,5.81s.25,3.8.74,5.62c.49,1.83,1.26,3.44,2.29,4.85,1.04,1.41,2.34,2.54,3.92,3.4,1.58.86,3.45,1.29,5.62,1.29,2.02,0,3.8-.43,5.33-1.29Z" style="fill:#00154c;"/>
1320
+ <path d="M239.85,236.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81,1.33.89,2.42,2.13,3.26,3.74.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63s-2.91-1.08-4.07-2c-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37s1.36-.41,1.85-.78.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.89-.52-1.01-1.23-1.81-2.15-2.4-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM263.16,248.1c-.3.54-.86.94-1.7,1.18-.84.25-1.58.42-2.22.52-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.45-1.67,4.33,0,1.18.23,2.23.7,3.14.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1321
+ <path d="M285.07,230.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1322
+ <path d="M328.13,216.14v7.47h-4.66v-7.47h4.66ZM328.13,230.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1323
+ <path d="M368.83,265.05v3.92h-31.89v-3.77l24.94-30.49h-23.24v-3.92h29.16v3.33l-25.23,30.93h26.27Z" style="fill:#00154c;"/>
1324
+ <path d="M378.67,236.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81,1.33.89,2.42,2.13,3.26,3.74.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63s-2.91-1.08-4.07-2c-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37s1.36-.41,1.85-.78.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.89-.52-1.01-1.23-1.81-2.15-2.4-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM401.98,248.1c-.3.54-.86.94-1.7,1.18-.84.25-1.58.42-2.22.52-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.45-1.67,4.33,0,1.18.23,2.23.7,3.14.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1325
+ <path d="M442.68,236.04c-1.73-1.63-4.14-2.44-7.25-2.44-2.22,0-4.17.47-5.85,1.41-1.68.94-3.07,2.17-4.18,3.7-1.11,1.53-1.95,3.27-2.52,5.22-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41,1.43,0,2.79-.27,4.07-.81,1.28-.54,2.42-1.29,3.4-2.26.99-.96,1.8-2.11,2.44-3.44.64-1.33,1.04-2.79,1.18-4.37h4.66c-.64,4.64-2.34,8.25-5.11,10.84s-6.32,3.88-10.66,3.88c-2.91,0-5.49-.53-7.73-1.59-2.25-1.06-4.13-2.5-5.66-4.33-1.53-1.82-2.69-3.96-3.48-6.4-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4,1.53-1.82,3.42-3.28,5.66-4.37,2.24-1.08,4.82-1.63,7.73-1.63,4.09,0,7.56,1.09,10.4,3.26,2.84,2.17,4.53,5.45,5.07,9.84h-4.66c-.64-2.86-1.83-5.11-3.55-6.73Z" style="fill:#00154c;"/>
1326
+ <path d="M465.62,216.14v7.47h-4.66v-7.47h4.66ZM465.62,230.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1327
+ <path d="M501.62,231.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.37-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33-1.53-1.82-2.69-3.96-3.48-6.4-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4,1.53-1.82,3.42-3.28,5.66-4.37,2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM488.05,235.01c-1.68.94-3.07,2.17-4.18,3.7-1.11,1.53-1.95,3.27-2.52,5.22-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41ZM489.53,225.46l7.77-10.43h5.77l-9.77,10.43h-3.77Z" style="fill:#00154c;"/>
1328
+ <path d="M526.67,230.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1329
+ <path d="M115.98,312.14v22.94h31.38v-22.94h5.03v52.84h-5.03v-25.6h-31.38v25.6h-5.03v-52.84h5.03Z" style="fill:#00154c;"/>
1330
+ <path d="M170.07,312.14v7.47h-4.66v-7.47h4.66ZM170.07,326.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1331
+ <path d="M211.51,364.97v-7.25h-.15c-.49,1.23-1.22,2.37-2.18,3.4s-2.06,1.91-3.29,2.63c-1.23.72-2.55,1.27-3.96,1.67-1.41.39-2.8.59-4.18.59-2.91,0-5.44-.53-7.59-1.59-2.15-1.06-3.93-2.52-5.36-4.37-1.43-1.85-2.49-4-3.18-6.44-.69-2.44-1.04-5.02-1.04-7.73s.34-5.29,1.04-7.73c.69-2.44,1.75-4.59,3.18-6.44,1.43-1.85,3.22-3.32,5.36-4.4,2.15-1.08,4.67-1.63,7.59-1.63,1.43,0,2.82.17,4.18.52,1.36.35,2.63.88,3.81,1.59,1.18.72,2.23,1.59,3.15,2.63.91,1.04,1.62,2.25,2.11,3.63h.15v-21.9h4.66v52.84h-4.29ZM185.94,351.76c.47,1.95,1.21,3.69,2.22,5.22,1.01,1.53,2.3,2.78,3.88,3.74,1.58.96,3.48,1.44,5.7,1.44,2.47,0,4.55-.48,6.25-1.44,1.7-.96,3.08-2.21,4.14-3.74,1.06-1.53,1.82-3.27,2.29-5.22.47-1.95.7-3.91.7-5.88s-.23-3.93-.7-5.88c-.47-1.95-1.23-3.69-2.29-5.22-1.06-1.53-2.44-2.77-4.14-3.74-1.7-.96-3.79-1.44-6.25-1.44-2.22,0-4.12.48-5.7,1.44-1.58.96-2.88,2.21-3.88,3.74-1.01,1.53-1.75,3.27-2.22,5.22-.47,1.95-.7,3.91-.7,5.88s.23,3.93.7,5.88Z" style="fill:#00154c;"/>
1332
+ <path d="M232.16,326.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1333
+ <path d="M276.89,327.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.37-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM263.31,331.01c-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41Z" style="fill:#00154c;"/>
1334
+ <path d="M328.69,369.49c-.62,2.27-1.59,4.19-2.92,5.77-1.33,1.58-3.07,2.79-5.22,3.63-2.15.84-4.77,1.26-7.88,1.26-1.92,0-3.8-.22-5.62-.67s-3.47-1.14-4.92-2.07c-1.46-.94-2.66-2.13-3.63-3.59s-1.52-3.19-1.67-5.22h4.66c.25,1.43.73,2.63,1.44,3.59.71.96,1.58,1.74,2.59,2.33,1.01.59,2.13,1.02,3.37,1.29,1.23.27,2.49.41,3.77.41,4.34,0,7.47-1.23,9.4-3.7,1.92-2.47,2.89-6.02,2.89-10.66v-5.18h-.15c-1.08,2.37-2.68,4.27-4.77,5.7-2.1,1.43-4.55,2.15-7.36,2.15-3.06,0-5.67-.5-7.84-1.52-2.17-1.01-3.96-2.41-5.37-4.18-1.41-1.78-2.43-3.86-3.07-6.25-.64-2.39-.96-4.95-.96-7.66s.38-5.09,1.15-7.44c.76-2.34,1.87-4.39,3.33-6.14,1.45-1.75,3.26-3.13,5.4-4.14,2.15-1.01,4.6-1.52,7.36-1.52,1.43,0,2.78.2,4.03.59,1.26.4,2.41.95,3.44,1.67,1.04.72,1.96,1.54,2.77,2.48.81.94,1.44,1.92,1.89,2.96h.15v-6.59h4.66v35.08c0,2.81-.31,5.35-.92,7.62ZM318,359.31c1.53-.86,2.81-2,3.85-3.4,1.04-1.41,1.81-3.02,2.33-4.85.52-1.82.78-3.7.78-5.62s-.22-3.75-.67-5.62c-.44-1.87-1.16-3.58-2.15-5.11-.99-1.53-2.26-2.76-3.81-3.7-1.55-.94-3.44-1.41-5.66-1.41s-4.12.46-5.7,1.37c-1.58.91-2.89,2.11-3.92,3.59-1.04,1.48-1.79,3.17-2.26,5.07-.47,1.9-.7,3.84-.7,5.81s.25,3.8.74,5.62c.49,1.83,1.26,3.44,2.29,4.85,1.04,1.41,2.34,2.54,3.92,3.4,1.58.86,3.45,1.29,5.62,1.29,2.02,0,3.8-.43,5.33-1.29Z" style="fill:#00154c;"/>
1335
+ <path d="M345.97,326.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1336
+ <path d="M369.13,332.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81,1.33.89,2.42,2.13,3.26,3.74.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM392.44,344.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15ZM378.53,321.46l7.77-10.43h5.77l-9.77,10.43h-3.77Z" style="fill:#00154c;"/>
1337
+ <path d="M416.93,330.71v34.26h-4.66v-34.26h-6.51v-3.92h6.51v-3.48c0-1.63.12-3.13.37-4.51.25-1.38.71-2.56,1.41-3.55.69-.99,1.64-1.75,2.85-2.29,1.21-.54,2.75-.81,4.62-.81.69,0,1.33.03,1.92.07.59.05,1.26.12,2,.22v4c-.64-.1-1.23-.18-1.78-.26s-1.08-.11-1.63-.11c-1.28,0-2.27.2-2.96.59-.69.39-1.2.92-1.52,1.59-.32.67-.51,1.44-.55,2.33-.05.89-.07,1.85-.07,2.89v3.33h7.55v3.92h-7.55Z" style="fill:#00154c;"/>
1338
+ <path d="M436.84,312.14v7.47h-4.66v-7.47h4.66ZM436.84,326.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1339
+ <path d="M472.36,332.04c-1.73-1.63-4.14-2.44-7.25-2.44-2.22,0-4.17.47-5.85,1.41-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41,1.43,0,2.79-.27,4.07-.81,1.28-.54,2.42-1.29,3.4-2.26.99-.96,1.8-2.11,2.44-3.44.64-1.33,1.04-2.79,1.18-4.37h4.66c-.64,4.64-2.34,8.25-5.11,10.84-2.76,2.59-6.32,3.88-10.66,3.88-2.91,0-5.49-.53-7.73-1.59-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63,4.09,0,7.56,1.09,10.4,3.26,2.84,2.17,4.53,5.45,5.07,9.84h-4.66c-.64-2.86-1.83-5.11-3.55-6.73Z" style="fill:#00154c;"/>
1340
+ <path d="M491.52,332.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81,1.33.89,2.42,2.13,3.26,3.74.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM514.83,344.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1341
+ <path d="M116.35,408.14v52.84h-5.03v-52.84h5.03Z" style="fill:#00154c;"/>
1342
+ <path d="M134.25,422.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1343
+ <path d="M187.76,422.79v3.92h-7.77v25.75c0,1.53.21,2.73.63,3.59.42.86,1.47,1.34,3.15,1.44,1.33,0,2.66-.07,4-.22v3.92c-.69,0-1.38.02-2.07.07-.69.05-1.38.07-2.07.07-3.11,0-5.28-.6-6.51-1.81-1.23-1.21-1.83-3.44-1.78-6.7v-26.12h-6.66v-3.92h6.66v-11.47h4.66v11.47h7.77Z" style="fill:#00154c;"/>
1344
+ <path d="M201.11,448.36c.47,1.8,1.22,3.42,2.26,4.85s2.34,2.62,3.92,3.55c1.58.94,3.48,1.41,5.7,1.41,3.4,0,6.07-.89,7.99-2.66,1.92-1.78,3.26-4.14,4-7.1h4.66c-.99,4.34-2.8,7.7-5.44,10.06-2.64,2.37-6.38,3.55-11.21,3.55-3.01,0-5.61-.53-7.81-1.59-2.2-1.06-3.98-2.52-5.37-4.37-1.38-1.85-2.41-4-3.07-6.44-.67-2.44-1-5.02-1-7.73,0-2.52.33-4.98,1-7.4.67-2.42,1.69-4.58,3.07-6.47,1.38-1.9,3.17-3.43,5.37-4.59,2.19-1.16,4.8-1.74,7.81-1.74s5.67.62,7.84,1.85c2.17,1.23,3.93,2.85,5.29,4.85,1.36,2,2.33,4.29,2.92,6.88.59,2.59.84,5.22.74,7.88h-29.38c0,1.68.23,3.42.7,5.22ZM224.2,434.11c-.57-1.63-1.37-3.07-2.4-4.33-1.04-1.26-2.29-2.27-3.77-3.03-1.48-.76-3.16-1.15-5.03-1.15s-3.63.38-5.11,1.15c-1.48.76-2.74,1.78-3.77,3.03-1.04,1.26-1.86,2.71-2.48,4.37-.62,1.65-1.02,3.34-1.22,5.07h24.72c-.05-1.78-.36-3.48-.92-5.11Z" style="fill:#00154c;"/>
1345
+ <path d="M243.55,422.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1346
+ <path d="M271.67,422.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1347
+ <path d="M310.96,428.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29s3.85-.74,6.07-.74c1.68,0,3.35.16,5.03.48,1.68.32,3.18.93,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM334.27,440.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1348
+ <path d="M374.97,428.04c-1.73-1.63-4.14-2.44-7.25-2.44-2.22,0-4.17.47-5.85,1.41-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41,1.43,0,2.79-.27,4.07-.81,1.28-.54,2.42-1.29,3.4-2.26.99-.96,1.8-2.11,2.44-3.44.64-1.33,1.04-2.79,1.18-4.37h4.66c-.64,4.64-2.34,8.25-5.11,10.84-2.76,2.59-6.32,3.88-10.66,3.88-2.91,0-5.49-.53-7.73-1.59-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63,4.09,0,7.56,1.09,10.4,3.26,2.84,2.17,4.53,5.45,5.07,9.84h-4.66c-.64-2.86-1.83-5.11-3.55-6.73Z" style="fill:#00154c;"/>
1349
+ <path d="M397.91,408.14v7.47h-4.66v-7.47h4.66ZM397.91,422.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1350
+ <path d="M433.91,423.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.37-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM420.33,427.01c-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41Z" style="fill:#00154c;"/>
1351
+ <path d="M458.96,422.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1352
+ <path d="M498.25,428.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29s3.85-.74,6.07-.74c1.68,0,3.35.16,5.03.48,1.68.32,3.18.93,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM521.56,440.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1353
+ <path d="M543.62,408.14v52.84h-4.66v-52.84h4.66Z" style="fill:#00154c;"/>
1354
+ </svg>
1355
+ </xsl:when>
1356
+ <xsl:when test="$lang = 'fr'">
1357
+ <svg xmlns="http://www.w3.org/2000/svg" id="uuid-f2eecaa4-7d5e-454f-aac7-8245ef180cc6" width="235.3mm" height="235.3mm" viewBox="0 0 667 667">
1358
+ <rect width="667" height="667" style="fill:#f0ebd8;"/>
1359
+ <path d="M72.4,235.12c1.04-3.3,2.59-6.23,4.66-8.77,2.07-2.54,4.67-4.56,7.81-6.07,3.13-1.5,6.77-2.26,10.92-2.26s7.77.75,10.88,2.26c3.11,1.51,5.7,3.53,7.77,6.07,2.07,2.54,3.63,5.46,4.66,8.77,1.04,3.31,1.55,6.78,1.55,10.43s-.52,7.13-1.55,10.43c-1.04,3.31-2.59,6.22-4.66,8.73-2.07,2.52-4.66,4.53-7.77,6.03-3.11,1.5-6.73,2.26-10.88,2.26s-7.78-.75-10.92-2.26c-3.13-1.5-5.74-3.51-7.81-6.03-2.07-2.52-3.63-5.43-4.66-8.73-1.04-3.3-1.55-6.78-1.55-10.43s.52-7.13,1.55-10.43ZM77.03,254.03c.76,2.79,1.95,5.28,3.55,7.47,1.6,2.2,3.66,3.96,6.18,5.29,2.52,1.33,5.52,2,9.03,2s6.5-.67,8.99-2c2.49-1.33,4.54-3.09,6.14-5.29,1.6-2.19,2.79-4.69,3.55-7.47.76-2.79,1.15-5.61,1.15-8.47s-.38-5.75-1.15-8.51c-.76-2.76-1.95-5.24-3.55-7.44-1.6-2.19-3.65-3.96-6.14-5.29-2.49-1.33-5.49-2-8.99-2s-6.51.67-9.03,2c-2.52,1.33-4.58,3.1-6.18,5.29-1.6,2.2-2.79,4.67-3.55,7.44-.77,2.76-1.15,5.6-1.15,8.51s.38,5.69,1.15,8.47Z" style="fill:#00154c;"/>
1360
+ <path d="M135.08,233.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.57-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1361
+ <path d="M188.62,276.49c-.62,2.27-1.59,4.19-2.92,5.77-1.33,1.58-3.07,2.79-5.22,3.63-2.15.84-4.77,1.26-7.88,1.26-1.92,0-3.8-.22-5.62-.67s-3.47-1.14-4.92-2.07c-1.46-.94-2.66-2.13-3.63-3.59-.96-1.46-1.52-3.19-1.67-5.22h4.66c.25,1.43.73,2.63,1.44,3.59.71.96,1.58,1.74,2.59,2.33,1.01.59,2.13,1.02,3.37,1.29,1.23.27,2.49.41,3.77.41,4.34,0,7.47-1.23,9.4-3.7,1.92-2.47,2.89-6.02,2.89-10.66v-5.18h-.15c-1.08,2.37-2.68,4.27-4.77,5.7-2.1,1.43-4.55,2.15-7.36,2.15-3.06,0-5.67-.5-7.84-1.52-2.17-1.01-3.96-2.41-5.37-4.18-1.41-1.78-2.43-3.86-3.07-6.25-.64-2.39-.96-4.95-.96-7.66s.38-5.09,1.15-7.44c.76-2.34,1.87-4.39,3.33-6.14,1.45-1.75,3.26-3.13,5.4-4.14,2.15-1.01,4.6-1.52,7.36-1.52,1.43,0,2.78.2,4.03.59,1.26.4,2.41.95,3.44,1.67,1.04.72,1.96,1.54,2.77,2.48.81.94,1.44,1.92,1.89,2.96h.15v-6.59h4.66v35.08c0,2.81-.31,5.35-.92,7.62ZM177.93,266.31c1.53-.86,2.81-2,3.85-3.4,1.04-1.41,1.81-3.02,2.33-4.85.52-1.82.78-3.7.78-5.62s-.22-3.75-.67-5.62c-.44-1.87-1.16-3.58-2.15-5.11-.99-1.53-2.26-2.76-3.81-3.7-1.55-.94-3.44-1.41-5.66-1.41s-4.12.46-5.7,1.37c-1.58.91-2.89,2.11-3.92,3.59-1.04,1.48-1.79,3.17-2.26,5.07-.47,1.9-.7,3.84-.7,5.81s.25,3.8.74,5.62c.49,1.83,1.26,3.44,2.29,4.85s2.34,2.54,3.92,3.4c1.58.86,3.45,1.29,5.62,1.29,2.02,0,3.8-.43,5.33-1.29Z" style="fill:#00154c;"/>
1362
+ <path d="M202.57,239.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81,1.33.89,2.42,2.13,3.26,3.74.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48s-1-3.07-1-5c0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.93.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41s-1.97-1-3.18-1.22c-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM225.88,251.1c-.3.54-.86.94-1.7,1.18-.84.25-1.58.42-2.22.52-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1363
+ <path d="M247.78,233.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62s.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.15-.44-4.55-.3-1.41-.81-2.63-1.55-3.66s-1.74-1.85-3-2.44-2.82-.89-4.7-.89-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1364
+ <path d="M290.85,219.14v7.47h-4.66v-7.47h4.66ZM290.85,233.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1365
+ <path d="M324.96,241.23c-.54-1.06-1.27-1.94-2.18-2.63-.91-.69-1.96-1.2-3.15-1.52-1.18-.32-2.44-.48-3.77-.48-1.04,0-2.08.11-3.15.33-1.06.22-2.04.59-2.92,1.11-.89.52-1.6,1.2-2.15,2.04-.54.84-.81,1.88-.81,3.11,0,1.04.26,1.91.78,2.63.52.72,1.17,1.32,1.96,1.81.79.49,1.65.9,2.59,1.22.94.32,1.8.58,2.59.78l6.22,1.41c1.33.2,2.65.55,3.96,1.07,1.31.52,2.47,1.2,3.48,2.04,1.01.84,1.84,1.88,2.48,3.11.64,1.23.96,2.69.96,4.37,0,2.07-.47,3.84-1.41,5.29-.94,1.46-2.13,2.64-3.59,3.55-1.46.91-3.1,1.57-4.92,1.96-1.83.39-3.63.59-5.4.59-4.49,0-8.13-1.06-10.92-3.18-2.79-2.12-4.38-5.52-4.77-10.21h4.66c.2,3.16,1.34,5.54,3.44,7.14,2.1,1.6,4.7,2.4,7.81,2.4,1.13,0,2.31-.12,3.51-.37,1.21-.25,2.33-.67,3.37-1.26s1.89-1.34,2.55-2.26c.67-.91,1-2.04,1-3.37,0-1.13-.23-2.08-.7-2.85-.47-.76-1.1-1.41-1.89-1.92-.79-.52-1.69-.95-2.7-1.29-1.01-.34-2.04-.64-3.07-.89l-5.99-1.33c-1.53-.39-2.94-.85-4.22-1.37-1.28-.52-2.41-1.16-3.37-1.92-.96-.76-1.71-1.7-2.26-2.81-.54-1.11-.81-2.48-.81-4.11,0-1.92.43-3.58,1.29-4.96.86-1.38,1.99-2.49,3.37-3.33,1.38-.84,2.92-1.45,4.62-1.85,1.7-.39,3.39-.59,5.07-.59,1.92,0,3.71.25,5.36.74,1.65.49,3.11,1.26,4.37,2.29,1.26,1.04,2.26,2.32,3,3.85.74,1.53,1.16,3.33,1.26,5.4h-4.66c-.05-1.43-.35-2.68-.89-3.74Z" style="fill:#00154c;"/>
1366
+ <path d="M342.72,239.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81,1.33.89,2.42,2.13,3.26,3.74.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48s-1-3.07-1-5c0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.93.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41s-1.97-1-3.18-1.22c-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM366.03,251.1c-.3.54-.86.94-1.7,1.18-.84.25-1.58.42-2.22.52-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1367
+ <path d="M398.52,233.79v3.92h-7.77v25.75c0,1.53.21,2.73.63,3.59.42.86,1.47,1.34,3.15,1.44,1.33,0,2.66-.07,4-.22v3.92c-.69,0-1.38.02-2.07.07-.69.05-1.38.07-2.07.07-3.11,0-5.28-.6-6.51-1.81-1.23-1.21-1.83-3.44-1.78-6.7v-26.12h-6.66v-3.92h6.66v-11.47h4.66v11.47h7.77Z" style="fill:#00154c;"/>
1368
+ <path d="M413.17,219.14v7.47h-4.66v-7.47h4.66ZM413.17,233.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1369
+ <path d="M449.17,234.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.36-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM435.59,238.01c-1.68.94-3.07,2.17-4.18,3.7-1.11,1.53-1.95,3.27-2.52,5.22-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22s2.5,2.76,4.18,3.7c1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41Z" style="fill:#00154c;"/>
1370
+ <path d="M474.22,233.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62s.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.15-.44-4.55-.3-1.41-.81-2.63-1.55-3.66s-1.74-1.85-3-2.44-2.82-.89-4.7-.89-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1371
+ <path d="M78.69,315.14v22.94h31.38v-22.94h5.03v52.84h-5.03v-25.6h-31.38v25.6h-5.03v-52.84h5.03Z" style="fill:#00154c;"/>
1372
+ <path d="M128.72,329.79l12.58,32.56,11.77-32.56h4.66l-16.58,43.96c-.69,1.63-1.33,2.97-1.92,4.03-.59,1.06-1.25,1.9-1.96,2.52-.72.62-1.55,1.06-2.52,1.33-.96.27-2.18.41-3.66.41-.94-.05-1.67-.09-2.18-.11-.52-.03-.97-.11-1.37-.26v-3.92c.54.1,1.07.19,1.59.26.52.07,1.05.11,1.59.11,1.04,0,1.89-.15,2.55-.44s1.25-.7,1.74-1.22c.49-.52.91-1.15,1.26-1.89.34-.74.71-1.55,1.11-2.44l1.63-4.29-15.24-38.04h4.96Z" style="fill:#00154c;"/>
1373
+ <path d="M194.8,367.97v-7.25h-.15c-.49,1.23-1.22,2.37-2.18,3.4s-2.06,1.91-3.29,2.63c-1.23.72-2.55,1.27-3.96,1.67-1.41.39-2.8.59-4.18.59-2.91,0-5.44-.53-7.59-1.59-2.15-1.06-3.93-2.52-5.36-4.37-1.43-1.85-2.49-4-3.18-6.44-.69-2.44-1.04-5.02-1.04-7.73s.34-5.29,1.04-7.73c.69-2.44,1.75-4.59,3.18-6.44,1.43-1.85,3.22-3.32,5.36-4.4,2.15-1.08,4.67-1.63,7.59-1.63,1.43,0,2.82.17,4.18.52,1.36.35,2.63.88,3.81,1.59,1.18.72,2.23,1.59,3.15,2.63.91,1.04,1.62,2.25,2.11,3.63h.15v-21.9h4.66v52.84h-4.29ZM169.23,354.76c.47,1.95,1.21,3.69,2.22,5.22,1.01,1.53,2.3,2.78,3.88,3.74,1.58.96,3.48,1.44,5.7,1.44,2.47,0,4.55-.48,6.25-1.44,1.7-.96,3.08-2.21,4.14-3.74,1.06-1.53,1.82-3.27,2.29-5.22.47-1.95.7-3.91.7-5.88s-.23-3.93-.7-5.88c-.47-1.95-1.23-3.69-2.29-5.22-1.06-1.53-2.44-2.77-4.14-3.74-1.7-.96-3.79-1.44-6.25-1.44-2.22,0-4.12.48-5.7,1.44-1.58.96-2.88,2.21-3.88,3.74-1.01,1.53-1.75,3.27-2.22,5.22-.47,1.95-.7,3.91-.7,5.88s.23,3.93.7,5.88Z" style="fill:#00154c;"/>
1374
+ <path d="M215.44,329.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1375
+ <path d="M260.18,330.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.37-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM246.6,334.01c-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41Z" style="fill:#00154c;"/>
1376
+ <path d="M311.98,372.49c-.62,2.27-1.59,4.19-2.92,5.77-1.33,1.58-3.07,2.79-5.22,3.63-2.15.84-4.77,1.26-7.88,1.26-1.92,0-3.8-.22-5.62-.67s-3.47-1.14-4.92-2.07c-1.46-.94-2.66-2.13-3.63-3.59s-1.52-3.19-1.67-5.22h4.66c.25,1.43.73,2.63,1.44,3.59.71.96,1.58,1.74,2.59,2.33,1.01.59,2.13,1.02,3.37,1.29,1.23.27,2.49.41,3.77.41,4.34,0,7.47-1.23,9.4-3.7,1.92-2.47,2.89-6.02,2.89-10.66v-5.18h-.15c-1.08,2.37-2.68,4.27-4.77,5.7-2.1,1.43-4.55,2.15-7.36,2.15-3.06,0-5.67-.5-7.84-1.52-2.17-1.01-3.96-2.41-5.37-4.18-1.41-1.78-2.43-3.86-3.07-6.25-.64-2.39-.96-4.95-.96-7.66s.38-5.09,1.15-7.44c.76-2.34,1.87-4.39,3.33-6.14,1.45-1.75,3.26-3.13,5.4-4.14,2.15-1.01,4.6-1.52,7.36-1.52,1.43,0,2.78.2,4.03.59,1.26.4,2.41.95,3.44,1.67,1.04.72,1.96,1.54,2.77,2.48.81.94,1.44,1.92,1.89,2.96h.15v-6.59h4.66v35.08c0,2.81-.31,5.35-.92,7.62ZM301.28,362.31c1.53-.86,2.81-2,3.85-3.4,1.04-1.41,1.81-3.02,2.33-4.85.52-1.82.78-3.7.78-5.62s-.22-3.75-.67-5.62c-.44-1.87-1.16-3.58-2.15-5.11-.99-1.53-2.26-2.76-3.81-3.7-1.55-.94-3.44-1.41-5.66-1.41s-4.12.46-5.7,1.37c-1.58.91-2.89,2.11-3.92,3.59-1.04,1.48-1.79,3.17-2.26,5.07-.47,1.9-.7,3.84-.7,5.81s.25,3.8.74,5.62c.49,1.83,1.26,3.44,2.29,4.85,1.04,1.41,2.34,2.54,3.92,3.4,1.58.86,3.45,1.29,5.62,1.29,2.02,0,3.8-.43,5.33-1.29Z" style="fill:#00154c;"/>
1377
+ <path d="M329.26,329.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1378
+ <path d="M352.42,335.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM375.73,347.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1379
+ <path d="M397.33,329.79v7.25h.15c1.08-2.66,2.85-4.72,5.29-6.18,2.44-1.45,5.22-2.18,8.33-2.18,2.91,0,5.44.54,7.58,1.63,2.15,1.09,3.93,2.55,5.37,4.4,1.43,1.85,2.49,4,3.18,6.44.69,2.44,1.04,5.02,1.04,7.73s-.35,5.29-1.04,7.73c-.69,2.44-1.75,4.59-3.18,6.44-1.43,1.85-3.22,3.31-5.37,4.37-2.15,1.06-4.67,1.59-7.58,1.59-1.38,0-2.76-.17-4.14-.52-1.38-.35-2.66-.86-3.85-1.55-1.18-.69-2.23-1.55-3.14-2.59-.91-1.04-1.62-2.24-2.11-3.63h-.15v21.31h-4.66v-52.24h4.29ZM422.9,343c-.47-1.95-1.21-3.69-2.22-5.22-1.01-1.53-2.31-2.77-3.88-3.74-1.58-.96-3.48-1.44-5.7-1.44-2.57,0-4.71.44-6.44,1.33-1.73.89-3.11,2.07-4.14,3.55-1.04,1.48-1.76,3.21-2.18,5.18-.42,1.97-.63,4.04-.63,6.22,0,1.97.23,3.93.7,5.88.47,1.95,1.23,3.69,2.29,5.22,1.06,1.53,2.44,2.78,4.14,3.74s3.79,1.44,6.25,1.44c2.22,0,4.12-.48,5.7-1.44,1.58-.96,2.87-2.21,3.88-3.74,1.01-1.53,1.75-3.27,2.22-5.22.47-1.95.7-3.91.7-5.88s-.23-3.93-.7-5.88Z" style="fill:#00154c;"/>
1380
+ <path d="M443.29,315.14v21.24h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-52.84h4.66Z" style="fill:#00154c;"/>
1381
+ <path d="M486.35,315.14v7.47h-4.66v-7.47h4.66ZM486.35,329.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1382
+ <path d="M527.42,382.03v-21.31h-.15c-.49,1.38-1.2,2.59-2.11,3.63-.91,1.04-1.96,1.9-3.15,2.59-1.18.69-2.45,1.21-3.81,1.55-1.36.34-2.75.52-4.18.52-2.91,0-5.44-.53-7.59-1.59-2.15-1.06-3.93-2.52-5.36-4.37-1.43-1.85-2.49-4-3.18-6.44-.69-2.44-1.04-5.02-1.04-7.73s.34-5.29,1.04-7.73c.69-2.44,1.75-4.59,3.18-6.44,1.43-1.85,3.22-3.32,5.36-4.4,2.15-1.08,4.67-1.63,7.59-1.63,1.38,0,2.77.2,4.18.59,1.41.4,2.73.96,3.96,1.7,1.23.74,2.33,1.62,3.29,2.63.96,1.01,1.69,2.16,2.18,3.44h.15v-7.25h4.29v52.24h-4.66ZM502.23,354.76c.47,1.95,1.21,3.69,2.22,5.22,1.01,1.53,2.3,2.78,3.88,3.74,1.58.96,3.48,1.44,5.7,1.44,2.47,0,4.55-.48,6.25-1.44,1.7-.96,3.08-2.21,4.14-3.74,1.06-1.53,1.82-3.27,2.29-5.22.47-1.95.7-3.91.7-5.88s-.23-3.93-.7-5.88c-.47-1.95-1.23-3.69-2.29-5.22-1.06-1.53-2.44-2.77-4.14-3.74-1.7-.96-3.79-1.44-6.25-1.44-2.22,0-4.12.48-5.7,1.44-1.58.96-2.88,2.21-3.88,3.74-1.01,1.53-1.75,3.27-2.22,5.22-.47,1.95-.7,3.91-.7,5.88s.23,3.93.7,5.88Z" style="fill:#00154c;"/>
1383
+ <path d="M570.79,367.97v-6.88h-.15c-1.23,2.57-3.02,4.53-5.36,5.88-2.34,1.36-4.95,2.04-7.81,2.04-2.42,0-4.48-.33-6.18-1s-3.08-1.62-4.14-2.85-1.84-2.74-2.33-4.51c-.49-1.78-.74-3.8-.74-6.07v-24.79h4.66v24.86c.1,3.45.9,6.07,2.4,7.84,1.5,1.78,4.11,2.66,7.81,2.66,2.02,0,3.75-.43,5.18-1.3,1.43-.86,2.61-2.01,3.55-3.44.94-1.43,1.63-3.07,2.07-4.92.44-1.85.67-3.74.67-5.66v-20.05h4.66v38.18h-4.29Z" style="fill:#00154c;"/>
1384
+ <path d="M590.51,355.36c.47,1.8,1.22,3.42,2.26,4.85s2.34,2.62,3.92,3.55c1.58.94,3.48,1.41,5.7,1.41,3.4,0,6.07-.89,7.99-2.66,1.92-1.78,3.26-4.14,4-7.1h4.66c-.99,4.34-2.8,7.7-5.44,10.06-2.64,2.37-6.38,3.55-11.21,3.55-3.01,0-5.61-.53-7.81-1.59-2.2-1.06-3.98-2.52-5.37-4.37-1.38-1.85-2.41-4-3.07-6.44-.67-2.44-1-5.02-1-7.73,0-2.52.33-4.98,1-7.4.67-2.42,1.69-4.58,3.07-6.47,1.38-1.9,3.17-3.43,5.37-4.59,2.19-1.16,4.8-1.74,7.81-1.74s5.67.62,7.84,1.85c2.17,1.23,3.93,2.85,5.29,4.85,1.36,2,2.33,4.29,2.92,6.88.59,2.59.84,5.22.74,7.88h-29.38c0,1.68.23,3.42.7,5.22ZM613.6,341.11c-.57-1.63-1.37-3.07-2.4-4.33-1.04-1.26-2.29-2.27-3.77-3.03-1.48-.76-3.16-1.15-5.03-1.15s-3.63.38-5.11,1.15c-1.48.76-2.74,1.78-3.77,3.03-1.04,1.26-1.86,2.71-2.48,4.37-.62,1.65-1.02,3.34-1.22,5.07h24.72c-.05-1.78-.36-3.48-.92-5.11Z" style="fill:#00154c;"/>
1385
+ <path d="M79.06,411.14v52.84h-5.03v-52.84h5.03Z" style="fill:#00154c;"/>
1386
+ <path d="M96.97,425.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1387
+ <path d="M150.47,425.79v3.92h-7.77v25.75c0,1.53.21,2.73.63,3.59.42.86,1.47,1.34,3.15,1.44,1.33,0,2.66-.07,4-.22v3.92c-.69,0-1.38.02-2.07.07-.69.05-1.38.07-2.07.07-3.11,0-5.28-.6-6.51-1.81-1.23-1.21-1.83-3.44-1.78-6.7v-26.12h-6.66v-3.92h6.66v-11.47h4.66v11.47h7.77Z" style="fill:#00154c;"/>
1388
+ <path d="M163.83,451.36c.47,1.8,1.22,3.42,2.26,4.85s2.34,2.62,3.92,3.55c1.58.94,3.48,1.41,5.7,1.41,3.4,0,6.07-.89,7.99-2.66,1.92-1.78,3.26-4.14,4-7.1h4.66c-.99,4.34-2.8,7.7-5.44,10.06-2.64,2.37-6.38,3.55-11.21,3.55-3.01,0-5.61-.53-7.81-1.59-2.2-1.06-3.98-2.52-5.37-4.37-1.38-1.85-2.41-4-3.07-6.44-.67-2.44-1-5.02-1-7.73,0-2.52.33-4.98,1-7.4.67-2.42,1.69-4.58,3.07-6.47,1.38-1.9,3.17-3.43,5.37-4.59,2.19-1.16,4.8-1.74,7.81-1.74s5.67.62,7.84,1.85c2.17,1.23,3.93,2.85,5.29,4.85,1.36,2,2.33,4.29,2.92,6.88.59,2.59.84,5.22.74,7.88h-29.38c0,1.68.23,3.42.7,5.22ZM186.91,437.11c-.57-1.63-1.37-3.07-2.4-4.33-1.04-1.26-2.29-2.27-3.77-3.03-1.48-.76-3.16-1.15-5.03-1.15s-3.63.38-5.11,1.15c-1.48.76-2.74,1.78-3.77,3.03-1.04,1.26-1.86,2.71-2.48,4.37-.62,1.65-1.02,3.34-1.22,5.07h24.72c-.05-1.78-.36-3.48-.92-5.11Z" style="fill:#00154c;"/>
1389
+ <path d="M206.27,425.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1390
+ <path d="M234.38,425.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1391
+ <path d="M273.68,431.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29s3.85-.74,6.07-.74c1.68,0,3.35.16,5.03.48,1.68.32,3.18.93,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM296.99,443.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1392
+ <path d="M329.47,425.79v3.92h-7.77v25.75c0,1.53.21,2.73.63,3.59.42.86,1.47,1.34,3.15,1.44,1.33,0,2.66-.07,4-.22v3.92c-.69,0-1.38.02-2.07.07-.69.05-1.38.07-2.07.07-3.11,0-5.28-.6-6.51-1.81-1.23-1.21-1.83-3.44-1.78-6.7v-26.12h-6.66v-3.92h6.66v-11.47h4.66v11.47h7.77Z" style="fill:#00154c;"/>
1393
+ <path d="M344.12,411.14v7.47h-4.66v-7.47h4.66ZM344.12,425.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1394
+ <path d="M380.12,426.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.37-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM366.55,430.01c-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41Z" style="fill:#00154c;"/>
1395
+ <path d="M405.17,425.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1396
+ <path d="M444.47,431.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29s3.85-.74,6.07-.74c1.68,0,3.35.16,5.03.48,1.68.32,3.18.93,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM467.78,443.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1397
+ <path d="M489.83,411.14v52.84h-4.66v-52.84h4.66Z" style="fill:#00154c;"/>
1398
+ <path d="M505.41,451.36c.47,1.8,1.22,3.42,2.26,4.85s2.34,2.62,3.92,3.55c1.58.94,3.48,1.41,5.7,1.41,3.4,0,6.07-.89,7.99-2.66,1.92-1.78,3.26-4.14,4-7.1h4.66c-.99,4.34-2.8,7.7-5.44,10.06-2.64,2.37-6.38,3.55-11.21,3.55-3.01,0-5.61-.53-7.81-1.59-2.2-1.06-3.98-2.52-5.37-4.37-1.38-1.85-2.41-4-3.07-6.44-.67-2.44-1-5.02-1-7.73,0-2.52.33-4.98,1-7.4.67-2.42,1.69-4.58,3.07-6.47,1.38-1.9,3.17-3.43,5.37-4.59,2.19-1.16,4.8-1.74,7.81-1.74s5.67.62,7.84,1.85c2.17,1.23,3.93,2.85,5.29,4.85,1.36,2,2.33,4.29,2.92,6.88.59,2.59.84,5.22.74,7.88h-29.38c0,1.68.23,3.42.7,5.22ZM528.49,437.11c-.57-1.63-1.37-3.07-2.4-4.33-1.04-1.26-2.29-2.27-3.77-3.03-1.48-.76-3.16-1.15-5.03-1.15s-3.63.38-5.11,1.15c-1.48.76-2.74,1.78-3.77,3.03-1.04,1.26-1.86,2.71-2.48,4.37-.62,1.65-1.02,3.34-1.22,5.07h24.72c-.05-1.78-.36-3.48-.92-5.11Z" style="fill:#00154c;"/>
1399
+ </svg>
1400
+ </xsl:when>
1401
+ <xsl:otherwise> <!-- en default -->
1402
+ <svg xmlns="http://www.w3.org/2000/svg" id="uuid-4850eec0-d71a-4649-bbc4-888bd73bf371" width="235.3mm" height="235.3mm" viewBox="0 0 667 667">
1403
+ <rect x="0" width="667" height="667" style="fill:#f0ebd8;"/>
1404
+ <path d="M113.12,219.14v52.84h-5.03v-52.84h5.03Z" style="fill:#00154c;"/>
1405
+ <path d="M131.03,233.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62s.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44-2.82-.89-4.7-.89-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1406
+ <path d="M184.53,233.79v3.92h-7.77v25.75c0,1.53.21,2.73.63,3.59.42.86,1.47,1.34,3.15,1.44,1.33,0,2.66-.07,4-.22v3.92c-.69,0-1.38.02-2.07.07-.69.05-1.38.07-2.07.07-3.11,0-5.28-.6-6.51-1.81-1.23-1.21-1.83-3.44-1.78-6.7v-26.12h-6.66v-3.92h6.66v-11.47h4.66v11.47h7.77Z" style="fill:#00154c;"/>
1407
+ <path d="M197.88,259.36c.47,1.8,1.22,3.42,2.26,4.85,1.04,1.43,2.34,2.62,3.92,3.55,1.58.94,3.48,1.41,5.7,1.41,3.4,0,6.07-.89,7.99-2.66,1.92-1.78,3.26-4.14,4-7.1h4.66c-.99,4.34-2.8,7.7-5.44,10.06-2.64,2.37-6.38,3.55-11.21,3.55-3.01,0-5.61-.53-7.81-1.59-2.2-1.06-3.98-2.52-5.37-4.37-1.38-1.85-2.41-4-3.07-6.44-.67-2.44-1-5.02-1-7.73,0-2.52.33-4.98,1-7.4.67-2.42,1.69-4.58,3.07-6.47,1.38-1.9,3.17-3.43,5.37-4.59,2.19-1.16,4.8-1.74,7.81-1.74s5.67.62,7.84,1.85c2.17,1.23,3.93,2.85,5.29,4.85,1.36,2,2.33,4.29,2.92,6.88.59,2.59.84,5.22.74,7.88h-29.38c0,1.68.23,3.42.7,5.22ZM220.97,245.11c-.57-1.63-1.37-3.07-2.4-4.33-1.04-1.26-2.29-2.27-3.77-3.03-1.48-.76-3.16-1.15-5.03-1.15s-3.63.38-5.11,1.15c-1.48.77-2.74,1.78-3.77,3.03s-1.86,2.71-2.48,4.37c-.62,1.65-1.02,3.34-1.22,5.07h24.72c-.05-1.78-.36-3.48-.92-5.11Z" style="fill:#00154c;"/>
1408
+ <path d="M240.32,233.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.57-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1409
+ <path d="M268.44,233.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62s.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44-2.82-.89-4.7-.89-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1410
+ <path d="M307.73,239.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.35-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63s-2.91-1.08-4.07-2c-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.89-.52-1.01-1.23-1.81-2.15-2.41s-1.97-1-3.18-1.22c-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM331.04,251.1c-.3.54-.86.94-1.7,1.18-.84.25-1.58.42-2.22.52-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.14.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1411
+ <path d="M363.53,233.79v3.92h-7.77v25.75c0,1.53.21,2.73.63,3.59.42.86,1.47,1.34,3.15,1.44,1.33,0,2.66-.07,4-.22v3.92c-.69,0-1.38.02-2.07.07-.69.05-1.38.07-2.07.07-3.11,0-5.28-.6-6.51-1.81-1.23-1.21-1.83-3.44-1.78-6.7v-26.12h-6.66v-3.92h6.66v-11.47h4.66v11.47h7.77Z" style="fill:#00154c;"/>
1412
+ <path d="M378.18,219.14v7.47h-4.66v-7.47h4.66ZM378.18,233.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1413
+ <path d="M414.18,234.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.37-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM400.6,238.01c-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22s2.5,2.76,4.18,3.7c1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41Z" style="fill:#00154c;"/>
1414
+ <path d="M439.23,233.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62s.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44-2.82-.89-4.7-.89-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1415
+ <path d="M478.52,239.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.35-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63s-2.91-1.08-4.07-2c-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.89-.52-1.01-1.23-1.81-2.15-2.41s-1.97-1-3.18-1.22c-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM501.83,251.1c-.3.54-.86.94-1.7,1.18-.84.25-1.58.42-2.22.52-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.14.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1416
+ <path d="M523.89,219.14v52.84h-4.66v-52.84h4.66Z" style="fill:#00154c;"/>
1417
+ <path d="M112.75,315.14v22.94h31.38v-22.94h5.03v52.84h-5.03v-25.6h-31.38v25.6h-5.03v-52.84h5.03Z" style="fill:#00154c;"/>
1418
+ <path d="M162.77,329.79l12.58,32.56,11.77-32.56h4.66l-16.58,43.96c-.69,1.63-1.33,2.97-1.92,4.03-.59,1.06-1.25,1.9-1.96,2.52-.72.62-1.55,1.06-2.52,1.33-.96.27-2.18.41-3.66.41-.94-.05-1.67-.09-2.18-.11-.52-.03-.97-.11-1.37-.26v-3.92c.54.1,1.07.19,1.59.26.52.07,1.05.11,1.59.11,1.04,0,1.89-.15,2.55-.44s1.25-.7,1.74-1.22c.49-.52.91-1.15,1.26-1.89.34-.74.71-1.55,1.11-2.44l1.63-4.29-15.24-38.04h4.96Z" style="fill:#00154c;"/>
1419
+ <path d="M228.86,367.97v-7.25h-.15c-.49,1.23-1.22,2.37-2.18,3.4s-2.06,1.91-3.29,2.63c-1.23.72-2.55,1.27-3.96,1.67-1.41.39-2.8.59-4.18.59-2.91,0-5.44-.53-7.59-1.59-2.15-1.06-3.93-2.52-5.36-4.37-1.43-1.85-2.49-4-3.18-6.44-.69-2.44-1.04-5.02-1.04-7.73s.34-5.29,1.04-7.73c.69-2.44,1.75-4.59,3.18-6.44,1.43-1.85,3.22-3.32,5.36-4.4,2.15-1.08,4.67-1.63,7.59-1.63,1.43,0,2.82.17,4.18.52,1.36.35,2.63.88,3.81,1.59,1.18.72,2.23,1.59,3.15,2.63.91,1.04,1.62,2.25,2.11,3.63h.15v-21.9h4.66v52.84h-4.29ZM203.29,354.76c.47,1.95,1.21,3.69,2.22,5.22,1.01,1.53,2.3,2.78,3.88,3.74,1.58.96,3.48,1.44,5.7,1.44,2.47,0,4.55-.48,6.25-1.44,1.7-.96,3.08-2.21,4.14-3.74,1.06-1.53,1.82-3.27,2.29-5.22.47-1.95.7-3.91.7-5.88s-.23-3.93-.7-5.88c-.47-1.95-1.23-3.69-2.29-5.22-1.06-1.53-2.44-2.77-4.14-3.74-1.7-.96-3.79-1.44-6.25-1.44-2.22,0-4.12.48-5.7,1.44-1.58.96-2.88,2.21-3.88,3.74-1.01,1.53-1.75,3.27-2.22,5.22-.47,1.95-.7,3.91-.7,5.88s.23,3.93.7,5.88Z" style="fill:#00154c;"/>
1420
+ <path d="M249.5,329.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1421
+ <path d="M294.23,330.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.37-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM280.65,334.01c-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41Z" style="fill:#00154c;"/>
1422
+ <path d="M346.03,372.49c-.62,2.27-1.59,4.19-2.92,5.77-1.33,1.58-3.07,2.79-5.22,3.63-2.15.84-4.77,1.26-7.88,1.26-1.92,0-3.8-.22-5.62-.67s-3.47-1.14-4.92-2.07c-1.46-.94-2.66-2.13-3.63-3.59s-1.52-3.19-1.67-5.22h4.66c.25,1.43.73,2.63,1.44,3.59.71.96,1.58,1.74,2.59,2.33,1.01.59,2.13,1.02,3.37,1.29,1.23.27,2.49.41,3.77.41,4.34,0,7.47-1.23,9.4-3.7,1.92-2.47,2.89-6.02,2.89-10.66v-5.18h-.15c-1.08,2.37-2.68,4.27-4.77,5.7-2.1,1.43-4.55,2.15-7.36,2.15-3.06,0-5.67-.5-7.84-1.52-2.17-1.01-3.96-2.41-5.37-4.18-1.41-1.78-2.43-3.86-3.07-6.25-.64-2.39-.96-4.95-.96-7.66s.38-5.09,1.15-7.44c.76-2.34,1.87-4.39,3.33-6.14,1.45-1.75,3.26-3.13,5.4-4.14,2.15-1.01,4.6-1.52,7.36-1.52,1.43,0,2.78.2,4.03.59,1.26.4,2.41.95,3.44,1.67,1.04.72,1.96,1.54,2.77,2.48.81.94,1.44,1.92,1.89,2.96h.15v-6.59h4.66v35.08c0,2.81-.31,5.35-.92,7.62ZM335.34,362.31c1.53-.86,2.81-2,3.85-3.4,1.04-1.41,1.81-3.02,2.33-4.85.52-1.82.78-3.7.78-5.62s-.22-3.75-.67-5.62c-.44-1.87-1.16-3.58-2.15-5.11-.99-1.53-2.26-2.76-3.81-3.7-1.55-.94-3.44-1.41-5.66-1.41s-4.12.46-5.7,1.37c-1.58.91-2.89,2.11-3.92,3.59-1.04,1.48-1.79,3.17-2.26,5.07-.47,1.9-.7,3.84-.7,5.81s.25,3.8.74,5.62c.49,1.83,1.26,3.44,2.29,4.85,1.04,1.41,2.34,2.54,3.92,3.4,1.58.86,3.45,1.29,5.62,1.29,2.02,0,3.8-.43,5.33-1.29Z" style="fill:#00154c;"/>
1423
+ <path d="M363.31,329.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1424
+ <path d="M386.47,335.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29,1.83-.49,3.85-.74,6.07-.74,1.68,0,3.35.16,5.03.48,1.68.32,3.18.92,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM409.78,347.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1425
+ <path d="M431.39,329.79v7.25h.15c1.08-2.66,2.85-4.72,5.29-6.18,2.44-1.45,5.22-2.18,8.33-2.18,2.91,0,5.44.54,7.58,1.63,2.15,1.09,3.93,2.55,5.37,4.4,1.43,1.85,2.49,4,3.18,6.44.69,2.44,1.04,5.02,1.04,7.73s-.35,5.29-1.04,7.73c-.69,2.44-1.75,4.59-3.18,6.44-1.43,1.85-3.22,3.31-5.37,4.37-2.15,1.06-4.67,1.59-7.58,1.59-1.38,0-2.76-.17-4.14-.52-1.38-.35-2.66-.86-3.85-1.55-1.18-.69-2.23-1.55-3.14-2.59-.91-1.04-1.62-2.24-2.11-3.63h-.15v21.31h-4.66v-52.24h4.29ZM456.96,343c-.47-1.95-1.21-3.69-2.22-5.22-1.01-1.53-2.31-2.77-3.88-3.74-1.58-.96-3.48-1.44-5.7-1.44-2.57,0-4.71.44-6.44,1.33-1.73.89-3.11,2.07-4.14,3.55-1.04,1.48-1.76,3.21-2.18,5.18-.42,1.97-.63,4.04-.63,6.22,0,1.97.23,3.93.7,5.88.47,1.95,1.23,3.69,2.29,5.22,1.06,1.53,2.44,2.78,4.14,3.74s3.79,1.44,6.25,1.44c2.22,0,4.12-.48,5.7-1.44,1.58-.96,2.87-2.21,3.88-3.74,1.01-1.53,1.75-3.27,2.22-5.22.47-1.95.7-3.91.7-5.88s-.23-3.93-.7-5.88Z" style="fill:#00154c;"/>
1426
+ <path d="M477.34,315.14v21.24h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-52.84h4.66Z" style="fill:#00154c;"/>
1427
+ <path d="M520.41,315.14v7.47h-4.66v-7.47h4.66ZM520.41,329.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1428
+ <path d="M555.93,335.04c-1.73-1.63-4.14-2.44-7.25-2.44-2.22,0-4.17.47-5.85,1.41-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41,1.43,0,2.79-.27,4.07-.81,1.28-.54,2.42-1.29,3.4-2.26.99-.96,1.8-2.11,2.44-3.44.64-1.33,1.04-2.79,1.18-4.37h4.66c-.64,4.64-2.34,8.25-5.11,10.84-2.76,2.59-6.32,3.88-10.66,3.88-2.91,0-5.49-.53-7.73-1.59-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63,4.09,0,7.56,1.08,10.4,3.26,2.84,2.17,4.53,5.45,5.07,9.84h-4.66c-.64-2.86-1.83-5.11-3.55-6.73Z" style="fill:#00154c;"/>
1429
+ <path d="M106.46,427.12c1.04-3.3,2.59-6.23,4.66-8.77,2.07-2.54,4.67-4.56,7.81-6.07,3.13-1.5,6.77-2.26,10.92-2.26s7.77.75,10.88,2.26c3.11,1.51,5.7,3.53,7.77,6.07,2.07,2.54,3.63,5.46,4.66,8.77,1.04,3.31,1.55,6.78,1.55,10.43s-.52,7.13-1.55,10.43c-1.04,3.31-2.59,6.22-4.66,8.73-2.07,2.52-4.66,4.53-7.77,6.03-3.11,1.5-6.73,2.26-10.88,2.26s-7.78-.75-10.92-2.26c-3.13-1.5-5.74-3.52-7.81-6.03-2.07-2.52-3.63-5.43-4.66-8.73-1.04-3.3-1.55-6.78-1.55-10.43s.52-7.13,1.55-10.43ZM111.08,446.03c.76,2.79,1.95,5.28,3.55,7.47,1.6,2.2,3.66,3.96,6.18,5.29,2.52,1.33,5.52,2,9.03,2s6.5-.67,8.99-2c2.49-1.33,4.54-3.1,6.14-5.29,1.6-2.2,2.79-4.69,3.55-7.47.76-2.79,1.15-5.61,1.15-8.47s-.38-5.75-1.15-8.51-1.95-5.24-3.55-7.44c-1.6-2.19-3.65-3.96-6.14-5.29-2.49-1.33-5.49-2-8.99-2s-6.51.67-9.03,2c-2.52,1.33-4.58,3.1-6.18,5.29-1.6,2.2-2.79,4.67-3.55,7.44-.77,2.76-1.15,5.6-1.15,8.51s.38,5.69,1.15,8.47Z" style="fill:#00154c;"/>
1430
+ <path d="M169.14,425.79v8.95h.15c1.18-3.11,3.02-5.5,5.51-7.18,2.49-1.68,5.46-2.44,8.92-2.29v4.66c-2.12-.1-4.04.18-5.77.85-1.73.67-3.22,1.62-4.48,2.85-1.26,1.23-2.23,2.7-2.92,4.4-.69,1.7-1.04,3.56-1.04,5.59v20.35h-4.66v-38.18h4.29Z" style="fill:#00154c;"/>
1431
+ <path d="M222.68,468.49c-.62,2.27-1.59,4.19-2.92,5.77-1.33,1.58-3.07,2.79-5.22,3.63-2.15.84-4.77,1.26-7.88,1.26-1.92,0-3.8-.22-5.62-.67s-3.47-1.14-4.92-2.07c-1.46-.94-2.66-2.13-3.63-3.59s-1.52-3.19-1.67-5.22h4.66c.25,1.43.73,2.63,1.44,3.59.71.96,1.58,1.74,2.59,2.33,1.01.59,2.13,1.02,3.37,1.29,1.23.27,2.49.41,3.77.41,4.34,0,7.47-1.23,9.4-3.7,1.92-2.47,2.89-6.02,2.89-10.66v-5.18h-.15c-1.08,2.37-2.68,4.27-4.77,5.7-2.1,1.43-4.55,2.15-7.36,2.15-3.06,0-5.67-.5-7.84-1.52-2.17-1.01-3.96-2.41-5.37-4.18-1.41-1.78-2.43-3.86-3.07-6.25-.64-2.39-.96-4.95-.96-7.66s.38-5.09,1.15-7.44c.76-2.34,1.87-4.39,3.33-6.14,1.45-1.75,3.26-3.13,5.4-4.14,2.15-1.01,4.6-1.52,7.36-1.52,1.43,0,2.78.2,4.03.59,1.26.4,2.41.95,3.44,1.67,1.04.72,1.96,1.54,2.77,2.48.81.94,1.44,1.92,1.89,2.96h.15v-6.59h4.66v35.08c0,2.81-.31,5.35-.92,7.62ZM211.98,458.31c1.53-.86,2.81-2,3.85-3.4,1.04-1.41,1.81-3.02,2.33-4.85.52-1.82.78-3.7.78-5.62s-.22-3.75-.67-5.62c-.44-1.87-1.16-3.58-2.15-5.11-.99-1.53-2.26-2.76-3.81-3.7-1.55-.94-3.44-1.41-5.66-1.41s-4.12.46-5.7,1.37c-1.58.91-2.89,2.11-3.92,3.59-1.04,1.48-1.79,3.17-2.26,5.07-.47,1.9-.7,3.84-.7,5.81s.25,3.8.74,5.62c.49,1.83,1.26,3.44,2.29,4.85,1.04,1.41,2.34,2.54,3.92,3.4,1.58.86,3.45,1.29,5.62,1.29,2.02,0,3.8-.43,5.33-1.29Z" style="fill:#00154c;"/>
1432
+ <path d="M236.62,431.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29s3.85-.74,6.07-.74c1.68,0,3.35.16,5.03.48,1.68.32,3.18.93,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM259.93,443.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1433
+ <path d="M281.84,425.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1434
+ <path d="M324.91,411.14v7.47h-4.66v-7.47h4.66ZM324.91,425.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1435
+ <path d="M365.61,460.05v3.92h-31.89v-3.77l24.94-30.49h-23.24v-3.92h29.16v3.33l-25.23,30.93h26.27Z" style="fill:#00154c;"/>
1436
+ <path d="M375.45,431.71c.79-1.63,1.86-2.96,3.22-4,1.36-1.04,2.95-1.8,4.77-2.29s3.85-.74,6.07-.74c1.68,0,3.35.16,5.03.48,1.68.32,3.18.93,4.51,1.81s2.42,2.13,3.26,3.74c.84,1.6,1.26,3.69,1.26,6.25v20.28c0,1.88.91,2.81,2.74,2.81.54,0,1.04-.1,1.48-.3v3.92c-.54.1-1.02.17-1.44.22-.42.05-.95.07-1.59.07-1.18,0-2.13-.16-2.85-.48-.72-.32-1.27-.78-1.67-1.37-.4-.59-.66-1.29-.78-2.11-.12-.81-.18-1.71-.18-2.7h-.15c-.84,1.23-1.69,2.33-2.55,3.29-.86.96-1.83,1.76-2.89,2.41-1.06.64-2.27,1.13-3.63,1.48-1.36.34-2.97.52-4.85.52-1.78,0-3.44-.21-5-.63-1.55-.42-2.91-1.08-4.07-2-1.16-.91-2.07-2.07-2.74-3.48-.67-1.41-1-3.07-1-5,0-2.66.59-4.75,1.78-6.25,1.18-1.5,2.75-2.65,4.7-3.44,1.95-.79,4.14-1.34,6.59-1.67,2.44-.32,4.92-.63,7.44-.92.99-.1,1.85-.22,2.59-.37.74-.15,1.36-.41,1.85-.78s.88-.88,1.15-1.52c.27-.64.41-1.48.41-2.52,0-1.58-.26-2.87-.78-3.88-.52-1.01-1.23-1.81-2.15-2.41-.91-.59-1.97-1-3.18-1.22-1.21-.22-2.5-.33-3.88-.33-2.96,0-5.38.7-7.25,2.11-1.88,1.41-2.86,3.66-2.96,6.77h-4.66c.15-2.22.62-4.14,1.41-5.77ZM398.76,443.1c-.3.54-.86.94-1.7,1.18s-1.58.42-2.22.52c-1.97.35-4.01.65-6.11.92-2.1.27-4.01.68-5.73,1.22-1.73.54-3.15,1.32-4.25,2.33-1.11,1.01-1.67,2.46-1.67,4.33,0,1.18.23,2.23.7,3.15.47.91,1.1,1.7,1.89,2.37.79.67,1.7,1.17,2.74,1.52,1.04.35,2.1.52,3.18.52,1.78,0,3.48-.27,5.11-.81,1.63-.54,3.04-1.33,4.25-2.37,1.21-1.04,2.17-2.29,2.89-3.77.71-1.48,1.07-3.16,1.07-5.03v-6.07h-.15Z" style="fill:#00154c;"/>
1437
+ <path d="M431.24,425.79v3.92h-7.77v25.75c0,1.53.21,2.73.63,3.59.42.86,1.47,1.34,3.15,1.44,1.33,0,2.66-.07,4-.22v3.92c-.69,0-1.38.02-2.07.07-.69.05-1.38.07-2.07.07-3.11,0-5.28-.6-6.51-1.81-1.23-1.21-1.83-3.44-1.78-6.7v-26.12h-6.66v-3.92h6.66v-11.47h4.66v11.47h7.77Z" style="fill:#00154c;"/>
1438
+ <path d="M445.89,411.14v7.47h-4.66v-7.47h4.66ZM445.89,425.79v38.18h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1439
+ <path d="M481.89,426.31c2.24,1.09,4.13,2.54,5.66,4.37,1.53,1.83,2.69,3.96,3.48,6.4.79,2.44,1.18,5.04,1.18,7.81s-.4,5.37-1.18,7.81c-.79,2.44-1.95,4.58-3.48,6.4-1.53,1.83-3.42,3.27-5.66,4.33-2.25,1.06-4.82,1.59-7.73,1.59s-5.49-.53-7.73-1.59c-2.25-1.06-4.13-2.5-5.66-4.33s-2.69-3.96-3.48-6.4c-.79-2.44-1.18-5.04-1.18-7.81s.39-5.37,1.18-7.81c.79-2.44,1.95-4.58,3.48-6.4s3.42-3.28,5.66-4.37c2.24-1.08,4.82-1.63,7.73-1.63s5.49.54,7.73,1.63ZM468.32,430.01c-1.68.94-3.07,2.17-4.18,3.7s-1.95,3.27-2.52,5.22c-.57,1.95-.85,3.93-.85,5.96s.28,4.01.85,5.96c.57,1.95,1.41,3.69,2.52,5.22,1.11,1.53,2.5,2.76,4.18,3.7,1.68.94,3.63,1.41,5.85,1.41s4.17-.47,5.85-1.41c1.68-.94,3.07-2.17,4.18-3.7,1.11-1.53,1.95-3.27,2.52-5.22.57-1.95.85-3.93.85-5.96s-.28-4.01-.85-5.96c-.57-1.95-1.41-3.69-2.52-5.22-1.11-1.53-2.5-2.76-4.18-3.7-1.68-.94-3.63-1.41-5.85-1.41s-4.17.47-5.85,1.41Z" style="fill:#00154c;"/>
1440
+ <path d="M506.94,425.79v6.59h.15c.89-2.32,2.47-4.18,4.74-5.59,2.27-1.41,4.76-2.11,7.47-2.11s4.9.35,6.7,1.04c1.8.69,3.24,1.67,4.33,2.92,1.08,1.26,1.85,2.8,2.29,4.62.44,1.83.67,3.87.67,6.14v24.57h-4.66v-23.83c0-1.63-.15-3.14-.44-4.55s-.81-2.63-1.55-3.66-1.74-1.85-3-2.44c-1.26-.59-2.82-.89-4.7-.89s-3.54.33-4.99,1c-1.46.67-2.69,1.58-3.7,2.74-1.01,1.16-1.8,2.54-2.37,4.14-.57,1.6-.88,3.34-.92,5.22v22.27h-4.66v-38.18h4.66Z" style="fill:#00154c;"/>
1441
+ </svg>
1442
+ </xsl:otherwise>
1443
+ </xsl:choose>
1350
1444
  </xsl:variable>
1351
1445
 
1352
1446
  <!-- https://www.metanorma.org/ns/standoc -->
@@ -2967,7 +3061,6 @@
2967
3061
  </xsl:attribute-set> <!-- feedback-statement-title-style -->
2968
3062
 
2969
3063
  <xsl:template name="refine_feedback-statement-title-style">
2970
-
2971
3064
  </xsl:template>
2972
3065
 
2973
3066
  <xsl:attribute-set name="feedback-statement-p-style">
@@ -8773,15 +8866,22 @@
8773
8866
  </xsl:attribute-set> <!-- quote-style -->
8774
8867
 
8775
8868
  <xsl:template name="refine_quote-style">
8776
- </xsl:template>
8869
+ </xsl:template> <!-- refine_quote-style -->
8777
8870
 
8778
8871
  <xsl:attribute-set name="quote-source-style">
8779
8872
  <xsl:attribute name="text-align">right</xsl:attribute>
8780
- </xsl:attribute-set>
8873
+ </xsl:attribute-set> <!-- quote-source-style -->
8781
8874
 
8782
8875
  <xsl:template name="refine_quote-source-style">
8783
8876
  </xsl:template>
8784
8877
 
8878
+ <xsl:attribute-set name="source-style">
8879
+ </xsl:attribute-set> <!-- source-style -->
8880
+
8881
+ <xsl:template name="refine_source-style">
8882
+
8883
+ </xsl:template> <!-- refine_source-style -->
8884
+
8785
8885
  <!-- ====== -->
8786
8886
  <!-- quote -->
8787
8887
  <!-- source -->
@@ -8829,7 +8929,9 @@
8829
8929
  </xsl:if>
8830
8930
  <xsl:choose>
8831
8931
  <xsl:when test="not(parent::quote)">
8832
- <fo:block>
8932
+ <fo:block xsl:use-attribute-sets="source-style">
8933
+ <xsl:call-template name="refine_source-style"/>
8934
+
8833
8935
  <xsl:call-template name="insert_basic_link">
8834
8936
  <xsl:with-param name="element">
8835
8937
  <fo:basic-link internal-destination="{@bibitemid}" fox:alt-text="{@citeas}">
@@ -10925,7 +11027,7 @@
10925
11027
 
10926
11028
  <xsl:template name="refine_fn-reference-style">
10927
11029
  <!-- https://github.com/metanorma/metanorma-ieee/issues/595 -->
10928
- <xsl:if test="preceding-sibling::node()[normalize-space() != ''][1][self::mn:fn]">,</xsl:if>
11030
+ <xsl:if test="preceding-sibling::node()[normalize-space() != ''][1][self::mn:fn]">, </xsl:if><!-- <xsl:if test="$namespace = 'bsi' or $namespace = 'pas'"></xsl:if> -->
10929
11031
  </xsl:template> <!-- refine_fn-reference-style -->
10930
11032
 
10931
11033
  <xsl:attribute-set name="fn-style">
@@ -10936,7 +11038,9 @@
10936
11038
  </xsl:template>
10937
11039
 
10938
11040
  <xsl:attribute-set name="fn-num-style">
11041
+ <xsl:attribute name="role">Reference</xsl:attribute>
10939
11042
  <xsl:attribute name="keep-with-previous.within-line">always</xsl:attribute>
11043
+ <xsl:attribute name="font-size">65%</xsl:attribute>
10940
11044
  <xsl:attribute name="font-size">70%</xsl:attribute>
10941
11045
  <xsl:attribute name="vertical-align">super</xsl:attribute>
10942
11046
  </xsl:attribute-set> <!-- fn-num-style -->
@@ -11010,33 +11114,16 @@
11010
11114
  <xsl:variable name="ref_id" select="@target"/>
11011
11115
 
11012
11116
  <xsl:variable name="footnote_inline">
11013
- <fo:inline role="Reference">
11014
-
11015
- <xsl:variable name="fn_styles">
11016
- <xsl:choose>
11017
- <xsl:when test="ancestor::mn:bibitem">
11018
- <fn_styles xsl:use-attribute-sets="bibitem-note-fn-style">
11019
- <xsl:call-template name="refine_bibitem-note-fn-style"/>
11020
- </fn_styles>
11021
- </xsl:when>
11022
- <xsl:otherwise>
11023
- <fn_styles xsl:use-attribute-sets="fn-num-style">
11024
- <xsl:call-template name="refine_fn-num-style"/>
11025
- </fn_styles>
11026
- </xsl:otherwise>
11027
- </xsl:choose>
11028
- </xsl:variable>
11117
+ <fo:inline xsl:use-attribute-sets="fn-num-style">
11029
11118
 
11030
- <xsl:for-each select="xalan:nodeset($fn_styles)/fn_styles/@*">
11031
- <xsl:copy-of select="."/>
11032
- </xsl:for-each>
11119
+ <xsl:call-template name="refine_fn-num-style"/>
11033
11120
 
11034
11121
  <!-- https://github.com/metanorma/metanorma-ieee/issues/595 -->
11035
11122
  <!-- <xsl:if test="following-sibling::node()[normalize-space() != ''][1][self::mn:fn]">
11036
11123
  <xsl:attribute name="padding-right">0.5mm</xsl:attribute>
11037
11124
  </xsl:if> -->
11038
11125
 
11039
- <xsl:if test="preceding-sibling::node()[normalize-space() != ''][1][self::mn:fn]">,</xsl:if>
11126
+ <xsl:if test="preceding-sibling::node()[normalize-space() != ''][1][self::mn:fn]">, </xsl:if>
11040
11127
 
11041
11128
  <xsl:call-template name="insert_basic_link">
11042
11129
  <xsl:with-param name="element">
@@ -11360,32 +11447,6 @@
11360
11447
  <xsl:template name="refine_bibitem-non-normative-list-body-style">
11361
11448
  </xsl:template>
11362
11449
 
11363
- <!-- footnote reference number for bibitem, in the text -->
11364
- <xsl:attribute-set name="bibitem-note-fn-style">
11365
- <xsl:attribute name="keep-with-previous.within-line">always</xsl:attribute>
11366
- <xsl:attribute name="font-size">65%</xsl:attribute>
11367
- <xsl:attribute name="font-size">8pt</xsl:attribute>
11368
- <xsl:attribute name="baseline-shift">30%</xsl:attribute>
11369
- </xsl:attribute-set> <!-- bibitem-note-fn-style -->
11370
-
11371
- <xsl:template name="refine_bibitem-note-fn-style">
11372
- </xsl:template>
11373
-
11374
- <!-- footnote number on the page bottom -->
11375
- <xsl:attribute-set name="bibitem-note-fn-number-style">
11376
- <xsl:attribute name="keep-with-next.within-line">always</xsl:attribute>
11377
- <xsl:attribute name="alignment-baseline">hanging</xsl:attribute>
11378
- <xsl:attribute name="padding-right">3mm</xsl:attribute>
11379
- </xsl:attribute-set> <!-- bibitem-note-fn-number-style -->
11380
-
11381
- <!-- footnote body (text) on the page bottom -->
11382
- <xsl:attribute-set name="bibitem-note-fn-body-style">
11383
- <xsl:attribute name="font-size">10pt</xsl:attribute>
11384
- <xsl:attribute name="margin-bottom">12pt</xsl:attribute>
11385
- <xsl:attribute name="start-indent">0pt</xsl:attribute>
11386
- <xsl:attribute name="margin-bottom">4pt</xsl:attribute>
11387
- </xsl:attribute-set> <!-- bibitem-note-fn-body-style -->
11388
-
11389
11450
  <xsl:attribute-set name="references-non-normative-style">
11390
11451
  </xsl:attribute-set> <!-- references-non-normative-style -->
11391
11452
 
@@ -13789,6 +13850,17 @@
13789
13850
  </xsl:attribute-set>
13790
13851
 
13791
13852
  <xsl:template name="refine_clause-style">
13853
+ <!-- commented for https://github.com/metanorma/metanorma-ribose/issues/421 -->
13854
+ <!-- <xsl:if test="$namespace = 'rsd'">
13855
+ <xsl:variable name="level">
13856
+ <xsl:call-template name="getLevel">
13857
+ <xsl:with-param name="depth" select="mn:fmt-title/@depth"/>
13858
+ </xsl:call-template>
13859
+ </xsl:variable>
13860
+ <xsl:if test="$level &gt;= 4">
13861
+ <xsl:attribute name="margin-left">13mm</xsl:attribute>
13862
+ </xsl:if>
13863
+ </xsl:if> -->
13792
13864
  </xsl:template>
13793
13865
 
13794
13866
  <!-- main sections -->