jekyll-theme-fos 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_config.yml +47 -0
  5. data/_data/analytics.yml +6 -0
  6. data/_data/comments.yml +4 -0
  7. data/_data/navigation.yml +5 -0
  8. data/_data/posts.yml +1 -0
  9. data/_data/social-networks.yml +67 -0
  10. data/_data/theme.yml +17 -0
  11. data/_includes/body-end.html +12 -0
  12. data/_includes/body-start.html +1 -0
  13. data/_includes/comments.html +5 -0
  14. data/_includes/copyright.html +3 -0
  15. data/_includes/date.html +1 -0
  16. data/_includes/disqus.html +28 -0
  17. data/_includes/facebook-og.html +10 -0
  18. data/_includes/footer.html +8 -0
  19. data/_includes/google-tm-body.html +11 -0
  20. data/_includes/google-tm-gtag.html +12 -0
  21. data/_includes/google-tm-head.html +11 -0
  22. data/_includes/head.html +40 -0
  23. data/_includes/image.html +8 -0
  24. data/_includes/menu-icon.html +5 -0
  25. data/_includes/meta.html +5 -0
  26. data/_includes/navigation.html +15 -0
  27. data/_includes/page-title.html +5 -0
  28. data/_includes/post-title.html +14 -0
  29. data/_includes/share.html +10 -0
  30. data/_includes/social-icons.html +10 -0
  31. data/_includes/subscribe-form.html +7 -0
  32. data/_includes/tags.html +7 -0
  33. data/_includes/top-bar.html +10 -0
  34. data/_includes/twitter-summary.html +7 -0
  35. data/_layouts/base.html +30 -0
  36. data/_layouts/page.html +22 -0
  37. data/_layouts/post.html +21 -0
  38. data/_sass/.DS_Store +0 -0
  39. data/_sass/_highlight.scss +13 -0
  40. data/_sass/_typography.scss +271 -0
  41. data/_sass/bootstrap/_alert.scss +51 -0
  42. data/_sass/bootstrap/_badge.scss +53 -0
  43. data/_sass/bootstrap/_breadcrumb.scss +41 -0
  44. data/_sass/bootstrap/_button-group.scss +163 -0
  45. data/_sass/bootstrap/_buttons.scss +140 -0
  46. data/_sass/bootstrap/_card.scss +310 -0
  47. data/_sass/bootstrap/_carousel.scss +198 -0
  48. data/_sass/bootstrap/_close.scss +44 -0
  49. data/_sass/bootstrap/_code.scss +48 -0
  50. data/_sass/bootstrap/_custom-forms.scss +507 -0
  51. data/_sass/bootstrap/_dropdown.scss +191 -0
  52. data/_sass/bootstrap/_forms.scss +334 -0
  53. data/_sass/bootstrap/_functions.scss +86 -0
  54. data/_sass/bootstrap/_grid.scss +52 -0
  55. data/_sass/bootstrap/_images.scss +42 -0
  56. data/_sass/bootstrap/_input-group.scss +193 -0
  57. data/_sass/bootstrap/_jumbotron.scss +16 -0
  58. data/_sass/bootstrap/_list-group.scss +121 -0
  59. data/_sass/bootstrap/_media.scss +8 -0
  60. data/_sass/bootstrap/_mixins.scss +41 -0
  61. data/_sass/bootstrap/_modal.scss +186 -0
  62. data/_sass/bootstrap/_nav.scss +120 -0
  63. data/_sass/bootstrap/_navbar.scss +299 -0
  64. data/_sass/bootstrap/_pagination.scss +78 -0
  65. data/_sass/bootstrap/_popover.scss +183 -0
  66. data/_sass/bootstrap/_print.scss +141 -0
  67. data/_sass/bootstrap/_progress.scss +34 -0
  68. data/_sass/bootstrap/_reboot.scss +462 -0
  69. data/_sass/bootstrap/_root.scss +19 -0
  70. data/_sass/bootstrap/_spinners.scss +53 -0
  71. data/_sass/bootstrap/_tables.scss +187 -0
  72. data/_sass/bootstrap/_toasts.scss +43 -0
  73. data/_sass/bootstrap/_tooltip.scss +115 -0
  74. data/_sass/bootstrap/_transitions.scss +22 -0
  75. data/_sass/bootstrap/_type.scss +125 -0
  76. data/_sass/bootstrap/_utilities.scss +16 -0
  77. data/_sass/bootstrap/_variables.scss +1091 -0
  78. data/_sass/bootstrap/bootstrap-grid.scss +29 -0
  79. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  80. data/_sass/bootstrap/bootstrap.scss +44 -0
  81. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  82. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  83. data/_sass/bootstrap/mixins/_badge.scss +11 -0
  84. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  85. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  86. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  87. data/_sass/bootstrap/mixins/_buttons.scss +111 -0
  88. data/_sass/bootstrap/mixins/_caret.scss +62 -0
  89. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  90. data/_sass/bootstrap/mixins/_float.scss +11 -0
  91. data/_sass/bootstrap/mixins/_forms.scss +198 -0
  92. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  93. data/_sass/bootstrap/mixins/_grid-framework.scss +66 -0
  94. data/_sass/bootstrap/mixins/_grid.scss +51 -0
  95. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  96. data/_sass/bootstrap/mixins/_image.scss +36 -0
  97. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  98. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  99. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  100. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  101. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  102. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  103. data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
  104. data/_sass/bootstrap/mixins/_size.scss +6 -0
  105. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  106. data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
  107. data/_sass/bootstrap/mixins/_text-hide.scss +13 -0
  108. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  109. data/_sass/bootstrap/mixins/_transition.scss +16 -0
  110. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  111. data/_sass/bootstrap/utilities/_align.scss +8 -0
  112. data/_sass/bootstrap/utilities/_background.scss +19 -0
  113. data/_sass/bootstrap/utilities/_borders.scss +63 -0
  114. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  115. data/_sass/bootstrap/utilities/_display.scss +38 -0
  116. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  117. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  118. data/_sass/bootstrap/utilities/_float.scss +9 -0
  119. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  120. data/_sass/bootstrap/utilities/_position.scss +32 -0
  121. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  122. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  123. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  124. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  125. data/_sass/bootstrap/utilities/_text.scss +67 -0
  126. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  127. data/assets/css/.DS_Store +0 -0
  128. data/assets/css/fontisto.min.css +5 -0
  129. data/assets/css/fonts.css +45 -0
  130. data/assets/css/style.scss +529 -0
  131. data/assets/fonts/.DS_Store +0 -0
  132. data/assets/fonts/et-book/.DS_Store +0 -0
  133. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot +0 -0
  134. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg +243 -0
  135. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf +0 -0
  136. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff +0 -0
  137. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot +0 -0
  138. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg +244 -0
  139. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf +0 -0
  140. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff +0 -0
  141. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot +0 -0
  142. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg +244 -0
  143. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf +0 -0
  144. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff +0 -0
  145. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot +0 -0
  146. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg +244 -0
  147. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf +0 -0
  148. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff +0 -0
  149. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.eot +0 -0
  150. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.svg +243 -0
  151. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.ttf +0 -0
  152. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.woff +0 -0
  153. data/assets/fonts/fontisto/fontisto.ttf +0 -0
  154. data/assets/fonts/icons/.DS_Store +0 -0
  155. data/assets/fonts/icons/ARROW.svg +9 -0
  156. data/assets/fonts/icons/HAMBURGER MENU.svg +9 -0
  157. data/assets/fonts/icons/d91782eeaa98bfeb4e950cd7dd135027.svg +3 -0
  158. data/assets/fonts/icons/ef3920d8d3ea164b058f52ab55f5ca11.html +4 -0
  159. data/assets/fonts/icons/facebook.svg +1 -0
  160. data/assets/fonts/icons/github (2).svg +1 -0
  161. data/assets/fonts/icons/menu.svg +3 -0
  162. data/assets/fonts/icons/method-draw-image.svg +0 -0
  163. data/assets/fonts/icons/so-icon.html +139 -0
  164. data/assets/fonts/icons/user.svg +0 -0
  165. data/assets/img/.DS_Store +0 -0
  166. data/assets/js/bootstrap.min.js +7 -0
  167. data/assets/js/jquery-3.3.1.min.js +2 -0
  168. data/assets/js/main.js +91 -0
  169. data/assets/js/popper.min.js +5 -0
  170. metadata +309 -0
@@ -0,0 +1,243 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="etbooksemiboldosf" horiz-adv-x="1093" >
7
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
8
+ <missing-glyph horiz-adv-x="501" />
9
+ <glyph horiz-adv-x="2048" />
10
+ <glyph horiz-adv-x="2048" />
11
+ <glyph unicode="&#xd;" horiz-adv-x="681" />
12
+ <glyph unicode=" " horiz-adv-x="501" />
13
+ <glyph unicode="&#x09;" horiz-adv-x="501" />
14
+ <glyph unicode="&#xa0;" horiz-adv-x="501" />
15
+ <glyph unicode="!" horiz-adv-x="557" d="M164 88q0 51 33.5 84t83 33t84 -33t34.5 -84t-34.5 -85t-84 -34t-83 34t-33.5 85zM174 1315q-4 49 8.5 73.5t59.5 24.5h73q55 0 66.5 -18.5t5.5 -79.5l-70 -938q-8 -20 -33.5 -23.5t-39.5 23.5z" />
16
+ <glyph unicode="&#x22;" horiz-adv-x="870" d="M135 1235q0 145 117 145q57 0 91 -36.5t34 -98.5q0 -33 -8 -90q-4 -37 -17 -90l-57 -307q-16 -20 -43 -19q-39 4 -45 45l-49 283q-23 121 -23 168zM496 1223q0 158 125 157q55 0 88.5 -36.5t33.5 -98.5q1 -69 -22 -182l-57 -303q-12 -33 -48 -27t-41 27l-53 301 q-27 139 -26 162z" />
17
+ <glyph unicode="#" horiz-adv-x="1431" d="M74 410q0 8 10 65q0 43 55 43h162q18 0 24.5 4t10.5 23l63 311q4 18 -12 18h-211q-33 0 -48 9.5t-13 34.5q-2 8 12 75q0 33 53 35q164 4 236 0q10 0 14 1t6 5t4 15l74 358q8 33 20.5 41t40.5 4q8 0 37 -4q39 -4 47.5 -12.5t-0.5 -44.5l-67 -344q-6 -18 12 -19 q43 4 182.5 1t182.5 -1q14 2 18 7t8 20q53 262 68 325q0 2 2 13.5t3 13.5t3 10t5 11.5t7 8.5t9.5 7t12.5 4t15 2l49 4q45 4 48 -45q0 -33 -54 -276q-10 -45 -18 -86q-4 -18 12 -19q29 -2 80 -2h80q23 -2 31 -9t6 -30q-6 -33 -17 -84q-4 -25 -57 -29h-143q-27 2 -33 -26 q-2 -8 -6 -25l-58 -282q-4 -23 19 -23q123 -4 201 0h13h13t12.5 -1t11.5 -3t9 -5t6 -8t3 -12.5t-1 -17.5l-12 -59q-4 -23 -15.5 -33t-19.5 -11t-33 -3q-102 -4 -198 0h-25.5t-14.5 -4.5t-6.5 -7.5t-2.5 -14t-3 -17l-65 -326q-4 -20 -9 -29.5t-16.5 -17.5t-32.5 -8h-59 q-41 0 -37 61q2 20 62 293q2 16 6 31q2 14 3 20t-1 11t-6 6.5t-15 1.5q-188 8 -335 0h-13.5t-12.5 -1.5t-8 -2.5t-5 -3t-3.5 -6t-4.5 -9l-3 -15l-67 -330q-2 -14 -8.5 -24.5t-9.5 -16.5t-15 -9t-15 -4t-20.5 -1h-21.5q-63 -4 -64 41q0 8 3 16t3 14l66 324q6 27 -27 27h-139 q-20 0 -29.5 2t-16.5 11t-7 32zM483 541q-2 -16 11 -21q129 6 354 0q37 -2 43 27l61 293q4 14 3 21t-5 10t-14 3q-195 4 -348 0h-8q-12 0 -16.5 -1t-8.5 -7t-6 -20z" />
18
+ <glyph unicode="$" horiz-adv-x="980" d="M74 217q0 37 26.5 64.5t61.5 27.5q37 0 59.5 -23.5t41 -77.5t20.5 -61q16 -29 34 -45q6 -4 9.5 5.5t3.5 21.5v477q-4 6 -11 12q-61 45 -81.5 63.5t-60.5 59.5t-54 85t-14 100q0 92 55 164.5t149 109.5q16 6 17 33v92q4 18 51 23q23 -4 33 -27v-84q2 -2 4 -6t4 -4 q41 4 84 0q18 0 18 10v82q2 16 33 27h27q10 0 19 -9.5t9 -23.5l-2 -78q0 -29 21 -35q94 -31 151.5 -80t57.5 -106q0 -37 -23.5 -61.5t-58.5 -24.5q-23 0 -43.5 12t-29.5 22.5t-28.5 40t-23.5 33.5q-23 31 -23 0v-336q0 -27 6 -32q84 -51 133.5 -91t94.5 -112t45 -156 q0 -115 -72 -202t-196 -127q-10 -2 -11 -25q0 -88 2 -145q0 -29 -32 -29h-31q-31 6 -27 37l2 135q0 4 -6 10q-37 -6 -84 0q-18 0 -18 -8v-61.5t4 -75.5q2 -27 -21 -37h-53q-23 8 -16 35v26v131l-6 11q-133 43 -187 100q-63 68 -63 133zM260 997.5q0 -65.5 53 -116.5 q6 -6 11.5 -2t5.5 16v192q-4 16 -11 19q-59 -43 -59 -108.5zM414 520l2 -442q0 -27 18 -29q41 -8 78 -4q12 2 12 29v395q0 27 -12 27q-43 31 -84 53q-12 -8 -14 -29zM414 827q0 -18 14 -34q14 -12 26.5 -20.5t27 -18t26.5 -17.5q6 -2 11 6.5t5 18.5v338v-2q0 33 -12 35 q-45 14 -80 8q-12 0 -15 -2t-3 -17v-295zM610 100q0 -12 1.5 -14t13.5 2q96 59 96 174q0 86 -94 156q-8 6 -12.5 -1t-4.5 -20v-297z" />
19
+ <glyph unicode="%" horiz-adv-x="1425" d="M86 932q0 135 87 222t212 87t215 -86t88 -217q-2 -133 -89 -220t-212 -87q-123 0 -212 87t-89 214zM227 935.5q0 -104.5 43 -160.5t117 -56q76 0 119 56t43 163q0 104 -45 159.5t-123 55.5q-70 0 -112 -56.5t-42 -161zM254 -82l786 1370q23 29 62 19l22 -11 q29 -12 13 -49l-783 -1362q-14 -37 -61 -24q-63 16 -39 57zM715 215q0 133 88 220t211 87q125 0 215 -85t88 -216q-2 -133 -89 -220t-212 -87q-121 0 -211 86t-90 215zM856 219q0 -104 43 -160.5t117 -56.5q76 0 119 56.5t43 162.5q0 104 -45 159.5t-123 55.5 q-70 0 -112 -57t-42 -160z" />
20
+ <glyph unicode="&#x26;" horiz-adv-x="1562" d="M82 332q0 160 127 270q51 43 205 119q23 14 6 27q-119 125 -119 251q0 121 87 194t224 73q125 0 208 -62.5t83 -165.5q0 -145 -203 -262q-14 -6 -2 -18q45 -33 154 -133q82 -80 145 -172q12 -16 19 -4q57 72 131 182q98 154 98 207q0 10 -39 14q-14 2 -38.5 5t-28.5 3 q-27 14 -17 58q6 20 29 20h8q131 -6 350 2q31 4 37 -27v-26q0 -27 -39 -31q-10 -2 -35.5 -4t-42 -4t-37 -9.5t-32.5 -19.5q-25 -23 -78 -117l-55 -110q-63 -117 -164 -230q-4 -4 6 -18q16 -29 64 -111q55 -98 83.5 -126.5t65.5 -28.5q51 0 160 76q23 6 42 -28t-3 -46 q-147 -119 -275 -119q-35 0 -62.5 4t-52 20.5t-38 23.5t-35 39t-27.5 39t-28.5 49t-26.5 48q-4 8 -13.5 11.5t-13.5 -2.5q-238 -231 -458 -232q-154 0 -261.5 107.5t-107.5 263.5zM305 356q0 -111 62.5 -175t167.5 -64q82 0 178 45t159 119q6 0 0 12q-63 102 -170 211 q-92 96 -186 158q-8 6 -27 -9q-184 -135 -184 -297zM483 1051q0 -115 119 -215q14 -14 31 -2q96 70 96 190q0 72 -36 113t-95 41q-53 0 -84 -33t-31 -94z" />
21
+ <glyph unicode="'" horiz-adv-x="378" d="M78 1225q0 156 110 155q53 0 85 -36.5t32 -98.5q0 -39 -10 -94q-10 -59 -29.5 -178t-29.5 -178q-2 -20 -13.5 -37t-34.5 -15q-20 2 -28 7.5t-10.5 11.5t-4.5 29l-45 274q-23 147 -22 160z" />
22
+ <glyph unicode="(" horiz-adv-x="667" d="M158 492q0 256 103.5 503.5t279.5 446.5q37 29 72.5 -8t13.5 -74q-133 -152 -232 -416q-74 -203 -73 -452q0 -197 40.5 -350.5t137.5 -331.5q61 -109 127 -189q20 -45 -52 -78q-25 -14 -53 19q-168 190 -266 436t-98 494z" />
23
+ <glyph unicode=")" horiz-adv-x="647" d="M27 -375q135 156 233 416q74 203 74 455q0 193 -41 347t-139 335q-70 121 -113 170q-14 16 -13 41.5t19 42.5q47 37 82 -5q170 -193 267.5 -436t97.5 -495q0 -258 -101.5 -509t-279.5 -444q-37 -29 -76 3t-10 79z" />
24
+ <glyph unicode="*" d="M158 731q0 -29 24.5 -55.5t59.5 -26.5q31 0 55.5 13.5t34.5 24.5t35 42q66 84 145 133q4 2 7 -5t3 -11q-4 -100 -26 -172q-29 -80 -29 -113q0 -41 24.5 -70.5t65.5 -29.5t65.5 29.5t24.5 70.5t-8 60q-4 18 -18 53q-25 66 -27 174q0 12 14 12q76 -47 142 -131 q20 -29 33.5 -42t37 -25.5t51.5 -12.5q37 0 60.5 25.5t23.5 56.5q0 41 -25.5 67.5t-52 36t-75.5 19.5t-66 14q-49 14 -102 47q-4 2 -2 8.5t6 8.5q51 25 100 41q14 4 63.5 15t76 21.5t52 37t25.5 65.5q0 27 -20.5 55.5t-71.5 28.5q-49 0 -112 -78q-70 -82 -142 -129 q-4 -2 -11 -1t-7 7q2 78 26 164q27 88 27 125t-23.5 66.5t-64.5 29.5t-64.5 -29.5t-23.5 -66.5q0 -29 29 -125q23 -92 26 -164q0 -16 -14 -8q-68 41 -148 131q-2 4 -10 13.5t-12 13.5t-12.5 12t-13.5 12.5t-13 10.5t-15 9t-16.5 5t-17.5 2q-51 0 -72.5 -28.5t-21.5 -55.5 q0 -51 26.5 -73.5t81.5 -37.5q14 -4 51 -12t60 -16q74 -25 102 -39q14 -11 4 -19l-2 -2q-133 -53 -213 -73q-57 -12 -83.5 -33t-26.5 -76z" />
25
+ <glyph unicode="+" horiz-adv-x="1429" d="M145 662v61v10q0 16 1 22.5t11.5 10.5t32.5 4h431q12 0 15 3t3 13v420v14.5v15.5t1 13t5 11.5t11.5 6.5t19.5 3h80q25 0 32 -10.5t7 -45.5v-436q2 -8 28 -8h418q31 0 38 -9t7 -36v-63q0 -31 -13 -39.5t-46 -8.5h-414q-18 0 -18 -30v-430q0 -33 -8.5 -40.5t-43.5 -7.5 q-4 0 -29.5 -1t-33.5 1q-20 0 -29.5 6.5t-10.5 13.5t-1 28v446q0 10 -2 12t-14 2h-435q-29 0 -36 8.5t-7 39.5z" />
26
+ <glyph unicode="," horiz-adv-x="514" d="M143 57q0 47 34 79t79 32q61 0 97 -46t36 -118q0 -86 -49 -165t-129 -118q-33 -14 -49 3q-2 2 -5 7t-7 7q-14 41 10 49q121 74 121 160q0 10 -2.5 12t-12.5 -2q-2 -2 -4 -2q-49 -10 -84 20.5t-35 81.5z" />
27
+ <glyph unicode="-" horiz-adv-x="890" d="M90 438v72q0 18 16.5 28.5t32.5 10.5q371 -10 633 0q14 0 26.5 -12.5t12.5 -26.5l-4 -70q-8 -29 -31 -32q-311 -4 -655 0q-20 0 -31 30z" />
28
+ <glyph unicode="." horiz-adv-x="444" d="M133 80q0 53 35 86t90 33q53 0 86 -32t33 -85q0 -51 -33 -85t-86 -34t-89 33t-36 84z" />
29
+ <glyph unicode="/" horiz-adv-x="980" d="M84 27q668 1305 676 1321q20 41 61 44t82 -10q20 -4 26.5 -24.5t-9.5 -46.5l-672 -1309q-16 -35 -28.5 -40t-55.5 -5q-29 0 -43 2q-68 10 -37 68z" />
30
+ <glyph unicode="0" horiz-adv-x="1001" d="M78 440q0 213 123 352.5t311 139.5q190 0 313 -137.5t123 -348.5q0 -209 -122.5 -342t-315.5 -133q-186 0 -309 134.5t-123 334.5zM246 453q0 -172 70.5 -265.5t193.5 -93.5q127 0 199.5 92.5t72.5 264.5q0 176 -71.5 269t-202.5 93q-119 0 -190.5 -95t-71.5 -265z" />
31
+ <glyph unicode="1" horiz-adv-x="794" d="M121 645q20 14 84 55q133 90 211 201q10 8 57 7t47 -21v-705q0 -63 12 -73q6 -6 29 -7q18 -6 84 -6q23 0 35 -2q20 -4 20 -53t-24 -49q-387 4 -486 0q-27 -2 -30.5 42t18.5 56q18 10 43 6q45 0 53 2q76 2 76 78v463q0 31 -10 31q-2 0 -6 -4q-27 -18 -52.5 -33t-65.5 -32 t-56 -26q-20 -12 -37 23t-2 47z" />
32
+ <glyph unicode="2" horiz-adv-x="985" d="M68 30.5q0 24.5 10 37.5q197 137 358 278q166 150 166 262q0 82 -49 132.5t-129 50.5q-109 0 -223 -107q-14 -10 -45 4t-17 47q92 104 176 150.5t187 46.5q119 0 202.5 -70.5t83.5 -175.5q0 -76 -38.5 -150.5t-112.5 -146.5t-128 -115t-136 -100q-23 -16 35 -14 q227 0 280 2q37 2 49.5 8t26.5 33q29 47 59 127q18 18 50 10t26 -33l-68 -278q-10 -37 -65 -37h-16h-664q-18 14 -18 38.5z" />
33
+ <glyph unicode="3" horiz-adv-x="833" d="M111 -244q0 53 45 76t86 -2q6 -4 17 -13.5t17 -13.5q76 -59 123 -59q51 0 86 61.5t35 167.5q0 166 -76 236q-61 53 -159 24q-29 -8 -37 29t8 47q242 150 242 332q0 70 -33 105.5t-88 35.5q-39 0 -72 -15t-51 -35.5t-37.5 -39t-31 -23.5t-31.5 7q-23 23 -15 47 q106 215 295 215q102 0 172 -75t70 -181q0 -35 -7 -64.5t-13.5 -48t-28 -45t-29.5 -36t-41 -40t-43 -38.5q-12 -15 4 -19q41 -14 64 -33q125 -106 125 -254q0 -190 -119 -331.5t-283 -141.5q-88 0 -141 32t-53 93z" />
34
+ <glyph unicode="4" horiz-adv-x="1001" d="M55.5 23.5q-4.5 27.5 5.5 42.5l557 849q4 8 19 15q25 10 47 6q16 -6 16 -16v-760q2 -16 19 -25l180 2q6 -2 11 -2t8.5 -1t6.5 -3t5 -7t4 -15.5t2 -79.5q0 -45 -45 -37l-174 2q-2 0 -9.5 -6t-7.5 -8q6 -131 0 -295q0 -2 1 -11.5t0 -14.5t-3 -11t-9 -9.5t-17 -3.5h-115 q-18 -2 -31.5 8.5t-13.5 20.5q0 23 1 143.5t1 169.5q0 4 -9 10.5t-20 6.5h-409q-16 2 -20.5 29.5zM227 147q-2 -4 7.5 -8t15.5 -4q23 -4 130 -2t116 2q6 0 13 10.5t7 22.5q-2 111 6 399q0 36 -14 13z" />
35
+ <glyph unicode="5" horiz-adv-x="894" d="M88 -268q0 37 23.5 62.5t58.5 25.5q25 0 55 -13q109 -39 142 -38q78 0 138 74.5t60 179.5q0 76 -35.5 147.5t-101.5 134t-124 105.5t-136 92q-33 20 -4 57q152 213 282 354q16 18 37 17l226 -27q29 -4 40 -13t3 -34q-4 -18 -30 -57t-38 -51q-16 -16 -43 -17l-186 25 q-18 0 -25 -11l-78 -98q-18 -20 -16 -26q4 -2 16 -11q94 -61 187 -149q195 -184 194 -375q0 -211 -215 -352q-145 -96 -315 -96q-49 0 -82 24.5t-33 69.5z" />
36
+ <glyph unicode="6" horiz-adv-x="1030" d="M92 453q0 156 66.5 291t178.5 233t237.5 166.5t267.5 113.5q39 12 63.5 -7t-4.5 -60q-166 -76 -275.5 -156t-199.5 -203q-12 -16 16 -18q16 0 25 2q18 2 55 2q178 0 292 -114.5t114 -294.5q0 -186 -117 -311.5t-289 -125.5q-184 0 -307 137.5t-123 344.5zM293 408 q0 -170 60.5 -263.5t162.5 -93.5q80 0 135 55q80 80 80 269q0 176 -62 270t-173 94q-61 0 -140 -37q-63 -160 -63 -294z" />
37
+ <glyph unicode="7" horiz-adv-x="1001" d="M86 557l41 305q16 43 72 43q324 12 643 0q47 0 55 -14v-47q-305 -805 -485 -1176q-14 -37 -39 -35l-78 11q-16 2 -28.5 15t-2.5 34l455 1022q2 6 -6 14t-15 6q-70 0 -218 -1t-199 -3q-27 0 -39.5 -3t-26.5 -23.5t-27 -65.5l-24 -102q-6 -6 -25.5 -10.5t-37 3t-15.5 27.5z " />
38
+ <glyph unicode="8" horiz-adv-x="950" d="M131 291q0 102 55.5 171.5t155.5 135.5q29 16 10 31q-176 141 -176 327q0 133 91 217t235 84q135 0 224 -79.5t89 -206.5q0 -88 -42 -155.5t-136 -131.5q-14 -10 2 -27q119 -100 169 -178t50 -174q0 -143 -107.5 -238.5t-261.5 -95.5q-150 0 -254 90.5t-104 229.5z M297 295q0 -100 58.5 -168t148.5 -68q78 0 129 51.5t51 129.5q0 84 -48 149.5t-175 157.5q-23 18 -39 10q-125 -88 -125 -262zM324 1024q0 -135 221 -295q8 -6 30 6q37 25 50 49q45 68 45 166q0 106 -49 167t-129 61q-76 0 -122 -43t-46 -111z" />
39
+ <glyph unicode="9" horiz-adv-x="1001" d="M72 508q0 184 116.5 305t290.5 121q186 0 307 -142.5t121 -353.5q0 -170 -61.5 -309t-172 -233.5t-240.5 -155.5t-290 -100q-27 -6 -44 12t-15 41.5t22 32.5q367 135 496 342q18 29 10 38h-4q-88 -20 -137 -20q-168 0 -283.5 124t-115.5 298zM268 528q0 -176 63.5 -270 t172.5 -94q70 0 139 35q25 12 33 45q33 113 33 258q0 170 -61 261t-161 91q-84 0 -136 -54.5t-67.5 -121t-15.5 -150.5z" />
40
+ <glyph unicode=":" horiz-adv-x="526" d="M156 92q0 49 30.5 80t77.5 31t78 -31t31 -80t-31 -80.5t-78 -31.5q-45 0 -76.5 32.5t-31.5 79.5zM156 708.5q0 49.5 30.5 81t77.5 31.5t78 -31.5t31 -81t-31 -80t-78 -30.5t-77.5 30.5t-30.5 80z" />
41
+ <glyph unicode=";" horiz-adv-x="471" d="M129 78q0 49 34 82t83 33q63 0 104 -50.5t41 -126.5q0 -96 -60.5 -183t-156.5 -128q-27 -8 -40 28t11 48q129 82 129 176q0 16 -2 16q-8 0 -23.5 -3t-23.5 -3q-41 0 -68.5 33t-27.5 78zM131 704.5q0 49.5 32 81t79 31.5t79.5 -31.5t32.5 -81t-32.5 -81t-79.5 -31.5 t-79 31.5t-32 81z" />
42
+ <glyph unicode="&#x3c;" horiz-adv-x="1429" d="M143 670q-6 20 0 53q0 35 31 47q659 291 1049 447q41 14 54 -6.5t13 -67.5v-31q0 -35 -51 -57q-666 -281 -829 -346q-12 -4 -15.5 -12.5t11.5 -16.5q543 -231 849 -352q35 -14 35 -58v-43q0 -80 -78 -53q-358 133 -1040 447q-29 12 -29 49z" />
43
+ <glyph unicode="=" horiz-adv-x="1429" d="M139 434v64q0 25 11.5 36t27 10t29.5 -1q256 -4 1036 -4q20 0 35.5 -10.5t13.5 -36.5l-2 -58q-2 -31 -13 -42t-50 -11h-1022q-23 0 -35 3t-21.5 15.5t-9.5 34.5zM145 977q8 33 54 33q33 0 462 1t576 5q33 2 43 -17.5t10 -56.5q0 -4 1 -19.5t1 -23.5q0 -18 -3 -27.5 t-15 -13.5t-16 -4h-29h-1030q-29 -2 -38 10.5t-14 36.5z" />
44
+ <glyph unicode="&#x3e;" horiz-adv-x="1429" d="M141 270q0 43 35 58q461 184 850 352q10 4 9 14.5t-13 14.5q-285 123 -829 346q-4 2 -12.5 5t-10.5 4l-8 4t-7 5t-4.5 6t-4.5 9.5t-2 12.5t-1 15v35q0 45 16.5 62.5t49.5 3.5q543 -225 1038 -443q41 -16 41 -51q6 -33 2 -51q0 -23 -9 -34.5t-40 -25.5 q-242 -111 -1022 -438q-76 -33 -76 53q0 8 -1 22.5t-1 20.5z" />
45
+ <glyph unicode="?" horiz-adv-x="741" d="M86 1249q0 63 55.5 93t145.5 30q166 0 272.5 -111.5t106.5 -287.5q0 -203 -152 -309q-63 -43 -143 -74q-45 -16 -60.5 -32.5t-15.5 -41.5q0 -47 82 -147q6 -8 -1 -21.5t-16 -17.5q-16 -4 -38.5 2t-32.5 18q-106 133 -107 234q0 78 39 123t129 79q127 49 171 95.5t44 122 t-48 117.5t-138 42q-29 0 -79 -7t-75 -7q-139 0 -139 100zM193 88q0 53 36.5 87t89.5 34q55 0 91 -34t36 -87t-36.5 -88t-90 -35t-90 35t-36.5 88z" />
46
+ <glyph unicode="@" horiz-adv-x="1966" d="M233 565q0 360 245 611t591 251q283 0 464 -161.5t181 -427.5q0 -256 -151.5 -453t-354.5 -197q-152 0 -151 144q0 39 -4 37q-4 0 -11 -7q-152 -174 -284 -174q-76 0 -127 65.5t-51 158.5q0 119 53 250t149 229q139 145 273 145q86 0 133 -59q12 -14 14 -8q18 43 29.5 52 t50.5 13h82q33 0 33 -35q-6 -18 -123 -438q-10 -39 -22.5 -78t-16.5 -53t-7 -31.5t-5 -38.5q-4 -66 43 -65q41 0 95 32.5t97 84.5q156 188 156 419q0 221 -152.5 364.5t-386.5 143.5q-297 0 -505 -231t-208 -565q0 -287 190.5 -470.5t457.5 -183.5q225 0 394 113t265 330 q8 14 11 19t12.5 9.5t25.5 4.5q2 0 10.5 -1.5t10.5 -1.5q33 -6 20 -43q-84 -246 -288.5 -390t-464.5 -144q-328 0 -550.5 222t-222.5 558zM760 438q0 -45 23.5 -73.5t52.5 -28.5q96 0 208 151q115 152 115 357q0 49 -28.5 78.5t-67.5 29.5q-63 0 -123 -71 q-76 -90 -128 -222.5t-52 -220.5z" />
47
+ <glyph unicode="A" horiz-adv-x="1456" d="M29 68q6 25 28 24q74 0 96.5 14.5t51.5 81.5l33 82l376 1026l-12 50q-4 10 8.5 19t32.5 11h66q78 0 96 -26q104 -272 189 -497.5t129 -341.5t61 -159q37 -106 55 -157q25 -70 47.5 -89.5t85.5 -19.5h14q18 0 26 -24q4 -12 3 -24q0 -10 -3 -22q-7 -24 -28 -24 q-127 6 -279 6q-122 0 -259 -4q-35 0 -35 51q0 47 53 47q20 0 47 1t37 1q50 2 64 24q7 10 6 25q0 17 -8 39q-63 166 -138 369q-8 18 -43 18h-305q-23 2 -41 -26q-35 -100 -127 -348q-10 -31 -10 -62t43 -39q29 -5 58 -5q15 0 30 1q18 2 41 0q25 -4 25 -51 q-2 -16 -10.5 -30.5t-14.5 -14.5q-169 3 -278.5 3t-159.5 -3h-23q-31 6 -31 46q0 12 3 28zM549 722q0 -6 14 -15q62 2 119.5 2t110.5 -2q4 0 8 9q3 6 3 12q0 3 -1 5q-53 139 -111 334q-4 9 -8 9q-7 0 -16 -27z" />
48
+ <glyph unicode="B" horiz-adv-x="1343" d="M43 40q4 44 23 50q41 4 53 2q115 0 143.5 32t28.5 155v770q0 74 -5 111.5t-27.5 56t-45.5 21.5t-80 3h-47q-20 0 -19 45t19 47q156 18 592 19q127 0 183.5 -11.5t133.5 -46.5q86 -39 136.5 -111.5t50.5 -158.5q0 -76 -45 -142.5t-119 -105.5q-33 -17 4 -35 q111 -53 174.5 -138t63.5 -191q0 -143 -93.5 -258t-228.5 -142q-106 -21 -224 -21q-24 0 -48 1q-158 3 -307 3t-289 -3q-27 4 -27 38v10zM518 365q0 -106 10 -158q10 -55 55.5 -81t147.5 -26q125 0 205 86t80 213q0 82 -39 153t-109 110q-37 23 -81 33q-45 10 -69 12 q-12 1 -34 1q-20 0 -52 -1q-62 -2 -79 -2q-14 -2 -24.5 -18.5t-10.5 -31.5v-290zM518 827q0 -8 9.5 -15t18.5 -10t11 -3q16 0 57 -1h36h26q22 1 55 3t60.5 9t54.5 17q98 43 98 185q0 126 -82 196q-60 50 -152 60q-40 4 -78 5q-47 0 -87 -7q-27 -8 -27 -37v-402z" />
49
+ <glyph unicode="C" horiz-adv-x="1560" d="M109 649q0 315 211.5 514t545.5 199q150 0 334 -70q38 -14 61 -14q18 0 27 8q10 8 37 5t31 -13q19 -85 19 -155q0 -15 -1 -29v-123q-6 -27 -37.5 -34t-44.5 13q-106 311 -413 312q-240 0 -377 -153t-137 -417q0 -270 152.5 -446t389.5 -176q180 0 322 127 q39 35 58.5 62.5t58.5 94.5q6 14 30 20q24 4 42 -4q15 -7 15 -20q0 -3 -1 -6q-56 -178 -148 -332q-33 8 -51 8q-61 0 -154 -30q-88 -29 -235 -29q-324 0 -529.5 194.5t-205.5 493.5z" />
50
+ <glyph unicode="D" horiz-adv-x="1583" d="M30 1282q4 41 19 47q2 2 7 2t7 2q406 16 596 17q197 0 328 -34t242 -112q250 -180 250 -495q0 -231 -141.5 -420t-364.5 -252q-154 -43 -402 -43l-483 -2q-47 0 -55 26q-6 19 -6 34q0 32 30 42q14 2 46 4t49.5 5t37 18.5t29.5 42.5q8 25 8 117v768q0 133 -20.5 162.5 t-136.5 29.5h-19q-22 0 -22 32q1 4 1 9zM453 217q0 -72 26.5 -98.5t116.5 -26.5q297 0 467 140.5t170 443.5q0 147 -52.5 271t-146.5 196q-68 51 -135.5 74.5t-183.5 35.5q-65 6 -136 6q-43 0 -87 -2q-14 -2 -26.5 -14t-12.5 -26v-1000z" />
51
+ <glyph unicode="E" horiz-adv-x="1267" d="M48 47q5 45 32 49q14 2 86 2q82 2 109.5 35t27.5 148v766q0 113 -25.5 151.5t-119.5 38.5q-51 0 -66 25q-10 20 8 53q8 16 45 16q328 2 551.5 2t343.5 -2q45 0 50 -31q8 -66 11 -119t4 -97t3 -60q-2 -14 -25.5 -18.5t-40.5 2.5q-23 4 -22 30q-20 121 -52 148.5t-151 30.5 q-109 4 -179 4q-46 0 -75 -2q-10 0 -23.5 -11.5t-13.5 -25.5v-404q0 -31 37 -30h211q115 0 137.5 17t36.5 122q4 10 21.5 15t37 -3t23.5 -33q2 -47 2 -113.5t-1 -143.5t-1 -103.5t-20.5 -35.5t-41 -2t-22.5 19q-16 100 -39.5 119t-138.5 21h-199q-23 0 -33 -13.5t-10 -27.5 v-318q0 -115 17.5 -133t132.5 -18h145q111 0 145.5 8t59.5 37q45 51 72 157q6 27 28 31q8 1 15 1q36 0 45 -17q4 -6 4 -21.5t-3 -45t-7 -58.5t-11.5 -80t-11.5 -94q-4 -39 -90 -39q-226 2 -428 2q-303 0 -553 -4l-10 2q-29 5 -29 40q0 5 1 11z" />
52
+ <glyph unicode="F" horiz-adv-x="1112" d="M84 37q0 43 22 47q84 4 110 28.5t26 98.5v905q0 76 -28 98.5t-108 26.5q-14 2 -19 25.5t3 45.5q7 20 24 19h3q216 2 431.5 2t430.5 -2q16 0 30.5 -15.5t12.5 -31.5l-6 -225q-18 -11 -41 -11q-12 0 -25 3q-16 6 -16 28q-6 86 -43 109.5t-166 23.5h-231q-23 0 -31 -32 l-2 -383q0 -6 12 -15.5t19 -9.5q30 -2 89.5 -2t149.5 2q109 0 135.5 14.5t32.5 81.5q2 27 40 30t40 -21v-365q-4 -18 -39 -20.5t-39 22.5q-9 94 -37 116q-26 21 -123 21h-18q-56 -2 -111 -2t-110 2q-16 -2 -27.5 -15t-11.5 -26v-399q0 -76 26.5 -99.5t110.5 -23.5h23 q23 -4 22 -51q0 -17 -8 -31q-7 -12 -16 -12h-3q-167 2 -292.5 2t-210.5 -2q-31 0 -31 43z" />
53
+ <glyph unicode="G" horiz-adv-x="1562" d="M113 643q0 152 63.5 291t173.5 242q106 100 222 145t276 45q131 0 336 -61q35 -10 59 -11q18 0 33 15q6 10 28.5 10t26.5 -10q8 -14 10 -147q1 -45 1 -83q0 -77 -3 -129q-2 -31 -42 -30.5t-44 24.5q-66 328 -374 328q-246 0 -383.5 -165t-137.5 -454q0 -266 136.5 -430 t361.5 -164q117 0 256 62q18 8 18 57v205q0 74 -28.5 96.5t-116.5 26.5l-78 2q-14 0 -24.5 21.5t-4 45t28.5 25.5q101 -3 240 -3t317 3q20 0 28 -16q4 -10 4 -20q0 -5 -1 -11q-2 -14 -12.5 -27.5t-18.5 -13.5q-68 -4 -91 -29.5t-25 -99.5q-2 -55 -2 -112t2 -117 q0 -53 -25 -64q-104 -55 -254.5 -92t-277.5 -37q-297 0 -487.5 193.5t-190.5 488.5z" />
54
+ <glyph unicode="H" horiz-adv-x="1613" d="M53 14q-5 18 -5 32q0 17 7 30q4 10 13.5 14t15.5 5t21.5 0t19.5 -1q68 4 90.5 26.5t22.5 90.5v905q0 72 -24 97.5t-89 29.5q-23 2 -29 17q-6 20 -1 46.5t20 24.5q129 -6 250 -6t235 6q12 0 29 -10q14 -16 6 -55q-4 -16 -35 -21q-84 0 -113.5 -29.5t-29.5 -99.5v-348 q0 -39 35 -39l299 -2q100 -1 169 -1q137 0 146 3q12 0 30.5 12.5t18.5 30.5q1 4 1 80v93q-1 167 -1 171q0 70 -36 96.5t-107 30.5l-43 2q-18 2 -24.5 25.5t1.5 42.5q12 24 44 24h3q21 1 51 1q76 0 209.5 -4t201.5 -4q27 0 44 1h3q32 0 39 -41q7 -43 -25 -49q-6 -2 -19 -2 q-59 -6 -90 -29.5t-33 -93.5v-905q0 -63 32 -89t112 -26q43 0 55 -22q4 -9 4 -21q0 -13 -5 -29q-9 -30 -34 -30h-573q-31 0 -37 26q-8 23 1 48.5t34 25.5h49q80 0 111.5 23.5t31.5 93.5v375q-2 10 -18.5 18t-28.5 8h-190.5h-230.5h-200q-2 0 -9 -4t-14 -13t-7 -22v-362 q0 -74 25.5 -96.5t107.5 -22.5h18q20 2 31.5 -20.5t4.5 -48t-34 -29.5h-514q-35 0 -43 20z" />
55
+ <glyph unicode="I" horiz-adv-x="743" d="M106 35q0 35 5 41q8 10 45 14q66 8 85 30.5t21 90.5l2 70v766l-2 69q-2 76 -19.5 97.5t-90.5 29.5q-16 0 -25 4q-14 10 -15 34t7 36q10 16 37 16q173 -2 285.5 -2t164.5 2q41 0 43 -33q4 -25 -6 -40q-6 -17 -41 -17q-84 -2 -104.5 -31.5t-20.5 -164.5v-836q0 -43 6 -67.5 t30 -35t39 -12.5t66 -4q20 0 31 -20q6 -14 6 -31q0 -11 -2 -21q-6 -28 -26 -28q-122 4 -243.5 4t-242.5 -4q-14 0 -24.5 12t-10.5 31z" />
56
+ <glyph unicode="J" horiz-adv-x="663" d="M-184 -455q0 43 28.5 75t69.5 32q16 0 30.5 -7t37 -26.5t24.5 -21.5l19 -15q20 -16 30 -22q16 -7 33 -7t34 6q36 13 56 44q31 45 40 123.5t9 291.5v973q0 82 -2 125q-2 76 -29.5 99.5t-111.5 23.5q-4 0 -13.5 3t-11.5 3q-18 0 -26 23.5t1 43.5q8 19 30 19h4q27 0 45 -2 q25 0 183 2q78 1 149 1t135 -1q34 0 34 -42q0 -38 -18 -42l-64 -8q-90 -6 -90 -123v-964q0 -141 -33.5 -300t-99.5 -260q-119 -184 -289 -184q-88 0 -146 38t-58 99z" />
57
+ <glyph unicode="K" horiz-adv-x="1515" d="M41 50q4 32 33 42q16 4 43 0q143 0 143 119v905q0 76 -28.5 101.5t-114.5 25.5h-41q-20 2 -28.5 29.5t1.5 42.5q6 20 39 20q205 -5 353 -5q111 0 190 3q39 0 39 -43q0 -47 -47 -47q-88 0 -116 -24.5t-28 -102.5v-409q0 -8 6.5 -13.5t12.5 -3.5q33 10 69 45 q92 80 209 237.5t117 233.5q0 12 -4 17.5t-24.5 10.5t-65.5 9q-6 0 -12.5 1t-20.5 3q-19 14 -19 37q0 14 7 31q6 23 34 16q146 -4 272 -4t234 4q27 2 35 -24.5t-4 -44.5q-10 -16 -33 -13q-100 -2 -159.5 -27.5t-106.5 -91.5q-12 -16 -32.5 -47.5t-26.5 -42.5 q-86 -133 -228 -309q-12 -16 -22 -26q35 -18 102 -87q59 -55 114.5 -119.5t130.5 -159.5t103 -130q61 -76 108.5 -96.5t143.5 -20.5q29 0 37 -18q9 -13 9 -31q1 -7 -1 -15q-4 -28 -34 -34q-37 3 -149 3q-149 0 -431 -5q-27 4 -35 18q-12 27 -2 56q6 18 41 18q53 2 74.5 19.5 t18.5 34t-15 30.5q-16 20 -64.5 82.5t-73 92.5t-66.5 77t-82 83t-83 66q-27 20 -63 29q-8 0 -13.5 -9t-6.5 -19.5t-1 -24.5v-334q0 -68 30 -94.5t114 -26.5q37 0 49 -20q4 -10 4 -32t-4 -32q-8 -14 -39 -14q-125 5 -259 5t-276 -5q-39 0 -47 12q-11 11 -11 33q0 6 1 13z" />
58
+ <glyph unicode="L" horiz-adv-x="1218" d="M45 59q4 27 21 33q4 2 15 3t15 1q135 0 150 72q4 45 4 121v827q0 76 -28.5 100.5t-115.5 24.5h-24q-18 2 -24.5 32t5.5 44q10 23 41 16q84 -2 193 -2q163 0 379 4q33 0 39 -26q8 -23 0 -46.5t-35 -25.5q-41 -4 -66 -4q-94 -4 -120.5 -20.5t-26.5 -75.5v-922 q0 -55 30.5 -76.5t92.5 -21.5h170q115 0 158 19.5t112 111.5l74 94q35 16 55 0q16 -9 16 -22q0 -7 -4 -15q-96 -223 -127 -270q-23 -43 -71 -43q-348 6 -583 6q-188 0 -302 -4q-33 -4 -41 26q-4 7 -4 20q0 8 2 19z" />
59
+ <glyph unicode="M" horiz-adv-x="1929" d="M55 18q-5 12 -5 24t6 24q10 22 36 20q12 -1 22 -1q56 1 82 19q30 22 40 84q2 41 6 93q6 94 21.5 277t23.5 328.5t8 276.5q0 41 -18.5 54.5t-83.5 19.5q-27 2 -37 18q-8 25 -2 48q5 31 29 31q3 0 7 -1q74 -4 160 -4q58 0 121 2q47 0 59 -26l420 -955q4 -10 12.5 -13 t18.5 11l414 952q18 31 61 31q68 -2 137.5 -2t139.5 2q25 2 34 -26.5t-2 -47.5q-6 -16 -22 -16q-10 0 -30.5 -2t-30 -3t-25 -5t-21.5 -11.5t-11 -20.5t-5 -32q0 -23 4 -84l55 -798q8 -133 34 -165t110 -32q41 0 47 -31q2 0 2 -18l-2 -19q-6 -27 -41 -26q-74 5 -229 5 q-117 0 -279 -3q-39 0 -45 22q-4 12 0 43q2 8 15.5 17.5t29.5 9.5q102 0 127 38q17 26 17 88q0 27 -3 60v10.5t-1 14.5t-2 27.5t-2 48t-4 82t-7 121t-11.5 173t-15.5 232.5q0 25 -14 27q-4 2 -6 -6l-432 -1000q-6 -16 -42 -16t-44 16l-441 993q-6 12 -10 15.5t-8 -2 t-4 -19.5l-43 -700q-4 -82 -4 -101q0 -53 25.5 -75.5t105.5 -28.5q33 0 41 -27q8 -31 -4 -51q-4 -4 -37 -14q-117 5 -232 5q-86 0 -172 -3q-4 0 -13 2t-13 3t-9.5 5t-7.5 12z" />
60
+ <glyph unicode="N" horiz-adv-x="1708" d="M74 63q10 27 43 27q141 0 141 107v1011q-49 31 -158 35q-18 0 -18 47q0 39 43 43q37 3 96 3q31 0 65 -1q106 -2 128 -2q33 0 57 -28l819 -934q6 -12 17 16q4 8 4 16v646q0 86 -3 116.5t-20 42.5q-16 16 -49 23q-16 2 -54 4t-57 4q-18 0 -26 24.5t-1 47t27 22.5 q63 -3 163 -3q134 0 335 5q23 0 23 -51v-9q0 -18 -7 -24q-9 -8 -32 -8q-113 -4 -134.5 -25.5t-21.5 -134.5v-1065q0 -37 -50 -41q-9 -1 -16 -1q-36 0 -47 16q-152 172 -444.5 508t-454.5 520q-12 12 -21 18t-15 -4v-743q0 -100 10 -133q18 -53 86 -60q2 0 33.5 1t52 -4 t26.5 -17q12 -23 3 -53.5t-37 -30.5q-140 3 -247 3q-143 0 -227 -5q-20 0 -30 24q-7 11 -7 24q0 11 5 23z" />
61
+ <glyph unicode="O" horiz-adv-x="1693" d="M102 639q0 313 211 520t537 207q317 0 524 -190.5t207 -481.5q0 -311 -210 -522t-525 -211q-317 0 -530.5 194.5t-213.5 483.5zM350 692q0 -272 149.5 -451.5t381.5 -179.5q240 0 346 159t106 413q0 281 -148 458t-392 177q-201 0 -322 -159t-121 -417z" />
62
+ <glyph unicode="P" horiz-adv-x="1181" d="M51 1286q0 41 27 45q160 18 461 19q166 0 270 -27q133 -35 214 -133t81 -227q0 -195 -137.5 -307.5t-376.5 -112.5q-43 0 -86 6q-10 2 -14.5 -3t-6.5 -28v-307q1 -63 23 -90q22 -26 58 -26h3q39 1 90 3q35 4 53.5 -10t16.5 -51q-2 -21 -12 -35q-9 -13 -21 -12h-4 q-147 6 -302 6q-124 0 -253 -4q-35 0 -45 14l-2 4q-8 16 -6 31q2 55 70 55q72 0 90 11.5t18 60.5v930q0 96 -14.5 123.5t-67.5 27.5l-100 -2q-8 0 -16.5 12.5t-10.5 26.5zM483 680q0 -37 31 -45q31 -6 64 -6q145 0 216.5 89t71.5 249q0 194 -131 262q-66 36 -160 36 q-28 0 -59 -3q-33 -4 -33 -41v-541z" />
63
+ <glyph unicode="Q" horiz-adv-x="1683" d="M88 641q0 311 214 518t542 207q319 0 519 -190.5t200 -483.5q0 -231 -132.5 -416.5t-349.5 -267.5q-10 -4 -11 -12t11 -12q98 -47 244 -172q92 -80 156.5 -109t158.5 -33q16 -4 16 -18q0 -15 -18 -41q-20 -29 -41 -35q-59 -12 -104 -12q-219 0 -485 225q-31 27 -62 53.5 t-49 42t-31 25.5q-33 25 -98 49q-305 27 -492.5 216.5t-187.5 465.5zM336 690q0 -274 151.5 -456.5t384.5 -182.5q139 0 243 91t150 219t46 270q0 287 -141.5 462t-381.5 175q-205 0 -328.5 -159t-123.5 -419z" />
64
+ <glyph unicode="R" horiz-adv-x="1425" d="M38 22q-2 10 -2 20q0 15 5 26q8 22 67 22h5q84 0 110.5 25.5t26.5 95.5v70v768q0 145 -21.5 169.5t-156.5 26.5q-29 0 -28 38t26 50q164 16 501 17q102 0 193.5 -18.5t174.5 -60.5t132 -122t49 -188.5t-54 -202.5t-144 -146q-18 -10 2 -41q57 -90 108 -168l113 -170 q35 -51 55.5 -72.5t69.5 -58.5q45 -35 106 -47q22 -18 22 -39q0 -15 -12 -32q-22 -15 -79 -15q-203 0 -310 127q-74 84 -174 244q-14 23 -28.5 49.5t-30.5 59t-27 51.5q-23 43 -39 41q-78 -6 -156 -6h-38q-10 2 -19.5 -13.5t-9.5 -21.5q0 -184 2 -289q4 -72 31 -94.5 t108 -22.5q11 1 20 1q50 0 58 -27q8 -20 4 -50q-6 -25 -41 -24q-39 0 -165.5 2t-228 2t-167.5 -6l-33 2q-20 2 -25 28zM475 659q0 -12 10.5 -22t14.5 -10q48 -3 84 -3q64 0 94 9q94 33 146.5 119t52.5 194q0 156 -72 238t-254 82q-76 0 -76 -37v-570z" />
65
+ <glyph unicode="S" horiz-adv-x="1050" d="M115 335q0 10 14 16q16 7 36.5 6t27.5 -9q31 -92 62.5 -141t84.5 -86q78 -55 160 -55q109 0 172 60t63 155q0 35 -9 65.5t-30.5 60t-38 50t-53.5 49.5t-53 40t-60.5 39.5t-52.5 35.5q-70 47 -116 82.5t-97 89t-77.5 116t-26.5 131.5q0 143 103.5 234.5t264.5 91.5 q70 0 170 -35q55 -18 70 -18q6 0 27 18q20 6 47 2q10 2 14 -5t6 -19q31 -242 33 -262q-2 -23 -19.5 -29t-35 0t-19.5 14q-96 238 -274 238q-88 0 -135 -46t-47 -124q0 -43 20.5 -85t67.5 -84t71.5 -60.5t81.5 -57.5q14 -10 21 -14q70 -47 99.5 -68.5t90 -74t89 -91.5t53 -99 t24.5 -124q0 -166 -119 -273.5t-307 -107.5q-66 0 -211 43q-47 14 -55 14q-10 0 -23 -20q-27 -12 -53 -4q-14 2 -18 22q-43 239 -43 319z" />
66
+ <glyph unicode="T" horiz-adv-x="1394" d="M102 1360q18 18 43 18h5q28 -2 34 -18q12 -29 103 -29q215 4 422 4t405 -4q70 0 84 4t23 25q4 8 25.5 12t37.5 0q18 -4 21 -29l30 -335q2 -16 -9.5 -24.5t-27.5 -8.5q-25 0 -35 8t-14 31q-25 123 -51.5 158.5t-75.5 35.5h-270q-37 0 -37 -61v-866v-70q0 -59 26.5 -86 t112.5 -27h58q27 0 37 -28.5t2 -53.5q-8 -23 -43 -22q-100 4 -233 4q-166 0 -382 -6q-31 0 -35 22q-12 27 0 56q10 18 33 22h78q27 0 43 3t35.5 13.5t30 36t10.5 66.5v70v872q0 55 -45 55h-217h-41q-53 0 -80 -40t-53 -179q-24 -14 -54 -8q-29 6 -28 26q0 99 32 353z" />
67
+ <glyph unicode="U" horiz-adv-x="1669" d="M55 1260q-9 15 -9 28q0 15 11 29q12 14 37 14h514q29 0 37 -16q10 -20 4 -47t-22 -25h-19q-86 0 -112.5 -24.5t-30.5 -102.5q0 -14 -1 -43t-1 -45v-393q0 -117 18.5 -206t62.5 -161.5t126 -111.5t200 -39q289 0 377 231q31 84 31 275v364q0 166 -29.5 209t-142.5 47 q-25 6 -29 19q-14 29 0 53q8 16 27 16q110 2 233 2t258 -2q12 0 20.5 -12t8.5 -29q0 -41 -29 -43q-113 -4 -144.5 -48t-31.5 -204v-370q0 -98 -3 -150.5t-18.5 -124t-52 -127t-98.5 -110.5q-92 -82 -185 -117t-239 -35q-401 0 -540 309q-31 68 -39 126.5t-8 207.5v526 q0 72 -21.5 91.5t-116.5 21.5q-33 0 -43 17z" />
68
+ <glyph unicode="V" horiz-adv-x="1558" d="M49 1260q-3 12 -3 22q0 14 5 25q6 24 42 24h3q137 -4 270.5 -4t262.5 4q45 0 53 -10q18 -25 6 -57q-4 -14 -33 -27q-88 -4 -127 -12q-25 -6 -37 -19.5t-8 -38t8.5 -39t18.5 -47.5l301 -749q6 -12 20.5 -18.5t22.5 8.5l281 741q14 37 18 52t9 48t-9 50.5t-45 25.5 q-33 6 -94 6q-27 0 -37 19q-16 31 2 55q10 13 30 13q5 0 11 -1q56 -4 172 -4t291 4q25 1 33 -19q4 -9 4 -19q0 -11 -6 -23q-10 -22 -25 -21q-82 -2 -121 -40t-90 -165l-406 -1048q-18 -41 -47 -45q-17 -3 -34 -3q-23 0 -46 5q-25 4 -38 39l-433 1083q-43 106 -80.5 133 t-109.5 29q-27 6 -35 23z" />
69
+ <glyph unicode="W" horiz-adv-x="2224" d="M39 1311q10 20 37 20q315 0 502 2q31 0 36 -18q8 -29 -4 -55q-4 -14 -30 -15q-41 0 -61.5 -7t-23.5 -14t-3 -24q0 -33 36 -123l318 -794q2 -4 8 -3t14.5 9t14.5 22l161 398q4 10 6.5 32.5t-1.5 32.5l-144 336q-39 92 -68.5 112.5t-140.5 24.5q-18 6 -20 46t24 40 q134 4 342 4t490 -4q25 0 39 -8q25 -16 10 -57q-6 -16 -11 -19.5t-24 -3.5q-94 -2 -127 -25.5t-67 -111.5l-103 -246q-8 -20 0 -47l228 -539q2 -6 8 -6t13 5.5t9 15.5l308 803q31 82 31 115q0 11 -4 16q-14 22 -111 26q-20 2 -24.5 23.5t6.5 41t28 17.5q63 -3 147 -3 q113 0 264 5q29 0 33 -43q0 -43 -35 -43q-86 0 -121.5 -29.5t-78.5 -144.5l-410 -1069q-10 -33 -35 -39q-26 -4 -49 -4q-29 0 -53 6q-16 4 -20.5 8.5t-12.5 26.5l-221 526q-8 20 -31 -8q-6 -6 -8 -14l-205 -502q-18 -39 -45 -43q-20 -4 -42 -4l-60 8q-25 8 -37 45l-406 1032 q-23 55 -32 80t-26 51.5t-24.5 34t-35 15.5t-45 8t-64.5 2q-25 0 -35 6q-20 12 -20 37q0 15 6 33zM1087 1202q16 -41 27 -61q4 -8 16.5 -39t28.5 -68q4 -6 9.5 -6t7.5 4l4 4q49 117 67 166q2 8 2 15q0 28 -39 28h-84q-27 0 -37 -8q-6 -4 -6 -15q0 -8 4 -20z" />
70
+ <glyph unicode="X" horiz-adv-x="1607" d="M55 41q0 45 31 45q82 6 129 26.5t90 75.5q55 72 113.5 148t131.5 167t116 146q8 8 8 17.5t-4 19.5t-4 12l-283 361q-96 123 -133 146.5t-154 25.5q-8 0 -23.5 9t-17.5 22q-2 7 -2 15q1 13 7 31q10 26 40 25q133 -6 265 -6q153 0 303 8q35 0 45 -22q4 -6 2 -29.5 t-10 -30.5q-20 -8 -35 -8q-16 0 -37 -1t-32 -2t-19 -1q-18 -2 -22.5 -14.5t4.5 -31.5t20.5 -36.5t25.5 -36.5l197 -262q12 -20 24 -4q186 242 236 313q17 25 17 42q0 30 -56 30q-63 0 -74 8q-12 12 -12 37t10.5 35t30.5 10q432 0 473 2q23 -2 31 -24.5t-1 -43t-30 -20.5 q-115 -6 -189.5 -64.5t-166.5 -181.5l-185 -243q-6 -10 -7 -17.5t0 -10.5t8.5 -11t11.5 -15l338 -440q10 -12 35.5 -47t31.5 -41t26.5 -27.5t32 -26.5t36 -16.5t51 -15.5t65.5 -8q29 -4 29 -45q0 -39 -31 -39q-84 2 -281.5 2t-267.5 -4q-4 -1 -7 -1q-18 0 -28 17 q-8 18 -1.5 45t24.5 27h20q39 0 57.5 6t20.5 11t0 16q0 25 -55 100l-248 338q-18 4 -43 -29l-260 -327q-43 -53 -43 -76q0 -41 109 -41h18q20 0 30.5 -21.5t2.5 -43t-29 -21.5q-217 4 -345 4q-86 0 -132 -2q-12 0 -20.5 14.5t-8.5 30.5z" />
71
+ <glyph unicode="Y" horiz-adv-x="1490" d="M33 1266q-2 7 -2 15t2 17q4 33 32 33h3q194 -3 329 -3t211 3q16 0 27.5 -22.5t4.5 -44t-38 -21.5q-106 0 -106 -29q0 -35 53 -116l262 -402q6 -8 21.5 -4t23.5 17l215 364q57 98 57 129q0 14 -4 22.5t-26.5 14.5t-67.5 6h-22q-23 8 -21 48q2 38 36 38h3q86 -3 196 -3 t244 3q29 0 29 -41q0 -45 -29 -45q-25 -2 -46 -6t-40.5 -13t-34 -17.5t-31 -25l-25.5 -25.5t-23.5 -32.5t-20.5 -33t-21.5 -37t-21.5 -35.5l-297 -502v-106.5v-124v-76.5q0 -66 33 -88.5t96 -26.5q53 0 62 -4q14 -8 14 -55q0 -45 -35 -45q-236 4 -388 4q-101 0 -165 -2 q-33 0 -43 22q-12 23 -2 52q8 23 21 26q10 6 24.5 7t35 -1t26.5 -2q51 2 71.5 30t24.5 83q5 84 5 164q0 61 -3 119l-367 573q-74 113 -115.5 143.5t-127.5 32.5q-33 0 -39 23z" />
72
+ <glyph unicode="Z" horiz-adv-x="1443" d="M74 43q0 18 12 35l834 1100q4 6 5 14t-1 14t-6 6h-414q-147 0 -185.5 -30.5t-56.5 -173.5q-2 -10 -19.5 -15.5t-38 -0.5t-28.5 24q0 201 10 287q8 23 56 28h956q36 1 54 -19q8 -9 8 -23q0 -16 -11 -38l-843 -1104q-23 -23 26 -26q14 -2 33 -2h471q158 0 208 60.5 t66 221.5q14 18 54.5 19.5t40.5 -19.5q-6 -174 -29 -372q-2 -16 -27.5 -24.5t-44.5 -8.5q-61 0 -287.5 -1t-351.5 -1q-98 0 -201.5 1t-169 1h-69.5q-21 0 -37 11q-15 10 -14 31v5z" />
73
+ <glyph unicode="[" horiz-adv-x="690" d="M213 -418q-12 887 0 1768q0 33 11.5 47t39.5 16h248h10q35 0 35 -24v-31q0 -27 -25 -29q-100 0 -126 -16q-16 -10 -19 -51q-4 -823 0 -1584q2 -37 15.5 -45t76.5 -14l47 -4q31 0 31 -33v-22q0 -29 -47 -29q-80 -6 -242 0q-55 4 -55 51z" />
74
+ <glyph unicode="\" horiz-adv-x="980" d="M84 1333q-12 25 11.5 36t56.5 11h41h8q18 0 24 -1t13.5 -9t17.5 -27l635 -1310q32 -56 -25 -62l-82 -10q-25 -2 -35 6t-20 33z" />
75
+ <glyph unicode="]" horiz-adv-x="702" d="M66 -418q0 29 26.5 36t58 1t58.5 7.5t27 54.5q4 762 0 1585q-2 35 -12.5 44t-41.5 13q-16 2 -47 4t-45 4q-25 0 -24 27v31q0 25 32 24h13q20 0 74.5 1t99.5 1t73 -2q31 -2 41.5 -16.5t10.5 -46.5q14 -1008 0 -1768q-1 -47 -56 -51q-162 -6 -241 0q-47 0 -47 29v22z" />
76
+ <glyph unicode="^" horiz-adv-x="1005" d="M59 752q225 403 420 704h58q225 -367 419 -713q31 -51 -28 -55l-39 -4q-27 -2 -39 6t-27 33q-147 262 -291 489q-6 12 -23 17.5t-20 -0.5q-100 -154 -305 -514q-20 -31 -63 -31q-51 6 -55 8q-37 12 -7 60z" />
77
+ <glyph unicode="_" horiz-adv-x="1071" d="M-20 -389q0 25 51 24q102 0 317 2.5t382 1.5t317 -6q51 0 51 -28v-51q0 -25 -29 -29h-45h-956q-88 0 -88 39v47z" />
78
+ <glyph unicode="`" horiz-adv-x="712" d="M145 1290q-14 16 0.5 36t34.5 20l148 2q33 0 47 -21q49 -131 94 -317q2 -27 -24 -33t-42 10q-156 195 -258 303z" />
79
+ <glyph unicode="a" horiz-adv-x="847" d="M51 166q0 158 219 215q61 16 185 72q16 16 16 26l-2 129q-2 168 -123 168q-31 0 -66.5 -25.5t-35.5 -52.5q0 -33 8 -51q-12 -14 -62.5 -38.5t-66.5 -28.5q-29 -10 -44.5 -2t-15.5 43q0 74 130 178q106 84 194 84q66 0 130.5 -33t100.5 -86q25 -35 30 -65.5t5 -127.5v-362 q0 -41 5.5 -61.5t11.5 -23.5t16 -3q39 0 78 35q14 8 24 8q20 -4 26 -28q3 -9 3 -17q0 -13 -6 -23q-137 -121 -219 -121q-86 0 -111 95q-2 12 -16 2q-70 -55 -112 -76t-97 -21q-90 0 -147.5 53.5t-57.5 137.5zM225 193q0 -41 29 -70t72 -29q29 0 80 34t63 62v138q0 14 -5 24 q-4 8 -9 8h-2q-53 -27 -125 -57q-102 -41 -103 -110z" />
80
+ <glyph unicode="b" horiz-adv-x="1005" d="M16 1362q0 31 23 37l244 84q11 4 20 4q31 0 31 -49v-641q2 -45 18 -35q4 4 21.5 15t23.5 16.5t23.5 16.5t26 16t24.5 15.5t27.5 14.5t26 11t26.5 10.5t25.5 5.5t25.5 2q139 0 236.5 -123t97.5 -291q0 -213 -132 -357.5t-337 -144.5q-104 0 -279 39q-25 8 -28 47 q3 250 3 537.5t-3 613.5q0 59 -2 74q0 20 -35 27q-14 4 -43 9t-41 7q-23 8 -23 39zM334 449q0 -184 14 -241.5t60.5 -92.5t111.5 -35q104 0 170 89t66 239q0 152 -66 242.5t-166 90.5q-61 0 -176 -84q-12 -10 -12 -57q0 -16 -1 -68.5t-1 -82.5z" />
81
+ <glyph unicode="c" horiz-adv-x="884" d="M61 395q0 205 143.5 347.5t348.5 142.5q100 0 174 -38t74 -102q0 -35 -23.5 -59t-58.5 -24q-57 0 -131 71q-53 53 -107 53q-92 0 -162.5 -101t-70.5 -243q0 -150 72.5 -241.5t185.5 -91.5q139 0 225 124q16 37 47 29q23 -8 27 -33q2 -6 2 -11q0 -14 -10 -28 q-133 -215 -361 -215q-162 0 -268.5 120t-106.5 300z" />
82
+ <glyph unicode="d" horiz-adv-x="1050" d="M45 395q0 207 133 348.5t330 141.5q68 0 154 -27q4 0 8 -1t6 4t4 7t3 9.5t1 9.5t1 9t1 9v121v176v92q-6 23 -10 25q-10 6 -31.5 9t-47.5 4t-34 3q-23 2 -26 37q-4 37 28 43q145 47 252 88q10 4 18 4q12 0 19 -9q12 -15 12 -42v-1208q0 -72 7.5 -87.5t35.5 -15.5 q23 0 60 19q18 6 30.5 2t20.5 -27q4 -16 4 -28q0 -23 -16 -31q-119 -57 -265 -100q-35 -10 -48 16.5t-11 56.5q0 14 -2 23.5t-6 11.5t-8 0q-170 -119 -275 -119q-145 0 -246.5 125t-101.5 301zM231 459q0 -154 68 -250t168 -96q84 0 203 82q10 0 14 36v404q-98 143 -219 143 q-104 0 -169 -87t-65 -232z" />
83
+ <glyph unicode="e" horiz-adv-x="884" d="M53 414q0 199 120 332t300 133q211 0 297 -183q31 -66 55 -96q6 -18 6 -32q0 -35 -40 -36q-75 -3 -206 -3t-317 3q-39 0 -39 -67q0 -152 81 -249t204 -97q133 0 238 125q16 20 41 12q16 -4 25 -23.5t1 -33.5q-197 -229 -385 -230q-164 0 -272.5 129t-108.5 316zM256 636 q0 -6 5 -10q7 -5 15.5 -6.5t14.5 -1.5h276q11 0 23 4q10 3 10 9v2q-43 162 -170 162q-174 0 -174 -159z" />
84
+ <glyph unicode="f" horiz-adv-x="657" d="M41 771q2 24 10 30q76 16 127 45q16 8 17 37q2 12 3 35.5t1 35.5q6 125 35.5 204t109.5 165q147 166 322 166q57 0 125.5 -25.5t99.5 -70.5q8 -10 8 -29q0 -16 -41 -90q-14 -25 -32.5 -28t-32 4t-33.5 24q-94 76 -185 76q-57 0 -103 -34t-66 -91q-27 -79 -27 -183v-14 l2 -131q0 -37 22 -37h140q12 0 19 -2t9 -4t5.5 -8t3.5 -8l16 -99q-6 -27 -35 -26l-166 2q-14 0 -14 -37v-410q0 -129 16 -151q23 -27 107 -27h67q29 -2 37 -53q0 -16 -10 -29.5t-20 -13.5q-152 5 -277 5t-225 -5q-27 0 -27 43q0 20 4 26q10 20 47 21q63 0 79 34t16 158v400 q0 39 -15 43h-104q-27 0 -33 14q-3 9 -3 23q0 7 1 15z" />
85
+ <glyph unicode="g" horiz-adv-x="989" d="M53 -279q0 59 29 106.5t57.5 69t89.5 60.5q18 16 -4 20q-135 55 -135 156q0 20 17.5 41t31 28t45.5 25q39 20 58 33q20 15 6 25q-143 86 -144 247q0 147 101.5 247t247.5 100q137 0 217 -84h12q8 0 178 20q27 4 38 -2t13 -35q7 -60 7 -94v-8q-4 -35 -31 -35 q-25 0 -111 12q-18 0 -18 -10q0 -2 2 -6q12 -39 12 -88q0 -139 -99.5 -228.5t-248.5 -89.5q-33 0 -78 11q-10 -14 -53 -47q-14 -14 -20.5 -21.5t-12.5 -18t2 -18.5t29 -14q51 -14 205 -17q225 -4 319 -47q113 -51 113 -196q0 -160 -160 -267.5t-381 -107.5 q-115 0 -224.5 65.5t-109.5 167.5zM225 -225q-2 -70 79 -116t194 -46q96 0 191 63.5t95 130.5q0 63 -44 94.5t-167 39.5q-8 0 -225 6q-6 -8 -16 -17.5t-21.5 -20.5t-17.5 -18q-68 -74 -68 -116zM276 575q0 -117 49.5 -184t120.5 -67q68 0 112 56t44 157q0 113 -50 183.5 t-122 70.5q-66 0 -110 -60.5t-44 -155.5z" />
86
+ <glyph unicode="h" horiz-adv-x="1110" d="M49 74q6 8 49 14q61 4 76.5 35t15.5 153v924l-2 76q0 37 -41 41q-14 2 -40.5 5t-38.5 5q-20 4 -22.5 36t20.5 42q106 45 258 88q7 2 13 2q15 -1 25 -11q15 -14 15 -48v-598v-13.5t3 -17.5t8 -13t13 1q137 88 265 88q178 0 225 -150q27 -84 27 -227.5t-9 -233.5 q-4 -86 -4 -133q0 -31 18.5 -40t96.5 -9q12 0 20.5 -2t12.5 -12t5 -13.5t3 -21.5v-10q0 -35 -25 -35q-74 -1 -160 -1h-88q-137 1 -178 1q-43 0 -43 45q-2 14 6.5 29.5t22.5 15.5h12q66 0 85.5 16.5t23.5 67.5q14 121 14 274q0 131 -10 182.5t-39 84.5q-43 47 -115 47 q-16 0 -29.5 -1t-27.5 -6.5t-22.5 -8.5t-23.5 -12t-21.5 -12t-25 -15.5t-22.5 -14.5q-18 -10 -18 -78v-420q0 -72 16.5 -89t77.5 -17q37 0 41 -27q0 -23 2 -30q0 -34 -28 -34q-4 0 -9 1q-26 1 -75.5 1t-124 -1t-126 -1t-81.5 1h-3q-12 0 -19.5 13.5t-7.5 31.5q0 22 9 35z " />
87
+ <glyph unicode="i" horiz-adv-x="544" d="M41 35v11q0 38 25 38q23 2 38 4t29 3t23.5 8t16.5 8.5t10 13.5t6.5 15t4.5 22.5t1 27v35v41.5v361q0 74 -7 86q-4 8 -36 14q-4 0 -80 22q-18 6 -18.5 34t14.5 38q131 49 241 86q13 4 23 4q40 0 41 -63v-582q0 -76 2 -104q2 -49 14 -58.5t70 -9.5h8q34 0 39 -33v-37 q0 -27 -30 -27q-5 0 -11 1q-47 3 -146 3t-249 -3q-8 0 -17.5 13t-11.5 28zM143 1245q0 49 34 83t81 34q51 0 85 -34t34 -85q0 -49 -35 -79.5t-86 -30.5q-49 0 -81 31.5t-32 80.5z" />
88
+ <glyph unicode="j" horiz-adv-x="505" d="M-219 -371q0 45 22.5 82t59.5 37t88 -65q53 -61 108 -62q57 0 85 52.5t28 179.5v127v649v30.5t1 24.5t-1 16.5t-6 13.5t-12.5 8t-18.5 8t-29 7q-41 8 -59 15q-18 4 -17 33.5t15 37.5q100 43 248 92q31 10 44 -9t13 -42v-809q0 -135 -7 -196t-34 -127q-20 -57 -84 -131 q-88 -100 -239 -101q-88 0 -146.5 35t-58.5 94zM115 1225q0 49 33.5 81.5t85 32.5t84 -32.5t32.5 -81.5t-34 -83t-83 -34q-51 0 -84.5 34t-33.5 83z" />
89
+ <glyph unicode="k" horiz-adv-x="1060" d="M30 1358q2 33 21 37q57 14 128 43.5t106 40.5q14 3 25 3q14 0 20 -6q12 -10 14 -42l2 -828q0 -12 6 -24.5t17 -3.5l211 153q43 32 43 46q0 5 -5 7q-10 4 -30 4q-10 0 -23.5 1.5t-15.5 1.5q-29 6 -33 20q-2 10 0 23q2 39 39 38h124h144.5h102.5q16 2 24 -11t8 -32 q0 -14 -8 -29.5t-14 -15.5q-127 -2 -242 -90q-55 -43 -200 -147q-12 -16 -2 -29q246 -254 362 -373q39 -39 62.5 -52t68.5 -13h23q16 -6 20 -28q1 -8 1 -14q0 -14 -5 -26q-8 -18 -20 -18q-89 5 -197.5 5t-235.5 -5q-10 0 -19 14.5t-9 30.5q0 25 9 33t32 8q56 0 56 17 q0 15 -40 57l-233 249q-20 14 -21 0v-213v-20v-21.5t1 -17.5t3 -16t7 -12.5t11.5 -11.5t16.5 -6t23 -3h59q10 0 18.5 -14.5t8.5 -31t-8.5 -29.5t-18.5 -13q-152 3 -254.5 3t-155.5 -3h-2q-15 0 -21 32q-7 34 3 46q8 12 37 12q66 0 79 27.5t13 164.5v891q0 68 -2 107 q-2 25 -62 33q-25 12 -49 12q-23 5 -23 33v6z" />
90
+ <glyph unicode="l" horiz-adv-x="557" d="M51 20q-3 13 -3 24q0 14 5 24q6 14 12.5 15t28.5 1q72 0 90.5 22.5t18.5 100.5v1061q0 23 -23 24l-98 19q-20 4 -21.5 36.5t21.5 41.5q143 41 260 86h3q13 -1 25 -17q12 -18 13 -37v-1212q0 -88 12.5 -106.5t75.5 -18.5q45 0 49 -21v-26q0 -41 -31 -41q-148 2 -249 2 t-156 -2q-6 0 -18.5 7t-14.5 17z" />
91
+ <glyph unicode="m" horiz-adv-x="1689" d="M53 63q8 20 56 21q59 2 76.5 34t17.5 156v287q0 135 -4 144q-10 18 -74 26l-47 6q-25 6 -20 38t18 38q98 43 266 86q8 2 14 2q14 0 21 -9q10 -13 10 -40v-94q0 -2 1 -6t3 -7.5t4 -3.5q197 137 324 138q70 0 123 -37t76 -103q8 -14 22 -2q72 49 102.5 69.5t94 46.5 t120.5 26q143 0 199 -127q31 -72 31 -283q0 -53 -4 -158.5t-4 -156.5q0 -43 19.5 -54.5t100.5 -11.5q27 6 46 -6q15 -8 15 -34q0 -6 -1 -13q0 -16 -10.5 -28.5t-22.5 -12.5q-56 2 -168 2t-278 -2h-11q-12 0 -20 8t-10 21.5t0 25.5t10 21.5t18 9.5h21q59 0 78.5 17.5 t23.5 76.5q8 82 8 279q0 184 -27.5 243.5t-101.5 59.5q-70 0 -233 -111v-457q0 -70 18.5 -89t79.5 -19q37 0 39 -41q0 -14 -9 -29.5t-24 -15.5q-151 4 -271 4q-80 0 -146 -2q-33 2 -32 37t21 45q6 4 31 4q74 0 92.5 30.5t18.5 161.5v326q0 76 -34 116t-91 40q-14 0 -31.5 -3 t-31 -7.5t-34 -14.5t-30.5 -14t-31.5 -18.5t-28 -17.5t-30 -19.5t-25.5 -16.5v-457q0 -72 18.5 -90t90.5 -18q8 2 28 -4q12 -2 13 -56q-6 -26 -29 -26q-100 4 -207 4t-221 -4q-16 0 -24 12q-8 11 -8 25q0 17 5 32z" />
92
+ <glyph unicode="n" horiz-adv-x="1071" d="M51 12q-3 9 -3 19q0 12 4 25q7 24 26 24h10q66 0 85.5 33.5t19.5 162.5v275q0 137 -9 158q-4 12 -69 24l-41 8q-20 4 -18.5 37t18.5 39q43 14 176 66q41 16 61 20q9 2 17 2q18 0 28 -9q16 -13 15 -38v-88q0 -4 3 -12t7 -13.5t6 -3.5q193 135 301 136q233 0 234 -371 q0 -59 -8.5 -179t-8.5 -182q0 -39 14.5 -50t71.5 -11q27 12 43 -10q8 -12 8 -41t-16 -35q-8 -2 -27 -2q-41 0 -187 1h-86q-75 0 -105 -1h-4q-40 0 -42 43q0 16 8.5 30.5t20.5 14.5h12q63 6 85 25.5t28 76.5q12 115 12 351q0 211 -135 211q-88 0 -235 -113v-447 q0 -72 18.5 -88t91.5 -16q25 0 29 -45q0 -43 -39 -45q-34 1 -107 1h-83.5h-83.5q-74 0 -109 1h-6q-25 0 -31 16z" />
93
+ <glyph unicode="o" horiz-adv-x="1060" d="M66 426q0 197 133 326t329.5 129t332.5 -131.5t136 -325.5q-2 -190 -135.5 -322.5t-326.5 -132.5q-199 0 -334 131t-135 326zM264 485q0 -178 87 -298.5t206 -120.5q100 0 167 94t67 233q0 168 -86 280.5t-205 112.5q-100 0 -168 -85t-68 -216z" />
94
+ <glyph unicode="p" horiz-adv-x="1030" d="M16 -510q7 31 27 31h18q76 0 96.5 35.5t20.5 179.5v835v50q0 33 -6 41t-37 16q-12 4 -35.5 12t-33.5 10q-20 4 -22.5 28t5.5 30q4 10 17 18l219 139q20 14 40 14l10 -1q25 -4 25 -37v-109q2 -37 13 -37q174 123 276 123q133 0 230.5 -125t97.5 -286q0 -195 -137.5 -343.5 t-319.5 -148.5q-59 0 -149 29q-8 2 -11 -17v-20v-221q0 -143 19.5 -176t95.5 -33h29q37 0 47 -23q4 -12 3 -31.5t-7 -27.5q-6 -16 -35 -16q-36 3 -161 3h-69q-184 -1 -231 -1q-25 0 -31 12q-7 10 -7 25q0 10 3 22zM360 178q109 -102 215 -102q92 0 154 89t62 224 q0 150 -70 243t-172 93q-76 0 -180 -82q-8 -16 -9 -29v-436z" />
95
+ <glyph unicode="q" horiz-adv-x="1032" d="M63 395q0 201 129.5 339t317.5 138q117 0 233 -59q12 -6 17 0q27 35 57 55q6 6 25 6h10q27 -2 35 -16q-14 -57 -15 -151v-91v-876q0 -139 17.5 -177t77.5 -38h20q25 0 27 -39v-6q0 -34 -23 -47h-20q-113 4 -225 4t-222 -4q-49 0 -49 41t25 53q12 2 80 2q76 0 94 32.5 t18 178.5v295q-2 10 -3 24.5t-2 18.5t-7 0q-137 -113 -270 -113q-150 0 -248.5 123t-98.5 307zM240 451q0 -154 75.5 -255.5t182.5 -101.5q82 0 186 88q10 10 10 58q-4 313 -6 344q-2 35 -14 67q-18 59 -69.5 96t-115.5 37q-113 0 -181 -89t-68 -244z" />
96
+ <glyph unicode="r" horiz-adv-x="716" d="M41 39v19t3 12.5t11 9.5t23 2q66 0 85 32.5t19 159.5v363q-2 4 -3 14.5t-3 17.5t-8 9q-4 2 -41 16.5t-55 22.5q-23 10 -25 33v16q0 27 23 33q33 16 116 43q88 31 121 47q12 6 21 6t15 -5q13 -11 15 -34q0 -96 2 -139q55 125 84 141q27 14 55.5 14t49 -6t52.5 -17t50 -15 q4 -2 10.5 -3t8.5 -2q26 -9 26 -27q0 -5 -2 -11q-16 -53 -61 -136q-39 2 -84 27q-41 20 -68 20q-55 0 -116 -116v-297q0 -47 2 -101q2 -72 17 -88t85 -16h45q23 0 29 -36t-11 -50q-6 -4 -20 -4l-217 2q-88 2 -140 2q-79 0 -79 -4h-5q-17 0 -23 10q-8 12 -7 35z" />
97
+ <glyph unicode="s" horiz-adv-x="643" d="M63 639q0 111 81 181.5t202 70.5q78 0 176 -41q5 -73 5 -132q0 -44 -3 -81q0 -6 -12 -13.5t-25 -7.5q-32 1 -36 21q-14 78 -51.5 118t-86.5 40q-43 0 -69.5 -27t-26.5 -68q0 -31 26.5 -64.5t51 -53t75 -52t56.5 -36.5q164 -113 164 -250q0 -109 -82 -186.5t-193 -77.5 q-68 0 -120 22q-12 4 -17 6q-10 -10 -16 -24q-32 -9 -41 -9h-2q-29 4 -29 29q-12 121 -18 229q-2 16 15 23.5t40 3.5q14 -6 20 -27q39 -170 162 -170q49 0 81 34t32 83q0 59 -56.5 113.5t-123 92.5t-123 104.5t-56.5 148.5z" />
98
+ <glyph unicode="t" horiz-adv-x="653" d="M43 799q6 10 23 18q109 59 174 248q4 23 40 24h3q34 0 32 -28q-3 -66 -3 -109.5t3 -64.5q0 -10 25 -17h203q35 0 35 -27q0 -8 -3 -18q-4 -31 -18 -69q-12 -23 -41 -21l-182 2q-12 4 -19 -14v-352q0 -154 23.5 -204t87.5 -50q57 0 109 98q8 18 29.5 16t33.5 -14 q6 -6 6 -25.5t-2 -23.5q-86 -191 -242 -191q-98 0 -159.5 74t-61.5 189v82v401q0 8 -20 12q-14 2 -33.5 4t-32.5 2q-13 22 -13 40q0 10 3 18z" />
99
+ <glyph unicode="u" d="M40 809q-1 6 -1 11q0 21 22 28q18 4 116.5 29.5t139.5 33.5q20 4 32.5 -12t12.5 -37v-483q0 -158 33 -209t127 -51q82 0 211 100q8 20 8 31v342v24.5v30.5t-1 29.5t-5 31t-10 24.5t-16.5 21.5t-24.5 10.5q-29 4 -45 8q-2 0 -68 10q-18 10 -16 39t23 35q217 49 290 57h8 q45 0 46 -43v-639v-63q0 -35 23.5 -39t47.5 6l43 12q18 2 26 -17q5 -12 6 -25q0 -9 -2 -17q-5 -22 -24 -27q-111 -49 -227 -73q-16 -4 -28 -4q-42 0 -44 43q0 2 -1 13t-2 27.5t-3 26.5q-2 31 -20 17q-57 -41 -94 -64.5t-94.5 -45t-112.5 -21.5q-121 0 -179.5 75.5 t-58.5 210.5v424q0 31 -7 43t-30 21q-12 4 -38.5 11t-41.5 11q-14 2 -21 33z" />
100
+ <glyph unicode="v" horiz-adv-x="1056" d="M26 817q6 39 29 41q7 1 37 1q45 0 142 -2q69 -1 123 -1q73 0 120 2q8 0 15.5 -13.5t7.5 -29.5t-8.5 -28.5t-18.5 -12.5h-18q-41 0 -61.5 -5t-23.5 -10t-3 -16q0 -35 202 -497q6 -8 15.5 5t13.5 25q109 270 174 408q7 15 7 28q0 52 -115 60h-11.5t-9.5 1t-6 4t-6 9 q-8 16 -3 44t21 28q81 -2 170 -2t187 2q27 0 26 -41q-4 -37 -22 -41q-57 -6 -86 -40t-84 -163l-246 -563q-12 -27 -35 -30q-7 -1 -18 -1h-13q-22 1 -28 3q-16 6 -27 36l-260 596q-8 18 -16.5 39t-13.5 32t-9 20q-6 14 -15 25t-15.5 17.5t-23 11.5t-20.5 6t-26.5 5t-26.5 4 q-22 3 -22 31q0 5 1 12z" />
101
+ <glyph unicode="w" horiz-adv-x="1570" d="M22 800q-3 11 -4 20q0 14 7 24q8 12 36 8q332 0 375 2q27 0 33 -27q6 -16 0 -35.5t-20 -19.5q-90 -4 -91 -35q0 -25 191 -487q8 -16 11 -16.5t5 4.5l170 399q-45 84 -59 98q-31 31 -80 33q-6 0 -17.5 1t-17.5 1q-10 0 -18 13.5t-8 27.5q-2 16 5 29.5t17 13.5 q172 -4 285 -4q75 0 123 2l12 2h3q32 0 37 -36q5 -38 -13 -48q-98 -2 -99 -41q0 -25 29 -94l162 -385q8 -25 22 10q8 10 80 193q80 188 90 235q6 27 0 44.5t-23.5 24.5t-32.5 9t-43 2t-38 2q-14 6 -16 45t22 39q75 -2 162.5 -2t187.5 2q4 1 7 1q17 1 24 -17q4 -11 4 -23 q0 -11 -3 -21q-7 -22 -19 -24q-78 -10 -95 -35q-16 -23 -41 -90q-51 -121 -258 -635q-10 -23 -18 -24q-4 -2 -18 -4q-8 -2 -48 2q-27 2 -36 22l-205 490q-10 25 -19 6q-45 -96 -120.5 -281.5t-86.5 -210.5q-12 -29 -34 -33q-8 -2 -30 -2t-30 2q-18 4 -28 31l-246 600 q-45 111 -69.5 134.5t-96.5 27.5q-11 2 -19 30z" />
102
+ <glyph unicode="x" horiz-adv-x="1069" d="M14 35q0 41 27 41q70 2 107.5 25.5t119.5 115.5l152 178q16 16 0 39l-146 193q-72 96 -106.5 119.5t-116.5 27.5q-18 4 -17 43q1 37 26 37h3q53 -3 150.5 -3t239.5 3q25 0 30 -8q10 -16 5 -43t-15 -27h-18q-33 0 -45.5 -6t0.5 -29q20 -37 69 -100t68 -82q14 -20 35 8 q120 120 120 171q0 11 -4 17.5t-21.5 12.5t-53.5 6h-8.5t-7.5 1l-6 2t-6 4t-5 10q-6 20 -2 43q3 21 25 21q6 0 12 -1q148 -2 241.5 -2t134.5 2q4 1 8 1q19 0 29 -17q10 -20 3 -42t-31 -22h-13q-73 0 -112 -22q-43 -24 -107 -95l-76 -84l-75 -86q-10 -14 -2 -26 q96 -125 149 -197l74 -92q39 -51 74.5 -70.5t99.5 -23.5q25 -14 25 -47q0 -14 -8.5 -25.5t-22.5 -9.5q-89 2 -173 2q-126 0 -239 -4q-29 0 -29 39q0 41 25 41h18q59 0 60 20q0 8 -9.5 22.5t-22.5 30t-17 21.5l-111 151q-23 27 -35 13q-4 -4 -27.5 -31t-44 -50.5t-44 -51 t-38 -49t-14.5 -29.5q0 -14 5.5 -21.5t27 -14.5t62.5 -11h14q27 -4 27 -43q-1 -15 -9 -27q-7 -10 -15 -10h-3q-101 4 -219 4q-78 0 -164 -2q-23 0 -27 39z" />
103
+ <glyph unicode="y" horiz-adv-x="999" d="M20 800q-4 10 -4 18q0 11 6 22q9 18 35 18h25h338q29 0 36 -19.5t-1.5 -40t-18.5 -22.5q-43 0 -63.5 -7t-22.5 -13t-2 -21q0 -16 23 -65q29 -63 55.5 -133t59 -155t53.5 -136q6 -8 9 -11.5t7 1.5l119 317q47 127 47 162q0 23 -5 34t-28.5 19t-75.5 8q-16 6 -16 41t22 39 h19q61 0 154.5 1t146.5 1q29 0 35 -20q2 -9 2 -17q0 -12 -5 -25q-8 -20 -18 -20q-57 -4 -93 -51t-93 -205l-244 -672q-35 -98 -84 -217q-31 -74 -73 -125q-37 -47 -109 -47q-41 0 -75 34t-34 75q0 66 111 94q68 18 112 69.5t64 166.5l19 90l-248 602q-53 129 -74.5 154.5 t-91.5 31.5q-12 4 -19 24z" />
104
+ <glyph unicode="z" horiz-adv-x="839" d="M31 14q-2 9 -2 17t2 16t9 16.5t9 12.5l463 641q15 20 -18 20q-43 0 -122 -3t-124 -3q-35 0 -54.5 -28.5t-50.5 -149.5q-6 -14 -26.5 -18.5t-38 6t-15.5 28.5q0 6 3 9q39 236 59 319q4 9 35 9h6q37 -1 37 -13q0 -29 12 -36t61 -5q233 4 435 4q12 -2 23 0t24.5 -1t23.5 -13 q8 -41 -6 -58q-201 -264 -461 -647q-6 -8 -1 -15t16 -7q215 0 274 2q45 0 65.5 22.5t57.5 106.5l8 10q12 27 49 18q27 -5 27 -21q0 -4 -2 -9l-82 -226q-8 -18 -31 -22h-653q-8 0 -12 18z" />
105
+ <glyph unicode="{" horiz-adv-x="1026" d="M215 457q-6 14 0 30q4 23 23 27q94 20 148 74.5t54 122.5q0 45 -24 149q-20 94 -21 170q0 160 110.5 280t282.5 146q18 0 25 -18q4 -18 4 -37v2q0 -19 -29 -31q-207 -49 -206 -225q0 -57 18 -148q23 -117 23 -180q0 -141 -113 -254q-59 -57 -113 -82q-25 -10 2 -22 q223 -123 224 -336q0 -68 -21 -176q-18 -86 -18 -148q0 -170 209 -229q14 -4 20 -12q6 -2 6 -9q8 -25 0 -47q-10 -18 -33 -14q-174 27 -281.5 145.5t-107.5 278.5q0 61 21 164q25 109 24 151q0 72 -53 125.5t-156 75.5q-18 6 -18 27z" />
106
+ <glyph unicode="|" d="M483 20v1680q0 61 52 61q33 -8 49 -4q16 0 24 -6t9 -10t0 -22.5t-1 -22.5v-832q0 -760 -2 -854q0 -55 -49 -55q-18 4 -41 0q-41 0 -41 65z" />
107
+ <glyph unicode="}" horiz-adv-x="1026" d="M217 -473q0 2 1 10t1 12q4 23 23 25q100 23 154.5 82t54.5 141q0 55 -21.5 164t-21.5 164q0 139 114 254q55 57 115 84q8 4 6 11t-10 11q-225 123 -225 334q0 51 20.5 159.5t20.5 164.5q0 78 -38 127t-83 65.5t-80 36t-31 45.5q0 14 7 27.5t22 11.5q174 -27 282.5 -145.5 t108.5 -278.5q0 -55 -23.5 -158.5t-23.5 -156.5q0 -147 190 -197q37 -8 37 -43q0 -43 -33 -49q-92 -20 -142 -73.5t-50 -118.5q0 -55 23.5 -161t23.5 -159q0 -156 -103.5 -272.5t-267.5 -149.5q-20 -4 -36.5 6.5t-14.5 26.5z" />
108
+ <glyph unicode="~" horiz-adv-x="1161" d="M49 528q6 139 91 230.5t208 91.5q111 0 279 -90q166 -88 237 -88q133 0 162 151q2 14 12.5 25.5t22.5 9.5l22 -2q16 -2 27.5 -11t9.5 -22q-10 -143 -91 -236t-202 -93q-111 0 -295 92q-2 0 -50 25.5t-66.5 33.5t-55 19.5t-63.5 11.5q-61 0 -105.5 -42t-54.5 -116 q-4 -35 -47 -29.5t-41 39.5z" />
109
+ <glyph unicode="&#xa1;" horiz-adv-x="557" d="M162 766q0 53 33.5 88t85 35t85 -35t33.5 -88t-33.5 -89t-85 -36t-85 36t-33.5 89zM174 -416l70 936q8 18 35.5 18.5t35.5 -18.5l74 -938q4 -49 -10.5 -70.5t-65.5 -21.5h-59q-55 0 -69.5 21.5t-10.5 72.5z" />
110
+ <glyph unicode="&#xa2;" horiz-adv-x="915" d="M98 389q0 209 144.5 355.5t349.5 146.5q20 0 29 -2q23 0 30 20l86 230q10 20 54 16q47 0 28 -43l-86 -225q-8 -16 6 -21q106 -43 107 -121q0 -35 -24.5 -59t-63.5 -24q-45 0 -82 34q-10 10 -21 -14l-215 -545q-6 -16 4.5 -26.5t36 -13.5t36.5 -4t30 -1q70 0 121 33 t106 102q4 6 8 9.5t9.5 4.5t8.5 2t8 -2t7 -4t9 -6.5t10 -5.5q27 -16 0 -57q-143 -209 -361 -209q-41 0 -86 10q-12 4 -18 -14q-8 -18 -29 -74.5t-31 -85.5q-31 -82 -55 -135q-12 -29 -29.5 -32t-44.5 7q-23 6 -14 33l6 10l119 304q6 20 -6 28q-84 57 -135.5 159.5 t-51.5 219.5zM279 436q0 -145 75 -246q2 -4 11.5 1.5t11.5 11.5l219 565q-29 23 -72 23q-96 0 -170.5 -103.5t-74.5 -251.5z" />
111
+ <glyph unicode="&#xa3;" horiz-adv-x="1630" d="M31 -406q0 61 76.5 134t175.5 114q59 104 106 232q2 4 4 12q14 35 -2 35h-233q-2 0 -7.5 -1t-9.5 -1q-10 0 -18 4q-20 8 -8 57q6 37 49 37h278q23 59 72 197.5t78 216.5t78 188.5t100 198.5q244 414 547 414q106 0 189 -49.5t83 -125.5q0 -39 -26.5 -63.5t-65.5 -24.5 q-47 0 -96 50q-14 12 -27 26q-72 68 -137 68q-80 0 -154 -96q-80 -111 -163 -320q-176 -442 -275 -657q0 -20 8 -23q49 0 144.5 1t144.5 1q14 0 21.5 -3t8.5 -13t1 -14.5t-4 -18.5t-4 -16q-8 -39 -58 -37l-319 4q-47 -98 -117 -195q-6 -8 -3 -12t13 -2q63 20 140 20 q152 0 331 -135q100 -72 133 -90q72 -41 134 -41q70 0 116.5 40t46.5 95q0 31 -28.5 80t-28.5 80q0 41 26.5 68.5t67.5 27.5q53 0 85 -48t32 -115q0 -147 -127 -261t-287 -114q-121 0 -221 65q-31 20 -110.5 87t-146 106t-126.5 39q-63 0 -147 -41l-4 -2 q-55 -111 -125 -181.5t-131 -70.5q-31 0 -55.5 21.5t-24.5 51.5z" />
112
+ <glyph unicode="&#xa5;" horiz-adv-x="1071" d="M-4 1413q-6 29 29 29q233 -8 436 2q35 2 35 -27q0 -2 1 -15t1 -22.5v-15.5q-2 -10 -25 -14q-106 0 -106 -41q0 -12 18 -52l51 -129q4 -14 43 -14h226q20 0 28 19q0 2 16.5 39.5t32 79.5t15.5 59q0 33 -66 37q-2 0 -12 1t-15.5 1t-11.5 3t-9 8t-3 13v33q0 29 27 29 q39 0 109.5 -2t123.5 -1t109 5q33 2 32 -21v-39q1 -28 -28 -28q-51 0 -82 -27t-70 -119q-35 -82 -29 -86q2 -4 15 -4h151q20 0 30.5 -12t10.5 -27v-39q0 -45 -41 -45h-207q-18 0 -24 -12l-62 -137q-2 -6 5.5 -10.5t17.5 -4.5l276 4q35 -10 35 -38v-50q0 -39 -51 -38l-297 2 q-45 0 -49 -9l-37 -80v-354q0 -121 20.5 -148.5t92.5 -27.5h22q41 0 41 -37v-28q0 -16 -6 -23.5t-15 -7.5h-24q-250 14 -487 0q-14 0 -25.5 8t-9.5 25q0 6 1 17t2 17.5t4 13.5t10.5 10t19.5 3h16q84 0 103.5 25.5t19.5 152.5v332l-43 96q-6 14 -33 15h-309q-47 0 -47 43v47 q0 35 51 34l248 -4q29 0 29 9q0 2 -2 6l-54 129q-10 20 -22 20h-209q-41 0 -41 41v45q0 37 35 37h155q35 0 -6 82t-69 117q-35 35 -88 37q-23 0 -27 26q-6 12 -2 37zM502 973l73 -178q2 -6 3.5 -8.5t5.5 -0.5t8 15l74 178q0 2 -4.5 5t-9.5 5t-7 2h-127q-4 0 -11 -7t-5 -11z " />
113
+ <glyph unicode="&#xa6;" d="M483 -45v790h133v-790h-133zM483 969v792h133v-792h-133z" />
114
+ <glyph unicode="&#xa7;" horiz-adv-x="1005" d="M109 877q0 225 144 390t343 165q78 0 181.5 -43t103.5 -119q0 -39 -30 -69t-69 -30q-47 0 -94 52q-14 12 -26 26q-70 74 -127 74q-70 0 -119 -45t-49 -107q0 -18 7 -41.5t22.5 -53t28.5 -54.5t36.5 -58.5t36 -52t35 -50.5t26.5 -38q166 -240 229.5 -352.5t92.5 -224.5 q23 -88 22 -203q0 -213 -146 -370.5t-345 -157.5q-102 0 -188.5 45t-86.5 112q0 37 26.5 69t63.5 32q12 0 23.5 -4.5t20 -8.5t19.5 -14t15 -15t15.5 -18.5t13.5 -17.5q70 -76 145 -76q66 0 117 45t51 98q0 82 -115 242q-213 307 -305 471q-119 215 -118 402zM258 1065 q-80 -215 55 -479q55 -111 183.5 -302.5t177.5 -283.5q47 -80 63 -123q8 -25 17 -2q25 59 24 150q0 227 -149 460q-33 51 -114 173t-124 190q-76 119 -115 217q-10 27 -18 0z" />
115
+ <glyph unicode="&#xa8;" horiz-adv-x="712" d="M53 1108q0 51 38 87t91.5 36t91 -36t37.5 -87t-37.5 -87t-91 -36t-91.5 36t-38 87zM403 1108q0 51 38 87t91 36q55 0 93.5 -36t38.5 -87t-38.5 -87t-93.5 -36q-53 0 -91 36t-38 87z" />
116
+ <glyph unicode="&#xa9;" horiz-adv-x="1630" d="M82 713q0 305 217 522t520 217t520 -216t217 -523q0 -305 -217 -522.5t-520 -217.5t-520 217.5t-217 522.5zM193 713q0 -262 183 -447.5t443 -185.5t443.5 185.5t183.5 447.5t-183.5 447.5t-443.5 185.5t-443 -185.5t-183 -447.5zM346 715q0 201 142.5 334t355.5 133 q72 0 180 -37q18 -6 31 -6q10 0 15 7t15 36h45q29 0 31 -31q0 -4 7.5 -100.5t9.5 -141.5v-16q0 -23 -25 -23h-31q-18 0 -24 17q-2 2 -4 12t-7 14q-68 182 -256 183q-129 0 -206.5 -93.5t-77.5 -259.5q0 -184 77.5 -279t217.5 -95q92 0 148.5 31.5t127.5 111.5q4 4 8 7t9.5 3 h9.5t10 -3l8 -4t9.5 -6t9.5 -5q25 -10 4 -43q-148 -193 -377 -193q-195 0 -329 129t-134 318z" />
117
+ <glyph unicode="&#xaa;" horiz-adv-x="557" d="M47 948q0 98 148 133q68 14 122 45v86q0 90 -73 91q-20 0 -45 -19q-6 -6 -8.5 -11t-2.5 -11.5v-9.5t3.5 -11t5.5 -14l-113 -51q-16 -6 -18 8q-10 23 -11 35q0 47 88 112q70 49 129 49q94 0 137.5 -46t43.5 -146v-162v-55q0 -43 14 -43q12 0 57 28q8 4 13.5 1t5.5 -7 l12 -30q4 -12 -6 -21q-96 -76 -143 -76q-49 0 -72 43q-6 16 -17 8q-68 -51 -131 -51q-59 0 -99 35t-40 90zM176 963q0 -23 15.5 -38.5t39.5 -15.5q23 0 54.5 24.5t31.5 41.5v59q0 8 -3 13.5t-7 3.5t-15 -8.5t-20 -8.5q-68 -25 -82 -38t-14 -33z" />
118
+ <glyph unicode="&#xab;" horiz-adv-x="759" d="M76 453q-16 23 8 57l281 354q10 14 24 15h45q14 0 18.5 -3.5t0.5 -11.5l-197 -389l188 -377q16 -33 -8 -32h-45q-14 0 -31 22zM360 457q-12 18 13 53l213 313l13 19.5t13 1.5h47q23 0 11 -27l-127 -342l125 -344q10 -31 -13 -31h-43h-6q-6 0 -12 9q-4 4 -6 8z" />
119
+ <glyph unicode="&#xac;" horiz-adv-x="1429" d="M145 864v154h1145v-645h-155v491h-990z" />
120
+ <glyph unicode="&#xad;" horiz-adv-x="890" d="M90 438v72q0 18 16.5 28.5t32.5 10.5q371 -10 633 0q14 0 26.5 -12.5t12.5 -26.5l-4 -70q-8 -29 -31 -32q-311 -4 -655 0q-20 0 -31 30z" />
121
+ <glyph unicode="&#xae;" horiz-adv-x="1630" d="M63 713q0 313 219.5 534t528.5 221t528.5 -221t219.5 -534q0 -311 -219.5 -532.5t-528.5 -221.5t-528.5 221t-219.5 533zM172 712.5q0 -268.5 186.5 -456.5t452.5 -188q264 0 452.5 189t188.5 455.5t-188.5 456t-452.5 189.5q-266 0 -452.5 -188.5t-186.5 -457zM410 301 v21q0 27 32 26q47 0 58.5 17.5t11.5 95.5v512q0 78 -10 94t-51 18q-29 0 -29 29v27q0 23 37 22q84 -6 358 0q135 0 222 -66.5t87 -174.5q0 -158 -186 -228q-14 -4 -6 -16l178 -254q31 -45 50.5 -59.5t47.5 -16.5q23 -2 23 -14v-31q0 -35 -45 -35q-74 2 -135 0q-31 0 -45 19 l-275 381h-31q-8 0 -8 -35v-174v-74q0 -35 90 -37q25 0 25 -31v-22q0 -27 -47 -27q-170 10 -311 0q-10 0 -25.5 8.5t-15.5 24.5zM694 795q0 -43 8 -43q111 0 168.5 42t57.5 115q0 72 -49 119t-125 47q-35 0 -60 -8v-272z" />
122
+ <glyph unicode="&#xaf;" horiz-adv-x="714" d="M18 1067v82q0 29 54 29h18h557q51 0 51 -39v-78q0 -37 -57 -37h-578q-45 0 -45 43z" />
123
+ <glyph unicode="&#xb0;" horiz-adv-x="849" d="M98 1053q0 139 95.5 236t232.5 97t233.5 -97t96.5 -236q0 -137 -96.5 -234.5t-233.5 -97.5t-232.5 97t-95.5 235zM227 1053q0 -82 58.5 -141.5t140.5 -59.5t141.5 59.5t59.5 141.5q0 84 -58.5 143t-142.5 59q-82 0 -140.5 -59t-58.5 -143z" />
124
+ <glyph unicode="&#xb1;" horiz-adv-x="1429" d="M145 834v55q0 51 66 51h401q27 0 27 33v385q0 6 -1 14t-1 12q0 57 39 58h69q27 0 38.5 -11.5t11.5 -44.5v-419q4 -27 28 -27h414q31 0 42 -10t11 -35v-64q0 -33 -13 -40t-46 -7h-397q-39 1 -39 -28v-418q0 -35 -9.5 -43t-42.5 -8q-37 -10 -63 0q-33 0 -39 14l-2 6 q-2 4 -1 16.5t1 14.5v414q0 10 -8 21t-17 11h-415q-31 0 -42.5 9.5t-11.5 40.5zM147 8v45q0 29 9.5 42.5t40.5 10.5q53 -4 415.5 -4t626.5 4q29 0 40 -11t11 -40v-53q0 -35 -20.5 -44t-59.5 -9q-229 -2 -997 -2q-39 0 -52.5 11t-13.5 50z" />
125
+ <glyph unicode="&#xb2;" horiz-adv-x="614" d="M18 643v35q55 66 166 160q2 2 38 32.5t47.5 41t39 40t38.5 49t22.5 47t11.5 52.5q0 43 -32 71.5t-81 28.5q-106 0 -147 -125q-6 -12 -48 -10t-42 18q10 111 84.5 175.5t183.5 64.5q104 0 177 -58.5t73 -150.5q0 -47 -14.5 -85t-53.5 -73.5t-57 -50t-74 -53.5 q-57 -37 -125 -96q-6 -11 17 -11h151q57 0 68 7q6 6 18 55q2 18 27 18h43q25 0 24 -24q-18 -143 -20 -150q-6 -35 -47 -35h-457q-18 0 -24.5 4.5t-6.5 22.5z" />
126
+ <glyph unicode="&#xb3;" horiz-adv-x="614" d="M29 707q0 31 21.5 49t51.5 18q35 0 89.5 -39t84.5 -39q49 0 88 43t39 107q0 45 -25.5 75.5t-58.5 30.5q-31 0 -63 -24q-43 -27 -68 14q-8 12 -3 30.5t16 24.5q145 92 145 150q0 25 -20.5 42t-53.5 17q-76 0 -129 -94q-27 -37 -60.5 -13.5t-25.5 48.5q39 84 105.5 130 t148.5 46q76 0 130.5 -39t54.5 -104q0 -70 -68 -125q63 -20 100 -68.5t37 -116.5q0 -111 -100 -189.5t-229 -78.5q-76 0 -141.5 27.5t-65.5 77.5z" />
127
+ <glyph unicode="&#xb4;" horiz-adv-x="714" d="M242 1004l94 317q16 33 47 33h168q16 2 28.5 -5.5t10.5 -23.5q0 -6 -2 -8v-2l-277 -338q-12 -18 -45 -11t-24 38z" />
128
+ <glyph unicode="&#xb6;" horiz-adv-x="983" d="M-18 934q0 195 127 305.5t350 112.5q442 0 479 2q20 2 33.5 -9.5t13.5 -29.5v-47q0 -35 -45 -35h-74q-16 0 -16 -27v-1673q0 -29 -8 -36t-37 -7h-35q-45 0 -45 41l2 1675q0 23 -25 23h-96q-16 0 -16 -19l2 -1685q0 -35 -43 -35h-45q-25 0 -33 10.5t-8 32.5v969 q0 12 -4 15t-23 3q-160 2 -256 53.5t-151 155.5q-47 88 -47 205z" />
129
+ <glyph unicode="&#xb7;" horiz-adv-x="526" d="M152 702.5q0 45.5 33.5 80t78.5 34.5t79 -33.5t34 -81.5q0 -45 -34 -79.5t-79 -34.5t-78.5 34.5t-33.5 80z" />
130
+ <glyph unicode="&#xb8;" horiz-adv-x="714" d="M213 -258l162 278h76l-62 -116h2q59 -10 97 -57.5t38 -110.5q0 -82 -55 -138.5t-135 -56.5q-45 0 -84 15q-31 12 -12 45q2 8 8 14q6 16 28 12q27 -6 39 -6q35 0 59.5 24.5t24.5 57.5q0 59 -43 59q-23 0 -114 -47q-18 -8 -28.5 -2t-0.5 29z" />
131
+ <glyph unicode="&#xb9;" horiz-adv-x="614" d="M101 1110q-13 25 3 41q141 90 197 160q6 8 53 4t47 -17v-567v-8q0 -16 17 -18q2 0 25.5 -2.5t27.5 -0.5q29 -4 32 -8t5 -39q0 -16 -8 -29.5t-17 -13.5q-158 6 -311 0q-10 0 -18.5 13.5t-8.5 29.5q0 39 25 43l55 7q20 2 24.5 5t4.5 19v410q-35 -23 -113 -52q-27 -2 -40 23 z" />
132
+ <glyph unicode="&#xba;" horiz-adv-x="737" d="M59 1102q0 119 90.5 198.5t219.5 79.5t219 -79.5t90 -198.5q0 -117 -89 -198t-216 -81q-131 0 -222.5 80t-91.5 199zM205 1139q0 -102 55 -171t129 -69q61 0 103.5 48t42.5 126q0 98 -55.5 166t-129.5 68q-61 0 -103 -47.5t-42 -120.5z" />
133
+ <glyph unicode="&#xbb;" horiz-adv-x="759" d="M90 129l127 342l-125 344q-10 31 12 31h46h6q6 0 14 -12q2 -2 4 -5l225 -340q12 -16 -10 -53l-213 -313q-12 -16 -13 -17.5t-13 -1.5h-48q-18 0 -12 25zM307 82l199 391l-191 377q-14 31 11 31h45q14 0 30 -21l285 -366q18 -27 -10 -56l-279 -356q-12 -14 -24 -14h-47 q-25 0 -19 14z" />
134
+ <glyph unicode="&#xbc;" horiz-adv-x="1464" d="M102 1104.5q-14 23.5 2 44.5q147 88 205 162q6 8 56.5 5t50.5 -18v-579q0 -25 20 -27h24.5h25t19.5 -4t16 -15t5 -30q0 -43 -24 -43q-166 6 -326 0q-29 0 -29 43q4 43 27 43l62 4q16 2 20 6t4 21v418q-23 -12 -65.5 -31t-51.5 -23q-27 0 -41 23.5zM194.5 -48.5 q-6.5 21.5 4.5 34.5l952 1347l4 10q8 8 23 9h6h84q10 0 16 -14.5t-6 -32.5l-954 -1354q-14 -20 -37 -21h-66q-20 0 -26.5 21.5zM807 195v45l360 460q37 12 66 7q31 -8 29 -37v-361q0 -20 8 -20h82q39 0 39 -35q0 -55 -5 -66q-10 -16 -24 -16h-90q-10 -2 -10 -35l2 -143 v-16.5t-3.5 -10.5t-9.5 -7t-18 -1h-100q-20 2 -27 27l2 147q-4 39 -14 39h-256q-18 0 -25.5 5t-5.5 18zM973 289h108q25 0 25 10v168z" />
135
+ <glyph unicode="&#xbd;" horiz-adv-x="1464" d="M101 1110q-13 25 3 41q141 90 197 160q6 8 53 4t47 -17v-567v-8q0 -16 17 -18q2 0 25.5 -2.5t27.5 -0.5q29 -4 32 -8t5 -39q0 -16 -8 -29.5t-17 -13.5q-158 6 -311 0q-10 0 -18.5 13.5t-8.5 29.5q0 39 25 43l55 7q20 2 24.5 5t4.5 19v410q-35 -23 -113 -52q-27 -2 -40 23 zM193 -25l958 1360q8 10 14 14.5t14.5 5.5t12.5 1l70 -15q37 -8 16 -36l-954 -1354q-14 -18 -18.5 -24.5t-17 -4.5t-14.5 2l-55 13q-43 10 -26 38zM860 14v35q55 63 164 160q2 2 32.5 28.5t40 35t36 33t37 39.5t25.5 39t21.5 44.5t6.5 42.5q0 43 -33 71.5t-82 28.5 q-106 0 -147 -125q-6 -12 -47.5 -10t-41.5 19q10 111 85 175t184 64q104 0 177 -58t73 -151q0 -57 -30 -106t-62.5 -77t-88.5 -66q-12 -8 -18 -13q-57 -37 -125 -96q-6 -8 14 -10h154q59 0 68 6q8 8 18 55q2 18 27 19h43q25 0 24 -25q-18 -137 -20 -149q-6 -35 -47 -35h-457 q-18 0 -24.5 4t-6.5 22z" />
136
+ <glyph unicode="&#xbe;" horiz-adv-x="1464" d="M35 692q0 29 23.5 49.5t54.5 20.5q35 0 88 -41t88 -41q51 0 91 45t40 106q0 47 -26.5 78t-61.5 31q-33 0 -63.5 -22.5t-49.5 -4.5q-47 47 -8 74q147 94 147 152q0 25 -20.5 42t-54.5 17q-80 0 -129 -98q-14 -16 -57.5 -3t-30.5 42q37 84 105.5 131t152.5 47q78 0 135 -40 t57 -106q1 -67 -67 -124q135 -49 135 -191q0 -111 -101.5 -190.5t-232.5 -79.5q-80 0 -147.5 27.5t-67.5 78.5zM197 -18v-2l954 1355q23 35 55 21l43 -19q39 -18 23 -41l-948 -1345q-27 -37 -56 -29l-47 15q-42 12 -24 45zM786 205v35l361 460q37 12 65 7q31 -8 29 -37v-361 q0 -20 8 -20h82q39 0 39 -35q0 -55 -4 -66q-11 -16 -25 -16h-90q-10 -2 -10 -35l2 -137v-16t-3 -10.5t-9 -7.5t-19 -1h-100q-20 2 -27 27l2 141q-4 39 -14 39h-248q-43 0 -39 33zM952 289h109q25 0 24 10v168z" />
137
+ <glyph unicode="&#xbf;" horiz-adv-x="759" d="M82 -111q0 205 145 308q49 39 144 73q45 16 60 32.5t15 43.5q0 29 -13 53.5t-60 81.5q-12 14 -10 24.5t8 15.5t10 7q14 8 38.5 3t35.5 -19q104 -131 104 -233q0 -78 -38 -123t-128 -80q-129 -51 -174 -96.5t-45 -121t48 -119.5t138 -44q29 0 79 7t75 7q141 0 141 -96 q0 -63 -55 -93t-145 -30q-166 0 -269.5 111.5t-103.5 287.5zM295 766q0 51 37 87t90 36t90 -35t37 -88t-37 -89t-90 -36t-90 36t-37 89z" />
138
+ <glyph unicode="&#xc0;" horiz-adv-x="1456" d="M29 68q6 25 28 24q74 0 96.5 14.5t51.5 81.5l33 82l376 1026l-12 50q-4 10 8.5 19t32.5 11h66q78 0 96 -26q104 -272 189 -497.5t129 -341.5t61 -159q37 -106 55 -157q25 -70 47.5 -89.5t85.5 -19.5h14q18 0 25.5 -23.5t0.5 -47t-28 -23.5q-229 10 -538 2q-35 0 -35 51 q0 47 53 47q20 0 47 1t37 1q49 2 63.5 23.5t-1.5 64.5q-63 166 -138 369q-8 18 -43 18h-305q-23 2 -41 -26q-35 -100 -127 -348q-10 -31 -10 -62t43 -39t88 -4q18 2 41 0q25 -4 25 -51q-2 -16 -10.5 -30.5t-14.5 -14.5q-338 6 -438 0h-23q-41 8 -28 74zM505 1782.5 q15 19.5 38 19.5l153 2q37 0 49 -22q41 -109 103 -334q0 -31 -30 -34t-42 11q-109 141 -270 320q-16 18 -1 37.5zM549 723q-2 -6 14 -16q125 4 230 0q4 0 8 9t2 17q-53 139 -111 334q-10 25 -24 -18q-23 -70 -119 -326z" />
139
+ <glyph unicode="&#xc1;" horiz-adv-x="1456" d="M29 68q6 25 28 24q74 0 96.5 14.5t51.5 81.5l33 82l376 1026l-12 50q-4 10 8.5 19t32.5 11h66q78 0 96 -26q104 -272 189 -497.5t129 -341.5t61 -159q37 -106 55 -157q25 -70 47.5 -89.5t85.5 -19.5h14q18 0 25.5 -23.5t0.5 -47t-28 -23.5q-229 10 -538 2q-35 0 -35 51 q0 49 53 49h84q49 2 63.5 23.5t-1.5 64.5q-63 166 -138 369q-8 18 -43 18h-305q-23 2 -41 -26q-35 -100 -127 -348q-10 -31 -10 -62t43 -39t88 -4q18 2 41 0q25 -4 25 -51q-2 -16 -10.5 -30.5t-14.5 -14.5q-338 6 -438 0h-23q-41 8 -28 74zM549 723q-2 -6 14 -16 q125 4 230 0q4 0 8 9t2 17q-53 139 -111 334q-10 25 -24 -18q-23 -70 -119 -326zM608 1503l101 332q10 35 47 35q20 0 43.5 1t36.5 1q45 2 64.5 2t41 -3t27.5 -10.5t4 -21.5l-6 -16l-287 -348q-12 -16 -47 -8t-25 36z" />
140
+ <glyph unicode="&#xc2;" horiz-adv-x="1456" d="M29 68q6 25 28 24q74 0 96.5 14.5t51.5 81.5l33 82l376 1026l-12 50q-4 10 8.5 19t32.5 11h66q78 0 96 -26q104 -272 189 -497.5t129 -341.5t61 -159q37 -106 55 -157q25 -70 47.5 -89.5t85.5 -19.5h14q18 0 25.5 -23.5t0.5 -47t-28 -23.5q-229 10 -538 2q-35 0 -35 51 q0 47 53 47q20 0 47 1t37 1q49 2 63.5 23.5t-1.5 64.5q-63 166 -138 369q-8 18 -43 18h-305q-23 2 -41 -26q-35 -100 -127 -348q-10 -31 -10 -62t43 -39t88 -4q18 2 41 0q25 -4 25 -51q-2 -16 -10.5 -30.5t-14.5 -14.5q-338 6 -438 0h-23q-41 8 -28 74zM418 1450l178 315 q8 14 33 27q14 2 74.5 3t80.5 -1q29 -2 43 -27l177 -307q20 -35 -9 -41q-35 -8 -49 6l-239 203l-226 -203q-23 -20 -53 -4q-20 12 -10 29zM549 723q-2 -6 14 -16q125 4 230 0q4 0 8 9t2 17q-53 139 -111 334q-10 25 -24 -18q-23 -70 -119 -326z" />
141
+ <glyph unicode="&#xc3;" horiz-adv-x="1456" d="M29 68q6 25 28 24q74 0 96.5 14.5t51.5 81.5l33 82l376 1026l-12 50q-4 10 8.5 19t32.5 11h66q78 0 96 -26q104 -272 189 -497.5t129 -341.5t61 -159q37 -106 55 -157q25 -70 47.5 -89.5t85.5 -19.5h14q18 0 25.5 -23.5t0.5 -47t-28 -23.5q-229 10 -538 2q-35 0 -35 51 q0 47 53 47q20 0 47 1t37 1q49 2 63.5 23.5t-1.5 64.5q-63 166 -138 369q-8 18 -43 18h-305q-23 2 -41 -26q-35 -100 -127 -348q-10 -31 -10 -62t43 -39t88 -4q18 2 41 0q25 -4 25 -51q-2 -16 -10.5 -30.5t-14.5 -14.5q-338 6 -438 0h-23q-41 8 -28 74zM375 1516 q6 135 58 208.5t149 73.5q82 0 202 -82q76 -53 113 -53q27 0 42 23.5t26 99.5q4 23 36 22q10 2 22.5 -4t12.5 -16q4 -15 4 -29q0 -113 -58 -186.5t-151 -73.5q-84 0 -200 80q-82 57 -111 57q-25 0 -38 -17t-25 -69l-6 -37q-10 -20 -40 -22t-36 25zM549 723q-2 -6 14 -16 q125 4 230 0q4 0 8 9t2 17q-53 139 -111 334q-10 25 -24 -18q-23 -70 -119 -326z" />
142
+ <glyph unicode="&#xc4;" horiz-adv-x="1456" d="M29 68q6 25 28 24q74 0 96.5 14.5t51.5 81.5l33 82l376 1026l-12 50q-4 10 8.5 19t32.5 11h66q78 0 96 -26q104 -272 189 -497.5t129 -341.5t61 -159q37 -106 55 -157q25 -70 47.5 -89.5t85.5 -19.5h14q18 0 25.5 -23.5t0.5 -47t-28 -23.5q-229 10 -538 2q-35 0 -35 51 q0 47 53 47q20 0 47 1t37 1q49 2 63.5 23.5t-1.5 64.5q-63 166 -138 369q-8 18 -43 18h-305q-23 2 -41 -26q-35 -100 -127 -348q-10 -31 -10 -62t43 -39t88 -4q18 2 41 0q25 -4 25 -51q-2 -16 -10.5 -30.5t-14.5 -14.5q-338 6 -438 0h-23q-41 8 -28 74zM416 1609.5 q0 55.5 39 94.5t92 39q55 0 95 -39t40 -94.5t-40 -93t-95 -37.5q-53 0 -92 37.5t-39 93zM549 723q-2 -6 14 -16q125 4 230 0q4 0 8 9t2 17q-53 139 -111 334q-10 25 -24 -18q-23 -70 -119 -326zM772 1610q0 55 39 94t94 39q57 0 95 -39t38 -94q0 -53 -38 -92t-95 -39 q-55 0 -94 38.5t-39 92.5z" />
143
+ <glyph unicode="&#xc5;" horiz-adv-x="1456" d="M29 68q6 25 28 24q74 0 96.5 14.5t51.5 81.5l33 82l376 1026l-12 50q-4 10 8.5 19t32.5 11h66q78 0 96 -26q104 -272 189 -497.5t129 -341.5t61 -159q37 -106 55 -157q25 -70 47.5 -89.5t85.5 -19.5h14q18 0 25.5 -23.5t0.5 -47t-28 -23.5q-229 10 -538 2q-35 0 -35 51 q0 47 53 47q20 0 47 1t37 1q49 2 63.5 23.5t-1.5 64.5q-63 166 -138 369q-8 18 -43 18h-305q-23 2 -41 -26q-35 -100 -127 -348q-10 -31 -10 -62t43 -39t88 -4q18 2 41 0q25 -4 25 -51q-2 -16 -10.5 -30.5t-14.5 -14.5q-338 6 -438 0h-23q-41 8 -28 74zM500 1690 q0 88 61.5 149.5t149.5 61.5q84 0 145.5 -61.5t61.5 -149.5t-61.5 -149.5t-145.5 -61.5q-88 0 -149.5 61.5t-61.5 149.5zM549 723q-2 -6 14 -16q125 4 230 0q4 0 8 9t2 17q-53 139 -111 334q-10 25 -24 -18q-23 -70 -119 -326zM612 1690q0 -41 29 -70t70 -29q37 0 65.5 29 t28.5 70t-28.5 69.5t-65.5 28.5q-41 0 -70 -28.5t-29 -69.5z" />
144
+ <glyph unicode="&#xc6;" horiz-adv-x="1873" d="M-115 43q-2 20 8.5 27.5t34.5 9.5q63 8 104.5 43t104.5 141q272 446 541 899q27 41 27 62q0 14 -3.5 21t-25 12.5t-66.5 5.5q-20 0 -30.5 6t-8.5 20l2 29q6 29 37 29q145 -4 545.5 -1t474.5 1q20 0 40 -10.5t22 -24.5q0 -12 18 -269q0 -8 -2 -12q0 -16 -20 -16h-31 q-8 0 -14.5 3t-9.5 6t-6 10t-5 11.5t-4 14.5t-2 12q-20 92 -43 123t-62 31h-57h-319q-39 0 -39 -25v-407q0 -41 32 -41l236 4q94 0 117 16q25 16 43 105q4 33 32 32h29q29 0 29 -43q0 -315 2 -360q2 -25 -3 -33t-22 -8q-18 -4 -39 -2q-23 0 -26 35q-12 94 -37 114.5 t-121 18.5l-246 -4q-27 0 -26 -41v-338q0 -96 23.5 -116.5t115.5 -20.5q45 -4 209 0q98 4 130 13t58 44q45 57 70 152q2 10 3 13t4 8t8 6t16 1h26q31 0 31 -49q-2 -53 -27 -262q-4 -47 -69 -47h-1047q-41 0 -41 33v20q0 45 60 41q63 -2 101 4t72.5 35t34.5 86l3 72v202 q0 10 -13.5 18.5t-23.5 8.5h-371q-20 0 -31 -18l-164 -269q-45 -74 -45 -102q0 -45 119 -45q10 0 16.5 -3t10.5 -5t6 -9.5t2 -10.5t1 -14t1 -13q2 -35 -35 -35q-31 0 -127 2t-175 2t-124 -4q-6 0 -12 1t-9 5t-6 7t-5.5 10t-2.5 10.5t-2 11.5zM528 645q6 -8 25 -10h281 q14 0 28.5 15.5t14.5 27.5v508q0 37 -19 6q-125 -186 -330 -547z" />
145
+ <glyph unicode="&#xc7;" horiz-adv-x="1560" d="M113 651q0 315 209.5 513t543.5 198q150 0 334 -70q66 -25 88 -6q10 8 37 5t31 -13q23 -104 18 -184v-123q-6 -27 -37.5 -34t-44.5 13q-109 313 -413 314q-240 0 -377 -154t-137 -418q0 -270 152.5 -446t389.5 -176q180 0 322 127q39 35 58.5 62.5t58.5 94.5 q6 14 29.5 19.5t42 -3t14.5 -26.5q-55 -178 -148 -332q-33 8 -51 8q-61 0 -154 -30q-72 -23 -178 -27q-20 -4 -33 -20l-30 -60q-9 -16 26 -28q45 -18 73 -60.5t28 -97.5q0 -84 -57.5 -149.5t-135.5 -65.5q-45 0 -84 14q-33 14 -18 35q2 2 7 12.5t7 12.5q6 16 29 12 q29 -6 39 -6q33 0 59.5 33.5t26.5 68.5q0 29 -14.5 46.5t-35.5 17.5q-31 0 -106 -39q-10 -4 -17.5 2t-7.5 17t9 28l120 201q14 23 -20 28q-291 25 -472 215.5t-181 470.5z" />
146
+ <glyph unicode="&#xc8;" horiz-adv-x="1267" d="M48 44q5 42 32 46q14 2 86 2q94 4 116.5 34t22.5 157v768q0 127 -23.5 159.5t-123.5 32.5h-13.5h-12.5t-10 1t-11.5 3t-9.5 7.5t-9 13.5q-10 18 8 53q8 16 45 16q655 4 895 0q45 0 50 -30q8 -66 11 -120t4 -98.5t3 -60.5q-2 -14 -23.5 -18t-37.5 2q-23 4 -23 32 q-20 119 -54 147t-153 32q-16 0 -117.5 2t-150.5 0q-8 -2 -18.5 -14.5t-10.5 -20.5v-408q0 -10 4 -17t8.5 -11t6.5 -4h235q115 0 137.5 18t36.5 123q2 2 8.5 6t17.5 9t21.5 6t20.5 -9t14 -33q2 -47 2 -113.5t-1 -144t-1 -104.5t-20.5 -36t-41 -2t-22.5 19q-16 100 -38.5 120 t-137.5 20h-231q-18 -4 -19 -19v-340q0 -115 17.5 -134t124.5 -19h159q111 0 148 8t61 37q45 55 72 160q4 23 28 30q45 4 56 -16q0 -66 -6 -124t-14.5 -113.5t-8.5 -63.5q-4 -39 -90 -39q-715 0 -981 -2l-10 2q-33 6 -28 48zM418 1745q-16 18 0 37.5t39 19.5l153 2 q35 0 49 -22q61 -174 99 -334q0 -31 -29 -35t-41 12q-106 143 -270 320z" />
147
+ <glyph unicode="&#xc9;" horiz-adv-x="1267" d="M48 44q5 42 32 46q14 2 86 2q94 4 116.5 34t22.5 157v768q0 127 -23.5 159.5t-123.5 32.5q-51 0 -66 25q-10 18 8 53q8 16 45 16q655 4 895 0q45 0 50 -30q8 -66 11 -120t4 -98.5t3 -60.5q-2 -14 -23.5 -18t-37.5 2q-23 4 -23 32q-20 119 -54 147t-153 32q-16 0 -117.5 2 t-150.5 0q-8 -2 -18.5 -14.5t-10.5 -20.5v-408q0 -10 4 -17t8.5 -11t6.5 -4h235q115 0 137.5 18t36.5 123q2 2 8.5 6t17.5 9t21.5 6t20.5 -9t14 -33q2 -47 2 -113.5t-1 -144t-1 -104.5t-20.5 -36t-41 -2t-22.5 19q-16 100 -38.5 120t-137.5 20h-231q-18 -4 -19 -19v-340 q0 -115 17.5 -134t124.5 -19h159q111 0 148 8t61 37q45 55 72 160q4 23 28 30q45 4 56 -16q0 -66 -6 -124t-14.5 -113.5t-8.5 -63.5q-4 -39 -90 -39q-715 0 -981 -2l-10 2q-33 6 -28 48zM510 1446l98 332q10 35 47 34l179 3q18 0 29 -8.5t9 -26.5l-2 -2v-4q-2 0 -2 -5 q0 -2 -2 -4l-286 -348q-14 -16 -47 -9t-23 38z" />
148
+ <glyph unicode="&#xca;" horiz-adv-x="1267" d="M48 44q5 42 32 46q14 2 86 2q94 4 116.5 34t22.5 157v768q0 127 -23.5 159.5t-123.5 32.5h-13.5h-12.5t-10 1t-11.5 3t-9.5 7.5t-9 13.5q-10 18 8 53q8 16 45 16q655 4 895 0q45 0 50 -30q8 -66 11 -120t4 -98.5t3 -60.5q-2 -14 -23.5 -18t-37.5 2q-23 4 -23 32 q-20 119 -54 147t-153 30q-190 6 -268 2q-8 0 -18.5 -12.5t-10.5 -20.5v-408q0 -10 4 -17t8.5 -11t6.5 -4h235q115 0 137.5 18t36.5 123q2 2 8.5 6t17.5 9t21.5 6t20.5 -9t14 -33q2 -47 2 -113.5t-1 -144t-1 -104.5t-20.5 -36t-41 -2t-22.5 19q-16 100 -38.5 120t-137.5 20 h-231q-18 -4 -19 -19v-340q0 -115 17.5 -134t124.5 -19h159q111 0 148 8t61 37q45 55 72 160q4 23 28 30q45 4 56 -16q0 -66 -6 -124t-14.5 -113.5t-8.5 -63.5q-4 -39 -90 -39q-715 0 -981 -2l-10 2q-33 6 -28 48zM350 1456l176 316q10 18 33 26q14 2 74.5 3t81.5 -1 q29 -2 41 -26l178 -308q19 -35 -8 -41q-37 -8 -52 7l-237 202l-223 -202q-23 -20 -54 -5q-20 12 -10 29z" />
149
+ <glyph unicode="&#xcb;" horiz-adv-x="1267" d="M48 44q5 42 32 46q14 2 86 2q94 4 116.5 34t22.5 157v768q0 127 -23.5 159.5t-123.5 32.5h-13.5h-12.5t-10 1t-11.5 3t-9.5 7.5t-9 13.5q-10 18 8 51q8 16 45 16q655 4 895 0q45 0 50 -30q8 -66 11 -119t4 -97.5t3 -60.5q-2 -14 -23.5 -18t-37.5 2q-23 2 -23 30 q-20 121 -54 149t-153 30q-190 6 -268 2q-8 0 -18.5 -12.5t-10.5 -20.5v-410q0 -12 7.5 -21t11.5 -9h235q115 0 137.5 17t36.5 124q2 2 8.5 6t17.5 9t21.5 5t20.5 -10t14 -33q2 -45 2 -111.5t-1 -144t-1 -104.5t-20.5 -36t-41 -3t-22.5 18q-16 102 -38.5 122t-137.5 20h-231 q-18 -4 -19 -21v-338q0 -115 17.5 -134t124.5 -19h159q111 0 148 8t61 37q45 55 72 160q4 23 28 30q45 4 56 -16q0 -66 -6 -124t-14.5 -113.5t-8.5 -63.5q-4 -39 -90 -39q-715 0 -981 -2l-10 2q-33 6 -28 48zM342 1554.5q0 53.5 37 90t88 36.5q53 0 90 -37.5t37 -89.5 q0 -53 -37 -88.5t-90 -35.5q-51 0 -88 35.5t-37 89zM680 1554.5q0 51.5 37 89t88 37.5q55 0 91 -36.5t36 -90.5q0 -51 -36 -87.5t-91 -36.5q-51 0 -88 36.5t-37 88z" />
150
+ <glyph unicode="&#xcc;" horiz-adv-x="743" d="M106 35q0 16 9.5 32.5t17.5 16.5q88 8 106.5 27.5t22.5 99.5l2 72v768l-2 69q-2 76 -21.5 99.5t-93.5 31.5q-37 6 -35.5 42t23.5 44q2 2 10 2h11q45 0 124.5 -3t148.5 -3t177 6q41 0 43 -32q5 -52 -20 -58q-4 0 -13.5 -1t-13.5 -1q-84 0 -104.5 -30.5t-20.5 -165.5v-840 q0 -29 2 -49.5t13.5 -33.5t16.5 -20.5t29.5 -11.5t34 -5t45.5 -3q10 0 17 -2q23 -14 21.5 -54t-27.5 -38q-246 8 -488 0q-14 0 -24.5 11t-10.5 30zM144.5 1782.5q13.5 19.5 35.5 19.5l152 2q33 0 47 -22q55 -145 98 -332q2 -27 -25.5 -34t-43.5 9q-109 147 -263 320 q-14 18 -0.5 37.5z" />
151
+ <glyph unicode="&#xcd;" horiz-adv-x="743" d="M106 35q0 16 9.5 32.5t17.5 16.5q88 8 106.5 27.5t22.5 99.5l2 72v768l-2 71q-2 76 -21.5 98.5t-93.5 30.5q-37 6 -35.5 42t23.5 44q2 2 10 2h11q45 0 124.5 -3t148.5 -3t177 6q41 0 43 -32q5 -52 -20 -58q-4 0 -13.5 -1t-13.5 -1q-84 0 -104.5 -30.5t-20.5 -165.5v-840 q0 -29 2 -49.5t13.5 -33.5t16.5 -20.5t29.5 -11.5t34 -5t45.5 -3q10 0 17 -2q23 -14 21.5 -54t-27.5 -38q-246 8 -488 0q-14 0 -24.5 11t-10.5 30zM238 1462l96 334q16 33 47 33t71 1t56 2t43 -1q69 -7 22 -64l-266 -333q-12 -16 -46 -9t-23 37z" />
152
+ <glyph unicode="&#xce;" horiz-adv-x="741" d="M88 1440l172 315q10 18 33 27q14 2 73.5 3t77.5 -1q29 -2 43 -27l175 -307q18 -35 -11 -41q-33 -10 -49 6l-233 203l-219 -203q-25 -23 -54 -2q-18 10 -8 27zM104 35q0 16 10.5 32.5t18.5 16.5q88 8 107.5 28.5t21.5 98.5l2 72v768l-2 69q-2 78 -21.5 100.5t-95.5 30.5 q-35 6 -34.5 42t22.5 44q4 2 10 2h11q45 0 125.5 -3t150.5 -3t178 6q41 0 43 -32q5 -50 -18 -58q-6 0 -16.5 -1t-12.5 -1q-86 -2 -107.5 -31.5t-21.5 -164.5v-840q0 -43 6 -68.5t28.5 -37t42 -13.5t66.5 -4q10 0 17 -2q18 -12 21 -34.5t-5 -40t-20 -17.5q-246 8 -490 0 q-37 0 -37 41z" />
153
+ <glyph unicode="&#xcf;" horiz-adv-x="743" d="M57 1554.5q0 55.5 38 94.5t91.5 39t91 -39t37.5 -94.5t-37.5 -93.5t-91 -38t-91.5 38t-38 93.5zM106 35q0 16 9.5 32.5t19.5 16.5q88 8 106.5 28.5t20.5 98.5l2 72v768l-2 69q-2 76 -21.5 99.5t-93.5 31.5q-35 4 -34.5 41t22.5 45h10h11q8 0 196.5 -4t255.5 4 q41 4 43 -30q5 -56 -18 -58q-6 0 -14.5 -1t-14.5 -1q-86 -2 -106.5 -31.5t-20.5 -164.5v-840q0 -43 6 -68.5t29 -37t42 -13.5t67 -4q10 0 16 -2q23 -14 21.5 -54t-27.5 -38q-246 8 -490 0q-14 0 -24.5 11t-10.5 30zM408 1554q0 55 37.5 94.5t91.5 39.5q55 0 93 -39t38 -94.5 t-38 -93.5t-93 -38q-53 0 -91 39t-38 92z" />
154
+ <glyph unicode="&#xd0;" horiz-adv-x="1628" d="M0 655v72q0 4 1 11t13.5 18.5t34.5 11.5h154q12 0 21 15.5t9 31.5v246q0 143 -23.5 168.5t-141.5 25.5q-41 0 -41 48q0 45 39 51l167 6q152 6 457 6q201 0 337 -34t247 -113q123 -90 192.5 -221.5t69.5 -282.5q0 -231 -149.5 -423.5t-374.5 -258.5q-104 -31 -168 -37 t-271 -6q-438 0 -512 -2q-14 -2 -25 6t-11 22q0 43 4 52q6 12 13 17t12 5t16.5 -1t17.5 -1q88 0 114.5 22.5t28.5 98.5q2 59 2 373q0 31 -30 30l-172 -2q-31 6 -31 45zM453 211q0 -94 21.5 -114.5t131.5 -20.5q143 0 212 10t140 43q147 68 234.5 217.5t87.5 333.5 q0 152 -54.5 277.5t-150.5 199.5q-63 49 -136 73.5t-191 37.5q-147 12 -193 12q-4 0 -22.5 1t-28.5 0t-24.5 -4t-20.5 -12.5t-6 -23.5v-430q0 -14 10 -28.5t20 -14.5l285 2q55 0 55 -47v-76q-6 -33 -53 -33l-289 -2q-29 0 -28 -39v-362z" />
155
+ <glyph unicode="&#xd1;" horiz-adv-x="1708" d="M74 63q10 27 43 27q141 0 141 107v1011q-49 31 -158 35q-18 0 -18 47q0 39 43 43q55 4 160.5 2t128.5 -2q33 0 57 -28l819 -934q6 -12 17 16q4 8 4 16v646q0 86 -3 116.5t-20 42.5q-16 16 -49 23q-16 2 -54 4t-57 4q-18 0 -26 24.5t-1 47t27 22.5q147 -6 498 2 q23 0 23 -51q2 -25 -7 -33t-32 -8q-113 -4 -134.5 -25.5t-21.5 -134.5v-1065q0 -37 -50 -41t-63 15q-152 172 -444.5 508t-454.5 520q-12 12 -21 18t-15 -4v-743q0 -100 10 -133q18 -53 86 -60q2 0 33.5 1t52 -4t26.5 -17q12 -23 3 -53.5t-37 -30.5q-326 6 -474 -2 q-20 0 -30 24q-12 20 -2 47zM496 1475q6 133 58 207.5t148 74.5q82 0 203 -82q76 -53 113 -53q27 0 42 23.5t27 99.5q0 23 35 22q33 6 37 -22q4 -13 4 -27q0 -113 -59.5 -187.5t-151.5 -74.5q-82 0 -198 82q-82 55 -113 55q-23 0 -37 -17t-26 -67q0 -2 -7 -39 q-10 -18 -39.5 -20t-35.5 25z" />
156
+ <glyph unicode="&#xd2;" horiz-adv-x="1693" d="M102 639q0 313 211 520t537 207q317 0 524 -190.5t207 -481.5q0 -311 -210 -522t-525 -211q-317 0 -530.5 194.5t-213.5 483.5zM350 692q0 -272 149.5 -451.5t381.5 -179.5q240 0 346 159t106 413q0 281 -148 458t-392 177q-201 0 -322 -159t-121 -417zM659 1745 q-16 16 0.5 36.5t38.5 20.5l154 2q37 0 49 -22q57 -160 100 -334q0 -31 -28.5 -34t-42.5 11q-106 143 -271 320z" />
157
+ <glyph unicode="&#xd3;" horiz-adv-x="1693" d="M102 639q0 313 211 520t537 207q317 0 524 -190.5t207 -481.5q0 -311 -210 -522t-525 -211q-317 0 -530.5 194.5t-213.5 483.5zM350 692q0 -272 149.5 -451.5t381.5 -179.5q240 0 346 159t106 413q0 281 -148 458t-392 177q-201 0 -322 -159t-121 -417zM756 1444l100 332 q10 35 45 34q178 2 184 2q31 -4 33 -22q2 -4 0 -10q0 -13 -4 -17l-289 -348q-12 -16 -44.5 -9t-24.5 38z" />
158
+ <glyph unicode="&#xd4;" horiz-adv-x="1693" d="M102 639q0 313 211 520t537 207q317 0 524 -190.5t207 -481.5q0 -311 -210 -522t-525 -211q-317 0 -530.5 194.5t-213.5 483.5zM350 692q0 -272 149.5 -451.5t381.5 -179.5q240 0 346 159t106 413q0 281 -148 458t-392 177q-201 0 -322 -159t-121 -417zM584 1440l180 315 q10 18 33 27q12 2 73.5 3t81.5 -1q29 -2 43 -27l174 -307q20 -35 -6 -43q-39 -6 -51 8l-238 203l-225 -203q-25 -23 -55 -4q-20 12 -10 29z" />
159
+ <glyph unicode="&#xd5;" horiz-adv-x="1693" d="M102 639q0 313 211 520t537 207q317 0 524 -190.5t207 -481.5q0 -311 -210 -522t-525 -211q-317 0 -530.5 194.5t-213.5 483.5zM350 692q0 -272 149.5 -451.5t381.5 -179.5q240 0 346 159t106 413q0 281 -148 458t-392 177q-201 0 -322 -159t-121 -417zM516 1456 q6 127 58.5 197.5t146.5 70.5q82 0 201 -77q78 -51 110 -52q27 0 42.5 22.5t27.5 94.5q4 20 35 21q35 6 34 -19q4 -12 5 -26q0 -106 -58.5 -179t-148.5 -73q-84 0 -197 75q-88 57 -110 58q-25 0 -38.5 -15.5t-25.5 -64.5q0 -4 -6 -35q-10 -20 -40 -22t-36 24z" />
160
+ <glyph unicode="&#xd6;" horiz-adv-x="1693" d="M102 639q0 313 211 520t537 207q317 0 524 -190.5t207 -481.5q0 -311 -210 -522t-525 -211q-317 0 -530.5 194.5t-213.5 483.5zM350 692q0 -272 149.5 -451.5t381.5 -179.5q240 0 346 159t106 413q0 281 -148 458t-392 177q-201 0 -322 -159t-121 -417zM537 1554.5 q0 55.5 39.5 94.5t93.5 39q55 0 94 -39t39 -94.5t-39 -93.5t-94.5 -38t-94 38t-38.5 93.5zM895 1554q0 55 39 94.5t94 39.5t94 -39t39 -95q0 -53 -39 -92t-94 -39t-94 39t-39 92z" />
161
+ <glyph unicode="&#xd7;" horiz-adv-x="1431" d="M212 1111q1 11 0 17.5t8 17.5t12.5 14t18.5 17.5t17 16.5q2 4 11.5 9t26 5t30.5 -12q168 -164 362 -373q16 -16 26.5 -15t33.5 21q131 117 334 347q14 16 41.5 23t37.5 -1l52 -47q39 -33 0 -72q-27 -27 -176.5 -178t-196.5 -192q-20 -18 -2 -37l364 -363q12 -12 18.5 -21 t6.5 -19.5t-1 -16.5t-10 -15.5t-14.5 -13.5t-18.5 -14t-17 -14q-43 -35 -74 -5l-344 353q-37 37 -74 -6q-98 -109 -336 -338q-18 -16 -33.5 -21.5t-35 7t-24.5 17.5t-28 27q-39 39 0 74q43 41 183.5 182.5t179.5 180.5q20 23 2 45l-354 356q-12 12 -19.5 22.5t-6.5 21.5z " />
162
+ <glyph unicode="&#xd8;" horiz-adv-x="1742" d="M98 649q0 311 227.5 522t559.5 211q246 0 438 -116q14 -10 37 20l115 139q25 25 51 5l16 -13q29 -23 -8 -63l-100 -115q-25 -33 -11 -45q229 -199 230 -494q0 -315 -224 -530t-550 -215q-227 0 -426 108q-25 14 -52 -18l-143 -168q-23 -23 -34 -22.5t-34 18.5 q-35 29 -8 57l144 162q33 33 10 51q-238 203 -238 506zM348 705q0 -240 115 -408q12 -16 22.5 -13t30.5 27q420 508 668 779q39 39 20 53q-152 141 -379 141q-209 0 -343 -160.5t-134 -418.5zM560 206q-1 -18 5 -24q152 -127 350 -127q240 0 373 189q113 164 116 392 t-106 398q-18 29 -49 -10q-334 -383 -678 -788q-10 -12 -11 -30z" />
163
+ <glyph unicode="&#xd9;" horiz-adv-x="1669" d="M47 1304.5q0 12.5 7 21.5t24 11q80 6 547 0q20 0 26 -22.5t-3 -44t-25 -21.5h-19q-86 0 -112.5 -24.5t-30.5 -104.5q0 -14 -1 -42.5t-1 -45.5v-395q0 -244 93 -382t320 -138q291 0 379 233q31 84 31 277v364q0 166 -29.5 209t-142.5 47l-14 4q-23 4 -24 44t26 42 q225 4 499 0q12 0 20.5 -13t8.5 -28q0 -39 -29 -45q-113 -4 -144.5 -48t-31.5 -204v-370q0 -100 -3 -152.5t-18.5 -124t-52 -128t-98.5 -111.5q-92 -82 -185 -117t-239 -35q-397 0 -536 309q-31 70 -39 128.5t-8 209.5v527q0 76 -27 94t-137 20q-6 0 -13.5 8.5t-12.5 21.5 t-5 25.5zM629 1745q-14 18 1 37.5t38 19.5l155 2q35 0 49 -22q61 -162 101 -334q0 -31 -30 -35t-42 12q-98 133 -272 320z" />
164
+ <glyph unicode="&#xda;" horiz-adv-x="1669" d="M47 1304.5q0 12.5 7 21.5t24 11q43 2 232.5 2t314.5 -2q20 0 26 -22.5t-3 -44t-25 -21.5h-19q-86 0 -112.5 -24.5t-30.5 -104.5q0 -14 -1 -42.5t-1 -45.5v-395q0 -244 93 -382t320 -138q291 0 379 233q31 84 31 277v364q0 166 -29.5 209t-142.5 47l-14 4q-23 4 -24 45 t26 41q225 4 499 0q12 0 20.5 -13t8.5 -28q0 -39 -29 -45q-113 -4 -144.5 -48t-31.5 -204v-370q0 -100 -3 -152.5t-18.5 -124t-52 -128t-98.5 -111.5q-92 -82 -185 -117t-239 -35q-397 0 -536 309q-31 70 -39 128.5t-8 209.5v527q0 76 -27 94t-137 20q-6 0 -13.5 8.5 t-12.5 21.5t-5 25.5zM727 1444l98 332q10 35 47 34l179 2q18 0 30.5 -8t10.5 -24q0 -2 -1 -4t-1 -4v-3l-293 -354q-14 -18 -47 -10t-23 39z" />
165
+ <glyph unicode="&#xdb;" horiz-adv-x="1669" d="M47 1304.5q0 12.5 7 21.5t24 11q80 6 547 0q20 0 26 -22.5t-3 -44t-25 -21.5h-19q-84 0 -111.5 -25.5t-31.5 -103.5q0 -14 -1 -42.5t-1 -45.5v-395q0 -244 93 -382t320 -138q291 0 379 233q31 84 31 275v366q0 166 -29.5 209t-142.5 47l-14 4q-23 4 -24 44t26 42h499 q12 0 20.5 -13t8.5 -30q0 -37 -29 -43q-113 -4 -144.5 -48t-31.5 -204v-372q0 -98 -3 -150.5t-18.5 -124t-52 -128t-98.5 -111.5q-92 -82 -185 -117t-239 -35q-397 0 -536 309q-31 70 -39 128.5t-8 209.5v525q0 78 -27 96t-137 20q-6 0 -13.5 8.5t-12.5 21.5t-5 25.5z M555 1440l178 315q10 18 33 27q14 2 74.5 3t83.5 -1q27 -2 41 -27l178 -307q17 -35 -10 -43q-35 -6 -50 8l-239 203l-226 -203q-20 -20 -53 -4q-20 12 -10 29z" />
166
+ <glyph unicode="&#xdc;" horiz-adv-x="1669" d="M47 1302.5q0 12.5 7 21.5t24 11q43 4 232.5 4t314.5 -4q20 0 26 -22.5t-3 -44t-25 -19.5h-19q-84 0 -108.5 -24.5t-28.5 -104.5q0 -16 -1 -44.5t-1 -43.5v-395q0 -117 18.5 -206t62.5 -162.5t126 -112.5t200 -39q291 0 379 233q31 84 31 275v366q0 166 -29.5 209 t-142.5 47l-14 4q-23 4 -24 44t26 40q225 4 499 0q12 0 20.5 -12t8.5 -29q0 -37 -29 -43q-113 -4 -144.5 -48t-31.5 -204v-372q0 -131 -6 -199t-46 -156t-120 -159q-92 -82 -185 -117t-239 -35q-401 0 -540 309q-31 70 -39 128.5t-8 207.5v527q0 78 -25 96t-135 20 q-6 0 -13.5 8.5t-12.5 20.5t-5 24.5zM498 1554.5q0 55.5 38.5 94.5t94 39t94.5 -39t39 -94.5t-39 -93.5t-94.5 -38t-94 38t-38.5 93.5zM956 1554q0 55 40 94.5t95.5 39.5t93.5 -39t38 -95q0 -53 -38 -92t-93.5 -39t-95.5 39t-40 92z" />
167
+ <glyph unicode="&#xdd;" horiz-adv-x="1490" d="M33 1266q-4 14 0 32q4 35 35 33q389 -6 540 0q16 0 27.5 -22.5t4.5 -44t-38 -21.5q-106 0 -106 -29q0 -35 53 -116l262 -402q6 -8 21.5 -4t23.5 17l215 364q57 98 57 129q0 14 -4 22.5t-26.5 14.5t-67.5 6h-22q-23 8 -21 48t39 38q172 -6 440 0q29 0 29 -41 q0 -45 -29 -45q-25 -2 -46 -6t-40.5 -13t-34 -17.5t-31 -25l-25.5 -25.5t-23.5 -32.5t-20.5 -33t-21.5 -37t-21.5 -35.5l-297 -502v-106.5v-124v-76.5q0 -66 33 -88.5t96 -26.5q53 0 62 -4q14 -8 14 -55q0 -45 -35 -45q-393 6 -553 2q-33 0 -43 22q-12 23 -2 52q8 23 21 26 q10 6 24.5 7t35 -1t26.5 -2q51 2 71.5 30t24.5 83q8 147 2 283l-367 573q-74 113 -115.5 143.5t-127.5 32.5q-33 0 -39 23zM635 1444l98 334q18 33 47 32l178 2q51 1 39 -40v-3l-292 -354q-12 -16 -46 -9t-24 38z" />
168
+ <glyph unicode="&#xde;" horiz-adv-x="1206" d="M39 1300v19q0 31 39 31q358 -6 508 -2q41 2 41 -29v-23q0 -29 -17 -32q-2 -2 -14 -2q-106 0 -121 -25q-12 -20 -12 -111q0 -8 9 -18t20 -8q225 0 348 -31q133 -33 214 -130t81 -232q0 -197 -141.5 -311.5t-381.5 -114.5q-92 0 -143 10q-6 0 -6 -31v-24.5v-14.5v-12 q0 -78 27.5 -103.5t115.5 -25.5h43q51 -4 51 -31v-25.5t-10 -22.5t-33 -9q-297 8 -544 -2q-14 0 -22.5 2t-15.5 10t-5 25q4 29 14 39t41 10q86 0 100 26q12 20 13 64v98v844q0 111 -13 133q-8 12 -37 16q-16 6 -66 5.5t-59 3.5q-25 6 -24 34zM463 412q0 -33 16 -37 q37 -6 76 -6q152 0 245 94t93 250q0 198 -127 266q-106 55 -268 37q-35 -12 -35 -27v-577z" />
169
+ <glyph unicode="&#xdf;" horiz-adv-x="1116" d="M39 33q0 25 5 35t30 12q72 4 84 19.5t12 99.5v77v512q0 238 19.5 335.5t84.5 183.5q117 150 314 149q158 0 267.5 -96t109.5 -238q0 -98 -63.5 -182t-174.5 -139q-10 -4 -7 -10.5t17 -10.5q135 -49 215 -152.5t80 -244.5q0 -190 -108.5 -304t-266.5 -114 q-49 0 -83.5 23.5t-34.5 66.5q0 33 20.5 57.5t50.5 24.5q25 0 74 -31q43 -18 51 -18q33 0 60.5 74t27.5 196q0 160 -52 255.5t-146 113.5q-39 10 -103 10q-25 0 -37 13q-6 8 -6 30q0 33 31 37q129 18 197.5 92t68.5 195t-58.5 190.5t-152.5 69.5t-149 -84q-55 -86 -56 -264 v-131v-609v-90q0 -74 12.5 -88t78.5 -14q25 -4 34 -14.5t9 -36.5q0 -18 -5 -27q-8 -20 -28 -14q-211 8 -387 0q-20 -2 -27.5 9t-7.5 32z" />
170
+ <glyph unicode="&#xe0;" horiz-adv-x="847" d="M51 166q0 158 219 215q61 16 185 72q16 16 16 26l-2 129q-2 168 -123 168q-31 0 -66.5 -25.5t-35.5 -52.5q0 -33 8 -51q-12 -14 -62.5 -38.5t-66.5 -28.5q-29 -10 -44.5 -2t-15.5 43q0 74 130 178q106 84 194 84q66 0 130.5 -33t100.5 -86q25 -35 30 -65.5t5 -127.5v-362 q0 -41 5.5 -61.5t11.5 -23.5t16 -3q39 0 78 35q14 8 24 8q20 -4 26.5 -27.5t-3.5 -40.5q-137 -121 -219 -121q-86 0 -111 95q-2 12 -16 2q-70 -55 -112 -76t-97 -21q-90 0 -147.5 53.5t-57.5 137.5zM209 1288q-14 18 1 38t38 20l151 2q35 0 47 -23q68 -188 101 -332 q0 -31 -29 -34.5t-41 12.5q-121 160 -268 317zM225 193q0 -41 29 -70t72 -29q29 0 80 34t63 62v138q0 14 -5 24t-11 8q-53 -27 -125 -57q-102 -41 -103 -110z" />
171
+ <glyph unicode="&#xe1;" horiz-adv-x="847" d="M51 166q0 158 219 215q61 16 185 72q16 16 16 26l-2 129q-2 168 -123 168q-31 0 -66.5 -25.5t-35.5 -52.5q0 -33 8 -51q-12 -14 -62.5 -38.5t-66.5 -28.5q-29 -10 -44.5 -2t-15.5 43q0 74 130 178q106 84 194 84q66 0 130.5 -33t100.5 -86q25 -35 30 -65.5t5 -127.5v-362 q0 -41 5.5 -61.5t11.5 -23.5t16 -3q39 0 78 35q14 8 24 8q20 -4 26.5 -27.5t-3.5 -40.5q-137 -121 -219 -121q-86 0 -111 95q-2 12 -16 2q-70 -55 -112 -76t-97 -21q-90 0 -147.5 53.5t-57.5 137.5zM225 193q0 -41 29 -70t72 -29q29 0 80 34t63 62v138q0 14 -5 24t-11 8 q-53 -27 -125 -57q-102 -41 -103 -110zM305 989l96 330q10 35 48 35h176q18 0 29.5 -7.5t9.5 -25.5l-2 -2v-4q0 -4 -5 -8l-284 -346q-12 -18 -45 -10.5t-23 38.5z" />
172
+ <glyph unicode="&#xe2;" horiz-adv-x="847" d="M51 166q0 158 219 215q61 16 185 72q16 16 16 26l-2 129q-2 168 -123 168q-31 0 -66.5 -25.5t-35.5 -52.5q0 -33 8 -51q-12 -14 -62.5 -38.5t-66.5 -28.5q-29 -10 -44.5 -2t-15.5 43q0 74 130 178q106 84 194 84q66 0 130.5 -33t100.5 -86q25 -35 30 -65.5t5 -127.5v-362 q0 -41 5.5 -61.5t11.5 -23.5t16 -3q39 0 78 35q14 8 24 8q20 -4 26.5 -27.5t-3.5 -40.5q-137 -121 -219 -121q-86 0 -111 95q-2 12 -16 2q-70 -55 -112 -76t-97 -21q-90 0 -147.5 53.5t-57.5 137.5zM109 1001l178 302q12 18 32 24q12 2 61.5 3t70.5 -1q29 -2 43 -24 l176 -293q15 -35 -8 -41q-31 -8 -50 6l-227 194l-213 -194q-23 -18 -53 -2q-20 10 -10 26zM225 193q0 -41 29 -70t72 -29q29 0 80 34t63 62v138q0 14 -5 24t-11 8q-53 -27 -125 -57q-102 -41 -103 -110z" />
173
+ <glyph unicode="&#xe3;" horiz-adv-x="847" d="M51 166q0 158 219 215q61 16 185 72q16 16 16 26l-2 129q-2 168 -123 168q-31 0 -66.5 -25.5t-35.5 -52.5q0 -33 8 -51q-12 -14 -62.5 -38.5t-66.5 -28.5q-29 -10 -44.5 -2t-15.5 43q0 74 130 178q106 84 194 84q66 0 130.5 -33t100.5 -86q25 -35 30 -65.5t5 -127.5v-362 q0 -41 5.5 -61.5t11.5 -23.5t16 -3q39 0 78 35q14 8 24 8q20 -4 26.5 -27.5t-3.5 -40.5q-137 -121 -219 -121q-86 0 -111 95q-2 12 -16 2q-70 -55 -112 -76t-97 -21q-90 0 -147.5 53.5t-57.5 137.5zM90 975q6 129 58.5 198.5t146.5 69.5q82 0 201 -78q78 -49 110 -49 q27 0 42.5 22.5t25.5 94.5q4 20 37 20q31 6 34 -20q4 -12 5 -27q0 -106 -58.5 -178t-148.5 -72q-86 0 -199 76q-86 57 -111 58q-23 0 -37 -16.5t-24 -63.5l-6 -37q-10 -18 -40 -20.5t-36 22.5zM225 193q0 -41 29 -70t72 -29q29 0 80 34t63 62v138q0 14 -5 24t-11 8 q-53 -27 -125 -57q-102 -41 -103 -110z" />
174
+ <glyph unicode="&#xe4;" horiz-adv-x="847" d="M51 166q0 158 219 215q61 16 185 72q16 16 16 26l-2 129q-2 168 -123 168q-31 0 -66.5 -25.5t-35.5 -52.5q0 -33 8 -51q-12 -14 -62.5 -38.5t-66.5 -28.5q-29 -10 -44.5 -2t-15.5 43q0 74 130 178q106 84 194 84q66 0 130.5 -33t100.5 -86q25 -35 30 -65.5t5 -127.5v-362 q0 -41 5.5 -61.5t11.5 -23.5t16 -3q39 0 78 35q14 8 24 8q20 -4 26.5 -27.5t-3.5 -40.5q-137 -121 -219 -121q-86 0 -111 95q-2 12 -16 2q-70 -55 -112 -76t-97 -21q-90 0 -147.5 53.5t-57.5 137.5zM133 1100q0 51 37 88t88 37t88 -37t37 -88q0 -55 -37 -91t-88 -36 t-88 35.5t-37 91.5zM225 193q0 -41 29 -70t72 -29q29 0 80 34t63 62v138q0 14 -5 24t-11 8q-53 -27 -125 -57q-102 -41 -103 -110zM469 1100q0 51 37 88t88 37q53 0 89 -37t36 -88q0 -53 -36 -90t-89 -37q-51 0 -88 37t-37 90z" />
175
+ <glyph unicode="&#xe5;" horiz-adv-x="847" d="M51 166q0 158 219 215q61 16 185 72q16 16 16 26l-2 129q-2 168 -123 168q-31 0 -66.5 -25.5t-35.5 -52.5q0 -33 8 -51q-12 -14 -62.5 -38.5t-66.5 -28.5q-29 -10 -44.5 -2t-15.5 43q0 74 130 178q106 84 194 84q66 0 130.5 -33t100.5 -86q25 -35 30 -65.5t5 -127.5v-362 q0 -41 5.5 -61.5t11.5 -23.5t16 -3q39 0 78 35q14 8 24 8q20 -4 26.5 -27.5t-3.5 -40.5q-137 -121 -219 -121q-86 0 -111 95q-2 12 -16 2q-70 -55 -112 -76t-97 -21q-90 0 -147.5 53.5t-57.5 137.5zM193 1182q0 88 61 149.5t149 61.5q84 0 145.5 -61.5t61.5 -149.5 t-61.5 -149.5t-145.5 -61.5q-88 0 -149 61.5t-61 149.5zM225 193q0 -41 29 -70t72 -29q29 0 80 34t63 62v138q0 14 -5 24t-11 8q-53 -27 -125 -57q-102 -41 -103 -110zM305 1182q0 -41 28.5 -70t69.5 -29q37 0 66 29t29 70t-29 69.5t-66 28.5q-41 0 -69.5 -28.5t-28.5 -69.5 z" />
176
+ <glyph unicode="&#xe6;" horiz-adv-x="1339" d="M74 158q0 94 58 143t214 88q98 27 176 76v127q0 180 -131 180q-47 0 -81 -24.5t-34 -55.5q0 -2 3.5 -22.5t-2 -29.5t-19.5 -15l-111 -52q-29 -14 -42 -2.5t-13 54.5q0 74 137 180q100 78 197 78q133 0 219 -97q6 -6 11.5 -7t7.5 0t8 7.5t8 8.5q111 92 258 92 q123 0 189.5 -58.5t121.5 -183.5q10 -23 35 -47v-35q0 -35 -51 -35h-483q-45 0 -45 -32q0 -135 22 -207q25 -74 92.5 -123t145.5 -49q61 0 107 25.5t110 90.5q10 10 28.5 12.5t28.5 -7.5l14 -17q20 -18 -4 -49q-178 -207 -360 -207q-168 0 -277 141q-18 23 -34 7 q-63 -66 -144.5 -107t-148.5 -41q-90 0 -150.5 55.5t-60.5 137.5zM256 186q0 -47 27.5 -72.5t72.5 -25.5q74 0 166 86v164q0 8 -3 14t-11 4q-49 -27 -117 -49q-80 -27 -107.5 -52.5t-27.5 -68.5zM717 621q0 -2 4 -3.5t10 -2.5t10 -1h9h284q2 0 8.5 2t10.5 7l2 2 q-16 82 -61.5 127t-100.5 45q-135 0 -176 -176z" />
177
+ <glyph unicode="&#xe7;" horiz-adv-x="884" d="M61 393q0 205 144.5 348.5t349.5 143.5q100 0 174 -38t74 -102q0 -37 -23.5 -61.5t-58.5 -24.5q-57 0 -131 74q-53 53 -107 53q-92 0 -164.5 -103t-72.5 -245q0 -150 74.5 -245t187.5 -95q133 0 225 129q4 12 17.5 23.5t29.5 7.5q23 -10 27 -33q8 -18 -8 -41 q-117 -180 -291 -211l-33 -61q-8 -18 2 -21q57 -14 97 -61t40 -109q0 -82 -61 -141t-143 -59q-47 0 -88 14q-10 4 -15.5 18.5t0.5 28.5q4 4 8 15q6 12 19.5 13t31 -3t23.5 -4q37 0 66.5 25.5t29.5 58.5q0 37 -24.5 53t-60 8t-70.5 -37q-12 -12 -33 -1t-8 34l121 203 q6 10 3 16t-12 6q-150 14 -245 133t-95 291z" />
178
+ <glyph unicode="&#xe8;" horiz-adv-x="884" d="M53 414q0 199 120 332t302 133q211 0 295 -183q31 -66 55 -96q10 -25 2.5 -45.5t-36.5 -22.5q-150 -6 -521 0q-39 0 -39 -67q0 -152 80 -249t203 -97q135 0 238 125q18 18 41 12q16 -4 25 -23.5t1 -33.5q-193 -229 -385 -230q-164 0 -272.5 129t-108.5 316zM256 639 q-2 -8 5 -13t15.5 -6.5t14.5 -1.5h276q37 0 35 15q-43 162 -172 162q-117 0 -174 -156zM259 1326q15 20 38 20l152 2q35 0 47 -23q47 -127 100 -332q0 -31 -29 -34.5t-41 12.5q-117 152 -266 317q-16 18 -1 38z" />
179
+ <glyph unicode="&#xe9;" horiz-adv-x="884" d="M53 414q0 199 120 332t302 133q211 0 295 -183q31 -66 55 -96q10 -25 2.5 -45.5t-36.5 -22.5q-150 -6 -521 0q-39 0 -39 -67q0 -152 80 -249t203 -97q135 0 238 125q18 18 41 12q16 -4 25 -23.5t1 -33.5q-193 -229 -385 -230q-164 0 -272.5 129t-108.5 316zM256 639 q-2 -8 5 -13t15.5 -6.5t14.5 -1.5h276q37 0 35 15q-43 162 -172 162q-117 0 -174 -156zM354 989l99 330q10 35 45 35h176q18 0 29.5 -7.5t9.5 -23.5q0 -10 -6 -16l-283 -346q-14 -18 -47 -10.5t-23 38.5z" />
180
+ <glyph unicode="&#xea;" horiz-adv-x="884" d="M53 414q0 199 120 332t302 133q211 0 295 -183q31 -66 55 -96q10 -25 2.5 -45.5t-36.5 -22.5q-150 -6 -521 0q-39 0 -39 -67q0 -152 80 -249t203 -97q135 0 238 125q18 18 41 12q16 -4 25 -23.5t1 -33.5q-193 -229 -385 -230q-164 0 -272.5 129t-108.5 316zM195 1001 l178 302q12 18 33 24q12 2 61 3t70 -1q29 -2 43 -24l176 -293q15 -35 -8 -41q-31 -8 -50 6l-227 194l-213 -194q-23 -18 -53 -2q-20 10 -10 26zM256 639q-2 -8 5 -13t15.5 -6.5t14.5 -1.5h276q37 0 35 15q-43 162 -172 162q-117 0 -174 -156z" />
181
+ <glyph unicode="&#xeb;" horiz-adv-x="884" d="M53 414q0 199 120 332t302 133q211 0 295 -183q31 -66 55 -96q10 -25 2.5 -45.5t-36.5 -22.5q-150 -6 -521 0q-39 0 -39 -67q0 -152 80 -249t203 -97q135 0 238 125q18 18 41 12q16 -4 25 -23.5t1 -33.5q-193 -229 -385 -230q-164 0 -272.5 129t-108.5 316zM182 1100 q0 51 38 88t89 37t88 -37t37 -88q0 -55 -37 -91t-88 -36q-53 0 -90 35.5t-37 91.5zM256 639q-2 -8 5 -13t15.5 -6.5t14.5 -1.5h276q37 0 35 15q-43 162 -172 162q-117 0 -174 -156zM518 1100q0 51 37 88t88 37q53 0 89 -37t36 -88q0 -53 -36 -90t-89 -37q-51 0 -88 37 t-37 90z" />
182
+ <glyph unicode="&#xec;" horiz-adv-x="544" d="M41 35q-4 49 25 49q23 2 38 4t29 3t23.5 8t16.5 8.5t10 13.5t6.5 15t4.5 22.5t1 27v35v41.5v361q0 74 -7 86q-4 8 -36 14q-4 0 -80 22q-18 6 -18.5 34t14.5 38q131 49 241 86q63 20 64 -59v-582q0 -76 2 -104q2 -49 14 -58.5t70 -9.5q41 4 47 -33v-37q0 -31 -41 -26 q-94 6 -395 0q-8 0 -17.5 13t-11.5 28zM61 1290q-14 18 0.5 37t36.5 19l148 2q33 0 47 -21q59 -176 94 -319q0 -29 -27.5 -33t-37.5 12q-129 164 -261 303z" />
183
+ <glyph unicode="&#xed;" horiz-adv-x="544" d="M41 35q-4 49 25 49q23 2 38 4t29 3t23.5 8t16.5 8.5t10 13.5t6.5 15t4.5 22.5t1 27v35v41.5v361q0 74 -7 86q-4 8 -36 14q-4 0 -80 22q-18 6 -18.5 34t14.5 38q131 49 241 86q63 20 64 -59v-582q0 -76 2 -104q2 -49 14 -58.5t70 -9.5q41 4 47 -33v-37q0 -31 -41 -26 q-94 6 -395 0q-8 0 -17.5 13t-11.5 28zM162 1004l94 317q10 33 45 33h172q16 0 27.5 -6.5t9.5 -22.5q0 -4 -6 -16l-275 -332q-12 -18 -43.5 -11t-23.5 38z" />
184
+ <glyph unicode="&#xee;" horiz-adv-x="544" d="M4 1001l178 302q12 18 33 24q12 2 61.5 3t69.5 -1q29 -2 43 -24l176 -293q15 -35 -8 -41q-31 -8 -49 6l-227 194l-213 -194q-23 -18 -54 -2q-20 10 -10 26zM41 35q-4 49 25 49q23 2 38 4t29 3t23.5 8t16.5 8.5t10 13.5t6.5 15t4.5 22.5t1 27v35v41.5v361q0 74 -7 86 q-4 8 -36 14q-4 0 -80 22q-18 6 -18.5 34t14.5 38q131 49 241 86q63 20 64 -59v-582q0 -76 2 -104q2 -49 14 -58.5t70 -9.5q41 4 47 -33v-37q0 -31 -41 -26q-94 6 -395 0q-8 0 -17.5 13t-11.5 28z" />
185
+ <glyph unicode="&#xef;" horiz-adv-x="544" d="M-33 1108q0 51 38 87t91 36q55 0 93 -36t38 -87t-38.5 -87t-92 -36t-91.5 36t-38 87zM41 35q-4 49 25 49q23 2 38 4t29 3t23.5 8t16.5 8.5t10 13.5t6.5 15t4.5 22.5t1 27v35v41.5v361q0 74 -7 86q-4 8 -36 14q-4 0 -80 22q-18 6 -18.5 34t14.5 38q131 49 241 86 q63 20 64 -59v-582q0 -76 2 -104q2 -49 14 -58.5t70 -9.5q41 4 47 -33v-37q0 -31 -41 -26q-94 6 -395 0q-8 0 -17.5 13t-11.5 28zM317 1108q0 51 39 87t93 36q55 0 92 -36t37 -87t-37 -87t-92 -36q-53 0 -92.5 36t-39.5 87z" />
186
+ <glyph unicode="&#xf0;" horiz-adv-x="1116" d="M94 434q0 199 133 333t328 134q59 0 125 -20q43 -16 -2 63q-14 25 -25 39q-35 57 -108 127q-31 27 -68 8l-256 -137q-33 -4 -45 25q-20 39 19 61l217 115q10 4 10 13t-8 13q-55 33 -135 62h2q-14 2 -27.5 16t-3.5 35l16 27q18 39 62 26q147 -41 254 -100l184 92 q43 10 59 -20q4 -12 6.5 -20.5t-8 -19t-18.5 -17.5t-24.5 -16t-29 -14.5t-29.5 -14.5t-28 -13q-29 -16 -2 -37q125 -94 221 -262q117 -215 117 -445q0 -270 -149 -405q-135 -117 -316 -117q-205 0 -338 132t-133 337zM289 500q0 -186 89 -313.5t212 -127.5q106 0 175 85 t69 221q0 190 -88.5 314t-217.5 124q-100 0 -169.5 -86t-69.5 -217z" />
187
+ <glyph unicode="&#xf1;" horiz-adv-x="1071" d="M51 12q-6 20 1 44t26 24h12q63 0 81.5 33.5t18.5 165.5v276q0 141 -6 158q-6 12 -67 26l-41 9q-20 4 -18.5 35.5t18.5 39.5q18 6 48 17.5t69.5 27t58.5 21.5q41 16 59 20q61 14 62 -45v-90q0 -12 5 -22.5t11 -6.5q197 137 299 138q233 0 234 -373q0 -59 -7.5 -181 t-7.5 -184q0 -39 14.5 -50t71.5 -11q25 15 43 -10q8 -12 7 -41t-15 -35q-8 -2 -27 -2q-41 0 -188 1t-192 -1q-23 -2 -32 8t-11 35q0 45 26 45h14q63 6 84 25.5t25 76.5q12 117 12 355q0 113 -32.5 162t-100.5 49q-86 0 -233 -113v-449q0 -72 18.5 -89t91.5 -17 q8 0 17.5 -14.5t11.5 -30.5q0 -43 -39 -45q-51 2 -190.5 1t-192.5 1h-8q-23 0 -31 16zM207 1024q6 135 58 209t149 74q82 0 202 -82q76 -53 113 -54q27 0 42 24t26 99q4 23 37 23q10 2 22 -4t12 -17q4 -14 4 -28q0 -113 -58 -186.5t-150 -73.5q-84 0 -201 79q-82 57 -111 58 q-25 0 -38 -17.5t-25 -68.5l-6 -37q-10 -20 -40 -22.5t-36 24.5z" />
188
+ <glyph unicode="&#xf2;" horiz-adv-x="1060" d="M66 428q0 199 132 330t328 131q199 0 334 -133t133 -330q0 -193 -133 -325t-328 -132q-199 0 -332.5 132t-133.5 327zM262 492q0 -180 87 -303t208 -123q100 0 168 87t68 224q0 172 -88 294t-207 122q-100 0 -168 -85t-68 -216zM356 1288q-16 16 0.5 37t38.5 21l154 2 q33 0 47 -23q66 -172 98 -332q2 -23 -12 -30t-30.5 -3.5t-24.5 11.5q-133 172 -271 317z" />
189
+ <glyph unicode="&#xf3;" horiz-adv-x="1060" d="M66 428q0 199 132 330t328 131q199 0 334 -133t133 -330q0 -193 -133 -325t-328 -132q-199 0 -332.5 132t-133.5 327zM262 492q0 -180 87 -303t208 -123q100 0 168 87t68 224q0 172 -88 294t-207 122q-100 0 -168 -85t-68 -216zM453 989l98 332q12 33 45 33h178 q18 0 30.5 -7.5t8.5 -23.5q0 -6 -2 -8v-2l-289 -352q-14 -18 -47 -10.5t-22 38.5z" />
190
+ <glyph unicode="&#xf4;" horiz-adv-x="1060" d="M66 424q0 197 132 327t328 130q199 0 334 -132t133 -327q0 -190 -133 -321.5t-328 -131.5q-199 0 -332.5 130t-133.5 325zM248 1020l178 301q12 18 33 25q12 2 61 3t70 -1q29 -2 43 -25l176 -293q15 -35 -8 -41q-31 -8 -49 6l-228 195l-213 -195q-23 -18 -53 -2 q-20 10 -10 27zM262 487q0 -178 87 -299.5t208 -121.5q100 0 168 87t68 222q0 170 -88.5 290.5t-206.5 120.5q-100 0 -168 -84t-68 -215z" />
191
+ <glyph unicode="&#xf5;" horiz-adv-x="1060" d="M66 424q0 197 132 327t328 130q199 0 334 -132.5t133 -326.5q0 -190 -133 -321.5t-328 -131.5q-199 0 -332.5 130t-133.5 325zM213 997q6 129 58.5 199t146.5 70q82 0 200 -78q78 -49 111 -49q27 0 42 22.5t26 93.5q4 20 37 21q31 6 34 -21q4 -12 4 -26q0 -106 -58 -178 t-148 -72q-86 0 -199 76q-86 57 -111 57q-23 0 -37 -16.5t-24 -63.5l-6 -37q-10 -18 -40 -20t-36 22zM262 487q0 -178 87 -299.5t208 -121.5q100 0 168 87t68 222q0 170 -88 290.5t-207 120.5q-100 0 -168 -84t-68 -215z" />
192
+ <glyph unicode="&#xf6;" horiz-adv-x="1060" d="M66 426q0 199 132 330t328 131q199 0 334 -133t133 -330q0 -190 -134 -322.5t-327 -132.5q-199 0 -332.5 131t-133.5 326zM240 1100q0 51 36.5 88t88 37t88 -37t36.5 -88q0 -55 -36.5 -91t-88 -36t-88 35.5t-36.5 91.5zM262 492q0 -180 87 -303t208 -123q100 0 168 87 t68 224q0 172 -88 294t-207 122q-100 0 -168 -85t-68 -216zM575 1100q0 51 37 88t88 37q53 0 90 -37t37 -88q0 -53 -37 -90t-90 -37q-51 0 -88 37t-37 90z" />
193
+ <glyph unicode="&#xf7;" horiz-adv-x="1431" d="M152 672v51q0 47 73 47h961h35q16 0 27.5 -1t19.5 -7l12 -9t6 -16.5t3 -17.5t2 -23.5t1 -25.5q2 -31 -18 -42.5t-55 -11.5h-992q-20 0 -47.5 16.5t-27.5 39.5zM618 274q0 41 30 69t69 28q41 0 68.5 -28t27.5 -69q0 -39 -27.5 -67.5t-68.5 -28.5q-39 0 -69 29t-30 67z M618 1124q2 39 31 63.5t68 24.5t67.5 -27.5t28.5 -66.5q0 -41 -27.5 -68.5t-68.5 -27.5t-70 29.5t-29 72.5z" />
194
+ <glyph unicode="&#xf8;" horiz-adv-x="1116" d="M92 420q0 199 135 332t336 133q145 0 273 -82q4 0 10 10l90 107q20 20 41 2q18 -19 22 -27l2 -21q-4 -14 -18 -28q-14 -16 -39.5 -47t-36.5 -43q-6 -6 -4 -11q131 -133 131 -321q0 -195 -135 -328t-330 -133q-143 0 -268 78q-8 4 -14 -4l-109 -133q-25 -25 -49 -2l-20 18 q-6 6 -7.5 13.5t4 17.5t12.5 20.5t20.5 25.5t24.5 27.5t27.5 31t28.5 32.5q10 10 6 14q-133 133 -133 318zM297 485q0 -133 47 -229q2 -2 10 -1t11 5l354 406q16 16 8 26q-84 98 -192 99q-102 0 -170 -85t-68 -221zM401 160q82 -98 191 -99q102 0 172 87.5t70 224.5 q0 111 -50 217q-6 16 -16 4l-358 -414q-14 -14 -9 -20z" />
195
+ <glyph unicode="&#xf9;" d="M40 809q-7 31 21 39q18 4 116.5 29.5t139.5 33.5q20 4 32.5 -12t12.5 -37v-483q0 -158 33 -209t127 -51q82 0 211 100q8 20 8 31v342v24.5v30.5t-1 29.5t-5 31t-10 24.5t-16.5 21.5t-24.5 10.5q-29 4 -45 8q-2 0 -68 10q-18 10 -16 39t23 35q217 49 290 57q53 4 54 -43 v-639v-63q0 -35 23.5 -39t47.5 6l43 12q18 2 26.5 -17t3.5 -41.5t-24 -27.5q-111 -49 -227 -73q-70 -16 -72 39q0 2 -1 13t-2 27.5t-3 26.5q-2 31 -20 17q-57 -41 -94 -64.5t-94.5 -45t-112.5 -21.5q-121 0 -179.5 75.5t-58.5 210.5v424q0 31 -7 43t-30 21q-12 4 -38.5 11 t-41.5 11q-14 2 -21 33zM338 1288q-14 16 2 37t37 21l153 2q35 0 50 -23q55 -145 98 -332q2 -23 -12.5 -30t-32 -3.5t-25.5 11.5q-113 147 -270 317z" />
196
+ <glyph unicode="&#xfa;" d="M40 809q-7 31 21 39q18 4 116.5 29.5t139.5 33.5q20 4 32.5 -12t12.5 -37v-483q0 -158 33 -209t127 -51q82 0 211 100q8 20 8 31v342v24.5v30.5t-1 29.5t-5 31t-10 24.5t-16.5 21.5t-24.5 10.5q-29 4 -45 8q-2 0 -68 10q-18 10 -16 39t23 35q217 49 290 57q53 4 54 -43 v-639v-63q0 -35 23.5 -39t47.5 6l43 12q18 2 26.5 -17t3.5 -41.5t-24 -27.5q-111 -49 -227 -73q-70 -16 -72 39q0 2 -1 13t-2 27.5t-3 26.5q-2 31 -20 17q-57 -41 -94 -64.5t-94.5 -45t-112.5 -21.5q-121 0 -179.5 75.5t-58.5 210.5v424q0 31 -7 43t-30 21q-12 4 -38.5 11 t-41.5 11q-14 2 -21 33zM434 989l98 332q16 33 48 33h178q18 0 29.5 -7.5t9.5 -23.5l-2 -4v-4v-2l-289 -352q-16 -18 -48 -10.5t-24 38.5z" />
197
+ <glyph unicode="&#xfb;" d="M40 809q-7 31 21 39q18 4 116.5 29.5t139.5 33.5q20 4 32.5 -12t12.5 -37v-483q0 -158 33 -209t127 -51q82 0 211 100q8 20 8 31v342v24.5v30.5t-1 29.5t-5 31t-10 24.5t-16.5 21.5t-24.5 10.5q-29 4 -45 8q-2 0 -68 10q-18 10 -16 39t23 35q217 49 290 57q53 4 54 -43 v-639v-63q0 -35 23.5 -39t47.5 6l43 12q18 2 26.5 -17t3.5 -41.5t-24 -27.5q-111 -49 -227 -73q-70 -16 -72 39q0 2 -1 13t-2 27.5t-3 26.5q-2 31 -20 17q-57 -41 -94 -64.5t-94.5 -45t-112.5 -21.5q-121 0 -179.5 75.5t-58.5 210.5v424q0 31 -7 43t-30 21q-12 4 -38.5 11 t-41.5 11q-14 2 -21 33zM246 1020l178 301q12 18 33 25q12 2 61 3t70 -1q29 -2 43 -25l176 -293q15 -35 -8 -41q-31 -8 -49 6l-228 195l-213 -195q-23 -18 -53 -2q-20 10 -10 27z" />
198
+ <glyph unicode="&#xfc;" d="M40 809q-7 31 21 39q18 4 116.5 29.5t139.5 33.5q20 4 32.5 -12t12.5 -37v-483q0 -158 33 -209t127 -51q82 0 211 100q8 20 8 31v342v24.5v30.5t-1 29.5t-5 31t-10 24.5t-16.5 21.5t-24.5 10.5q-29 4 -45 8q-2 0 -68 10q-18 10 -16 39t23 35q217 49 290 57q53 4 54 -43 v-639v-63q0 -35 23.5 -39t47.5 6l43 12q18 2 26.5 -17t3.5 -41.5t-24 -27.5q-111 -49 -227 -73q-70 -16 -72 39q0 2 -1 13t-2 27.5t-3 26.5q-2 31 -20 17q-57 -41 -94 -64.5t-94.5 -45t-112.5 -21.5q-121 0 -179.5 75.5t-58.5 210.5v424q0 31 -7 43t-30 21q-12 4 -38.5 11 t-41.5 11q-14 2 -21 33zM266 1100q0 51 37 88t88 37t89 -37t38 -88q0 -55 -37 -91t-90 -36q-51 0 -88 35.5t-37 91.5zM602 1100q0 51 38 88t89 37q53 0 89 -37t36 -88q0 -53 -36 -90t-89 -37t-90 37t-37 90z" />
199
+ <glyph unicode="&#xfd;" horiz-adv-x="999" d="M19.5 800.5q-7.5 20.5 2 39t35.5 18.5h25h338q29 0 36 -19.5t-1.5 -40t-18.5 -22.5q-43 0 -63.5 -7t-22.5 -13t-2 -21q0 -16 23 -65q29 -63 55.5 -133t59 -155t53.5 -136q6 -8 9 -11.5t7 1.5l119 317q47 127 47 162q0 23 -5 34t-28.5 19t-75.5 8q-16 6 -16 41t22 39h19 q61 0 154.5 1t146.5 1q29 0 35 -20.5t-2.5 -41t-18.5 -20.5q-57 -4 -93 -51t-93 -205l-244 -672q-35 -98 -84 -217q-31 -74 -73 -125q-37 -47 -109 -47q-41 0 -75 34t-34 75q0 66 111 94q68 18 112 69.5t64 166.5l19 90l-248 602q-53 129 -74.5 154.5t-91.5 31.5 q-12 4 -19.5 24.5zM379 987l98 334q18 33 47 33h178q18 0 29.5 -7.5t9.5 -23.5v-4l-2 -4v-2l-288 -355q-16 -16 -48 -9t-24 38z" />
200
+ <glyph unicode="&#xfe;" horiz-adv-x="1071" d="M6 -474q0 3 1 12t1 11q0 14 7.5 20.5t14.5 6.5t20 -1t16 -1q49 2 66.5 11t26.5 51t9 145v1319v53q0 31 -6 39t-37 18q-6 2 -21.5 5.5t-21.5 5.5t-16.5 7t-15.5 11t-8 16.5t-3 24.5v6q-2 14 12 23q2 2 10 6l220 137q72 25 71 -43v-575q0 -27 6 -46l2 -6q182 125 291 125 q133 0 232.5 -128t99.5 -292q0 -199 -139.5 -347t-325.5 -148q-74 0 -160 28q-6 2 -7 -2t0 -15t1 -15v-207q0 -135 21.5 -173t97.5 -34l31 2q37 4 43 -35q6 -27 0 -43t-41 -14q-319 6 -459 0q-8 0 -15 1t-11.5 3t-6.5 7t-4 8t-2 11.5v11.5zM352 207q109 -102 223 -103 q94 0 159 85t65 219q0 152 -74 251t-176 99q-92 0 -197 -92v-459z" />
201
+ <glyph unicode="&#xff;" horiz-adv-x="999" d="M19.5 800.5q-7.5 20.5 2 39t35.5 18.5h25h338q29 0 36 -19.5t-1.5 -40t-18.5 -22.5q-43 0 -63.5 -7t-22.5 -13t-2 -21q0 -16 23 -65q29 -63 55.5 -133t59 -155t53.5 -136q6 -8 9 -11.5t7 1.5l119 317q47 127 47 162q0 23 -5 34t-28.5 19t-75.5 8q-16 6 -16 41t22 39h19 q61 0 154.5 1t146.5 1q29 0 35 -20.5t-2.5 -41t-18.5 -20.5q-57 -4 -93 -51t-93 -205l-244 -672q-35 -98 -84 -217q-31 -74 -73 -125q-37 -47 -109 -47q-41 0 -75 34t-34 75q0 66 111 94q68 18 112 69.5t64 166.5l19 90l-248 602q-53 129 -74.5 154.5t-91.5 31.5 q-12 4 -19.5 24.5zM211 1110q0 55 40 94t93 39t92 -39t39 -94t-39 -93t-92 -38q-55 0 -94 38t-39 93zM567 1110q0 55 39 94t92 39q55 0 94 -39t39 -94q0 -53 -39 -92t-94 -39q-53 0 -92 39t-39 92z" />
202
+ <glyph unicode="&#x152;" horiz-adv-x="2121" d="M111 657q0 203 109.5 375t287.5 258q141 70 348 70q78 0 225 -8q104 -6 115 -6q6 0 39 1t72 1h581q29 0 39 -9.5t12 -35.5q6 -33 13.5 -144.5t-0.5 -128.5q-8 -12 -27 -12q-6 0 -18.5 -1t-16.5 0t-10 7t-10 23l-10 38q-25 98 -48.5 120t-101.5 22h-324q-2 0 -14 -3 t-25.5 -11.5t-13.5 -18.5v-408q0 -16 16.5 -24t30.5 -8h236q98 0 121 20q20 23 32 111q0 33 31 33h29q23 0 26 -33q4 -127 0 -375q0 -43 -26 -43h-29q-31 0 -31 41q-8 82 -32.5 103.5t-102.5 21.5h-272q-10 0 -19.5 -24.5t-9.5 -37.5v-415q0 -14 14.5 -28.5t30.5 -14.5h289 q117 0 152.5 9t64.5 44q53 66 68 153q2 27 33 27h22q29 0 27 -43q0 -57 -29 -264q-2 -23 -15.5 -33t-24.5 -12t-36 -2q-121 0 -356.5 1t-358.5 1q-70 0 -205 -9.5t-202 -9.5q-287 0 -491.5 199t-204.5 483zM356 698q0 -266 141.5 -444t348.5 -178q104 0 180 57 q49 37 63.5 94.5t14.5 239.5v571q0 115 -65.5 171.5t-209.5 56.5q-223 0 -348 -148.5t-125 -419.5z" />
203
+ <glyph unicode="&#x153;" horiz-adv-x="1587" d="M96 420q0 190 137.5 326.5t331.5 136.5q184 0 293 -127q8 -10 23 4q121 123 288 123q223 0 304 -201q20 -53 57 -88v-35q0 -31 -37 -31h-481h-11.5h-10.5h-8t-7 -1t-5 -3t-4 -6t-1 -8q0 -174 76.5 -291t181.5 -117q86 0 225 140q25 25 49 -4q31 -33 6 -60 q-84 -90 -174 -149q-98 -63 -199 -64q-145 0 -241 133q-4 4 -4 0q-121 -133 -316 -133q-201 0 -337 130t-136 325zM297 477q0 -168 90 -291t201 -123q92 0 146 79t54 231q0 188 -74.5 303t-185.5 115q-94 0 -162.5 -88.5t-68.5 -225.5zM977 623q-2 -8 27 -9h6h264 q16 0 16 17q-8 78 -51 125t-100 47q-129 0 -162 -180z" />
204
+ <glyph unicode="&#x178;" horiz-adv-x="1492" d="M35 1303q4 33 33 32q305 -4 542 0q16 2 27.5 -19.5t4.5 -43t-38 -21.5q-115 0 -115 -28q0 -25 62 -121l270 -416q6 -8 16.5 1t20.5 26l215 364q63 109 63.5 131.5t-19 31.5t-85.5 9h-22q-14 6 -21.5 27.5t-1.5 40t31 18.5q254 -4 450 0q14 2 21.5 -10t7.5 -31 q0 -14 -8.5 -29.5t-20.5 -15.5q-29 -2 -53 -8t-41.5 -13t-38 -24.5t-31 -27t-29 -36t-23.5 -34.5t-24.5 -41t-23.5 -41l-297 -504v-106.5v-125v-77.5q0 -127 133 -121q72 8 72 -53q0 -45 -35 -45q-399 6 -565 2q-25 0 -33 29.5t0 44.5q10 27 51 26q10 2 30 0t26 -2 q96 6 102 119q10 147 2 285l-366 575q-72 111 -117 142.5t-133 33.5h-8q-20 0 -28.5 17.5t-2.5 38.5zM449 1554.5q0 55.5 39.5 94.5t93.5 39q55 0 94 -39t39 -94.5t-39 -93.5t-94.5 -38t-94 38t-38.5 93.5zM807 1554q0 55 39 94.5t94 39.5t93 -39t38 -95q0 -53 -38 -92 t-93 -39t-94 39t-39 92z" />
205
+ <glyph unicode="&#x2c6;" horiz-adv-x="714" d="M70 999l174 301q12 18 32 25q12 2 72 3t80 -1q29 -2 43 -24l172 -293q15 -35 -8 -41q-31 -8 -49 6l-234 194l-219 -194q-23 -18 -53 -2q-20 10 -10 26z" />
206
+ <glyph unicode="&#x2dc;" horiz-adv-x="714" d="M29 975q6 129 58 198.5t146 69.5q82 0 201 -78q78 -49 111 -49q27 0 42 22.5t25 94.5q4 20 37 20q31 6 35 -20q4 -12 4 -27q0 -106 -58.5 -178t-148.5 -72q-86 0 -198 76q-86 57 -111 58q-23 0 -37 -16.5t-24 -63.5l-7 -37q-10 -18 -39.5 -20.5t-35.5 22.5z" />
207
+ <glyph unicode="&#x2000;" horiz-adv-x="950" />
208
+ <glyph unicode="&#x2001;" horiz-adv-x="1901" />
209
+ <glyph unicode="&#x2002;" horiz-adv-x="950" />
210
+ <glyph unicode="&#x2003;" horiz-adv-x="1901" />
211
+ <glyph unicode="&#x2004;" horiz-adv-x="633" />
212
+ <glyph unicode="&#x2005;" horiz-adv-x="475" />
213
+ <glyph unicode="&#x2006;" horiz-adv-x="316" />
214
+ <glyph unicode="&#x2007;" horiz-adv-x="316" />
215
+ <glyph unicode="&#x2008;" horiz-adv-x="237" />
216
+ <glyph unicode="&#x2009;" horiz-adv-x="380" />
217
+ <glyph unicode="&#x200a;" horiz-adv-x="105" />
218
+ <glyph unicode="&#x2010;" horiz-adv-x="890" d="M90 438v72q0 18 16.5 28.5t32.5 10.5q371 -10 633 0q14 0 26.5 -12.5t12.5 -26.5l-4 -70q-8 -29 -31 -32q-311 -4 -655 0q-20 0 -31 30z" />
219
+ <glyph unicode="&#x2011;" horiz-adv-x="890" d="M90 438v72q0 18 16.5 28.5t32.5 10.5q371 -10 633 0q14 0 26.5 -12.5t12.5 -26.5l-4 -70q-8 -29 -31 -32q-311 -4 -655 0q-20 0 -31 30z" />
220
+ <glyph unicode="&#x2012;" horiz-adv-x="890" d="M90 438v72q0 18 16.5 28.5t32.5 10.5q371 -10 633 0q14 0 26.5 -12.5t12.5 -26.5l-4 -70q-8 -29 -31 -32q-311 -4 -655 0q-20 0 -31 30z" />
221
+ <glyph unicode="&#x2013;" horiz-adv-x="1249" d="M78 467v23.5t1 29.5t10 21.5t26 13.5q422 10 1022 0q16 0 27.5 -10t11.5 -23v-63q-2 -25 -43 -25q-291 -4 -1022 0q-12 0 -22.5 11.5t-10.5 21.5z" />
222
+ <glyph unicode="&#x2014;" horiz-adv-x="1751" d="M172 498q6 41 53 41q639 -4 1295 0q31 -8 40 -21.5t5 -40.5q-4 -16 -6 -39q-14 -27 -39 -26q-391 -4 -1301 0q-45 0 -43 32q0 6 -3 23.5t-1 30.5z" />
223
+ <glyph unicode="&#x2018;" horiz-adv-x="557" d="M141 1114q0 98 63.5 183t168.5 126q16 6 31.5 -7t15.5 -31.5t-21 -36.5q-135 -82 -135 -181l15 -16q4 0 11 2t13 3t12 1q43 0 72 -32.5t29 -77.5q0 -51 -34 -86t-85 -35q-66 0 -111 55t-45 133z" />
224
+ <glyph unicode="&#x2019;" horiz-adv-x="557" d="M145 967.5q2 21.5 17 33.5q137 84 137 177q0 23 -8 20q-29 -8 -45 -8q-43 0 -72 31.5t-29 78.5q0 51 36 86t85 35q68 0 111 -52t43 -130q0 -92 -57.5 -175t-149.5 -130q-31 -14 -50.5 -1t-17.5 34.5z" />
225
+ <glyph unicode="&#x201a;" horiz-adv-x="526" d="M137 53q0 49 34 81t81 32q61 0 100 -51.5t39 -122.5q0 -94 -57.5 -173t-153.5 -120q-25 -10 -35 29q-3 31 9 43q127 80 127 168q0 16 -9 16q-16 -4 -26 -6h-15q-41 0 -67.5 30.5t-26.5 73.5z" />
226
+ <glyph unicode="&#x201c;" horiz-adv-x="1028" d="M164 1106q0 96 63.5 182t165.5 129q37 14 53.5 -20.5t-10.5 -50.5q-143 -82 -143 -179q0 -10 2 -14t11 -2t11 2q25 4 31 4q45 0 76 -32.5t31 -77.5q0 -51 -37 -86t-90 -35q-72 0 -118 52t-46 128zM610 1106q0 96 63.5 182t166.5 129q37 10 53 -10q25 -41 -10 -61 q-143 -80 -144 -179q0 -18 11 -18q6 0 21 4t24 4q47 0 76.5 -32.5t29.5 -77.5q0 -51 -37 -86t-90 -35q-72 0 -118 52t-46 128z" />
227
+ <glyph unicode="&#x201d;" horiz-adv-x="1026" d="M158 1300q0 51 37.5 86t91.5 35q70 0 117 -52t47 -130q0 -92 -63 -176t-163 -131q-41 -12 -57 8q-23 25 -2.5 52.5t55.5 45t68 55t33 85.5q0 23 -6.5 22.5t-24 -5.5t-27.5 -5q-45 0 -75.5 31.5t-30.5 78.5zM603 968.5q-1 18.5 18 32.5q147 80 147 177q0 10 -3 18t-11 0 q-4 0 -13.5 -2t-16.5 -3t-13 -1q-45 0 -76 31.5t-31 78.5q0 51 38 86t91 35q70 0 117 -52t47 -130q0 -92 -61.5 -176t-161.5 -131q-43 -14 -60 4q-10 14 -11 32.5z" />
228
+ <glyph unicode="&#x201e;" horiz-adv-x="968" d="M147 53q0 49 36 81t87 32q66 0 109 -50t43 -124q0 -92 -63.5 -172t-163.5 -121q-23 -8 -39.5 25.5t10.5 46.5q137 80 137 168q0 16 -6 16q-4 0 -10 -3t-11 -3q-8 -2 -26 -2q-43 0 -73 31.5t-30 74.5zM567 53q0 49 36 81t87 32q66 0 109 -50t43 -124q0 -92 -64 -173 t-164 -120q-23 -8 -35 26.5t7 45.5q137 78 137 168q0 16 -4 16h-2q-18 -6 -47 -6q-43 0 -73 30.5t-30 73.5z" />
229
+ <glyph unicode="&#x2022;" horiz-adv-x="759" d="M154 671.5q0 96.5 66.5 164t160.5 67.5t162.5 -68.5t68.5 -162.5q0 -96 -67.5 -164t-163.5 -68q-94 0 -160.5 67.5t-66.5 164z" />
230
+ <glyph unicode="&#x2026;" horiz-adv-x="2162" d="M258 86q0 51 39 86t96 35q55 0 92 -38t37 -89q0 -49 -35.5 -82t-93 -33t-96.5 35t-39 86zM961 78q0 53 37.5 90t95.5 37q55 0 93 -38t38 -89t-36 -82t-93 -31q-59 0 -97 32t-38 81zM1657 86q0 51 38 86t93 35q57 0 94 -38t37 -89t-36 -83t-93 -32q-55 0 -94 36t-39 85z " />
231
+ <glyph unicode="&#x202f;" horiz-adv-x="380" />
232
+ <glyph unicode="&#x2039;" horiz-adv-x="1802" d="M50 23.5q-7 35.5 18 50.5q8 6 38 6q74 0 93.5 20.5t19.5 96.5v487q0 8 -9 17.5t-13 9.5h-88q-45 0 -52 20q-8 31 2 57q6 4 16.5 9.5t12.5 7.5q92 18 133 43q16 195 35 244q29 86 154 200q72 63 172 106.5t215.5 43.5t193.5 -66q33 -37 70 -14q76 55 165 87t188 26.5 t169 -64.5q37 -31 37 -74q0 -27 -45 -63.5t-74 -36.5q-25 0 -55 31q-86 80 -178 80q-80 0 -149.5 -58.5t-86.5 -140.5q-14 -55 -14 -242q0 -39 24 -41q90 -10 353 2q86 2 174 33q20 6 35.5 -15.5t15.5 -43.5v-654q0 -72 15.5 -88t72.5 -16q16 4 33 0q25 -6 19.5 -46 t-21.5 -46q-190 6 -428 0q-25 0 -25 43q0 16 2 26.5t12.5 17.5t30.5 5q76 0 88.5 25.5t12.5 166.5v312q0 72 -19.5 106.5t-83.5 36.5q-2 0 -133 3t-147 -1q-23 -4 -29 -28l-2 -429q-2 -125 14.5 -158.5t97.5 -33.5h39q20 0 30.5 -7t11.5 -15.5t1 -26.5q0 -16 -8 -29.5 t-14 -13.5q-242 4 -485 -2q-27 0 -27 41q0 39 24 49h19q76 0 89 25.5t13 166.5v406q-4 41 -26 43q-72 4 -193 3t-166 -5q-18 -4 -22 -35v-500q2 -63 20.5 -80.5t85.5 -17.5q55 0 66 -2q18 -8 22 -31.5t-5 -44t-21 -18.5q-295 10 -504 0q-23 -2 -30 33.5zM416 889 q0 -35 16 -35q176 -12 373 4q14 0 19 16.5t4 45t-1 30.5q6 152 56 242q8 14 -29 51q-74 70 -190 70q-80 0 -149 -57.5t-87 -139.5q-12 -59 -12 -227z" />
233
+ <glyph unicode="&#x203a;" horiz-adv-x="1761" d="M48 51.5q7 22.5 32 28.5q6 2 61 2q47 4 63.5 24.5t16.5 90.5v491q0 23 -16 23h-92q-43 0 -54 20q-6 45 4 57q2 6 6.5 9.5t10.5 4.5t10 3q88 16 131 43q14 186 35 244q31 86 156 200q74 66 171 109t208.5 43t189.5 -66q31 -27 39 -18q115 96 258 96q20 0 63 -5t66 -5 q49 0 86 47q23 12 52.5 7t29.5 -30v-1284q0 -72 8 -86t59 -16q4 0 14.5 1t16.5 0t15.5 -2t14.5 -7t7 -15q8 -25 0 -49q-6 -18 -18 -20h-19q-182 8 -407 0q-27 0 -33 20q-8 25 -2 41q8 23 35 29q8 2 29.5 1t29.5 -1q43 4 52 33.5t9 160.5l3 412q0 37 -25 41q-281 6 -336 0 q-14 -2 -19 -9t-12 -30v-504q0 -70 19.5 -90t87.5 -20q14 4 26 0q25 -4 24 -44t-28 -40q-127 4 -432 0q-10 0 -20 18q-10 16 -4 41t28 27q74 10 86 22q14 16 17 74q2 23 2 102v394q0 33 -5 41t-26 8q-215 -6 -326 0q-23 0 -28 -29v-416q0 -104 2 -126.5t14 -38.5 q10 -18 24.5 -23.5t67.5 -5.5q18 4 64 -4q16 -8 21 -29.5t-3 -39t-22 -17.5q-264 10 -510 0q-16 0 -25.5 19.5t-2.5 42zM418 881q0 -27 20 -27q78 -4 326 0q18 0 25.5 1t10.5 6t5 20q10 164 67 286q10 27 -4 50q-8 10 -26 26q-45 43 -82 56.5t-96 13.5q-78 0 -146.5 -57.5 t-87.5 -139.5q-12 -59 -12 -235zM997 893q0 -16 6.5 -22.5t32.5 -6.5h318q33 0 32 29v377q-104 72 -192 71q-68 0 -119 -71q-76 -104 -78 -377z" />
234
+ <glyph unicode="&#x205f;" horiz-adv-x="475" />
235
+ <glyph unicode="&#x20ac;" horiz-adv-x="950" d="M-2 451v34q0 39 35 39h92q-2 23 -2 74v59h-74q-51 0 -51 39v35q0 39 35 39h100q31 240 145.5 363.5t276.5 123.5q94 0 178 -55q33 -25 47 -6q4 8 40 5t36 -13q10 -229 10 -264q-4 -23 -44 -22t-46 20q-27 131 -81 183t-140 52q-104 0 -156.5 -98t-62.5 -289h313 q35 0 35 -39v-35q0 -39 -51 -39h-301v-20q0 -78 2 -113h315q35 0 35 -39v-34q0 -39 -51 -39h-293q16 -176 67.5 -260t149.5 -84q86 0 145.5 60t85.5 153q4 18 32 25t51.5 1t21.5 -24q-23 -121 -74 -275q-18 8 -39 8q-35 0 -110.5 -22.5t-137.5 -22.5q-150 0 -256 114 t-141 327h-86q-51 0 -51 39z" />
236
+ <glyph unicode="&#x2122;" horiz-adv-x="2099" d="M33 1211.5q0 13.5 2 33.5l18 148q2 27 14.5 35t38.5 8q319 -8 680 0q35 2 48.5 -7.5t17.5 -44.5l16 -149q0 -33 -2 -37q-6 -12 -35 -12h-38q-12 86 -49 114.5t-132 28.5h-8q-16 0 -23.5 -1t-14.5 -7t-7 -21v-538q0 -72 12.5 -89.5t69.5 -21.5q10 0 16 -4 q10 -4 12.5 -31.5t-7.5 -37.5q-6 -8 -44 -9q-139 6 -327 0q-33 0 -43 7.5t-10 33.5q0 33 20 39q6 0 12 2q49 6 59.5 22.5t10.5 86.5v543q0 27 -55 26q-88 0 -124 -28.5t-50 -114.5h-45q-18 0 -25.5 6t-7.5 19.5zM895 590v22q0 37 39 37q53 2 65.5 19.5t12.5 91.5v475 q0 80 -11.5 97.5t-62.5 19.5q-29 0 -39 12q-4 16 -4 35q0 23 9 30t30 7q162 -6 264 -2q31 2 47 -35l242 -500q4 -10 20 19l226 479q20 39 41 39h247q18 0 27.5 -2t17 -11.5t7.5 -27.5q0 -39 -23 -41q-6 -2 -20 -2q-47 -2 -58.5 -20.5t-11.5 -94.5v-475q0 -74 11 -91.5 t63 -19.5q6 -2 16 -2q23 0 23 -43q0 -37 -43 -37h-351q-61 -4 -61 31v31q0 20 29 20h20q51 2 63.5 21.5t12.5 87.5v344q0 39 -8 39q-4 0 -9 -8l-249 -535q-12 -31 -35 -31h-29q-12 0 -16 6q-4 12 -6 15l-254 543q-12 25 -15 -7v-364q0 -80 12.5 -96.5t61.5 -16.5h31 q29 0 28 -20q0 -57 -18 -64h-18q-47 16 -273 4q-51 -12 -51 21z" />
237
+ <glyph unicode="&#x25fc;" horiz-adv-x="860" d="M0 0v860h860v-860h-860z" />
238
+ <glyph unicode="&#xfb01;" horiz-adv-x="1144" d="M82 14q-14 41 20 58l48 6q45 6 54 28.5t9 133.5v419q0 25 -6 33t-25 10l-71 7q-16 8 -21.5 29.5t12.5 35.5q6 6 32 15.5t30 11.5q49 16 49 41q0 193 61 344q45 104 145.5 191t254.5 87q104 0 182 -49t78 -121q0 -47 -31 -71.5t-63 -24.5q-45 0 -64 35q-78 129 -174 129 q-211 0 -211 -469q0 -37 6 -49q4 -18 37 -19q123 -4 221 0q180 4 232 15l12 6q33 10 49 -17q-8 -152 -8 -256v-333q0 -109 10.5 -132.5t55.5 -29.5l41 -6q27 -4 25 -37t-25 -43q-63 4 -193 4q-160 0 -178 -2q-25 0 -33 24q-8 27 -1 38.5t20.5 15.5t31.5 6h8q45 6 52.5 27.5 t7.5 134.5v348q0 84 -12.5 100.5t-69.5 18.5h-74.5h-107.5h-74q-10 0 -13 -1t-8.5 -3.5t-7.5 -7.5t-3 -13t-1 -23v-419q0 -111 10.5 -134.5t53.5 -27.5l59 -6q25 -2 21.5 -38t-25.5 -42q-125 6 -213 6t-174 -6q-31 0 -41 22z" />
239
+ <glyph unicode="&#xfb02;" horiz-adv-x="1103" d="M45 52.5q6 21.5 25 25.5h18q66 6 80 26q18 27 18 175v423q0 23 -22 27h-92q-14 0 -20.5 22.5t-0.5 36.5q8 18 25 23l100 43q4 2 10 14q14 283 158 443q141 154 307 153q23 0 65 -5t62 -5q49 0 84 47q23 10 49.5 8t28.5 -18v-1303q0 -66 15.5 -86t74.5 -20q2 0 31 -4 q18 -4 20.5 -45t-26.5 -39h-420h-8q-20 0 -29 20q-6 18 1 40t24 24h16q86 0 101.5 26.5t15.5 174.5v409q0 12 -8.5 27.5t-18.5 17.5q-51 0 -169 -1t-163 -1q-16 0 -22 -33v-510q0 -70 18.5 -90t85.5 -20q14 4 25 0q23 -4 23.5 -42t-21.5 -42h-12q-16 0 -94 2t-161 2t-151 -4 q-27 0 -38 18.5t-5 40zM375 874q0 -8 33 -8h319q27 0 29 33v373q-104 72 -187 71q-70 0 -120 -71q-74 -102 -74 -398z" />
240
+ <glyph unicode="&#xfb03;" horiz-adv-x="1802" d="M50 23.5q-7 35.5 18 50.5q8 6 38 6q74 0 93.5 20.5t19.5 96.5v487q0 8 -9 17.5t-13 9.5h-88q-45 0 -52 20q-8 31 2 57q6 4 16.5 9.5t12.5 7.5q92 18 133 43q16 195 35 244q29 86 154 200q72 63 172 106.5t215.5 43.5t193.5 -66q33 -37 70 -14q76 55 165 87t188 26.5 t169 -64.5q37 -31 37 -74q0 -27 -45 -63.5t-74 -36.5q-25 0 -55 31q-86 80 -178 80q-80 0 -149.5 -58.5t-86.5 -140.5q-14 -55 -14 -242q0 -39 24 -41q90 -10 353 2q86 2 174 33q20 6 35.5 -15.5t15.5 -43.5v-654q0 -72 15.5 -88t72.5 -16q16 4 33 0q25 -6 19.5 -46 t-21.5 -46q-190 6 -428 0q-25 0 -25 43q0 16 2 26.5t12.5 17.5t30.5 5q76 0 88.5 25.5t12.5 166.5v312q0 72 -19.5 106.5t-83.5 36.5q-2 0 -133 3t-147 -1q-23 -4 -29 -28l-2 -429q-2 -125 14.5 -158.5t97.5 -33.5h39q20 0 30.5 -7t11.5 -15.5t1 -26.5q0 -16 -8 -29.5 t-14 -13.5q-242 4 -485 -2q-27 0 -27 41q0 39 24 49h19q76 0 89 25.5t13 166.5v406q-4 41 -26 43q-72 4 -193 3t-166 -5q-18 -4 -22 -35v-500q2 -63 20.5 -80.5t85.5 -17.5q55 0 66 -2q18 -8 22 -31.5t-5 -44t-21 -18.5q-295 10 -504 0q-23 -2 -30 33.5zM416 889 q0 -35 16 -35q176 -12 373 4q14 0 19 16.5t4 45t-1 30.5q6 152 56 242q8 14 -29 51q-74 70 -190 70q-80 0 -149 -57.5t-87 -139.5q-12 -59 -12 -227z" />
241
+ <glyph unicode="&#xfb04;" horiz-adv-x="1761" d="M48 51.5q7 22.5 32 28.5q6 2 61 2q47 4 63.5 24.5t16.5 90.5v491q0 23 -16 23h-92q-43 0 -54 20q-6 45 4 57q2 6 6.5 9.5t10.5 4.5t10 3q88 16 131 43q14 186 35 244q31 86 156 200q74 66 171 109t208.5 43t189.5 -66q31 -27 39 -18q115 96 258 96q20 0 63 -5t66 -5 q49 0 86 47q23 12 52.5 7t29.5 -30v-1284q0 -72 8 -86t59 -16q4 0 14.5 1t16.5 0t15.5 -2t14.5 -7t7 -15q8 -25 0 -49q-6 -18 -18 -20h-19q-182 8 -407 0q-27 0 -33 20q-8 25 -2 41q8 23 35 29q8 2 29.5 1t29.5 -1q43 4 52 33.5t9 160.5l3 412q0 37 -25 41q-281 6 -336 0 q-14 -2 -19 -9t-12 -30v-504q0 -70 19.5 -90t87.5 -20q14 4 26 0q25 -4 24 -44t-28 -40q-127 4 -432 0q-10 0 -20 18q-10 16 -4 41t28 27q74 10 86 22q14 16 17 74q2 23 2 102v394q0 33 -5 41t-26 8q-215 -6 -326 0q-23 0 -28 -29v-416q0 -104 2 -126.5t14 -38.5 q10 -18 24.5 -23.5t67.5 -5.5q18 4 64 -4q16 -8 21 -29.5t-3 -39t-22 -17.5q-264 10 -510 0q-16 0 -25.5 19.5t-2.5 42zM418 881q0 -27 20 -27q78 -4 326 0q18 0 25.5 1t10.5 6t5 20q10 164 67 286q10 27 -4 50q-8 10 -26 26q-45 43 -82 56.5t-96 13.5q-78 0 -146.5 -57.5 t-87.5 -139.5q-12 -59 -12 -235zM997 893q0 -16 6.5 -22.5t32.5 -6.5h318q33 0 32 29v377q-104 72 -192 71q-68 0 -119 -71q-76 -104 -78 -377z" />
242
+ </font>
243
+ </defs></svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
6
+ <path fill="#231F20" d="M15.563,40.836c0.195,0.195,0.451,0.293,0.707,0.293s0.512-0.098,0.707-0.293l15-15
7
+ c0.391-0.391,0.391-1.023,0-1.414l-15-15c-0.391-0.391-1.023-0.391-1.414,0s-0.391,1.023,0,1.414l14.293,14.293L15.563,39.422
8
+ C15.172,39.813,15.172,40.446,15.563,40.836z"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
6
+ <path fill="#231F20" d="M8.667,15h30c0.552,0,1-0.447,1-1s-0.448-1-1-1h-30c-0.552,0-1,0.447-1,1S8.114,15,8.667,15z"/>
7
+ <path fill="#231F20" d="M8.667,37h30c0.552,0,1-0.447,1-1s-0.448-1-1-1h-30c-0.552,0-1,0.447-1,1S8.114,37,8.667,37z"/>
8
+ <path fill="#231F20" d="M8.667,26h30c0.552,0,1-0.447,1-1s-0.448-1-1-1h-30c-0.552,0-1,0.447-1,1S8.114,26,8.667,26z"/>
9
+ </svg>
@@ -0,0 +1,3 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
@@ -0,0 +1,4 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
2
+ <metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
3
+ <g><path d="M941,451H59c-27,0-49,22-49,49c0,27.1,22,49,49,49h882c27,0,49-21.9,49-49C990,473,968,451,941,451L941,451z M941,843H59c-27,0-49,22-49,49c0,27.1,22,49,49,49h882c27,0,49-21.9,49-49C990,865,968,843,941,843L941,843z M59,157h882c27,0,49-21.9,49-49c0-27-22-49-49-49H59c-27,0-49,22-49,49C10,135.1,32,157,59,157L59,157z"/></g>
4
+ </svg>
@@ -0,0 +1 @@
1
+ <svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Facebook icon</title><path d="M22.676 0H1.324C.593 0 0 .593 0 1.324v21.352C0 23.408.593 24 1.324 24h11.494v-9.294H9.689v-3.621h3.129V8.41c0-3.099 1.894-4.785 4.659-4.785 1.325 0 2.464.097 2.796.141v3.24h-1.921c-1.5 0-1.792.721-1.792 1.771v2.311h3.584l-.465 3.63H16.56V24h6.115c.733 0 1.325-.592 1.325-1.324V1.324C24 .593 23.408 0 22.676 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
@@ -0,0 +1,3 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
@@ -0,0 +1,139 @@
1
+
2
+ <!-- Thanks to codepen.io/brav0 for pointing out-->
3
+ <!-- that AdBlock Plus blocks .social-icons class:-->
4
+ <ul class="soc">
5
+ <li><a class="icon-1 8tracks" href="#" title="8tracks" preserveAspectRatio="xMidYMid meet">
6
+ <svg viewbox="0 0 512 512">
7
+ <path d="M185.304 240.455c-47.581 0-86.09 38.586-86.104 86.165 0.012 47.596 38.522 86.182 86.104 86.182 47.54 0 85.997-38.588 86.019-86.182 0-24.309-0.005-30.236-0.005-30.236h-30.743c0 0 0 5.947 0 30.236 -0.028 15.331-6.179 29.058-16.201 39.12 -10.049 10.043-23.753 16.218-39.07 16.218 -15.333 0-29.021-6.179-39.097-16.218 -10.025-10.063-16.175-23.79-16.197-39.12 0.021-15.316 6.172-29.041 16.197-39.104 10.077-10.043 23.764-16.202 39.097-16.221 28.282 0 111.983 0 141.405 0 47.563 0 86.076-38.319 86.092-85.914 -0.016-47.613-38.527-86.164-86.092-86.18 -47.551 0.017-86.074 38.567-86.092 86.18 0 24.181-0.021 29.986-0.021 29.986h30.726c0 0 0-5.805 0-29.986 0.027-15.314 6.267-29.043 16.315-39.121 10.04-10.024 23.744-16.203 39.069-16.203 15.314 0 29.049 6.177 39.098 16.22 10.014 10.062 16.17 23.789 16.17 39.103 0 15.349-6.156 29.06-16.18 39.102 -10.039 10.043-23.773 15.955-39.088 15.971H185.304L185.304 240.455z"></path>
8
+ </svg></a></li>
9
+
10
+ <li><a class="icon-2 500px" href="#" title="500px" preserveAspectRatio="xMidYMid meet">
11
+ <svg viewbox="0 0 512 512">
12
+ <path d="M256.3 293c26.9 31.2 58.3 58.5 99.9 58.5 56.1 0 89.5-42.6 89.5-96.8 0-54-34.1-94.2-89-94.2 -43.9 0-72.7 28.5-100.4 62.1 -28.5-34.1-56.7-62.1-101.4-62.1 -53.5 0-88.5 40.2-88.5 95.2 0 54.6 35.8 95.7 90.8 95.7C204.1 351.5 228.7 321.9 256.3 293zM115.5 256.8c0-21.3 13.9-44.5 39.3-44.5 26 0 52.7 25.9 70.4 45 -17.2 20.1-42.5 41.9-68.8 41.9C130.3 299.2 115.5 281.1 115.5 256.8zM287.3 257.3c18.4-19.9 41.2-45 68.3-45 26.4 0 41.4 20.8 41.4 44 0 23.4-13.7 43-39.8 43C329.2 299.2 305.7 278.5 287.3 257.3z"></path>
13
+ </svg></a></li>
14
+ <li><a class="icon-3 behance" href="#" title="Behance" preserveAspectRatio="xMidYMid meet">
15
+ <svg viewbox="0 0 512 512">
16
+ <path d="M254.8 171.8c6.4 8.9 9.6 19.6 9.6 32 0 12.8-3.2 23.1-9.7 30.9 -3.6 4.4-9 8.4-16 12 10.7 3.9 18.8 10.1 24.2 18.5 5.5 8.4 8.2 18.7 8.2 30.7 0 12.4-3.1 23.6-9.3 33.5 -4 6.6-8.9 12.1-14.9 16.5 -6.7 5.1-14.6 8.6-23.7 10.5 -9.1 1.9-19 2.8-29.6 2.8H99.1V149.5h101.4C226.1 149.8 244.2 157.3 254.8 171.8zM140.9 185.9v46.3h51c9.1 0 16.5-1.7 22.2-5.2 5.7-3.5 8.5-9.6 8.5-18.4 0-9.8-3.8-16.2-11.3-19.4 -6.5-2.2-14.7-3.3-24.8-3.3H140.9zM140.9 266.9v55.9h50.9c9.1 0 16.2-1.2 21.2-3.7 9.2-4.6 13.8-13.3 13.8-26.2 0-10.9-4.5-18.4-13.4-22.5 -5-2.3-12-3.5-21-3.6H140.9L140.9 266.9zM396.4 207.3c10.8 4.8 19.8 12.5 26.8 23 6.4 9.2 10.5 19.9 12.4 32.1 1.1 7.1 1.5 17.4 1.3 30.8H323.9c0.6 15.6 6 26.5 16.2 32.7 6.2 3.9 13.6 5.8 22.4 5.8 9.2 0 16.8-2.4 22.5-7.1 3.2-2.6 5.9-6.1 8.4-10.7h41.4c-1.1 9.2-6.1 18.5-15 28 -13.9 15.1-33.4 22.6-58.4 22.6 -20.6 0-38.9-6.4-54.6-19.1 -15.8-12.7-23.7-33.4-23.7-62.1 0-26.9 7.1-47.5 21.4-61.8 14.2-14.3 32.7-21.5 55.5-21.5C373.4 200 385.6 202.4 396.4 207.3zM335.7 242.3c-5.7 5.9-9.3 13.9-10.8 24h69.9c-0.7-10.8-4.3-18.9-10.8-24.5 -6.5-5.6-14.5-8.4-24.1-8.4C349.5 233.4 341.4 236.4 335.7 242.3zM402.8 161.5h-91.2V182.7h91.2V161.5z"></path>
17
+ </svg></a></li>
18
+ <li><a class="icon-4 codepen" href="#" title="CodePen" preserveAspectRatio="xMidYMid meet">
19
+ <svg viewbox="0 0 512 512">
20
+ <path d="M427 201.9c-0.6-4.2-2.9-8-6.4-10.3L264.2 87.3c-4.9-3.3-11.4-3.3-16.3 0L91.4 191.6c-4 2.7-6.5 7.4-6.5 12.2v104.3c0 4.8 2.5 9.6 6.5 12.2l156.4 104.3c4.9 3.3 11.4 3.3 16.3 0L420.6 320.4c4-2.6 6.6-7.4 6.6-12.2V203.9C427.1 203.2 427.1 202.6 427 201.9 427 201.7 427.1 202.6 427 201.9zM270.7 127.1l115.2 76.8 -51.5 34.4 -63.8-42.7V127.1zM241.3 127.1v68.6l-63.8 42.7 -51.5-34.4L241.3 127.1zM114.3 231.4l36.8 24.6 -36.8 24.6V231.4zM241.3 384.9L126.1 308.1l51.5-34.4 63.8 42.6V384.9zM256 290.8l-52-34.8 52-34.8 52 34.8L256 290.8zM270.7 384.9V316.3l63.8-42.6 51.5 34.4L270.7 384.9zM397.7 280.6l-36.8-24.6 36.8-24.6V280.6z"></path>
21
+ </svg></a></li>
22
+ <li><a class="icon-5 delicious" href="#" title="Delicious" preserveAspectRatio="xMidYMid meet">
23
+ <svg viewbox="0 0 512 512">
24
+ <path d="M120 120v271.9h271.9V120H120zM365.6 365.6H256V256H146.4V146.4H256V256h109.6V365.6z"></path>
25
+ </svg></a></li>
26
+ <li><a class="icon-6 deviantart" href="#" title="DeviantART" preserveAspectRatio="xMidYMid meet">
27
+ <svg viewbox="0 0 512 512">
28
+ <path d="M251 214.4c66.8-1.2 102.7 20.7 111.4 63.3h-54.6v-45.8c-14.4-5-29.6-7.1-45.4-6.9v86.6h178.2c-8.6-69.1-88-123.3-184.6-123.3 -1.7 0-3.3 0-5 0.1v-31.7c-15.2-1-30.1 1.4-44.7 7.8v28.8c-73 14.8-127.8 61.5-134.9 118.4h179.6L251 214.4 251 214.4zM206.3 277.7H150.2c6-29.2 24.7-48.6 56.1-56.9V277.7z"></path>
29
+ </svg></a></li>
30
+ <li><a class="icon-7 dribbble" href="#" title="Dribbble" preserveAspectRatio="xMidYMid meet">
31
+ <svg viewbox="0 0 512 512">
32
+ <path d="M256 68.4C152.4 68.4 68.4 152.4 68.4 256c0 103.6 84 187.6 187.6 187.6S443.6 359.6 443.6 256C443.6 152.4 359.6 68.4 256 68.4zM410.6 247.3c-40.3-6.6-77.3-7-111-1.1 -3.8-8.8-7.8-17.6-12-26.3 36.1-15.6 65.1-36.9 86.7-63.8C395.4 181 408.6 212.6 410.6 247.3zM350.5 133.4c-18.8 24.3-44.8 43.5-78 57.5 -15.9-29.1-34-57.5-54.5-85 12.2-3.1 24.9-4.9 38-4.9C291.6 101 324.3 113.2 350.5 133.4zM186.1 117.9c20.8 27.2 39.3 55.3 55.3 84.1 -38 11.2-83.4 16.9-135.8 17.3C116.4 175 146.3 138.1 186.1 117.9zM101 256c0-1.3 0.2-2.7 0.2-4 60.2-0.1 112.1-7 155.6-20.7 3.6 7.4 7.1 14.9 10.5 22.4 -52.8 16.5-96.4 50.4-130.3 101.3C114.5 328.2 101 293.6 101 256zM160.9 378.1c30.8-48.3 70.1-79.7 118.8-94.2 14.5 37.8 25.2 76.8 31.9 116.6 -17.3 6.7-36 10.5-55.6 10.5C220.1 411 187.2 398.6 160.9 378.1zM342 384.8c-6.9-36.8-16.9-72.8-30-107.8 29.3-4.1 61.6-3.1 96.9 3.1C402.1 323.6 377.2 361.3 342 384.8z"></path>
33
+ </svg></a></li>
34
+ <li><a class="icon-8 email" href="#" title="Email" preserveAspectRatio="xMidYMid meet">
35
+ <svg viewbox="0 0 512 512">
36
+ <path d="M101.3 141.6v228.9h0.3 308.4 0.8V141.6H101.3zM375.7 167.8l-119.7 91.5 -119.6-91.5H375.7zM127.6 194.1l64.1 49.1 -64.1 64.1V194.1zM127.8 344.2l84.9-84.9 43.2 33.1 43-32.9 84.7 84.7L127.8 344.2 127.8 344.2zM384.4 307.8l-64.4-64.4 64.4-49.3V307.8z"></path>
37
+ </svg></a></li>
38
+ <li><a class="icon-9 etsy" href="#" title="Etsy" preserveAspectRatio="xMidYMid meet">
39
+ <svg viewbox="0 0 512 512">
40
+ <path d="M215.8 143.2c0-3.9 0.4-6.2 6.9-6.2h88.2c15.4 0 23.9 13.1 30 37.7l5 19.6h15c2.7-55.8 5-80.1 5-80.1s-37.7 4.2-60.1 4.2H193.1l-60.4-1.9v16.2l20.4 3.9c14.2 2.7 17.7 5.8 18.9 18.9 0 0 1.2 38.5 1.2 102s-1.2 101.6-1.2 101.6c0 11.6-4.6 15.8-18.9 18.5l-20.4 3.9v16.2l60.4-1.9h100.9c22.7 0 75.5 1.9 75.5 1.9 1.2-13.9 8.9-76.6 10-83.5h-14.2L350.1 348.4c-11.9 26.9-29.3 28.9-48.5 28.9h-57.4c-19.2 0-28.5-7.7-28.5-24.3v-87.8c0 0 42.7 0 56.6 1.2 10.8 0.8 17.3 3.9 20.8 18.9l4.6 20h16.6l-1.2-50.4 2.3-50.8h-16.6l-5.4 22.3c-3.5 14.6-5.8 17.3-20.8 18.9 -19.6 1.9-57 1.5-57 1.5V143.2z"></path>
41
+ </svg></a></li>
42
+ <li><a class="icon-10 facebook" href="#" title="Facebook" preserveAspectRatio="xMidYMid meet">
43
+ <svg viewbox="0 0 512 512">
44
+ <path d="M211.9 197.4h-36.7v59.9h36.7V433.1h70.5V256.5h49.2l5.2-59.1h-54.4c0 0 0-22.1 0-33.7 0-13.9 2.8-19.5 16.3-19.5 10.9 0 38.2 0 38.2 0V82.9c0 0-40.2 0-48.8 0 -52.5 0-76.1 23.1-76.1 67.3C211.9 188.8 211.9 197.4 211.9 197.4z"></path>
45
+ </svg></a></li>
46
+ <li><a class="icon-11 flickr" href="#" title="Flickr" preserveAspectRatio="xMidYMid meet">
47
+ <svg viewbox="0 0 512 512">
48
+ <path d="M344.5 156.9c-38.7 0-72.1 22.1-88.5 54.4 -16.4-32.3-49.8-54.4-88.5-54.4 -54.8 0-99.1 44.4-99.1 99.1 0 54.8 44.4 99.1 99.1 99.1 38.6 0 72.1-22.1 88.5-54.4 16.4 32.3 49.8 54.4 88.5 54.4 54.8 0 99.1-44.4 99.1-99.1C443.6 201.2 399.2 156.9 344.5 156.9zM344.5 328.7c-40.1 0-72.7-32.6-72.7-72.7s32.6-72.7 72.7-72.7 72.7 32.6 72.7 72.7C417.2 296.1 384.6 328.7 344.5 328.7z"></path>
49
+ </svg></a></li>
50
+ <li><a class="icon-12 forrst" href="#" title="Forrst" preserveAspectRatio="xMidYMid meet">
51
+ <svg viewbox="0 0 512 512">
52
+ <polygon points="241.582,329.145 206.922,303.748 214.591,293.279 241.582,313.057 241.582,258.318 272.223,258.318 272.223,293.564 299.038,278.939 305.252,290.332 272.223,308.35 272.223,329.049 322.979,303.016 328.902,314.563 272.223,343.635 272.223,395.852 392.273,395.852 256,68.147 119.727,395.852 241.582,395.852"></polygon>
53
+ </svg></a></li>
54
+ <li><a class="icon-13 github" href="#" title="GitHub" preserveAspectRatio="xMidYMid meet">
55
+ <svg viewbox="0 0 512 512">
56
+ <path d="M256 70.7c-102.6 0-185.9 83.2-185.9 185.9 0 82.1 53.3 151.8 127.1 176.4 9.3 1.7 12.3-4 12.3-8.9V389.4c-51.7 11.3-62.5-21.9-62.5-21.9 -8.4-21.5-20.6-27.2-20.6-27.2 -16.9-11.5 1.3-11.3 1.3-11.3 18.7 1.3 28.5 19.2 28.5 19.2 16.6 28.4 43.5 20.2 54.1 15.4 1.7-12 6.5-20.2 11.8-24.9 -41.3-4.7-84.7-20.6-84.7-91.9 0-20.3 7.3-36.9 19.2-49.9 -1.9-4.7-8.3-23.6 1.8-49.2 0 0 15.6-5 51.1 19.1 14.8-4.1 30.7-6.2 46.5-6.3 15.8 0.1 31.7 2.1 46.6 6.3 35.5-24 51.1-19.1 51.1-19.1 10.1 25.6 3.8 44.5 1.8 49.2 11.9 13 19.1 29.6 19.1 49.9 0 71.4-43.5 87.1-84.9 91.7 6.7 5.8 12.8 17.1 12.8 34.4 0 24.9 0 44.9 0 51 0 4.9 3 10.7 12.4 8.9 73.8-24.6 127-94.3 127-176.4C441.9 153.9 358.6 70.7 256 70.7z"></path>
57
+ </svg></a></li>
58
+ <!-- New icon thanks to Jesse Wegner:-->
59
+ <li><a class="icon-14 googleplus" href="#" title="GooglePlus" preserveAspectRatio="xMidYMid meet">
60
+ <svg viewbox="0 0 512 512">
61
+ <path d="M179.7 237.6L179.7 284.2 256.7 284.2C253.6 304.2 233.4 342.9 179.7 342.9 133.4 342.9 95.6 304.4 95.6 257 95.6 209.6 133.4 171.1 179.7 171.1 206.1 171.1 223.7 182.4 233.8 192.1L270.6 156.6C247 134.4 216.4 121 179.7 121 104.7 121 44 181.8 44 257 44 332.2 104.7 393 179.7 393 258 393 310 337.8 310 260.1 310 251.2 309 244.4 307.9 237.6L179.7 237.6 179.7 237.6ZM468 236.7L429.3 236.7 429.3 198 390.7 198 390.7 236.7 352 236.7 352 275.3 390.7 275.3 390.7 314 429.3 314 429.3 275.3 468 275.3"></path>
62
+ </svg></a></li>
63
+ <!-- New icon thanks to Justin Paul Veiga:-->
64
+ <li><a class="icon-15 instagram" href="#" title="Instagram" preserveAspectRatio="xMidYMid meet">
65
+ <svg viewbox="0 0 512 512">
66
+ <path d="M256 109.3c47.8 0 53.4 0.2 72.3 1 17.4 0.8 26.9 3.7 33.2 6.2 8.4 3.2 14.3 7.1 20.6 13.4 6.3 6.3 10.1 12.2 13.4 20.6 2.5 6.3 5.4 15.8 6.2 33.2 0.9 18.9 1 24.5 1 72.3s-0.2 53.4-1 72.3c-0.8 17.4-3.7 26.9-6.2 33.2 -3.2 8.4-7.1 14.3-13.4 20.6 -6.3 6.3-12.2 10.1-20.6 13.4 -6.3 2.5-15.8 5.4-33.2 6.2 -18.9 0.9-24.5 1-72.3 1s-53.4-0.2-72.3-1c-17.4-0.8-26.9-3.7-33.2-6.2 -8.4-3.2-14.3-7.1-20.6-13.4 -6.3-6.3-10.1-12.2-13.4-20.6 -2.5-6.3-5.4-15.8-6.2-33.2 -0.9-18.9-1-24.5-1-72.3s0.2-53.4 1-72.3c0.8-17.4 3.7-26.9 6.2-33.2 3.2-8.4 7.1-14.3 13.4-20.6 6.3-6.3 12.2-10.1 20.6-13.4 6.3-2.5 15.8-5.4 33.2-6.2C202.6 109.5 208.2 109.3 256 109.3M256 77.1c-48.6 0-54.7 0.2-73.8 1.1 -19 0.9-32.1 3.9-43.4 8.3 -11.8 4.6-21.7 10.7-31.7 20.6 -9.9 9.9-16.1 19.9-20.6 31.7 -4.4 11.4-7.4 24.4-8.3 43.4 -0.9 19.1-1.1 25.2-1.1 73.8 0 48.6 0.2 54.7 1.1 73.8 0.9 19 3.9 32.1 8.3 43.4 4.6 11.8 10.7 21.7 20.6 31.7 9.9 9.9 19.9 16.1 31.7 20.6 11.4 4.4 24.4 7.4 43.4 8.3 19.1 0.9 25.2 1.1 73.8 1.1s54.7-0.2 73.8-1.1c19-0.9 32.1-3.9 43.4-8.3 11.8-4.6 21.7-10.7 31.7-20.6 9.9-9.9 16.1-19.9 20.6-31.7 4.4-11.4 7.4-24.4 8.3-43.4 0.9-19.1 1.1-25.2 1.1-73.8s-0.2-54.7-1.1-73.8c-0.9-19-3.9-32.1-8.3-43.4 -4.6-11.8-10.7-21.7-20.6-31.7 -9.9-9.9-19.9-16.1-31.7-20.6 -11.4-4.4-24.4-7.4-43.4-8.3C310.7 77.3 304.6 77.1 256 77.1L256 77.1z"></path>
67
+ <path d="M256 164.1c-50.7 0-91.9 41.1-91.9 91.9s41.1 91.9 91.9 91.9 91.9-41.1 91.9-91.9S306.7 164.1 256 164.1zM256 315.6c-32.9 0-59.6-26.7-59.6-59.6s26.7-59.6 59.6-59.6 59.6 26.7 59.6 59.6S288.9 315.6 256 315.6z"></path>
68
+ <circle cx="351.5" cy="160.5" r="21.5"></circle>
69
+ </svg></a></li>
70
+ <li><a class="icon-16 lastfm" href="#" title="Last.fm" preserveAspectRatio="xMidYMid meet">
71
+ <svg viewbox="0 0 512 512">
72
+ <path d="M230.104 336.568l-13.607-36.988c0 0-22.11 24.66-55.268 24.66 -29.341 0-50.172-25.512-50.172-66.328 0-52.293 26.359-71.001 52.297-71.001 37.412 0 49.316 24.234 59.522 55.273l13.607 42.518c13.603 41.236 39.113 74.402 112.666 74.402 52.727 0 88.437-16.155 88.437-58.672 0-34.438-19.56-52.297-56.125-60.802l-27.209-5.951c-18.707-4.252-24.233-11.906-24.233-24.659 0-14.456 11.478-22.96 30.189-22.96 20.406 0 31.458 7.653 33.162 25.935l42.516-5.103c-3.402-38.263-29.761-53.996-73.127-53.996 -38.266 0-75.68 14.456-75.68 60.799 0 28.912 14.029 47.197 49.315 55.697l28.916 6.801c21.683 5.104 28.908 14.031 28.908 26.363 0 15.73-15.305 22.107-44.218 22.107 -42.941 0-60.794-22.534-70.999-53.574l-14.032-42.513c-17.854-55.271-46.342-75.68-102.892-75.68 -62.499-0.001-95.663 39.538-95.663 106.715 0 64.628 33.164 99.489 92.689 99.489C207.141 359.1 230.104 336.568 230.104 336.568L230.104 336.568z"></path>
73
+ </svg></a></li>
74
+ <li><a class="icon-17 linkedin" href="#" title="LinkedIn" preserveAspectRatio="xMidYMid meet">
75
+ <svg viewbox="0 0 512 512">
76
+ <path d="M186.4 142.4c0 19-15.3 34.5-34.2 34.5 -18.9 0-34.2-15.4-34.2-34.5 0-19 15.3-34.5 34.2-34.5C171.1 107.9 186.4 123.4 186.4 142.4zM181.4 201.3h-57.8V388.1h57.8V201.3zM273.8 201.3h-55.4V388.1h55.4c0 0 0-69.3 0-98 0-26.3 12.1-41.9 35.2-41.9 21.3 0 31.5 15 31.5 41.9 0 26.9 0 98 0 98h57.5c0 0 0-68.2 0-118.3 0-50-28.3-74.2-68-74.2 -39.6 0-56.3 30.9-56.3 30.9v-25.2H273.8z"></path>
77
+ </svg></a></li>
78
+ <li><a class="icon-18 myspace" href="#" title="MySpace" preserveAspectRatio="xMidYMid meet">
79
+ <svg viewbox="0 0 512 512">
80
+ <polygon points="437.692,309.414 74.308,309.414 74.308,214.586 119.699,214.586 119.699,264.021 392.301,264.021 392.301,214.586 437.692,214.586"></polygon>
81
+ </svg></a></li>
82
+ <li><a class="icon-19 paypal" href="#" title="PayPal" preserveAspectRatio="xMidYMid meet">
83
+ <svg viewbox="0 0 512 512">
84
+ <path d="M374.6 173.4c0 61.3-54 109.9-145.6 109.9h-26.7l-20.5 89.6h-64.3l62.8-283h106.6C343.5 89.8 374.6 125.5 374.6 173.4zM307.1 175.2c0-25.7-21.2-32.5-45.8-32.5h-28.4l-18.8 84.8h25.3C276.1 227.5 307.1 213 307.1 175.2zM393.1 161.4c12.2 95.9-78.6 145.2-173.4 143.8l-20.7 88.1h-44.6l-5 22.8h68.8l19.9-87.9C376.8 324 430.1 222.9 393.1 161.4z"></path>
85
+ </svg></a></li>
86
+ <li><a class="icon-20 pinterest" href="#" title="Pinterest" preserveAspectRatio="xMidYMid meet">
87
+ <svg viewbox="0 0 512 512">
88
+ <path d="M266.6 76.5c-100.2 0-150.7 71.8-150.7 131.7 0 36.3 13.7 68.5 43.2 80.6 4.8 2 9.2 0.1 10.6-5.3 1-3.7 3.3-13 4.3-16.9 1.4-5.3 0.9-7.1-3-11.8 -8.5-10-13.9-23-13.9-41.3 0-53.3 39.9-101 103.8-101 56.6 0 87.7 34.6 87.7 80.8 0 60.8-26.9 112.1-66.8 112.1 -22.1 0-38.6-18.2-33.3-40.6 6.3-26.7 18.6-55.5 18.6-74.8 0-17.3-9.3-31.7-28.4-31.7 -22.5 0-40.7 23.3-40.7 54.6 0 19.9 6.7 33.4 6.7 33.4s-23.1 97.8-27.1 114.9c-8.1 34.1-1.2 75.9-0.6 80.1 0.3 2.5 3.6 3.1 5 1.2 2.1-2.7 28.9-35.9 38.1-69 2.6-9.4 14.8-58 14.8-58 7.3 14 28.7 26.3 51.5 26.3 67.8 0 113.8-61.8 113.8-144.5C400.1 134.7 347.1 76.5 266.6 76.5z"></path>
89
+ </svg></a></li>
90
+ <li><a class="icon-21 rss" href="#" title="RSS" preserveAspectRatio="xMidYMid meet">
91
+ <svg viewbox="0 0 512 512">
92
+ <path d="M201.8 347.2c0 20.3-16.5 36.8-36.8 36.8 -20.3 0-36.8-16.5-36.8-36.8s16.5-36.8 36.8-36.8C185.3 310.4 201.8 326.8 201.8 347.2zM128.2 204.7v54.5c68.5 0.7 124 56.3 124.7 124.7h54.5C306.7 285.3 226.9 205.4 128.2 204.7zM128.2 166.6c57.9 0.3 112.3 22.9 153.2 63.9 41 41 63.7 95.5 63.9 153.5h54.5c-0.3-149.9-121.7-271.4-271.6-271.9V166.6L128.2 166.6z"></path>
93
+ </svg></a></li>
94
+ <li><a class="icon-22 soundcloud" href="#" title="SoundCloud" preserveAspectRatio="xMidYMid meet">
95
+ <svg viewbox="0 0 512 512">
96
+ <path d="M443.5 273.1c0 25.1-20.4 45.5-45.5 45.5H271.5V162.3c4.8-1.8 9.9-3.1 15.1-3.9 4.1-0.6 8.3-1 12.5-1 42.3 0 77 32.7 80.3 74.1 5.7-2.5 11.9-4 18.6-4C423.1 227.6 443.5 248 443.5 273.1zM224.2 193.2v125.4h15.1v-134.5c-3.4 3.7-6.4 7.8-9 12.1C228.4 195 226.3 194.1 224.2 193.2zM247.6 318.6h15.1v-152.4c-5.4 2.7-10.5 6.1-15.1 9.9V318.6zM151.8 208.9v109.7h15.1V196.9C161.3 200.2 156.2 204.2 151.8 208.9zM106.5 231.6v86.5c1.9 0.2 3.7 0.4 5.7 0.4h7.9v-86.6c-2.6-0.5-5.2-0.7-7.9-0.7C110.3 231.3 108.4 231.4 106.5 231.6zM86.5 310.2c3.4 2.5 7.2 4.5 11.3 5.9v-82.4c-4.1 1.4-7.9 3.4-11.3 5.9V310.2zM128.4 234.4v84.2h15.1v-98.7c-3.4 5.6-6 11.8-7.5 18.4C133.6 236.8 131.1 235.5 128.4 234.4zM175.9 318.6h15.1V188.8c-5.3 0.7-10.3 2-15.1 3.8V318.6zM200.1 318.6h15.1v-128.3c-4.8-1.2-9.9-1.9-15.1-1.9V318.6L200.1 318.6zM79.1 303.4v-56.9c-6.6 7.6-10.6 17.6-10.6 28.5C68.5 285.8 72.5 295.7 79.1 303.4z"></path>
97
+ </svg></a></li>
98
+ <li><a class="icon-23 stackoverflow" href="#" title="StackOverflow" preserveAspectRatio="xMidYMid meet">
99
+ <svg viewbox="0 0 512 512">
100
+ <path d="M294.8 361.2l-122 0.1 0-26 122-0.1L294.8 361.2zM377.2 213.7L356.4 93.5l-25.7 4.5 20.9 120.2L377.2 213.7zM297.8 301.8l-121.4-11.2 -2.4 25.9 121.4 11.2L297.8 301.8zM305.8 267.8l-117.8-31.7 -6.8 25.2 117.8 31.7L305.8 267.8zM321.2 238l-105-62 -13.2 22.4 105 62L321.2 238zM346.9 219.7l-68.7-100.8 -21.5 14.7 68.7 100.8L346.9 219.7zM315.5 275.5v106.5H155.6V275.5h-20.8v126.9h201.5V275.5H315.5z"></path>
101
+ </svg></a></li>
102
+ <li><a class="icon-24 stumbleupon" href="#" title="StumbleUpon" preserveAspectRatio="xMidYMid meet">
103
+ <svg viewbox="0 0 512 512">
104
+ <path d="M274.5 216.4l23.1 12.8 36.5-12.3v-24.7c0-42.7-35.7-75.9-78.1-75.9 -42.3 0-78.1 31.1-78.1 75.4 0 44.4 0 113.1 0 113.1 0 10.2-8.3 18.5-18.5 18.5 -10.2 0-18.5-8.3-18.5-18.5v-47.9H80.9c0 0 0 48 0 48.6 0 43.2 35 78.3 78.3 78.3 42.9 0 77.7-34.4 78.3-77.2v-111.7c0-10.2 8.3-18.5 18.5-18.5 10.2 0 18.5 8.3 18.5 18.5L274.5 216.4 274.5 216.4zM371.2 256.9v50.2c0 10.2-8.3 18.5-18.5 18.5 -10.2 0-18.5-8.3-18.5-18.5v-49.2l-36.5 12.4 -23.1-12.8v48.8c0.4 42.9 35.3 77.6 78.3 77.6 43.2 0 78.3-35 78.3-78.3 0-0.6 0-48.6 0-48.6L371.2 256.9 371.2 256.9z"></path>
105
+ </svg></a></li>
106
+ <li><a class="icon-25 tumblr" href="#" title="Tumblr" preserveAspectRatio="xMidYMid meet">
107
+ <svg viewbox="0 0 512 512">
108
+ <path d="M210.8 80.3c-2.3 18.3-6.4 33.4-12.4 45.2 -6 11.9-13.9 22-23.9 30.5 -9.9 8.5-21.8 14.9-35.7 19.5v50.6h38.9v124.5c0 16.2 1.7 28.6 5.1 37.1 3.4 8.5 9.5 16.6 18.3 24.2 8.8 7.6 19.4 13.4 31.9 17.5 12.5 4.1 26.8 6.1 43 6.1 14.3 0 27.6-1.4 39.9-4.3 12.3-2.9 26-7.9 41.2-15v-55.9c-17.8 11.7-35.7 17.5-53.7 17.5 -10.1 0-19.1-2.4-27-7.1 -5.9-3.5-10-8.2-12.2-14 -2.2-5.8-3.3-19.1-3.3-39.7v-91.1H345.5v-55.8h-84.4v-90H210.8z"></path>
109
+ </svg></a></li>
110
+ <li><a class="icon-26 twitter" href="#" title="Twitter" preserveAspectRatio="xMidYMid meet">
111
+ <svg viewbox="0 0 512 512">
112
+ <path d="M419.6 168.6c-11.7 5.2-24.2 8.7-37.4 10.2 13.4-8.1 23.8-20.8 28.6-36 -12.6 7.5-26.5 12.9-41.3 15.8 -11.9-12.6-28.8-20.6-47.5-20.6 -42 0-72.9 39.2-63.4 79.9 -54.1-2.7-102.1-28.6-134.2-68 -17 29.2-8.8 67.5 20.1 86.9 -10.7-0.3-20.7-3.3-29.5-8.1 -0.7 30.2 20.9 58.4 52.2 64.6 -9.2 2.5-19.2 3.1-29.4 1.1 8.3 25.9 32.3 44.7 60.8 45.2 -27.4 21.4-61.8 31-96.4 27 28.8 18.5 63 29.2 99.8 29.2 120.8 0 189.1-102.1 185-193.6C399.9 193.1 410.9 181.7 419.6 168.6z"></path>
113
+ </svg></a></li>
114
+ <li><a class="icon-27 vimeo" href="#" title="Vimeo" preserveAspectRatio="xMidYMid meet">
115
+ <svg viewbox="0 0 512 512">
116
+ <path d="M420.1 197.9c-1.5 33.6-25 79.5-70.3 137.8 -46.9 60.9-86.5 91.4-118.9 91.4 -20.1 0-37.1-18.5-51-55.6 -9.3-34-18.5-68-27.8-102 -10.3-37.1-21.4-55.7-33.2-55.7 -2.6 0-11.6 5.4-27 16.2L75.7 209.1c17-14.9 33.8-29.9 50.3-44.9 22.7-19.6 39.7-29.9 51.1-31 26.8-2.6 43.3 15.8 49.5 55 6.7 42.4 11.3 68.7 13.9 79 7.7 35.1 16.2 52.7 25.5 52.7 7.2 0 18-11.4 32.5-34.2 14.4-22.8 22.2-40.1 23.2-52.1 2.1-19.7-5.7-29.5-23.2-29.5 -8.3 0-16.8 1.9-25.5 5.7 16.9-55.5 49.3-82.4 97.1-80.9C405.5 130 422.2 153 420.1 197.9z"></path>
117
+ </svg></a></li>
118
+ <li><a class="icon-28 youtube" href="#" title="YouTube" preserveAspectRatio="xMidYMid meet">
119
+ <svg viewbox="0 0 512 512">
120
+ <path d="M422.6 193.6c-5.3-45.3-23.3-51.6-59-54 -50.8-3.5-164.3-3.5-215.1 0 -35.7 2.4-53.7 8.7-59 54 -4 33.6-4 91.1 0 124.8 5.3 45.3 23.3 51.6 59 54 50.9 3.5 164.3 3.5 215.1 0 35.7-2.4 53.7-8.7 59-54C426.6 284.8 426.6 227.3 422.6 193.6zM222.2 303.4v-94.6l90.7 47.3L222.2 303.4z"></path>
121
+ </svg></a></li>
122
+ <!-- Thanks to codepen.io/mrjustin for the yelp and foursquare icons below:-->
123
+ <li><a class="icon-29 yelp" href="#" title="Yelp" preserveAspectRatio="xMidYMid meet">
124
+ <svg viewbox="0 0 512 512">
125
+ <path d="M284.1 298.4c-6.1 6.1-0.9 17.3-0.9 17.3l45.8 76.4c0 0 7.5 10.1 14 10.1 6.5 0 13-5.4 13-5.4l36.2-51.7c0 0 3.6-6.5 3.7-12.2 0.1-8.1-12.1-10.4-12.1-10.4l-85.7-27.5C298.1 294.9 289.7 292.7 284.1 298.4L284.1 298.4zM279.7 259.8c4.4 7.4 16.5 5.3 16.5 5.3l85.5-25c0 0 11.6-4.7 13.3-11.1 1.6-6.3-1.9-13.9-1.9-13.9L352.2 167c0 0-3.5-6.1-10.9-6.7 -8.1-0.7-13.1 9.1-13.1 9.1l-48.3 76C280 245.4 275.7 253 279.7 259.8L279.7 259.8zM239.4 230.2c10.1-2.5 11.7-17.1 11.7-17.1l-0.7-121.7c0 0-1.5-15-8.3-19.1 -10.6-6.4-13.7-3.1-16.7-2.6l-71 26.4c0 0-6.9 2.3-10.6 8.1 -5.2 8.2 5.3 20.2 5.3 20.2L222.8 225C222.8 225 230.1 232.5 239.4 230.2L239.4 230.2zM221.8 279.5c0.3-9.4-11.3-15-11.3-15l-76.3-38.5c0 0-11.3-4.7-16.8-1.4 -4.2 2.5-7.9 7-8.3 11l-5 61.2c0 0-0.7 10.6 2 15.4 3.9 6.8 16.7 2.1 16.7 2.1l89.1-19.7C215.4 292.1 221.5 291.9 221.8 279.5L221.8 279.5zM244 312.5c-7.6-3.9-16.8 4.2-16.8 4.2l-59.6 65.6c0 0-7.4 10-5.5 16.2 1.8 5.8 4.7 8.6 8.9 10.7l59.9 18.9c0 0 7.3 1.5 12.8-0.1 7.8-2.3 6.4-14.5 6.4-14.5l1.4-88.9C251.3 324.6 251 316.1 244 312.5L244 312.5zM244 312.5"></path>
126
+ </svg></a></li>
127
+ <li><a class="icon-30 foursquare" href="#" title="Foursquare" preserveAspectRatio="xMidYMid meet">
128
+ <svg viewbox="0 0 512 512">
129
+ <path d="M347.7,83.6c0,0-158.1,0-183.4,0c-25.3,0-32.8,19-32.8,31c0,12,0,291.4,0,291.4c0,13.5,7.3,18.5,11.3,20.2 c4.1,1.7,15.3,3,22.1-4.7c0,0,86.6-100.5,88.1-102c2.2-2.2,2.2-2.2,4.5-2.2c4.5,0,37.9,0,56,0c23.5,0,27.3-16.8,29.8-26.7 c2-8.3,25-125.9,32.7-163.2C381.9,99,374.7,83.6,347.7,83.6z M343.4,290.6c2-8.3,25-125.9,32.7-163.2 M336.9,133.3l-7.7,40.1 c-0.9,4.3-6.4,8.9-11.4,8.9c-5.1,0-71.4,0-71.4,0c-8,0-13.8,5.5-13.8,13.5v8.7c0,8,5.8,13.7,13.8,13.7c0,0,54.9,0,60.6,0 c5.7,0,11.2,6.2,10,12.3c-1.2,6.1-7,36.1-7.7,39.5c-0.7,3.3-4.5,9-11.2,9c-5.7,0-49.5,0-49.5,0c-9,0-11.7,1.2-17.8,8.7 c-6,7.5-60.2,72.6-60.2,72.6c-0.5,0.6-1.1,0.4-1.1-0.2V132.7c0-5.1,4.5-11.1,11.1-11.1c0,0,141.4,0,147.2,0 C333.2,121.5,338.3,126.6,336.9,133.3z"></path>
130
+ </svg></a></li>
131
+ <li><a class="icon-31 blogger" href="#" title="Blogger" preserveAspectRatio="xMidYMid meet">
132
+ <svg viewbox="0 0 512 512">
133
+ <path d="M 315.969 135.186C 314.722 129.512 311.186 124.243 307.152 122.046C 305.91 121.37 297.956 120.508 289.475 120.131C 275.264 119.499 273.674 119.222 269.189 116.588C 262.074 112.411 260.114 107.901 260.095 95.6545C 260.058 72.2565 250.338 50.5345 231.132 30.9295C 217.45 16.9625 202.187 7.50851 184.768 2.21051C 180.598 0.942512 171.26 0.510512 139.984 0.140512C 90.909 -0.440488 80.015 0.567514 63.308 7.23351C 32.507 19.5235 10.375 45.4255 2.30198 78.6315C 0.785982 84.8685 0.490984 94.8635 0.132984 152.283C -0.316016 224.217 0.178981 234.78 4.66598 249.036C 8.37298 260.813 12.113 268.031 19.819 278.274C 34.498 297.789 56.497 311.883 78.491 315.864C 88.958 317.758 218.093 318.232 231.319 316.425C 254.32 313.282 272.344 304.047 289.253 286.741C 301.486 274.222 309.143 260.671 314.147 242.687C 316.226 235.216 316.4 231.579 316.781 187.713C 317.071 154.606 316.831 139.1 315.969 135.186ZM 88.09 90.0635C 93.614 84.4765 95.141 84.2645 129.716 84.2645C 160.756 84.2645 161.799 84.3325 166.359 86.6395C 172.948 89.9735 175.811 94.6755 175.811 102.161C 175.811 108.921 173.122 113.659 167.125 117.466C 163.905 119.51 161.98 119.638 131.568 119.817C 112.789 119.927 97.829 119.568 95.6 118.953C 83.841 115.705 79.448 98.8045 88.09 90.0635ZM 223.735 231.746L 213.221 233.459L 158.424 234.101C 110.273 234.666 96.632 233.783 94.126 232.689C 89.079 230.486 84.378 224.366 83.566 218.939C 82.792 213.77 85.386 206.663 89.361 203.059C 94.372 198.516 96.571 198.365 158.195 198.316C 221.586 198.266 221.256 198.24 227.267 203.862C 235.757 211.803 233.966 225.941 223.735 231.746Z" transform="translate(98 97)"></path>
134
+ </svg></a></li>
135
+ <li><a class="icon-32 spotify" href="#" title="Spotify" preserveAspectRatio="xMidYMid meet">
136
+ <svg viewbox="0 0 512 512">
137
+ <path d="M256 78c-98.3 0-178 79.7-178 178 0 98.31 79.7 178 178 178 98.31 0 178-79.69 178-178 0-98.3-79.69-178-178-178zm81.63 256.73a11.09 11.09 0 0 1-15.26 3.68c-41.8-25.53-94.4-31.31-156.37-17.16a11.1 11.1 0 0 1-4.93-21.64c67.8-15.49 125.96-8.82 172.88 19.86a11.1 11.1 0 0 1 3.68 15.26zm21.79-48.47a13.88 13.88 0 0 1-19.1 4.57c-47.84-29.4-120.77-37.92-177.36-20.74a13.9 13.9 0 0 1-17.32-9.25 13.9 13.9 0 0 1 9.25-17.3c64.65-19.62 145.01-10.12 199.96 23.64a13.87 13.87 0 0 1 4.56 19.08zm1.87-50.47c-57.37-34.07-152.02-37.2-206.8-20.58a16.65 16.65 0 1 1-9.66-31.87c62.88-19.08 167.4-15.4 233.45 23.81a16.63 16.63 0 0 1 5.82 22.82 16.63 16.63 0 0 1-22.8 5.82h-.01z"></path>
138
+ </svg></a></li>
139
+ </ul>
File without changes
Binary file
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap v4.2.1 (https://getbootstrap.com/)
3
+ * Copyright 2011-2018 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */
6
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("popper.js"),require("jquery")):"function"==typeof define&&define.amd?define(["exports","popper.js","jquery"],e):e(t.bootstrap={},t.Popper,t.jQuery)}(this,function(t,u,g){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function s(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function l(o){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{},e=Object.keys(r);"function"==typeof Object.getOwnPropertySymbols&&(e=e.concat(Object.getOwnPropertySymbols(r).filter(function(t){return Object.getOwnPropertyDescriptor(r,t).enumerable}))),e.forEach(function(t){var e,n,i;e=o,i=r[n=t],n in e?Object.defineProperty(e,n,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[n]=i})}return o}u=u&&u.hasOwnProperty("default")?u.default:u,g=g&&g.hasOwnProperty("default")?g.default:g;var e="transitionend";function n(t){var e=this,n=!1;return g(this).one(_.TRANSITION_END,function(){n=!0}),setTimeout(function(){n||_.triggerTransitionEnd(e)},t),this}var _={TRANSITION_END:"bsTransitionEnd",getUID:function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},getSelectorFromElement:function(t){var e=t.getAttribute("data-target");if(!e||"#"===e){var n=t.getAttribute("href");e=n&&"#"!==n?n.trim():""}return e&&document.querySelector(e)?e:null},getTransitionDurationFromElement:function(t){if(!t)return 0;var e=g(t).css("transition-duration"),n=g(t).css("transition-delay"),i=parseFloat(e),o=parseFloat(n);return i||o?(e=e.split(",")[0],n=n.split(",")[0],1e3*(parseFloat(e)+parseFloat(n))):0},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(t){g(t).trigger(e)},supportsTransitionEnd:function(){return Boolean(e)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],r=e[i],s=r&&_.isElement(r)?"element":(a=r,{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase());if(!new RegExp(o).test(s))throw new Error(t.toUpperCase()+': Option "'+i+'" provided type "'+s+'" but expected type "'+o+'".')}var a},findShadowRoot:function(t){if(!document.documentElement.attachShadow)return null;if("function"!=typeof t.getRootNode)return t instanceof ShadowRoot?t:t.parentNode?_.findShadowRoot(t.parentNode):null;var e=t.getRootNode();return e instanceof ShadowRoot?e:null}};g.fn.emulateTransitionEnd=n,g.event.special[_.TRANSITION_END]={bindType:e,delegateType:e,handle:function(t){if(g(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var o="alert",r="bs.alert",a="."+r,c=g.fn[o],h={CLOSE:"close"+a,CLOSED:"closed"+a,CLICK_DATA_API:"click"+a+".data-api"},f="alert",d="fade",m="show",p=function(){function i(t){this._element=t}var t=i.prototype;return t.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},t.dispose=function(){g.removeData(this._element,r),this._element=null},t._getRootElement=function(t){var e=_.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=g(t).closest("."+f)[0]),n},t._triggerCloseEvent=function(t){var e=g.Event(h.CLOSE);return g(t).trigger(e),e},t._removeElement=function(e){var n=this;if(g(e).removeClass(m),g(e).hasClass(d)){var t=_.getTransitionDurationFromElement(e);g(e).one(_.TRANSITION_END,function(t){return n._destroyElement(e,t)}).emulateTransitionEnd(t)}else this._destroyElement(e)},t._destroyElement=function(t){g(t).detach().trigger(h.CLOSED).remove()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(r);e||(e=new i(this),t.data(r,e)),"close"===n&&e[n](this)})},i._handleDismiss=function(e){return function(t){t&&t.preventDefault(),e.close(this)}},s(i,null,[{key:"VERSION",get:function(){return"4.2.1"}}]),i}();g(document).on(h.CLICK_DATA_API,'[data-dismiss="alert"]',p._handleDismiss(new p)),g.fn[o]=p._jQueryInterface,g.fn[o].Constructor=p,g.fn[o].noConflict=function(){return g.fn[o]=c,p._jQueryInterface};var v="button",E="bs.button",y="."+E,C=".data-api",T=g.fn[v],S="active",b="btn",I="focus",D='[data-toggle^="button"]',w='[data-toggle="buttons"]',A='input:not([type="hidden"])',N=".active",O=".btn",k={CLICK_DATA_API:"click"+y+C,FOCUS_BLUR_DATA_API:"focus"+y+C+" blur"+y+C},P=function(){function n(t){this._element=t}var t=n.prototype;return t.toggle=function(){var t=!0,e=!0,n=g(this._element).closest(w)[0];if(n){var i=this._element.querySelector(A);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(S))t=!1;else{var o=n.querySelector(N);o&&g(o).removeClass(S)}if(t){if(i.hasAttribute("disabled")||n.hasAttribute("disabled")||i.classList.contains("disabled")||n.classList.contains("disabled"))return;i.checked=!this._element.classList.contains(S),g(i).trigger("change")}i.focus(),e=!1}}e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(S)),t&&g(this._element).toggleClass(S)},t.dispose=function(){g.removeData(this._element,E),this._element=null},n._jQueryInterface=function(e){return this.each(function(){var t=g(this).data(E);t||(t=new n(this),g(this).data(E,t)),"toggle"===e&&t[e]()})},s(n,null,[{key:"VERSION",get:function(){return"4.2.1"}}]),n}();g(document).on(k.CLICK_DATA_API,D,function(t){t.preventDefault();var e=t.target;g(e).hasClass(b)||(e=g(e).closest(O)),P._jQueryInterface.call(g(e),"toggle")}).on(k.FOCUS_BLUR_DATA_API,D,function(t){var e=g(t.target).closest(O)[0];g(e).toggleClass(I,/^focus(in)?$/.test(t.type))}),g.fn[v]=P._jQueryInterface,g.fn[v].Constructor=P,g.fn[v].noConflict=function(){return g.fn[v]=T,P._jQueryInterface};var L="carousel",j="bs.carousel",H="."+j,R=".data-api",U=g.fn[L],W={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},x={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},F="next",q="prev",M="left",K="right",Q={SLIDE:"slide"+H,SLID:"slid"+H,KEYDOWN:"keydown"+H,MOUSEENTER:"mouseenter"+H,MOUSELEAVE:"mouseleave"+H,TOUCHSTART:"touchstart"+H,TOUCHMOVE:"touchmove"+H,TOUCHEND:"touchend"+H,POINTERDOWN:"pointerdown"+H,POINTERUP:"pointerup"+H,DRAG_START:"dragstart"+H,LOAD_DATA_API:"load"+H+R,CLICK_DATA_API:"click"+H+R},B="carousel",V="active",Y="slide",X="carousel-item-right",z="carousel-item-left",G="carousel-item-next",J="carousel-item-prev",Z="pointer-event",$=".active",tt=".active.carousel-item",et=".carousel-item",nt=".carousel-item img",it=".carousel-item-next, .carousel-item-prev",ot=".carousel-indicators",rt="[data-slide], [data-slide-to]",st='[data-ride="carousel"]',at={TOUCH:"touch",PEN:"pen"},lt=function(){function r(t,e){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._element=t,this._indicatorsElement=this._element.querySelector(ot),this._touchSupported="ontouchstart"in document.documentElement||0<navigator.maxTouchPoints,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var t=r.prototype;return t.next=function(){this._isSliding||this._slide(F)},t.nextWhenVisible=function(){!document.hidden&&g(this._element).is(":visible")&&"hidden"!==g(this._element).css("visibility")&&this.next()},t.prev=function(){this._isSliding||this._slide(q)},t.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(it)&&(_.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},t.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},t.to=function(t){var e=this;this._activeElement=this._element.querySelector(tt);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)g(this._element).one(Q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=n<t?F:q;this._slide(i,this._items[t])}},t.dispose=function(){g(this._element).off(H),g.removeData(this._element,j),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},t._getConfig=function(t){return t=l({},W,t),_.typeCheckConfig(L,t,x),t},t._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;0<e&&this.prev(),e<0&&this.next()}},t._addEventListeners=function(){var e=this;this._config.keyboard&&g(this._element).on(Q.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&g(this._element).on(Q.MOUSEENTER,function(t){return e.pause(t)}).on(Q.MOUSELEAVE,function(t){return e.cycle(t)}),this._addTouchEventListeners()},t._addTouchEventListeners=function(){var n=this;if(this._touchSupported){var e=function(t){n._pointerEvent&&at[t.originalEvent.pointerType.toUpperCase()]?n.touchStartX=t.originalEvent.clientX:n._pointerEvent||(n.touchStartX=t.originalEvent.touches[0].clientX)},i=function(t){n._pointerEvent&&at[t.originalEvent.pointerType.toUpperCase()]&&(n.touchDeltaX=t.originalEvent.clientX-n.touchStartX),n._handleSwipe(),"hover"===n._config.pause&&(n.pause(),n.touchTimeout&&clearTimeout(n.touchTimeout),n.touchTimeout=setTimeout(function(t){return n.cycle(t)},500+n._config.interval))};g(this._element.querySelectorAll(nt)).on(Q.DRAG_START,function(t){return t.preventDefault()}),this._pointerEvent?(g(this._element).on(Q.POINTERDOWN,function(t){return e(t)}),g(this._element).on(Q.POINTERUP,function(t){return i(t)}),this._element.classList.add(Z)):(g(this._element).on(Q.TOUCHSTART,function(t){return e(t)}),g(this._element).on(Q.TOUCHMOVE,function(t){var e;(e=t).originalEvent.touches&&1<e.originalEvent.touches.length?n.touchDeltaX=0:n.touchDeltaX=e.originalEvent.touches[0].clientX-n.touchStartX}),g(this._element).on(Q.TOUCHEND,function(t){return i(t)}))}},t._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},t._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(et)):[],this._items.indexOf(t)},t._getItemByDirection=function(t,e){var n=t===F,i=t===q,o=this._getItemIndex(e),r=this._items.length-1;if((i&&0===o||n&&o===r)&&!this._config.wrap)return e;var s=(o+(t===q?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},t._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(tt)),o=g.Event(Q.SLIDE,{relatedTarget:t,direction:e,from:i,to:n});return g(this._element).trigger(o),o},t._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll($));g(e).removeClass(V);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&g(n).addClass(V)}},t._slide=function(t,e){var n,i,o,r=this,s=this._element.querySelector(tt),a=this._getItemIndex(s),l=e||s&&this._getItemByDirection(t,s),c=this._getItemIndex(l),h=Boolean(this._interval);if(o=t===F?(n=z,i=G,M):(n=X,i=J,K),l&&g(l).hasClass(V))this._isSliding=!1;else if(!this._triggerSlideEvent(l,o).isDefaultPrevented()&&s&&l){this._isSliding=!0,h&&this.pause(),this._setActiveIndicatorElement(l);var u=g.Event(Q.SLID,{relatedTarget:l,direction:o,from:a,to:c});if(g(this._element).hasClass(Y)){g(l).addClass(i),_.reflow(l),g(s).addClass(n),g(l).addClass(n);var f=parseInt(l.getAttribute("data-interval"),10);this._config.interval=f?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,f):this._config.defaultInterval||this._config.interval;var d=_.getTransitionDurationFromElement(s);g(s).one(_.TRANSITION_END,function(){g(l).removeClass(n+" "+i).addClass(V),g(s).removeClass(V+" "+i+" "+n),r._isSliding=!1,setTimeout(function(){return g(r._element).trigger(u)},0)}).emulateTransitionEnd(d)}else g(s).removeClass(V),g(l).addClass(V),this._isSliding=!1,g(this._element).trigger(u);h&&this.cycle()}},r._jQueryInterface=function(i){return this.each(function(){var t=g(this).data(j),e=l({},W,g(this).data());"object"==typeof i&&(e=l({},e,i));var n="string"==typeof i?i:e.slide;if(t||(t=new r(this,e),g(this).data(j,t)),"number"==typeof i)t.to(i);else if("string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}else e.interval&&(t.pause(),t.cycle())})},r._dataApiClickHandler=function(t){var e=_.getSelectorFromElement(this);if(e){var n=g(e)[0];if(n&&g(n).hasClass(B)){var i=l({},g(n).data(),g(this).data()),o=this.getAttribute("data-slide-to");o&&(i.interval=!1),r._jQueryInterface.call(g(n),i),o&&g(n).data(j).to(o),t.preventDefault()}}},s(r,null,[{key:"VERSION",get:function(){return"4.2.1"}},{key:"Default",get:function(){return W}}]),r}();g(document).on(Q.CLICK_DATA_API,rt,lt._dataApiClickHandler),g(window).on(Q.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(st)),e=0,n=t.length;e<n;e++){var i=g(t[e]);lt._jQueryInterface.call(i,i.data())}}),g.fn[L]=lt._jQueryInterface,g.fn[L].Constructor=lt,g.fn[L].noConflict=function(){return g.fn[L]=U,lt._jQueryInterface};var ct="collapse",ht="bs.collapse",ut="."+ht,ft=g.fn[ct],dt={toggle:!0,parent:""},gt={toggle:"boolean",parent:"(string|element)"},_t={SHOW:"show"+ut,SHOWN:"shown"+ut,HIDE:"hide"+ut,HIDDEN:"hidden"+ut,CLICK_DATA_API:"click"+ut+".data-api"},mt="show",pt="collapse",vt="collapsing",Et="collapsed",yt="width",Ct="height",Tt=".show, .collapsing",St='[data-toggle="collapse"]',bt=function(){function a(e,t){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(t),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var n=[].slice.call(document.querySelectorAll(St)),i=0,o=n.length;i<o;i++){var r=n[i],s=_.getSelectorFromElement(r),a=[].slice.call(document.querySelectorAll(s)).filter(function(t){return t===e});null!==s&&0<a.length&&(this._selector=s,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t=a.prototype;return t.toggle=function(){g(this._element).hasClass(mt)?this.hide():this.show()},t.show=function(){var t,e,n=this;if(!this._isTransitioning&&!g(this._element).hasClass(mt)&&(this._parent&&0===(t=[].slice.call(this._parent.querySelectorAll(Tt)).filter(function(t){return"string"==typeof n._config.parent?t.getAttribute("data-parent")===n._config.parent:t.classList.contains(pt)})).length&&(t=null),!(t&&(e=g(t).not(this._selector).data(ht))&&e._isTransitioning))){var i=g.Event(_t.SHOW);if(g(this._element).trigger(i),!i.isDefaultPrevented()){t&&(a._jQueryInterface.call(g(t).not(this._selector),"hide"),e||g(t).data(ht,null));var o=this._getDimension();g(this._element).removeClass(pt).addClass(vt),this._element.style[o]=0,this._triggerArray.length&&g(this._triggerArray).removeClass(Et).attr("aria-expanded",!0),this.setTransitioning(!0);var r="scroll"+(o[0].toUpperCase()+o.slice(1)),s=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(){g(n._element).removeClass(vt).addClass(pt).addClass(mt),n._element.style[o]="",n.setTransitioning(!1),g(n._element).trigger(_t.SHOWN)}).emulateTransitionEnd(s),this._element.style[o]=this._element[r]+"px"}}},t.hide=function(){var t=this;if(!this._isTransitioning&&g(this._element).hasClass(mt)){var e=g.Event(_t.HIDE);if(g(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",_.reflow(this._element),g(this._element).addClass(vt).removeClass(pt).removeClass(mt);var i=this._triggerArray.length;if(0<i)for(var o=0;o<i;o++){var r=this._triggerArray[o],s=_.getSelectorFromElement(r);if(null!==s)g([].slice.call(document.querySelectorAll(s))).hasClass(mt)||g(r).addClass(Et).attr("aria-expanded",!1)}this.setTransitioning(!0);this._element.style[n]="";var a=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(){t.setTransitioning(!1),g(t._element).removeClass(vt).addClass(pt).trigger(_t.HIDDEN)}).emulateTransitionEnd(a)}}},t.setTransitioning=function(t){this._isTransitioning=t},t.dispose=function(){g.removeData(this._element,ht),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},t._getConfig=function(t){return(t=l({},dt,t)).toggle=Boolean(t.toggle),_.typeCheckConfig(ct,t,gt),t},t._getDimension=function(){return g(this._element).hasClass(yt)?yt:Ct},t._getParent=function(){var t,n=this;_.isElement(this._config.parent)?(t=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(t=this._config.parent[0])):t=document.querySelector(this._config.parent);var e='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',i=[].slice.call(t.querySelectorAll(e));return g(i).each(function(t,e){n._addAriaAndCollapsedClass(a._getTargetFromElement(e),[e])}),t},t._addAriaAndCollapsedClass=function(t,e){var n=g(t).hasClass(mt);e.length&&g(e).toggleClass(Et,!n).attr("aria-expanded",n)},a._getTargetFromElement=function(t){var e=_.getSelectorFromElement(t);return e?document.querySelector(e):null},a._jQueryInterface=function(i){return this.each(function(){var t=g(this),e=t.data(ht),n=l({},dt,t.data(),"object"==typeof i&&i?i:{});if(!e&&n.toggle&&/show|hide/.test(i)&&(n.toggle=!1),e||(e=new a(this,n),t.data(ht,e)),"string"==typeof i){if("undefined"==typeof e[i])throw new TypeError('No method named "'+i+'"');e[i]()}})},s(a,null,[{key:"VERSION",get:function(){return"4.2.1"}},{key:"Default",get:function(){return dt}}]),a}();g(document).on(_t.CLICK_DATA_API,St,function(t){"A"===t.currentTarget.tagName&&t.preventDefault();var n=g(this),e=_.getSelectorFromElement(this),i=[].slice.call(document.querySelectorAll(e));g(i).each(function(){var t=g(this),e=t.data(ht)?"toggle":n.data();bt._jQueryInterface.call(t,e)})}),g.fn[ct]=bt._jQueryInterface,g.fn[ct].Constructor=bt,g.fn[ct].noConflict=function(){return g.fn[ct]=ft,bt._jQueryInterface};var It="dropdown",Dt="bs.dropdown",wt="."+Dt,At=".data-api",Nt=g.fn[It],Ot=new RegExp("38|40|27"),kt={HIDE:"hide"+wt,HIDDEN:"hidden"+wt,SHOW:"show"+wt,SHOWN:"shown"+wt,CLICK:"click"+wt,CLICK_DATA_API:"click"+wt+At,KEYDOWN_DATA_API:"keydown"+wt+At,KEYUP_DATA_API:"keyup"+wt+At},Pt="disabled",Lt="show",jt="dropup",Ht="dropright",Rt="dropleft",Ut="dropdown-menu-right",Wt="position-static",xt='[data-toggle="dropdown"]',Ft=".dropdown form",qt=".dropdown-menu",Mt=".navbar-nav",Kt=".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",Qt="top-start",Bt="top-end",Vt="bottom-start",Yt="bottom-end",Xt="right-start",zt="left-start",Gt={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic"},Jt={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string"},Zt=function(){function c(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var t=c.prototype;return t.toggle=function(){if(!this._element.disabled&&!g(this._element).hasClass(Pt)){var t=c._getParentFromElement(this._element),e=g(this._menu).hasClass(Lt);if(c._clearMenus(),!e){var n={relatedTarget:this._element},i=g.Event(kt.SHOW,n);if(g(t).trigger(i),!i.isDefaultPrevented()){if(!this._inNavbar){if("undefined"==typeof u)throw new TypeError("Bootstrap's dropdowns require Popper.js (https://popper.js.org/)");var o=this._element;"parent"===this._config.reference?o=t:_.isElement(this._config.reference)&&(o=this._config.reference,"undefined"!=typeof this._config.reference.jquery&&(o=this._config.reference[0])),"scrollParent"!==this._config.boundary&&g(t).addClass(Wt),this._popper=new u(o,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===g(t).closest(Mt).length&&g(document.body).children().on("mouseover",null,g.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),g(this._menu).toggleClass(Lt),g(t).toggleClass(Lt).trigger(g.Event(kt.SHOWN,n))}}}},t.show=function(){if(!(this._element.disabled||g(this._element).hasClass(Pt)||g(this._menu).hasClass(Lt))){var t={relatedTarget:this._element},e=g.Event(kt.SHOW,t),n=c._getParentFromElement(this._element);g(n).trigger(e),e.isDefaultPrevented()||(g(this._menu).toggleClass(Lt),g(n).toggleClass(Lt).trigger(g.Event(kt.SHOWN,t)))}},t.hide=function(){if(!this._element.disabled&&!g(this._element).hasClass(Pt)&&g(this._menu).hasClass(Lt)){var t={relatedTarget:this._element},e=g.Event(kt.HIDE,t),n=c._getParentFromElement(this._element);g(n).trigger(e),e.isDefaultPrevented()||(g(this._menu).toggleClass(Lt),g(n).toggleClass(Lt).trigger(g.Event(kt.HIDDEN,t)))}},t.dispose=function(){g.removeData(this._element,Dt),g(this._element).off(wt),this._element=null,(this._menu=null)!==this._popper&&(this._popper.destroy(),this._popper=null)},t.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},t._addEventListeners=function(){var e=this;g(this._element).on(kt.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},t._getConfig=function(t){return t=l({},this.constructor.Default,g(this._element).data(),t),_.typeCheckConfig(It,t,this.constructor.DefaultType),t},t._getMenuElement=function(){if(!this._menu){var t=c._getParentFromElement(this._element);t&&(this._menu=t.querySelector(qt))}return this._menu},t._getPlacement=function(){var t=g(this._element.parentNode),e=Vt;return t.hasClass(jt)?(e=Qt,g(this._menu).hasClass(Ut)&&(e=Bt)):t.hasClass(Ht)?e=Xt:t.hasClass(Rt)?e=zt:g(this._menu).hasClass(Ut)&&(e=Yt),e},t._detectNavbar=function(){return 0<g(this._element).closest(".navbar").length},t._getPopperConfig=function(){var e=this,t={};"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e._config.offset(t.offsets)||{}),t}:t.offset=this._config.offset;var n={placement:this._getPlacement(),modifiers:{offset:t,flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(n.modifiers.applyStyle={enabled:!1}),n},c._jQueryInterface=function(e){return this.each(function(){var t=g(this).data(Dt);if(t||(t=new c(this,"object"==typeof e?e:null),g(this).data(Dt,t)),"string"==typeof e){if("undefined"==typeof t[e])throw new TypeError('No method named "'+e+'"');t[e]()}})},c._clearMenus=function(t){if(!t||3!==t.which&&("keyup"!==t.type||9===t.which))for(var e=[].slice.call(document.querySelectorAll(xt)),n=0,i=e.length;n<i;n++){var o=c._getParentFromElement(e[n]),r=g(e[n]).data(Dt),s={relatedTarget:e[n]};if(t&&"click"===t.type&&(s.clickEvent=t),r){var a=r._menu;if(g(o).hasClass(Lt)&&!(t&&("click"===t.type&&/input|textarea/i.test(t.target.tagName)||"keyup"===t.type&&9===t.which)&&g.contains(o,t.target))){var l=g.Event(kt.HIDE,s);g(o).trigger(l),l.isDefaultPrevented()||("ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),e[n].setAttribute("aria-expanded","false"),g(a).removeClass(Lt),g(o).removeClass(Lt).trigger(g.Event(kt.HIDDEN,s)))}}}},c._getParentFromElement=function(t){var e,n=_.getSelectorFromElement(t);return n&&(e=document.querySelector(n)),e||t.parentNode},c._dataApiKeydownHandler=function(t){if((/input|textarea/i.test(t.target.tagName)?!(32===t.which||27!==t.which&&(40!==t.which&&38!==t.which||g(t.target).closest(qt).length)):Ot.test(t.which))&&(t.preventDefault(),t.stopPropagation(),!this.disabled&&!g(this).hasClass(Pt))){var e=c._getParentFromElement(this),n=g(e).hasClass(Lt);if(n&&(!n||27!==t.which&&32!==t.which)){var i=[].slice.call(e.querySelectorAll(Kt));if(0!==i.length){var o=i.indexOf(t.target);38===t.which&&0<o&&o--,40===t.which&&o<i.length-1&&o++,o<0&&(o=0),i[o].focus()}}else{if(27===t.which){var r=e.querySelector(xt);g(r).trigger("focus")}g(this).trigger("click")}}},s(c,null,[{key:"VERSION",get:function(){return"4.2.1"}},{key:"Default",get:function(){return Gt}},{key:"DefaultType",get:function(){return Jt}}]),c}();g(document).on(kt.KEYDOWN_DATA_API,xt,Zt._dataApiKeydownHandler).on(kt.KEYDOWN_DATA_API,qt,Zt._dataApiKeydownHandler).on(kt.CLICK_DATA_API+" "+kt.KEYUP_DATA_API,Zt._clearMenus).on(kt.CLICK_DATA_API,xt,function(t){t.preventDefault(),t.stopPropagation(),Zt._jQueryInterface.call(g(this),"toggle")}).on(kt.CLICK_DATA_API,Ft,function(t){t.stopPropagation()}),g.fn[It]=Zt._jQueryInterface,g.fn[It].Constructor=Zt,g.fn[It].noConflict=function(){return g.fn[It]=Nt,Zt._jQueryInterface};var $t="modal",te="bs.modal",ee="."+te,ne=g.fn[$t],ie={backdrop:!0,keyboard:!0,focus:!0,show:!0},oe={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},re={HIDE:"hide"+ee,HIDDEN:"hidden"+ee,SHOW:"show"+ee,SHOWN:"shown"+ee,FOCUSIN:"focusin"+ee,RESIZE:"resize"+ee,CLICK_DISMISS:"click.dismiss"+ee,KEYDOWN_DISMISS:"keydown.dismiss"+ee,MOUSEUP_DISMISS:"mouseup.dismiss"+ee,MOUSEDOWN_DISMISS:"mousedown.dismiss"+ee,CLICK_DATA_API:"click"+ee+".data-api"},se="modal-scrollbar-measure",ae="modal-backdrop",le="modal-open",ce="fade",he="show",ue=".modal-dialog",fe='[data-toggle="modal"]',de='[data-dismiss="modal"]',ge=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",_e=".sticky-top",me=function(){function o(t,e){this._config=this._getConfig(e),this._element=t,this._dialog=t.querySelector(ue),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var t=o.prototype;return t.toggle=function(t){return this._isShown?this.hide():this.show(t)},t.show=function(t){var e=this;if(!this._isShown&&!this._isTransitioning){g(this._element).hasClass(ce)&&(this._isTransitioning=!0);var n=g.Event(re.SHOW,{relatedTarget:t});g(this._element).trigger(n),this._isShown||n.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),g(this._element).on(re.CLICK_DISMISS,de,function(t){return e.hide(t)}),g(this._dialog).on(re.MOUSEDOWN_DISMISS,function(){g(e._element).one(re.MOUSEUP_DISMISS,function(t){g(t.target).is(e._element)&&(e._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return e._showElement(t)}))}},t.hide=function(t){var e=this;if(t&&t.preventDefault(),this._isShown&&!this._isTransitioning){var n=g.Event(re.HIDE);if(g(this._element).trigger(n),this._isShown&&!n.isDefaultPrevented()){this._isShown=!1;var i=g(this._element).hasClass(ce);if(i&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),g(document).off(re.FOCUSIN),g(this._element).removeClass(he),g(this._element).off(re.CLICK_DISMISS),g(this._dialog).off(re.MOUSEDOWN_DISMISS),i){var o=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(t){return e._hideModal(t)}).emulateTransitionEnd(o)}else this._hideModal()}}},t.dispose=function(){[window,this._element,this._dialog].forEach(function(t){return g(t).off(ee)}),g(document).off(re.FOCUSIN),g.removeData(this._element,te),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},t.handleUpdate=function(){this._adjustDialog()},t._getConfig=function(t){return t=l({},ie,t),_.typeCheckConfig($t,t,oe),t},t._showElement=function(t){var e=this,n=g(this._element).hasClass(ce);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.scrollTop=0,n&&_.reflow(this._element),g(this._element).addClass(he),this._config.focus&&this._enforceFocus();var i=g.Event(re.SHOWN,{relatedTarget:t}),o=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,g(e._element).trigger(i)};if(n){var r=_.getTransitionDurationFromElement(this._dialog);g(this._dialog).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o()},t._enforceFocus=function(){var e=this;g(document).off(re.FOCUSIN).on(re.FOCUSIN,function(t){document!==t.target&&e._element!==t.target&&0===g(e._element).has(t.target).length&&e._element.focus()})},t._setEscapeEvent=function(){var e=this;this._isShown&&this._config.keyboard?g(this._element).on(re.KEYDOWN_DISMISS,function(t){27===t.which&&(t.preventDefault(),e.hide())}):this._isShown||g(this._element).off(re.KEYDOWN_DISMISS)},t._setResizeEvent=function(){var e=this;this._isShown?g(window).on(re.RESIZE,function(t){return e.handleUpdate(t)}):g(window).off(re.RESIZE)},t._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._isTransitioning=!1,this._showBackdrop(function(){g(document.body).removeClass(le),t._resetAdjustments(),t._resetScrollbar(),g(t._element).trigger(re.HIDDEN)})},t._removeBackdrop=function(){this._backdrop&&(g(this._backdrop).remove(),this._backdrop=null)},t._showBackdrop=function(t){var e=this,n=g(this._element).hasClass(ce)?ce:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className=ae,n&&this._backdrop.classList.add(n),g(this._backdrop).appendTo(document.body),g(this._element).on(re.CLICK_DISMISS,function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._element.focus():e.hide())}),n&&_.reflow(this._backdrop),g(this._backdrop).addClass(he),!t)return;if(!n)return void t();var i=_.getTransitionDurationFromElement(this._backdrop);g(this._backdrop).one(_.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){g(this._backdrop).removeClass(he);var o=function(){e._removeBackdrop(),t&&t()};if(g(this._element).hasClass(ce)){var r=_.getTransitionDurationFromElement(this._backdrop);g(this._backdrop).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o()}else t&&t()},t._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},t._setScrollbar=function(){var o=this;if(this._isBodyOverflowing){var t=[].slice.call(document.querySelectorAll(ge)),e=[].slice.call(document.querySelectorAll(_e));g(t).each(function(t,e){var n=e.style.paddingRight,i=g(e).css("padding-right");g(e).data("padding-right",n).css("padding-right",parseFloat(i)+o._scrollbarWidth+"px")}),g(e).each(function(t,e){var n=e.style.marginRight,i=g(e).css("margin-right");g(e).data("margin-right",n).css("margin-right",parseFloat(i)-o._scrollbarWidth+"px")});var n=document.body.style.paddingRight,i=g(document.body).css("padding-right");g(document.body).data("padding-right",n).css("padding-right",parseFloat(i)+this._scrollbarWidth+"px")}g(document.body).addClass(le)},t._resetScrollbar=function(){var t=[].slice.call(document.querySelectorAll(ge));g(t).each(function(t,e){var n=g(e).data("padding-right");g(e).removeData("padding-right"),e.style.paddingRight=n||""});var e=[].slice.call(document.querySelectorAll(""+_e));g(e).each(function(t,e){var n=g(e).data("margin-right");"undefined"!=typeof n&&g(e).css("margin-right",n).removeData("margin-right")});var n=g(document.body).data("padding-right");g(document.body).removeData("padding-right"),document.body.style.paddingRight=n||""},t._getScrollbarWidth=function(){var t=document.createElement("div");t.className=se,document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},o._jQueryInterface=function(n,i){return this.each(function(){var t=g(this).data(te),e=l({},ie,g(this).data(),"object"==typeof n&&n?n:{});if(t||(t=new o(this,e),g(this).data(te,t)),"string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n](i)}else e.show&&t.show(i)})},s(o,null,[{key:"VERSION",get:function(){return"4.2.1"}},{key:"Default",get:function(){return ie}}]),o}();g(document).on(re.CLICK_DATA_API,fe,function(t){var e,n=this,i=_.getSelectorFromElement(this);i&&(e=document.querySelector(i));var o=g(e).data(te)?"toggle":l({},g(e).data(),g(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||t.preventDefault();var r=g(e).one(re.SHOW,function(t){t.isDefaultPrevented()||r.one(re.HIDDEN,function(){g(n).is(":visible")&&n.focus()})});me._jQueryInterface.call(g(e),o,this)}),g.fn[$t]=me._jQueryInterface,g.fn[$t].Constructor=me,g.fn[$t].noConflict=function(){return g.fn[$t]=ne,me._jQueryInterface};var pe="tooltip",ve="bs.tooltip",Ee="."+ve,ye=g.fn[pe],Ce="bs-tooltip",Te=new RegExp("(^|\\s)"+Ce+"\\S+","g"),Se={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)"},be={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},Ie={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},De="show",we="out",Ae={HIDE:"hide"+Ee,HIDDEN:"hidden"+Ee,SHOW:"show"+Ee,SHOWN:"shown"+Ee,INSERTED:"inserted"+Ee,CLICK:"click"+Ee,FOCUSIN:"focusin"+Ee,FOCUSOUT:"focusout"+Ee,MOUSEENTER:"mouseenter"+Ee,MOUSELEAVE:"mouseleave"+Ee},Ne="fade",Oe="show",ke=".tooltip-inner",Pe=".arrow",Le="hover",je="focus",He="click",Re="manual",Ue=function(){function i(t,e){if("undefined"==typeof u)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=g(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(g(this.getTipElement()).hasClass(Oe))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),g.removeData(this.element,this.constructor.DATA_KEY),g(this.element).off(this.constructor.EVENT_KEY),g(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&g(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===g(this.element).css("display"))throw new Error("Please use show on visible elements");var t=g.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){g(this.element).trigger(t);var n=_.findShadowRoot(this.element),i=g.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!i)return;var o=this.getTipElement(),r=_.getUID(this.constructor.NAME);o.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&g(o).addClass(Ne);var s="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,a=this._getAttachment(s);this.addAttachmentClass(a);var l=this._getContainer();g(o).data(this.constructor.DATA_KEY,this),g.contains(this.element.ownerDocument.documentElement,this.tip)||g(o).appendTo(l),g(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new u(this.element,o,{placement:a,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:Pe},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}}),g(o).addClass(Oe),"ontouchstart"in document.documentElement&&g(document.body).children().on("mouseover",null,g.noop);var c=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,g(e.element).trigger(e.constructor.Event.SHOWN),t===we&&e._leave(null,e)};if(g(this.tip).hasClass(Ne)){var h=_.getTransitionDurationFromElement(this.tip);g(this.tip).one(_.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=g.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==De&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),g(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(g(this.element).trigger(i),!i.isDefaultPrevented()){if(g(n).removeClass(Oe),"ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),this._activeTrigger[He]=!1,this._activeTrigger[je]=!1,this._activeTrigger[Le]=!1,g(this.tip).hasClass(Ne)){var r=_.getTransitionDurationFromElement(n);g(n).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){g(this.getTipElement()).addClass(Ce+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(g(t.querySelectorAll(ke)),this.getTitle()),g(t).removeClass(Ne+" "+Oe)},t.setElementContent=function(t,e){var n=this.config.html;"object"==typeof e&&(e.nodeType||e.jquery)?n?g(e).parent().is(t)||t.empty().append(e):t.text(g(e).text()):t[n?"html":"text"](e)},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getContainer=function(){return!1===this.config.container?document.body:_.isElement(this.config.container)?g(this.config.container):g(document).find(this.config.container)},t._getAttachment=function(t){return be[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)g(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==Re){var e=t===Le?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===Le?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;g(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}}),g(this.element).closest(".modal").on("hide.bs.modal",function(){i.element&&i.hide()}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?je:Le]=!0),g(e.getTipElement()).hasClass(Oe)||e._hoverState===De?e._hoverState=De:(clearTimeout(e._timeout),e._hoverState=De,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===De&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?je:Le]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=we,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===we&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){return"number"==typeof(t=l({},this.constructor.Default,g(this.element).data(),"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),_.typeCheckConfig(pe,t,this.constructor.DefaultType),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Te);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(g(t).removeClass(Ne),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(ve),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(ve,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.2.1"}},{key:"Default",get:function(){return Ie}},{key:"NAME",get:function(){return pe}},{key:"DATA_KEY",get:function(){return ve}},{key:"Event",get:function(){return Ae}},{key:"EVENT_KEY",get:function(){return Ee}},{key:"DefaultType",get:function(){return Se}}]),i}();g.fn[pe]=Ue._jQueryInterface,g.fn[pe].Constructor=Ue,g.fn[pe].noConflict=function(){return g.fn[pe]=ye,Ue._jQueryInterface};var We="popover",xe="bs.popover",Fe="."+xe,qe=g.fn[We],Me="bs-popover",Ke=new RegExp("(^|\\s)"+Me+"\\S+","g"),Qe=l({},Ue.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),Be=l({},Ue.DefaultType,{content:"(string|element|function)"}),Ve="fade",Ye="show",Xe=".popover-header",ze=".popover-body",Ge={HIDE:"hide"+Fe,HIDDEN:"hidden"+Fe,SHOW:"show"+Fe,SHOWN:"shown"+Fe,INSERTED:"inserted"+Fe,CLICK:"click"+Fe,FOCUSIN:"focusin"+Fe,FOCUSOUT:"focusout"+Fe,MOUSEENTER:"mouseenter"+Fe,MOUSELEAVE:"mouseleave"+Fe},Je=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var o=i.prototype;return o.isWithContent=function(){return this.getTitle()||this._getContent()},o.addAttachmentClass=function(t){g(this.getTipElement()).addClass(Me+"-"+t)},o.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},o.setContent=function(){var t=g(this.getTipElement());this.setElementContent(t.find(Xe),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(ze),e),t.removeClass(Ve+" "+Ye)},o._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},o._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ke);null!==e&&0<e.length&&t.removeClass(e.join(""))},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(xe),e="object"==typeof n?n:null;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(xe,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.2.1"}},{key:"Default",get:function(){return Qe}},{key:"NAME",get:function(){return We}},{key:"DATA_KEY",get:function(){return xe}},{key:"Event",get:function(){return Ge}},{key:"EVENT_KEY",get:function(){return Fe}},{key:"DefaultType",get:function(){return Be}}]),i}(Ue);g.fn[We]=Je._jQueryInterface,g.fn[We].Constructor=Je,g.fn[We].noConflict=function(){return g.fn[We]=qe,Je._jQueryInterface};var Ze="scrollspy",$e="bs.scrollspy",tn="."+$e,en=g.fn[Ze],nn={offset:10,method:"auto",target:""},on={offset:"number",method:"string",target:"(string|element)"},rn={ACTIVATE:"activate"+tn,SCROLL:"scroll"+tn,LOAD_DATA_API:"load"+tn+".data-api"},sn="dropdown-item",an="active",ln='[data-spy="scroll"]',cn=".nav, .list-group",hn=".nav-link",un=".nav-item",fn=".list-group-item",dn=".dropdown",gn=".dropdown-item",_n=".dropdown-toggle",mn="offset",pn="position",vn=function(){function n(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" "+hn+","+this._config.target+" "+fn+","+this._config.target+" "+gn,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,g(this._scrollElement).on(rn.SCROLL,function(t){return n._process(t)}),this.refresh(),this._process()}var t=n.prototype;return t.refresh=function(){var e=this,t=this._scrollElement===this._scrollElement.window?mn:pn,o="auto"===this._config.method?t:this._config.method,r=o===pn?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map(function(t){var e,n=_.getSelectorFromElement(t);if(n&&(e=document.querySelector(n)),e){var i=e.getBoundingClientRect();if(i.width||i.height)return[g(e)[o]().top+r,n]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},t.dispose=function(){g.removeData(this._element,$e),g(this._scrollElement).off(tn),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},t._getConfig=function(t){if("string"!=typeof(t=l({},nn,"object"==typeof t&&t?t:{})).target){var e=g(t.target).attr("id");e||(e=_.getUID(Ze),g(t.target).attr("id",e)),t.target="#"+e}return _.typeCheckConfig(Ze,t,on),t},t._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},t._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},t._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},t._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),n<=t){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&0<this._offsets[0])return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t<this._offsets[o+1])&&this._activate(this._targets[o])}}},t._activate=function(e){this._activeTarget=e,this._clear();var t=this._selector.split(",").map(function(t){return t+'[data-target="'+e+'"],'+t+'[href="'+e+'"]'}),n=g([].slice.call(document.querySelectorAll(t.join(","))));n.hasClass(sn)?(n.closest(dn).find(_n).addClass(an),n.addClass(an)):(n.addClass(an),n.parents(cn).prev(hn+", "+fn).addClass(an),n.parents(cn).prev(un).children(hn).addClass(an)),g(this._scrollElement).trigger(rn.ACTIVATE,{relatedTarget:e})},t._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter(function(t){return t.classList.contains(an)}).forEach(function(t){return t.classList.remove(an)})},n._jQueryInterface=function(e){return this.each(function(){var t=g(this).data($e);if(t||(t=new n(this,"object"==typeof e&&e),g(this).data($e,t)),"string"==typeof e){if("undefined"==typeof t[e])throw new TypeError('No method named "'+e+'"');t[e]()}})},s(n,null,[{key:"VERSION",get:function(){return"4.2.1"}},{key:"Default",get:function(){return nn}}]),n}();g(window).on(rn.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(ln)),e=t.length;e--;){var n=g(t[e]);vn._jQueryInterface.call(n,n.data())}}),g.fn[Ze]=vn._jQueryInterface,g.fn[Ze].Constructor=vn,g.fn[Ze].noConflict=function(){return g.fn[Ze]=en,vn._jQueryInterface};var En="bs.tab",yn="."+En,Cn=g.fn.tab,Tn={HIDE:"hide"+yn,HIDDEN:"hidden"+yn,SHOW:"show"+yn,SHOWN:"shown"+yn,CLICK_DATA_API:"click"+yn+".data-api"},Sn="dropdown-menu",bn="active",In="disabled",Dn="fade",wn="show",An=".dropdown",Nn=".nav, .list-group",On=".active",kn="> li > .active",Pn='[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',Ln=".dropdown-toggle",jn="> .dropdown-menu .active",Hn=function(){function i(t){this._element=t}var t=i.prototype;return t.show=function(){var n=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&g(this._element).hasClass(bn)||g(this._element).hasClass(In))){var t,i,e=g(this._element).closest(Nn)[0],o=_.getSelectorFromElement(this._element);if(e){var r="UL"===e.nodeName||"OL"===e.nodeName?kn:On;i=(i=g.makeArray(g(e).find(r)))[i.length-1]}var s=g.Event(Tn.HIDE,{relatedTarget:this._element}),a=g.Event(Tn.SHOW,{relatedTarget:i});if(i&&g(i).trigger(s),g(this._element).trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){o&&(t=document.querySelector(o)),this._activate(this._element,e);var l=function(){var t=g.Event(Tn.HIDDEN,{relatedTarget:n._element}),e=g.Event(Tn.SHOWN,{relatedTarget:i});g(i).trigger(t),g(n._element).trigger(e)};t?this._activate(t,t.parentNode,l):l()}}},t.dispose=function(){g.removeData(this._element,En),this._element=null},t._activate=function(t,e,n){var i=this,o=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?g(e).children(On):g(e).find(kn))[0],r=n&&o&&g(o).hasClass(Dn),s=function(){return i._transitionComplete(t,o,n)};if(o&&r){var a=_.getTransitionDurationFromElement(o);g(o).removeClass(wn).one(_.TRANSITION_END,s).emulateTransitionEnd(a)}else s()},t._transitionComplete=function(t,e,n){if(e){g(e).removeClass(bn);var i=g(e.parentNode).find(jn)[0];i&&g(i).removeClass(bn),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}if(g(t).addClass(bn),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),_.reflow(t),g(t).addClass(wn),t.parentNode&&g(t.parentNode).hasClass(Sn)){var o=g(t).closest(An)[0];if(o){var r=[].slice.call(o.querySelectorAll(Ln));g(r).addClass(bn)}t.setAttribute("aria-expanded",!0)}n&&n()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(En);if(e||(e=new i(this),t.data(En,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.2.1"}}]),i}();g(document).on(Tn.CLICK_DATA_API,Pn,function(t){t.preventDefault(),Hn._jQueryInterface.call(g(this),"show")}),g.fn.tab=Hn._jQueryInterface,g.fn.tab.Constructor=Hn,g.fn.tab.noConflict=function(){return g.fn.tab=Cn,Hn._jQueryInterface};var Rn="toast",Un="bs.toast",Wn="."+Un,xn=g.fn[Rn],Fn={CLICK_DISMISS:"click.dismiss"+Wn,HIDE:"hide"+Wn,HIDDEN:"hidden"+Wn,SHOW:"show"+Wn,SHOWN:"shown"+Wn},qn="fade",Mn="hide",Kn="show",Qn="showing",Bn={animation:"boolean",autohide:"boolean",delay:"number"},Vn={animation:!0,autohide:!0,delay:500},Yn='[data-dismiss="toast"]',Xn=function(){function i(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var t=i.prototype;return t.show=function(){var t=this;g(this._element).trigger(Fn.SHOW),this._config.animation&&this._element.classList.add(qn);var e=function(){t._element.classList.remove(Qn),t._element.classList.add(Kn),g(t._element).trigger(Fn.SHOWN),t._config.autohide&&t.hide()};if(this._element.classList.remove(Mn),this._element.classList.add(Qn),this._config.animation){var n=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},t.hide=function(t){var e=this;this._element.classList.contains(Kn)&&(g(this._element).trigger(Fn.HIDE),t?this._close():this._timeout=setTimeout(function(){e._close()},this._config.delay))},t.dispose=function(){clearTimeout(this._timeout),this._timeout=null,this._element.classList.contains(Kn)&&this._element.classList.remove(Kn),g(this._element).off(Fn.CLICK_DISMISS),g.removeData(this._element,Un),this._element=null,this._config=null},t._getConfig=function(t){return t=l({},Vn,g(this._element).data(),"object"==typeof t&&t?t:{}),_.typeCheckConfig(Rn,t,this.constructor.DefaultType),t},t._setListeners=function(){var t=this;g(this._element).on(Fn.CLICK_DISMISS,Yn,function(){return t.hide(!0)})},t._close=function(){var t=this,e=function(){t._element.classList.add(Mn),g(t._element).trigger(Fn.HIDDEN)};if(this._element.classList.remove(Kn),this._config.animation){var n=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(Un);if(e||(e=new i(this,"object"==typeof n&&n),t.data(Un,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n](this)}})},s(i,null,[{key:"VERSION",get:function(){return"4.2.1"}},{key:"DefaultType",get:function(){return Bn}}]),i}();g.fn[Rn]=Xn._jQueryInterface,g.fn[Rn].Constructor=Xn,g.fn[Rn].noConflict=function(){return g.fn[Rn]=xn,Xn._jQueryInterface},function(){if("undefined"==typeof g)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var t=g.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||4<=t[0])throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(),t.Util=_,t.Alert=p,t.Button=P,t.Carousel=lt,t.Collapse=bt,t.Dropdown=Zt,t.Modal=me,t.Popover=Je,t.Scrollspy=vn,t.Tab=Hn,t.Toast=Xn,t.Tooltip=Ue,Object.defineProperty(t,"__esModule",{value:!0})});
7
+ //# sourceMappingURL=bootstrap.min.js.map